@charset "UTF-8";
html,body{
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  margin: 0;
  /* padding-bottom: 48px; */
}
*{
  box-sizing: border-box;
}

.selector-for-some-widget {
  box-sizing: content-box;
}
.d-a-js{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.theme{
  width: 100%;
}

.theme>.position-div{
  width: 100%;
  height: 44px;
}

.theme>.header{
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  /* text-align: center; */
  padding: 8px 0;
  background: rgba(0,3,16);
}
.theme>.header>.logo-header{
  position: absolute;
  left: 16px;
  top: 12px;
  width: 88px;
  height: 28px;
}
.theme>.header>.more-header{
  position: absolute;
  right: 16px;
  top: 12px;
  width: 20px;
  height: 20px;
}

.theme>.so-as{
  z-index: 99;
  width: 100vw;
  height: 100vh;
  position: fixed;
  right: -100%;
  top: 0;
  background: linear-gradient(180deg, rgba(0,4,26,0.3) 0%, #00041A 100%);
  transition: right .6s;
}
.theme>.so-as>.popup{
  margin-left: 35%;
  padding: 18px 16px;
  width: 65%;
  height: 100vh;
  background-color: #000310;
  color: #B3BCE7;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.theme>.so-as>.popup>div{
  display: flex;
  align-items: center;
  padding: 2px 0;
}
.theme>.so-as>.popup>.t-1{
  font-size: 15px;
}

.theme>.so-as>.popup>div>img{
  width: 16px;
  height: 2px;
  margin-right: 2px;
}

.theme>.service{
  z-index: 9;
  position: fixed;
  right: 0;
  top: 93px;
  width: 78px;
  height: 23px;
  color: #FFFFFF;
  font-size: 10px;
  letter-spacing: 4px;
  text-align: center;
  line-height: 23px;
  background: linear-gradient(90deg, #00DCD2 0%, #005AFF 100%);
  border-radius: 100px 0px 0px 100px;
}

.theme>.message-img{
  width: 100%;
  height: 314px;
  display: block;
}

.theme>.bread>.breadcrumb{
  background-color: unset;
}
.theme>.bread>.breadcrumb>li>a{
  color:#767891;
}
.theme>.bread>.breadcrumb > li + li:before {
  color: #767891;
  content: ">";
  padding: 0 5px;
}

.theme>.message{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.theme>.message>a>.item{
  display: flex;
  width: 343px;
  height: 105px;
  margin-bottom: 12px;
  overflow: hidden;
}
.theme>.message>a>.item>img{
  width: 123px;
  height: 105px;
  display: block;
}
.theme>.message>a>.item>.content{
  padding: 5px 8px 8px;
  background: #F8F8F8;
  overflow: hidden;
}
.theme>.message>a>.item>.content>.title{
  height: 16px;
  font-size: 10px;
  color: #1B1D3F;
}
.theme>.message>a>.item>.content>.tag{
  height: 14px;
  font-size: 12px;
  color: #767891;
  margin-top: 4px;
}
.theme>.message>a>.item>.content>.description{
    font-size: 12px;
    color: #767891;
    margin-top: 21px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.theme>.sort{
  padding: 0 26px;
}
.theme>.sort>.title{
  height: 25px;
  font-size: 18px;
  color: #1B1D3F;
  margin-left: 5px;
  font-weight: bold;
}
.theme>.sort>.item{
  font-size: 14px;
  color: #767891;
  display: flex;
  align-items: center;
  padding: 11px 5px;
  border-bottom: 1px solid #EEEEEE;
}
.theme>.sort>.item>img{
  width: 5px;
  height: 8px;
  margin-right: 6px;
}
.theme>.sort>.title-1{
  height: 25px;
  font-size: 18px;
  color: #1B1D3F;
  margin-left: 5px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 20px;
}
.theme>.sort>.tag-item{
  display: flex;
  flex-wrap: wrap;
}
.theme>.sort>.tag-item>div{
  padding: 6px 20px;
  background: #EEEEEE;
  border-radius: 5px;
  margin-right: 8px;
  margin-bottom: 8px;
}
.theme>.sort>.title-2{
  height: 25px;
  font-size: 18px;
  color: #1B1D3F;
  margin-left: 5px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 30px;
}

.theme>.sort>.show-box{
  display: flex;
  flex-wrap: wrap;
}
.theme>.sort>.show-box>.fz{
  width: 50%;
  display: flex;
  justify-content: center;
}
.theme>.sort>.show-box>.fz>.item{
  width: 150px;
  height: 133px;
  padding-bottom: 7px;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px 0px rgba(0,53,150,0.2);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #1B1D3F;
  line-height: 12px;
  margin-bottom: 16px;
}
.theme>.sort>.show-box>.fz>.item>img{
  width: 150px;
  height: 106px;
}

.theme>.color-bar{
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, #005AFE 0%, #00DBD2 100%);
}

.theme>.footer{
  background: #38405E;
}

.theme>.footer>.item-1{
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.theme>.footer>.item-1>img{
  width: 14px;
  height: 12px;
}
.theme>.footer>.item-1>.s-EB{
  font-size: 10px;
  color: #EBEBEB;
  line-height: 12px;
  margin-left: 8px;
}
.theme>.footer>.item-1>.s-B3{
  font-size: 10px;
  color: #B3BCE7;
  line-height: 12px;
  margin-left: 8px;
}
.theme>.footer>.item-2{
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.theme>.footer>.item-2>.left>img{
  width: 12px;
  height: 12px;
  margin-right: 8px;
}
.theme>.footer>.item-2>.left{
  display: flex;
  align-items: center;
}

.theme>.footer>.item-2>.left>.l-s>.s-1{
  font-size: 10px;
  color: #EBEBEB;
  line-height: 12px;
}
.theme>.footer>.item-2>.left>.l-s>.s-2{
  font-size: 10px;
  color: #B3BCE7;
  line-height: 12px;
  margin-top: 2px;
}
.theme>.footer>.item-2>.right{
  display: flex;
  align-items: center;
}
.theme>.footer>.item-2>.right>img{
  width: 12px;
  height: 12px;
  margin-right: 8px;
}
.theme>.footer>.item-2>.right>.r-s>.s-1{
  font-size: 10px;
  color: #EBEBEB;
  line-height: 12px;
}
.theme>.footer>.item-2>.right>.r-s>.s-2{
  font-size: 10px;
  color: #B3BCE7;
  line-height: 12px;
  margin-top: 2px;
}

.theme>.footer>.item-3{
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.theme>.footer>.item-3>.left>img{
  width: 12px;
  height: 12px;
  margin-right: 8px;
}
.theme>.footer>.item-3>.left{
  display: flex;
  align-items: center;
}

.theme>.footer>.item-3>.left>.l-s>.s-1{
  font-size: 10px;
  color: #EBEBEB;
  line-height: 12px;
}
.theme>.footer>.item-3>.left>.l-s>.s-2{
  font-size: 10px;
  color: #B3BCE7;
  line-height: 12px;
  margin-top: 2px;
}
.theme>.footer>.item-3>.right{
  display: flex;
  align-items: center;
}
.theme>.footer>.item-3>.right>img{
  width: 12px;
  height: 12px;
  margin-right: 8px;
}
.theme>.footer>.item-3>.right>.r-s>.s-1{
  font-size: 10px;
  color: #EBEBEB;
  line-height: 12px;
}
.theme>.footer>.item-3>.right>.r-s>.s-2{
  font-size: 10px;
  color: #B3BCE7;
  line-height: 12px;
  margin-top: 2px;
}

.theme>.introduce{
  padding: 0 18px;
  background: #38405E;
}
.theme>.introduce>img{
  width: 82px;
  height: 24px;
  margin-top: 14px;
  margin-bottom: 8px;
}
.theme>.introduce>.content{
  font-size: 10px;
  color: #5B5C68;
  line-height: 24px;
}
.theme>.introduce>.title{
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 16px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.theme>.introduce>.items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.theme>.introduce>.items>div{
  width: 80px;
  font-size: 10px;
  color: #95969E;
  line-height: 12px;
  margin-bottom: 21px;
}
.theme>.introduce>.contact-us{
  font-size: 14px;
  color: #FFFFFF;
  line-height: 16px;
  font-weight: bold;
}
.theme>.introduce>.items-1>div{
  font-size: 12px;
  color: #95969E;
  line-height: 14px;
  margin-top: 8px;
}
.theme>.introduce>.address{
  font-size: 14px;
  color: #FFFFFF;
  line-height: 16px;
  font-weight: bold;
  margin-top: 12px;
}
.theme>.introduce>.dz{
  font-size: 12px;
  color: #95969E;
  line-height: 14px;
  margin-top: 12px;
}
.theme>.introduce>.checked{
  font-size: 12px;
  color: #95969E;
  line-height: 14px;
  margin-top: 8px;
}
.theme>.introduce>.segmentation{
  border: 1px solid rgba(255,255,255,0.2);
  margin: 12px 0;
}
.theme>.introduce>.footer-content{
  font-size: 12px;
  color: #95969E;
  line-height: 14px;
  margin-top: 12px;
  padding-bottom: 6px;
}

.theme>.bottom-zw{
  height: 48px;
}

.theme>.bottom-btn{
  width: 100%;
  height: 48px;
  display: flex;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9;
}
.theme>.bottom-btn>.item-1{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33.3%;
  background: linear-gradient(270deg, #00DCD2 0%, #005AFF 100%);
}
.theme>.bottom-btn>.item-2{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  width: 33.3%;
}
.theme>.bottom-btn>.item-1>img{
  width: 12px;
  height: 12px;
  margin-bottom: 4px;
}
.theme>.bottom-btn>.item-2>img{
  width: 12px;
  height: 12px;
  margin-bottom: 4px;
}
.theme>.bottom-btn>.item-1>div{
  font-size: 12px;
  color: #FFFFFF;
  line-height: 14px;
}
.theme>.bottom-btn>.item-2>div{
  font-size: 12px;
  color: #005AFE;
  line-height: 14px;
}
