/* @font-face{
	font-family:"douyv";
	src: url("../css/fonts/douyuFont-2.otf") format("opentype");
} */
* {
  margin: 0;
  padding: 0;
}
body,
html {
  height: 100%;
  position: relative;
  width: 100%;
}
/* body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
body::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #214279;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  background: #eeeeee;
} */
img {
  display: block;
}
a {
  color: #333;
  text-decoration: none;
}
ul,
ol,
li,
dl,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
:root {
  --font-family: Source Han Sans CN;
}
.hamburger {
  display: none;
}
.x-center {
  width: 1140px;
}
.center {
  width: 1200px;
}
.app{
  display: none;
}
.diaolog-pb{
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
  display: none;
}
.diaolog video,
.diaolog img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-height: 75%;
  max-width: 75%;
}
.diaolog i{
  font-size: 46px;
  position: absolute;
  top: 3%;
  right: 3%;
  color: #ffffff;
  cursor: pointer;
}
.message-alert {
  position: fixed;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 25px;
  border-radius: 4px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
}
.message-alert.success {
  background-color: #55BB8A;
}
.message-alert.error {
  background-color: #F56C6C;
}
.message-alert.warning {
  background-color: #E6A23C;
}
.header-box{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(153,153,153,0.3);
}
.header-box .ct{
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}
.header-box .ct .left{
  display: flex;
  align-items: center;
  height: 100%;
}
.header-box .ct .logo img{
  width: 209px;
}
.header-box .ct .left .nav{
  display: flex;
  height: 100%;
  margin-left: 25px;
}
.header-box .ct .left .nav li:not(:first-of-type){
  margin-left: 30px;
}
.header-box .ct .left .nav li{
  height: 100%;
  position: relative;
}
.header-box .ct .left .nav li>a{
  height: 100%;
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.55);
  transition: 0.3s;
}
.header-box .ct .left .nav li.active>a{
  color: #333333;
  font-weight: bold;
}
.header-box .ct .left .nav li:hover>a{
  color: #333333;
}
.header-box .ct .left .nav li .two{
  position: absolute;
  left: 50%;
  top: 100%;
  background-color: #55BB8A;
  width: 140px;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  opacity: 0;
  transition: 0.5s;
}
.header-box .ct .left .nav li:hover>.two{
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}
.header-box .ct .left .nav li .two a{
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  transition: 0.3s;
  padding: 7px 10px;
  width: calc(100% - 20px);
  text-align: center;
}
.header-box .ct .left .nav li .two a:hover{
  color: rgba(255, 255, 255, 0.75);
}
.header-box .ct .right{
  width: 300px;
  margin: 0 50px 0 0;
  display: none;
}
.header-box .ct .user{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.header-box .ct .user i{
  font-size: 20px;
  color: rgba(0, 0, 0, 0.55);
  transition: 0.3s;
}
.header-box .ct .user i:hover{
  color: rgba(0, 0, 0, 1);
}
.header-box .ct form{
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  width: calc(100% - 2px - 20px);
  padding: 0 10px;
  height: 36px;
  border-radius: 30px;
}
.header-box .ct form button{
  background-color: transparent;
  border: unset;
  outline: none;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-box .ct form i{
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}
.header-box .ct form input{
  border: none;
  outline: none;
  width: calc(100% - 16px - 5px);
  padding-left: 5px;
  height: 100%;
  background-color: transparent;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
}
.header-box .ct form input::placeholder,
.header-box .ct form input::-webkit-input-placeholder{
  color: rgba(255, 255, 255, 0.55);
}
.header-box .pcss{
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 60px;
  height: 100%;
  width: 60px;
  transition: 0.5s;
}
.header-box .pcss.active{
  background-color: #FFFFFF;
}
.header-box .pcss.active i{
  color: #55BB8A !important;
}
.header-box .pcss i{
  font-size: 20px;
  color: rgba(0, 0, 0, 0.55);
  transition: 0.3s;
  cursor: pointer;
}
.header-box .pcss i:hover{
  color: #333333;
}
.header-box .pcssk{
  width: 100%;
  height: calc(100vh - 70px);
  position: fixed;
  top: 70px;
  left: 0;
  display: none;
}
.header-box .pcssk .top{
  width: 100%;
  height: 76px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-box .pcssk .top form{
  width: 65%;
  height: 34px;
  display: flex;
}
.header-box .pcssk .top form input{
  border: 1px solid #e2dfdf;
  width: calc(100% - 100px - 30px - 1px);
  padding: 0 15px;
  border-right: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  outline: none;
}
.header-box .pcssk .top form button{
  width: 100px;
  height: 100%;
  border-radius: 0 30px 30px 0;
  background-color: #55BB8A;
  border: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  outline: none;
  cursor: pointer;
  border: 1px solid #55BB8A;
}
.header-box .pcssk .bottom{
  width: 100%;
  height: calc(100vh - 70px - 76px);
  background-color: rgba(0, 0, 0, 0.5);
}
.sw-box{
  margin: 125px 0 0 0;
}
.mySwiper{
  margin: 0 auto;
  height: 280px;
}
.mySwiper a{
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}
.mySwiper a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.i1-box{
  width: 100%;
  background-color: #FFFFFF;
  border-bottom: 7px solid #F5F5F5;
  display: none;
}
.i1ct{
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}
.i1ct a{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.i1ct a img{
  height: 33px;
}
.i1ct a p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  margin-top: 12px;
}
.i2-box{
  width: 100%;
  margin-top: 0px;
}
.i2-box.brand3{
  margin-top: 0;
}
.i2-box.search{
  margin-top: 25px;
}
.i2-box.search .i2ct{
  padding: 0;
  min-height: auto;
}
.i2ct{
  margin: 0 auto;
  padding: 35px 0 65px 0;
  min-height: 50vh;
}
.i2ct.winnow1{
  padding: 40px 0 60px 0;
}
.i2ct.winnow2{
  padding: 5px 0 65px 0;
}
.i1-list{
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}
.i1-list li{
  width: calc((100% - 25px - 4px) / 2);
  margin-right: 25px;
  border: 1px solid #EEEEEE;
  transition: 0.3s;
  position: relative;
  margin-bottom: 25px;
  border-radius: 12px;
}
.i1-list li::after{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #55BB8A;
  transition: 0.3s;
  width: 0;
  height: 1px;
}
/*.i1-list li:hover::after{*/
/*  width: 100%;*/
/*}*/
.i1-list li:nth-of-type(2n){
  margin-right: 0;
}
.i1-list li:hover{
  transform: translateX(10px);
}
.i1-list li a{
  display: flex;
  justify-content: space-between;
  padding: 25px 15px;
  width: calc(100% - 30px);
}
.i1-list li a .ib{
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.i1-list li a .ib img{
  max-width: 100%;
  max-height: 100%;
}
.i1-list li a .txt{
  width: calc(100% - 150px - 25px);
}
.i1-list li a .txt h3{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #222222;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: 0.3s;
}
.i1-list li:hover a .txt h3{
  color: #55BB8A;
}
.i1-list li a .txt .money-rq{
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.i1-list li a .txt .money-rq .money{
  font-family: Arial;
  font-weight: bold;
  font-size: 26px;
  color: #55BB8A;
}
.i1-list li a .txt .money-rq p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #CCCCCC;
  max-width: calc(100% - 50px - 7px);
  margin-left: 7px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.i1-list li a .txt .timeh{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.i1-list li a .txt .timeh p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #55BB8A;
  max-width: calc(100% - 90px);
  /*overflow: hidden;*/
  /*display: -webkit-box;*/
  /*-webkit-box-orient: vertical;*/
  /*-webkit-line-clamp: 1;*/
  display: flex;
  flex-wrap: wrap;
}
.i1-list li a .txt .timeh p span{
  border: 1px solid #55BB8A;
  border-radius: 3px;
  line-height: 1;
  padding: 3px;
}
.i1-list li a .txt .timeh p span:not(:first-of-type){
  margin-left: 4px;
}
.i1-list li a .txt .timeh .h{
  display: flex;
  align-items: flex-end;
}
.i1-list li a .txt .timeh .h img{
  height: 18px;
}
.i1-list li a .txt .timeh .h span{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 16px;
  color: #F12C46;
  line-height: 1;
  margin-left: 4px;
  width: max-content;
}
.i1-list li a .txt .db{
  display: flex;
  align-items: center;
  margin-top: 22px;
}
.i1-list li a .txt .db .dz{
  display: flex;
  align-items: flex-end;
  width: 70px;
}
.i1-list li a .txt .db .dz p{
  margin-left: 5px;
}
.i1-list li a .txt .db .dz img{
  height: 17px;
}
.i1-list li a .txt .db p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #AAAAAA;
  line-height: 1;
}
.i1-list li a .txt .db .pt{
  width: calc(100% - 70px - 75px - 5px);
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-left: 5px;
}
.i1-list li a .txt .db .time{
  margin-left: auto;
}
.rk-box{
  width: 100%;
}
.rkct{
  margin: 0 auto;
  padding: 35px 0 60px 0;
  min-height: 70vh;
}
.rkct .mide{
  display: flex;
  justify-content: space-between;
  height: 270px;
}
.rkct .mide .left{
  width: 293px;
  height: 100%;
  margin-right: 10px;
}
.rkct .mide .left{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}
.rkct .mide .left:hover{
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
}
.rkct .mide .left .wz{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 18px;
  color: #FFFFFF;
  position: absolute;
  top: 15%;
  left: 10%;
}
.rkct .mide .left .bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rkct .mide .left .icon{
  width: 85%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.rkct .mide .right{
  display: flex;
  width: calc(100% - 303px);
  height: 100%;
}
.rkct .mide .right .item{
  position: relative;
  display: block;
  width: calc((100% - 20px) / 3);
  height: 100%;
  margin-right: 10px;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.3s;
}
.rkct .mide .right .item:hover{
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
}
.rkct .mide .right .item:nth-of-type(3n){
  margin-right: 0;
}
.rkct .mide .right .item .bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rkct .mide .right .item .wz{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 18px;
  color: #FFFFFF;
  position: absolute;
  top: 15%;
  left: 10%;
}
.rkct .mide .right .item .icon{
  position: absolute;
  bottom: 0%;
  right: 0%;
  height: 65%;
}
.rank-list{
  display: flex;
  flex-wrap: wrap;
  margin-top: 45px;
}
.rank-list li{
  width: calc((100% - 90px) / 10);
  margin-right: 10px;
  margin-bottom: 10px;
}
.rank-list li:hover a{
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}
.rank-list li:nth-of-type(10n){
  margin-right: 0;
}
.rank-list li a{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #F4F9FD;
  padding: 19px 0 17px 0;
  transition: 0.3s;
}
.rank-list li a img{
  height: 36px;
}
.rank-list li a p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  margin-top: 8px;
  max-width: 95%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.rk2ct{
  margin: 0 auto;
  padding-bottom: 80px;
  min-height: 50vh;
}
.rank2-list{
  display: flex;
  flex-wrap: wrap;
}
.rank2-list li{
  width: calc((100% - 50px) / 2);
  margin-right: 25px;
  margin-bottom: 25px;
  transition: 0.3s;
}
.rank2-list li:hover{
  transform: translateX(8px);
}
.rank2-list li:nth-of-type(2n){
  margin-right: 0;
}
.rank2-list li .mide{
  position: relative;
  border-radius: 12px;
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  width: calc(100% - 30px);
  padding: 25px 15px;
}
.rank2-list li:nth-of-type(1) .mide{
  box-shadow: 0px 0px 20px 0px rgba(249,185,83,0.5);
  border-color: transparent;
}
.rank2-list li:nth-of-type(2) .mide{
  box-shadow: 0px 0px 20px 0px rgba(99,172,198,0.5);
  border-color: transparent;
}
.rank2-list li:nth-of-type(3) .mide{
  box-shadow: 0px 0px 20px 0px rgba(239,154,99,0.5);
  border-color: transparent;
}
.rank2-list li .mide .zs{
  display: flex;
  align-items: center;
  width: calc(100% - 30px);
  padding: 0 15px;
}
.rank2-list li .mide .db{
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #E5E5E5;
  display: none;
}
.rank2-list li .mide .db p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #666666;
}
.rank2-list li .mide .db .mfb{
  display: flex;
  justify-content: center;
  margin: 25px auto 0;
}
.rank2-list li .mide .db .mf{
  width: 145px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  border-radius: 25px;
  background-color: #55BB8A;
  display: block;
}
.rank2-list li .mide .db .mf:last-of-type{
  margin-left: 10px;
}
.rank2-list li .mide .sz{
  position: absolute;
  top: 13px;
  left: 10px;
  height: 20px;
}
.rank2-list li .mide .ib{
  width: 120px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rank2-list li .mide .ib img{
  max-width: 100%;
  max-height: 100%;
}
.rank2-list li .mide .txt{
  width: calc(100% - 120px - 30px);
  margin-left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rank2-list li .mide .txt .wz{
  max-width: calc(100% - 25px);
}
.rank2-list li .mide .txt .wz h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 18px;
  color: #222222;
  line-height: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.rank2-list li .mide .txt .wz p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #55BB8A;
  margin-top: 8px;
}
.rank2-list li .mide .txt .fh{
  transform: rotate(90deg);
  transition: 0.3s;
}
.rank2-list li.active .mide .txt .fh{
  transform: rotate(270deg);
}
.rank2-list li.active .mide .txt .fh i{
  color: #55BB8A;
}
.rank2-list li .mide .txt .fh i{
  font-size: 14px;
  color: #888888;
}
.tagbg.active{
  margin: 0 0 25px 0;
}
.i2-box .tagbg .ct{
  width: 100%;
}
.tagbg{
  width: 100%;
  margin: 35px 0;
}
.tagbg .bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tagbg .ct{
  margin: 0 auto;
  height: 172px;
  background-color: #F3FFE9;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.tagbg .ct .rq{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.tagbg .ct .rq img{
    height: 19px;
    margin-right: 5px;
}
.tagbg .ct .rq{
  display: flex;
  align-items: center;
  color: #F12C46;
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}
.rk3-box{
  width: 100%;
}
.rk3ct{
  margin: 0 auto;
  padding: 0 0 60px 0;
  min-height: 50vh;
}
.rank3-list{
  display: flex;
  flex-wrap: wrap;
}
.rank3-list li{
  width: calc((100% - 25px) / 2);
  margin-right: 25px;
  margin-bottom: 25px;
  transition: 0.3s;
}
.rank3-list li:hover{
  transform: translateX(8px);
}
.rank3-list li:nth-of-type(2n){
  margin-right: 0;
}
.rank3-list li a{
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 25px 15px;
  border-radius: 12px;
  border: 1px solid #EEEEEE;
  width: calc(100% - 30px);
}
.rank3-list li:nth-of-type(1) a{
  box-shadow: 0px 0px 20px 0px rgba(249,185,83,0.5);
  border-color: transparent;
}
.rank3-list li:nth-of-type(2) a{
  box-shadow: 0px 0px 20px 0px rgba(99,172,198,0.5);
  border-color: transparent;
}
.rank3-list li:nth-of-type(3) a{
  box-shadow: 0px 0px 20px 0px rgba(239,154,99,0.5);
  border-color: transparent;
}
.rank3-list li a .sz{
  position: absolute;
  top: 8px;
  left: 10px;
  height: 16px;
}
.rank3-list li a .ib{
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rank3-list li a .ib img{
  max-width: 100%;
  max-height: 100%;
}
.rank3-list li a .txt{
  width: calc(100% - 120px - 15px);
}
.rank3-list li a .txt h3{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #222222;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.rank3-list li a .txt .money-rq{
  display: flex;
  margin-top: 3px;
}
.rank3-list li a .txt .money-rq .money{
  font-family: Arial;
  font-weight: bold;
  font-size: 18px;
  color: #55BB8A;
}
.rank3-list li a .txt .money-rq p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #CCCCCC;
  max-width: calc(100% - 50px - 7px);
  margin-left: 7px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.rank3-list li a .txt .timeh{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.rank3-list li a .txt .timeh p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #55BB8A;
  max-width: calc(100% - 70px);
  /*overflow: hidden;*/
  /*display: -webkit-box;*/
  /*-webkit-box-orient: vertical;*/
  /*-webkit-line-clamp: 1;*/
  display: flex;
  flex-wrap: wrap;
}
.rank3-list li a .txt .timeh p span{
  border: 1px solid #55BB8A;
  border-radius: 3px;
  line-height: 1;
  padding: 3px;
}
.rank3-list li a .txt .timeh p span:not(:first-of-type){
  margin-left: 4px;
}
.rank3-list li a .txt .timeh .h{
  display: flex;
  align-items: flex-end;
}
.rank3-list li a .txt .timeh .h img{
  height: 16px;
}
.rank3-list li a .txt .timeh .h span{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 14px;
  color: #F12C46;
  line-height: 1;
  margin-left: 4px;
}
.rank3-list li a .txt .db{
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.rank3-list li a .txt .db .dz{
  display: flex;
  align-items: flex-end;
  width: 70px;
}
.rank3-list li a .txt .db .dz p{
  margin-left: 5px;
}
.rank3-list li a .txt .db .dz img{
  height: 16px;
}
.rank3-list li a .txt .db p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #AAAAAA;
  line-height: 1;
}
.rank3-list li a .txt .db .pt{
  width: calc(100% - 70px - 75px - 5px);
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-left: 5px;
}
.rank3-list li a .txt .db .time{
  margin-left: auto;
}
.brand1-box{
  width: 100%;
  border-bottom: 7px solid #F5F5F5;
}
.brand1ct{
  margin: 0 auto;
  padding: 45px 0 10px 0;
}
.brand-swiper .swiper-pagination{
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-swiper .swiper-pagination .swiper-pagination-bullet-active{
  width: 25px;
  background-color: #55BB8A;
  border-radius: 10px;
}
.brand1-list{
  display: flex;
  flex-wrap: wrap;
}
/*.brand1-list li{*/
/*  width: calc((100% - 150px) / 6);*/
/*  margin-right: 25px;*/
/*  margin-bottom: 45px;*/
/*  transition: 0.3s;*/
/*}*/
.brand1-list li{
  width: calc(100% / 6);
  margin-bottom: 45px;
  transition: 0.3s;
}
.brand1-list li:hover{
  transform: translateY(-7px);
}
.brand1-list li:hover a p{
  color: #55BB8A;
}
/*.brand1-list li:nth-of-type(6n){*/
/*  margin-right: 0;*/
/*}*/
.brand1-list li a{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.brand1-list li a img{
  height: 30px;
}
.brand1-list li a p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #555555;
  margin-top: 10px;
  transition: 0.3s;
}
.brand2-box{
  width: 100%;
}
.brand2ct{
  padding: 45px 0 65px 0;
  margin: 0 auto;
}
.pb-title{
  display: flex;
  align-items: center;
}
.pb-title .line{
  width: 7px;
  height: 24px;
  background: #55BB8A;
  border-radius: 5px;
}
.pb-title h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 24px;
  color: #222222;
  margin-left: 10px;
}
.brand2-list{
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.brand2-list li{
  width: calc((100% - 50px - 12px) / 6);
  margin-right: 10px;
  margin-bottom: 10px;
  border: 1px solid #E5E5E5;
  height: 85px;
  transition: 0.3s;
}
.brand2-list li:hover{
  box-shadow: 0px 0px 15px 0px rgba(85,187,138,0.5);
}
.brand2-list li:nth-of-type(6n){
  margin-right: 0;
}
.brand2-list li a{
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand2-list li a img{
  max-width: 100%;
  max-height: 100%;
}
.brand2ct .pbmore,
.brand1-1ct .pbmore{
  margin: 45px auto 0;
}
.brand1-1ct{
  margin: 0 auto;
  padding-bottom: 65px;
  min-height: 50vh;
}
.brand3-1-box{
  width: 100%;
  border-bottom: 7px solid #F5F5F5;
}
.brand3-1ct{
  margin: 0 auto;
  padding: 40px 0 45px 0;
}
.brand3-1ct .top{
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
}
.brand3-1ct .top .ib{
  width: 500px;
  height: 260px;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand3-1ct .top .ib img{
  max-width: 100%;
  max-height: 100%;
}
.brand3-1ct .top .txt{
  width: calc(100% - 500px - 50px);
}
.brand3-1ct .top .txt h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 24px;
  color: #222222;
  margin-right: 8px;
}
.brand3-1ct .top .txt h6{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #55BB8A;
  margin: 10px 0 20px 0;
}
.brand3-1ct .top .txt .tm{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.brand3-1ct .top .txt p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}
.brand3-1ct .top .txt a{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  display: block;
  line-height: 1;
  padding: 8px 20px;
  background-color: #55BB8A;
  border-radius: 18px;
  width: max-content;
}
.brand3-1ct .desc{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  margin-top: 35px;
}
.strategy1-box{
  width: 100%;
}
.strategy1ct{
  margin: 0 auto;
  padding: 45px 0 65px 0;
}
.strategy1ct.active{
  padding: 0 0 65px 0;
}
.strategy1ct.active .strategy-list li:first-of-type a{
  padding-top: 0;
}
.strategy-list{
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.strategy-list li{
  border-bottom: 1px solid #EEEEEE;
  width: calc((100% - 50px) / 2);
  margin-right: 50px;
  transition: 0.3s;
}
.strategy-list li:hover{
  transform: translateX(8px);
}
.strategy-list li:nth-of-type(2n){
  margin-right: 0;
}
.strategy-list li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
}
.strategy-list li a .ib{
  width: 125px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strategy-list li a .ib img{
  max-width: 100%;
  max-height: 100%;
}
.strategy-list li a .txt{
  width: calc(100% - 125px - 18px);
}
.strategy-list li a .txt h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 16px;
  color: #222222;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.strategy-list li a .txt h6{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 18px;
  height: 36px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 8px 0 18px 0;
}
.strategy-list li a .txt h6 span{
  color: #55BB8A;
}
.strategy-list li a .txt .db{
  display: flex;
  align-items: center;
  justify-content: space-between
}
.strategy-list li a .txt .db .dz{
  display: flex;
  align-items: flex-end;
}
.strategy-list li a .txt .db .dz img{
  height: 16px;
}
.strategy-list li a .txt .db .dz p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #AAAAAA;
  line-height: 1;
  margin-left: 5px;
}
.strategy-list li a .txt .db .time{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #AAAAAA;
  line-height: 1;
}
.login-box{
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #55BB8A;
}
.login-box i{
  font-size: 28px;
  color: #FFFFFF;
  cursor: pointer;
  position: absolute;
  top: 2%;
  left: 2.5%;
}
.login-box .mide{
  position: absolute;
  width: 450px;
  background-color: #FFFFFF;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%,50%);
  height: 380px;
  border-radius: 30px;
}
.login-box .mide .ct{
  position: relative;
  width: calc(100% - 50px);
  margin: 0 auto;
}
.login-box .mide h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 28px;
  color: #FFFFFF;
  position: absolute;
  left: 0;
  top: -105px;
}
.login-box .mide img{
  position: absolute;
  right: 0;
  top: -130px;
  height: 130px;
  transform: translateX(10px);
}
.login-box .mide form{
  width: 100%;
  padding-top: 50px;
}
.login-box .mide form>input{
  width: calc(100% - 40px);
  padding: 0 20px;
  border: none;
  background-color: #F1F1F1;
  outline: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #777777;
  height: 42px;
  border-radius: 22px;
  margin-top: 22px;
}
.login-box .mide form>input:nth-of-type(1),
.login-box .mide form>input:nth-of-type(2),
.login-box .mide form>input:nth-of-type(3){
  margin-top: 0px;
}
.login-box .mide form>button{
  border: none;
  background-color: #55BB8A;
  outline: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  width: 100%;
  height: 46px;
  border-radius: 22px;
  box-shadow: 0px 8px 10px 0px rgba(40,9,9,0.1);
  margin-top: 37px;
}
.login-box .mide form>.layui-input-wrap{
  height: 42px;
  line-height: 1;
  margin-top: 22px;
}
.login-box .mide form>.layui-input-wrap .layui-input-affix{
  background-color: #F1F1F1;
  line-height: 1;
  height: 100%;
  border-radius: 0 22px 22px 0;
  display: flex;
  align-items: center;
  border: none;
}
.login-box .mide form>.layui-input-wrap input{
  border: none;
  height: 100%;
  border-radius: 22px 0 0 22px;
  background-color: #F1F1F1;
  width: calc(100% - 35px - 30px);
  padding: 0 15px;
  line-height: 1;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #777777;
}
.login-box .mide form .layui-form-item{
  margin: 22px 0 0 0;
  height: 42px;
}
.login-box .mide form .layui-row{
  display: flex;
  height: 100%;
}
.login-box .mide form .layui-row .layui-col-xs7{
  width: calc(100% - 110px);
  height: 100%;
}
.login-box .mide form .layui-row .layui-input-wrap{
  height: 100%;
  line-height: 1;
}
.login-box .mide form .layui-row .layui-input{
  height: 100%;
  line-height: 1;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #777777;
  border: none;
  background-color: #F1F1F1;
  border-radius: 22px 0 0 22px;
}
.login-box .mide form .layui-row .layui-input-prefix{
  display: flex;
  align-items: center;
}
.login-box .mide form .layui-row .layui-btn{
  padding: 0;
  height: 100%;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF !important;
  border: none;
  background-color: #55BB8A;
  line-height: 1;
  border-radius: 0 22px 22px 0;
}
.login-box .mide .db{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  width: calc(100% - 30px);
  padding: 0 15px;
}
.login-box .mide .db a{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #999999;
}
.pm1-box{
  width: 100%;
}
.pm1ct{
  margin: 0 auto;
  padding: 40px 0 75px 0;
  min-height: 70vh;
}
.pm-list{
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
}
.pm-list .cbz{
  width: 100%;
  height: 250px;
  background-color: #F3FFE9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F12C46;
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 18px;
}
.pm-list li{
  width: calc((100% - 60px) / 4);
  margin-right: 20px;
  margin-bottom: 20px;
}
.pm-list li:nth-of-type(4n){
  margin-right: 0;
}
.pm-list li .mide{
  display: block;
  width: 100%;
  height: 310px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px 0px rgba(153,153,153,0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}
.pm-list li:hover .mide{
  box-shadow: 0px 0px 20px 0px rgba(153,153,153,0.45);
}
.pm-list li .mide .ib{
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm-list li .mide .ib img{
  max-width: 100%;
  max-height: 100%;
}
.pm-list li .mide .txt{
  width: calc(100% - 30px);
  padding: 7px 15px 0 15px;
}
.pm-list li .mide .txt h3{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #222222;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.pm-list li .mide .txt .jf{
  display: flex;
  align-items: flex-end;
  margin: 5px 0 12px 0;
}
.pm-list li .mide .txt .jf .sz{
  font-family: Arial;
  font-weight: 400;
  font-size: 20px;
  color: #F02D48;
}
.pm-list li .mide .txt .jf p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #F02D48;
  margin-left: 5px;
  padding-bottom: 2px;
}
.pm-list li .mide .txt .dh{
  width: 120px;
  height: 32px;
  background: #F02D48;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  margin: 0 auto;
}
.search-box{
  width: 100%;
  margin-top: 70px;
  position: relative;
}
.search-box .top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-box .top i{
  font-size: 20px;
  cursor: pointer;
  color: #333333;
  transition: 0.3s;
}
.search-box .top i:hover{
  color: #55BB8A;
}
.searchct{
  padding: 35px 0 50px 0;
  margin: 0 auto;
  min-height: calc(100vh - 50px - 35px - 70px);
}
.searchct #myBtn{
  position: fixed;
  right: calc((100% - 1200px) / 2);
  top: 20px;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.75);
  outline: none;
  border: none;
  border-radius: 20px;
  width: 55px;
  height: 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #55BB8A;
  cursor: pointer;
}
.searchct .fh{
  position: fixed;
  left: calc((100% - 1200px) / 2);
  top: 21px;
  z-index: 100;
  font-size: 28px;
  color: #FFFFFF;
  cursor: pointer;
}
.searchct .top h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 24px;
  color: #222222;
  /*padding-left: 15px;*/
}
.search-box .jlbox{
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0 25px 0;
  max-height: 70px;
  overflow: hidden;
}
.searchct .zw{
  margin-right: 10px;
  border-radius: 16px;
  background-color: #f6f6f6;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #817d7d;
  line-height: 1;
  padding: 6px 20px;
  margin-bottom: 10px;
  height: max-content;
}
.searchct .type{
  display: flex;
  flex-wrap: wrap;
}
.searchct .type a{
  margin-right: 10px;
  border-radius: 16px;
  border: 1px solid #BFBFBF;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #999999;
  line-height: 1;
  padding: 6px 20px;
  margin-bottom: 10px;
  transition: 0.3s;
}
.searchct .type a:hover{
  color: #55BB8A;
}
.ab-box{
  width: 100%;
}
.abct{
  margin: 0 auto;
  padding: 35px 0 80px 0;
  min-height: calc(100vh - 30vh);
}
.abct .dzsc{
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.abct .dzsc .collect{
  margin-left: 40px;
}
.abct .dzsc .collect i{
  font-size: 20px;
  color: #AAAAAA;
  transition: 0.3s;
}
.abct .dzsc .collect.active i{
  color: #55BB8A;
}
.abct .dzsc .dz{
  display: flex;
  align-items: flex-end;
}
.abct .dzsc .dz img{
  height: 17px;
}
.abct .dzsc .dz p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #AAAAAA;
  line-height: 1;
  margin-left: 5px;
}
.abct .dzsc .dz.active p{
  color: #55BB8A;
}
.abct .dzsc .dz .dz2{
  display: none;
}
.abct .dzsc .dz.active .dz1{
  display: none;
}
.abct .dzsc .dz.active .dz2{
  display: block;
}
.abct .mide{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #555555;
  margin-top: 25px;
}
.abct .mide p,
.abct .mide span{
  font-family: var(--font-family);
  text-wrap: unset !important;
}
.abct .mide img{
  max-width: 100%;
  margin: 0 auto;
}
.conct{
  margin: 0 auto;
  padding: 35px 0 65px 0;
}
.conct .mide{
  margin-top: 15px;
}
.conct .mide .desc{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}
.conct .mide form{
  margin: 40px 0 0 0;
  width: calc(100% - 40%);
}
.conct .mide form .row:not(:first-of-type){
  margin-top: 25px;
}
.conct .mide form p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #222222;
}
.conct .mide form input{
  width: 100%;
  height: 42px;
  outline: none;
  border: 1px solid #BFBFBF;
  border-radius: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  text-indent: 10px;
  margin-top: 5px;
}
.conct .mide form textarea{
  width: 100%;
  height: 108px;
  outline: none;
  border: 1px solid #BFBFBF;
  border-radius: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  text-indent: 10px;
  padding-top: 5px;
  resize: none;
  margin-top: 5px;
}
.conct .mide form input::placeholder,
.conct .mide form textarea::placeholder{
  color: #DDDDDD;
}
.conct .mide form button{
  width: 100%;
  height: 38px;
  border: none;
  background-color: #55BB8A;
  border-radius: 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  margin-top: 35px;
}
.user-box{
  width: 100%;
  min-height: 100vh;
  background-color: #EDF2F9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.user-box .back{
  position: absolute;
  top: 3%;
  left: 3%;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.user-box .back i{
  font-size: 26px;
  color: #55BB8A;
}
.user-box .back p{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #55BB8A;
  margin-left: 5px;
  line-height: 1;
}
.user-top{
  width: 480px;
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.user-top .userct{
  margin: 0 auto;
  width: calc(100% - 40px);
  padding: 60px 20px 40px 20px;
}
.avatar-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.avatar-box .avatar{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.avatar-box .ib{
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
}
.avatar-box .ib img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-box .avatar{
  width: calc(100% - 75px - 15px);
  margin-left: 15px;
}
.avatar-box .avatar .txt{
  max-width: calc(100% - 40px);
}
.avatar-box .avatar .txt h3{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  color: #414468;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.avatar-box .avatar .txt .phone{
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #AAADBB;
  margin-top: 3px;
}
.avatar-box .avatar i{
  font-size: 20px;
  color: #CCCCCC;
}
.dh-box{
  width: calc(100% - 30px);
  padding: 20px 15px;
  background: url('../images/user6.png') no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  margin-top: 30px;
  box-shadow: 0px 23px 15px 0px rgba(58,153,107,0.11);
}
.dh-box .jf .sz{
  font-family: Arial;
  font-weight: 400;
  font-size: 30px;
  color: #FFFFFF;
}
.dh-box .jf p{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  opacity: 0.5;
  margin-top: 5px;
}
.dh-box a{
  width: 90px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
}
.type-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}
.type-box a{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.type-box a .rund{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EEF1F2;
}
.type-box a .rund img{
  max-width: 50%;
}
.type-box a p{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  margin-top: 8px;
}
.user-bottom{
  margin-top: 7px;
  width: 480px;
  border-radius: 10px;
  overflow: hidden;
}
.user-bottom a{
  width: calc(100% - 10%);
  padding: 25px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
}
.user-bottom a:not(:last-of-type){
  border-bottom: 1px solid #EDF2F9;
}
.user-bottom a img{
  width: 22px;
}
.user-bottom a .nr{
  width: calc(100% - 22px - 10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.user-bottom a .nr p{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #2B303C;
}
.user-bottom a .nr i{
  font-size: 20px;
  color: #CCCCCC;
}
.faq-box{
  width: 100%;
}
.faqct{
  padding: 100px 0 100px 0;
  margin: 0 auto;
  min-height: calc(100vh - 200px);
}
.faqct .item{
   border-bottom: 1px solid #DDDDDD;
   padding: 20px 0;
}
.faqct .item .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faqct .item .top .wz{
  max-width: calc(100% - 50px);
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: #2B303C;
}
.faqct .item .top .ic i{
  font-size: 18px;
  color: #333333;
}
.faqct .item .top .ic .minus{
  display: none;
}
.faqct .item.active .top .ic .minus{
  display: block;
}
.faqct .item.active .top .ic .plus{
  display: none;
}
.faqct .item .desc{
  margin-top: 15px;
  font-family: var(--font-family) !important;
  font-weight: 500;
  font-size: 16px;
  color: #888888;
  display: none;
}
.faqct .item .desc p{
  font-family: var(--font-family) !important;
}
.faqct .item .desc a{
  color: #55BB8A;
}
.faqct .item .desc img{
  max-width: 90%;
  margin: 10px auto;
}
.pd-box{
  width: 100%;
  margin-top: 70px;
  background-color: #ffffff;
}
.pdct{
  padding: 45px 0 65px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pdct .ib{
  position: relative;
  width: 500px;
  height: 320px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdct .ib .pctime{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #AAAAAA;
}
.pdct .ib .szd-flow{
  position: absolute;
  top: 4%;
  left: 2%;
}
.pdct .ib .szd{
  /*position: absolute;*/
  /*top: 4%;*/
  /*left: 2%;*/
  display: flex;
  align-items: flex-end;
}
.pdct .ib .szd:not(:first-of-type){
  margin-top: 15px;
}
.pdct .ib .szd img{
  height: 17px;
}
.pdct .ib .szd p{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 16px;
  color: #F12C46;
  line-height: 1;
  margin-left: 4px;
}
/*.pdct .ib .szdtwo{*/
/*  position: absolute;*/
/*  top: 15%;*/
/*  left: 2%;*/
/*  display: flex;*/
/*  align-items: flex-end;*/
/*}*/
/*.pdct .ib .szdtwo img{*/
/*  height: 17px;*/
/*}*/
/*.pdct .ib .szdtwo p{*/
/*  font-family: var(--font-family);*/
/*  font-weight: bold;*/
/*  font-size: 16px;*/
/*  color: #F12C46;*/
/*  line-height: 1;*/
/*  margin-left: 4px;*/
/*}*/
/*.pdct .ib .szdthree{*/
/*  top: 26%;*/
/*  left: 2%;*/
/*}*/
/*.pdct .ib .szdfour{*/
/*  top: 36%;*/
/*  left: 2%;*/
/*}*/
.pdct .ib .bg{
  max-width: 100%;
  max-height: 100%;
}
.pdct .content{
  width: calc(100% - 500px - 50px);
}
.pdct .content h3{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 22px;
  color: #222222;
}
.pdct .content h3 a{
  color: #55BB8A;
  font-weight: bold;
  margin-right: 8px;
}
.pdct .content .q{
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*margin: 27px 0;*/
  flex-wrap: wrap;
}
.pdct .content .q .money{
  display: flex;
  align-items: flex-end;
  margin-top: 27px;
}
.pdct .content .q .money .big{
  font-family: Arial;
  font-weight: bold;
  font-size: 30px;
  color: #55BB8A;
  line-height: 1;
}
.pdct .content .q .money .min{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #CCCCCC;
  line-height: 1;
  padding: 0 0 3px 7px;
}
.pdct .content .q .fz,
.pdct .content .pcfz{
  border: 1px solid #D2D2D2;
  border-radius: 16px;
  padding: 4px 14px;
  cursor: pointer;
  margin-top: 27px;
  width: max-content;
}
.pdct .content .q .fz .rq,
.pdct .content .pcfz .rq{
  display: flex;
  align-items: center;
}
.pdct .content .q .fz{
  display: none;
}
.pdct .content .q .fz .code,
.pdct .content .pcfz .code{
  display: flex;
  align-items: center;
}
.pdct .content .q .fz img,
.pdct .content .pcfz img{
  height: 14px;
  margin-right: 7px;
}
.pdct .content .q .fz p,
.pdct .content .pcfz p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #222222;
}
.pdct .content .q .fz span,
.pdct .content .pcfz span{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #55BB8A;
}
.pdct .content .timefx{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 27px;
}
.pdct .content .timefx .left{
  display: flex;
  align-items: center;
}
.pdct .content .timefx .left .share,
.pdct .content .timefx .left .yiwen,
.pdct .content .timefx .left .dz{
  margin-right: 33px;
}
.pdct .content .timefx .left .share img,
.pdct .content .timefx .left .yiwen img{
  height: 18px;
}
.pdct .content .timefx .left .dz.active p{
  color: #55BB8A;
}
.pdct .content .timefx .left .dz .dz2{
  display: none;
}
.pdct .content .timefx .left .dz.active .dz1{
  display: none;
}
.pdct .content .timefx .left .dz.active .dz2{
  display: block;
}
.pdct .content .timefx .left .collect i{
  font-size: 22px;
  color: #AAAAAA;
  transition: 0.3s;
}
.pdct .content .timefx .left .collect.active i{
  color: #55BB8A;
}
.pdct .content .timefx .left .dz{
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.pdct .content .timefx .left .dz img{
  height: 18px;
}
.pdct .content .timefx .left .dz p{
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #AAAAAA;
  line-height: 1;
  margin-left: 5px;
}
.pdct .content .timefx .time{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #AAAAAA;
  display: none;
}
.pdct .content .tz{
  width: 50%;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  background-color: #55BB8A;
  border-radius: 30px;
  margin-top: 27px;
}
/*.pdct .content .caol{*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  margin-top: 48px;*/
/*}*/
.pdct .content .pczkm{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-top: 27px;
}
.pdct .content .pczkm .rq{
  display: flex;
  align-items: center;
}
.pdct .content .pczkm img{
  height: 21px;
  margin-right: 10px;
}
.pdct .content .pczkm p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #55BB8A;
}
.pdct .content .pczkm i{
  font-size: 18px;
  color: #55BB8A;
}
.pd-flowzkm{
  display: none;
}
.pd2ct{
  margin: 0 auto;
  padding: 35px 0 60px 0;
}
.pd2ct .item{
  background-color: #ffffff;
  border-radius: 12px;
  width: calc(100% - 36px);
  padding: 23px 18px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #222222;
}
.pd2ct .item:not(:first-of-type){
  margin-top: 15px;
}
.pd2ct .item a{
  color: #55BB8A;
  font-weight: 400;
  font-size: 16px;
}
.pd2ct .item p:not(:first-of-type){
  margin-top: 10px;
}
.pd2ct .item1 a{
  margin-right: 10px;
}
.pd2ct .wx{
  background-color: #ffffff;
  border-radius: 12px;
  width: calc(100% - 36px);
  padding: 23px 18px;
  margin-top: 15px;
  display: none;
}
.pd2ct .wx .rq{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pd2ct .wx img{
  width: 40px;
}
.pd2ct .wx .txt{
  width: calc(100% - 40px - 15px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pd2ct .wx .txt .wz{
  width: calc(100% - 100px);
}
.pd2ct .wx .txt .wz h3{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #222222;
}
.pd2ct .wx .txt .wz p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #AAAAAA;
}
.pd2ct .wx .txt .fz{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #55BB8A;
  border-radius: 30px;
  border: 1px solid #55BB8A;
  padding: 4px 15px;
  cursor: pointer;
}
.pd2ct .zk{
  background-color: #ffffff;
  border-radius: 12px;
  width: calc(100% - 36px);
  padding: 23px 18px;
  margin-top: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #222222;
}
.pd2ct .zk a{
  color: #55BB8A;
}
.pd2ct .zk p,
.pd2ct .zk span,
.pd2ct .zk a{
  font-size: 16px !important;
}
.pd-flowzkm{
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.pd-flowzkm .ct{
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 0px 20px 0px rgba(153,153,153,0.3);
}
.pd-flowzkm .ct .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 36px);
  padding: 11px 18px;
  background-color: rgba(85,187,138,0.2);
  cursor: pointer;
}
.pd-flowzkm .ct .top img{
  width: 21px;
}
.pd-flowzkm .ct .top p{
  width: calc(100% - 19px - 7px);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #222222;
}
.pd-flowzkm .ct .bt{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 36px);
  padding: 18px 18px;
}
.pd-flowzkm .ct .bt .left{
  display: flex;
  align-items: center;
}
.pd-flowzkm .ct .bt .left .share,
.pd-flowzkm .ct .bt .left .yiwen,
.pd-flowzkm .ct .bt .left .dz{
  margin-right: 33px;
}
.pd-flowzkm .ct .bt .left .share img,
.pd-flowzkm .ct .bt .left .yiwen img{
  height: 18px;
}
.pd-flowzkm .ct .bt .left .collect i{
  font-size: 22px;
  color: #AAAAAA;
}
.pd-flowzkm .ct .bt .left .collect.active i{
  color: #55BB8A;
}
.pd-flowzkm .ct .bt .left .dz{
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.pd-flowzkm .ct .bt .left .dz img{
  height: 18px;
}
.pd-flowzkm .ct .bt .left .dz p{
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #AAAAAA;
  line-height: 1;
  margin-left: 5px;
}
.pd-flowzkm .ct .bt .amx{
  padding: 4px 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  background-color: #55BB8A;
  border-radius: 30px;
}
.appSearch{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  background-color: #FFFFFF;
  width: 100%;
  display: none;
}
.asct{
  margin: 0 auto;
  min-height: calc(100vh - 85px - 11px);
  padding: 11px 0 85px 0;
}
.asct .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.asct .top i{
  font-size: 20px;
  color: #55BB8A;
  cursor: pointer;
}
.asct .top form{
  display: flex;
  align-items: center;
  border: 1px solid #55BB8A;
  width: calc(100% - 2px - 20px - 95px);
  padding: 0 10px;
  height: 26px;
  border-radius: 30px;
  margin: 0 10px 0 20px;
}
.asct .top form button{
  background-color: transparent;
  border: unset;
  outline: none;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.asct .top form i{
  font-size: 14px;
  color: #AAAAAA;
}
.asct .top form input{
  border: none;
  outline: none;
  width: calc(100% - 14px - 5px);
  padding-left: 5px;
  height: 100%;
  background-color: transparent;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: #333333;
}
.asct .top form input::placeholder,
.asct .top form input::-webkit-input-placeholder{
  color: #AAAAAA;
}
.asct .top .ss{
  background-color: #55BB8A;
  outline: none;
  border: none;
  border-radius: 20px;
  width: 45px;
  height: 26px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.asct>h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 18px;
  color: #222222;
  padding-left: 15px
}
.asct .zw{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #AAAAAA;
  margin: 10px 0 14px 0;
  padding-left: 15px;
}
.asct .type{
  display: flex;
  flex-wrap: wrap;
}
.asct .type a{
  margin-right: 10px;
  border-radius: 16px;
  border: 1px solid #BFBFBF;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  line-height: 1;
  padding: 5px 15px;
  margin-bottom: 10px;
}
.tips{
  position: fixed;
  right: 0;
  bottom: 30%;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
}
.tips li a{
  width: 45px;
  height: 45px;
  background-color: #55BB8A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tips li a i{
  font-size: 18px;
  color: #ffffff;
}
.diaolog-wh .content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0 40px 0;
  width: 450px;
}
.diaolog-wh .content i{
  font-size: 34px;
  cursor: pointer;
  color: #ffffff;
  position: absolute;
  right: 0;
  top: -46px;
}
.diaolog-wh .content img{
  width: 35%;
}
.diaolog-wh .content p{
  text-align: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #55BB8A;
}
.diaolog-wh .content p span{
  color: #666666;
}
.diaolog-wh .content .bt{
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
.diaolog-wh .content .bt a{
  width: 110px;
  height: 32px;
  border-radius: 20px;
  border: 1px solid #55BB8A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #55BB8A;
}
.diaolog-wh .content .bt .pbCopy{
  background-color: #55BB8A;
  color: #ffffff;
  margin-left: 25px;
}
.diaolog-zkm .content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 75%;
  width: 450px;
}
.diaolog-zkm .content i{
  font-size: 34px;
  cursor: pointer;
  color: #ffffff;
  position: absolute;
  right: 0;
  top: -46px;
}
.diaolog-zkm .content .top{
  width: calc(100% - 50px);
  padding: 10px 25px;
  background-color: #ffffff;
  border-radius: 12px 12px 0 0;
  background-color: #55BB8A;
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
}
.diaolog-zkm .content .mide{
  background-color: #ffffff;
  border-radius: 0 0 12px 12px;
  width: calc(100% - 60px);
  max-height: calc(100% - 20px - 40px - 45px);
  overflow-y: auto;
  padding: 20px 30px 40px 30px;
}
.diaolog-zkm .content .mide p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #222222;
}
.diaolog-zkm .content .mide p:not(:first-of-type){
  margin-top: 15px;
}
.diaolog-zkm .content .mide .ib{
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #DCDCDC;
  width: max-content;
  margin: 20px auto 0;
}
.diaolog-zkm .content .mide img{
  max-width: 100%;
  height: auto !important;
  margin: 0 auto;
}
.diaolog-fx .content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 450px;
}
.diaolog-fx .content i{
  font-size: 34px;
  cursor: pointer;
  color: #ffffff;
  position: absolute;
  right: 0;
  top: -46px;
}
.diaolog-fx .content .top{
  width: calc(100% - 50px);
  padding: 10px 25px;
  background-color: #ffffff;
  border-radius: 12px 12px 0 0;
  background-color: #55BB8A;
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}
.diaolog-fx .content .top img{
  filter: brightness(500%);
  height: 17px;
  margin-right: 8px;
}
.diaolog-fx .content .mide{
  background-color: #ffffff;
  border-radius: 0 0 12px 12px;
  width: calc(100% - 40px);
  padding: 20px 20px 30px 20px;
}
.diaolog-fx .content .mide .ib{
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #DCDCDC;
  width: max-content;
  margin: 0 auto;
}
.diaolog-fx .content .mide .ib img{
  width: 130px;
  margin: 0 auto;
}
.diaolog-fx .content .mide .type{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.diaolog-fx .content .mide a{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.diaolog-fx .content .mide a:not(:first-of-type){
  margin-left: 25px;
}
.diaolog-fx .content .mide a .rund{
  width: 55px;
  height: 55px;
  background-color: #55BB8A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diaolog-fx .content .mide a .rund img{
  max-height: 50%;
  max-width: 50%;
}
.diaolog-fx .content .mide a p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #55BB8A;
  margin-top: 3px;
}
.diaolog-fx.user .content .mide{
  padding: 40px 20px 50px 20px;
}
.diaolog-fx.user .content .mide .link{
  margin-top: 0;
}
.diaolog-fx .content .mide .link{
  display: flex;
  align-items: center;
  border-radius: 30px;
  border: 1px solid #55BB8A;
  overflow: hidden;
  height: 32px;
  width: calc(100% - 15px);
  padding-left: 15px;
  margin-top: 25px;
}
.diaolog-fx .content .mide .link img{
  width: 15px;
}
.diaolog-fx .content .mide .link p{
  width: calc(100% - 15px - 17px - 60px);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin: 0 10px 0 7px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #222222;
}
.diaolog-fx .content .mide .link .pbCopy{
  background-color: #55BB8A;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
  width: 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.diaolog-edit .bd{
  background-color: #ffffff;
  padding: 20px 20px 40px 20px;
  width: calc(450px - 40px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 6px;
}
.diaolog-edit .bd i{
  position: absolute;
  right: 0;
  top: -46px;
  font-size: 34px;
  color: #ffffff;
}
.diaolog-edit .bd h3{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #414468;
  text-align: center;
}
.diaolog-edit .bd .row{
  width: 100%;
  margin-top: 20px;
}
.diaolog-edit .bd input{
  width: calc(100% - 20px);
  padding: 0 10px;
  border: 1px solid #b3b3b3;
  height: 36px;
  border-radius: 4px;
  outline: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #414468;
}
.diaolog-edit .bd input::placeholder{
  color: #AAAAAA;
}
.diaolog-edit .bd button{
  width: 100%;
  height: 38px;
  border-radius: 4px;
  border: none;
  outline: none;
  background-color: #55BB8A;
  margin-top: 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}
.diaolog-um .bd{
  background-color: #ffffff;
  padding: 20px 20px 40px 20px;
  width: calc(450px - 40px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 6px;
}
.diaolog-um .bd i{
  position: absolute;
  right: 0;
  top: -46px;
  font-size: 34px;
  color: #ffffff;
}
.diaolog-um .bd h3{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #414468;
  text-align: center;
}
.diaolog-um .bd .row{
  width: 100%;
  margin-top: 20px;
}
.diaolog-um .bd .row input{
  width: calc(100% - 20px);
  padding: 0 10px;
  border: 1px solid #b3b3b3;
  height: 36px;
  border-radius: 4px;
  outline: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #414468;
}
.diaolog-um .bd .row input::placeholder{
  color: #AAAAAA;
}
.diaolog-um .bd .dx{
  margin-top: 20px;
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #414468;
}
.diaolog-um .bd .dx input{
  outline: none;
}
.diaolog-um .bd .dx input:not(:first-of-type){
  margin-left: 15px;
}
.diaolog-um .bd button{
  width: 100%;
  height: 38px;
  border-radius: 4px;
  border: none;
  outline: none;
  background-color: #55BB8A;
  margin-top: 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}
.diaolog-points .close{
  position: absolute;
  top: -46px;
  right: 0;
  color: #ffffff;
  font-size: 34px;
  cursor: pointer;
}
.diaolog-points .content{
  width: 450px;
  background-color: #ffffff;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding: 18px 0 35px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.diaolog-points .content .top{
  display: flex;
  align-items: center;
}
.diaolog-points .content .top i{
  font-size: 22px;
  color: #55BB8A;
}
.diaolog-points .content .top p{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 18px;
  color: #55BB8A;
  line-height: 1;
  margin-left: 7px;
}
.diaolog-points .content .qr{
  width: 160px;
  height: 160px;
  border-radius: 10px;
  border: 1px solid #DCDCDC;
  padding: 12px 10px;
  margin: 13px 0;
}
.diaolog-points .content .qr img{
  width: 100%;
  height: 100%;
}
.diaolog-points .content .wx{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 16px;
  color: #222222;
}
.diaolog-points .content a{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 16px;
  color: #55BB8A;
  margin: 15px 0;
}
.diaolog-points .content .copy{
  width: 140px;
  height: 30px;
  border-radius: 18px;
  border: 2px solid #55BB8A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #55BB8A;
  cursor: pointer;
}
.pbmore{
  margin: 60px auto 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #AAAAAA;
  border-radius: 25px;
  border: 1px solid #DCDCDC;
  width: 250px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  display: block;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.pbmore::before{
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
  width: 0;
  height: 100%;
  background-color: #55BB8A;
  z-index: -1;
}
.pbmore:hover{
  border-color: #55BB8A;
  color: #ffffff;
}
.pbmore:hover::before{
  width: 100%;
}
.tag{
  width: 100%;
  margin: 28px 0 45px 0;
}
.tag .ct{
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-height: 75px;
  overflow: hidden;
}
.tag .ct a{
  flex-shrink: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #999999;
  border-radius: 14px;
  border: 1px solid #BFBFBF;
  padding: 6px 20px;
  line-height: 1;
  transition: 0.3s;
  margin-right: 10px;
  margin-bottom: 10px;
  height: max-content;
}
.tag .ct a:hover{
  color: #55BB8A;
}
.tag .ct a.active{
  color: #55BB8A;
}
.topnav{
  margin-top: 90px;
}
.topnav .ct{
  margin: 0 auto;
}
.topnav .ct .mide{
  display: flex;
  align-items: center;
  width: calc(100% - 2px - 18px);
  border-radius: 6px;
  border: 1px solid #DCDCDC;
  padding: 5px 9px;
}
.topnav .ct a,
.topnav .ct span{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #999999;
}
.topnav .ct span{
  margin: 0 5px;
}
.topnav .ct a:last-of-type{
  color: #55BB8A;
}
.page {
  width: 100%;
  margin-top: 40px;
}
.page .el-pagination {
  text-align: center;
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  padding: 0px;
}
.page .el-pagination__total{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}
.page .el-pagination .btn-prev {
  width: 37px;
  height: 37px;
  margin-right: 5px;
  padding: 0;
  background: transparent;
  border: 1px solid #D2D2D2;
  border-radius: 6px;
}
.page .el-pagination .btn-next {
  width: 37px;
  height: 37px;
  padding: 0;
  background: transparent;
  border: 1px solid #D2D2D2;
  border-radius: 6px;
}
.page .el-pager li {
  width: 37px;
  height: 37px;
  text-align: center;
  line-height: 37px;
  background: #ffffff;
  border: 1px solid #D2D2D2 !important;
  margin-right: 5px;
  padding: 0px;
  border-radius: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #222222;
}
.page .el-pager li.active {
  background-color: #55BB8A;
  color: #ffffff;
  border-color: #55BB8A !important;
}
.page .el-pagination .el-pager li:hover {
  color: #FFFFFF !important;
  background-color: #55BB8A;
}
.page .el-pagination .el-pager .btn-quicknext:hover {
  color: #55BB8A;
}
.footer{
  background-color: #55BB8A;
  width: 100%;
}
.fct{
  margin: 0 auto;
  padding: 35px 0 25px 0;
}
.fct .mide{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.fct .mide .left{
  width: calc(100% - 400px - 20px);
  display: flex;
}
.fct .mide .left .lm{
  display: flex;
  justify-content: space-between;
}
.fct .mide .left .item{
  width: max-content;
}
.fct .mide .left .lm:not(:first-of-type){
  margin-left: 70px;
}
.fct .mide .left .item:not(:first-of-type){
  margin-left: 70px;
}
.fct .mide .left .item h3{
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 18px;
  color: #fefe03;
  line-height: 26px;
  height: 26px;
}
.fct .mide .left .item .txt{
  margin-top: 15px;
}
.fct .mide .left .item .txt a{
  display: block;
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 14px;
  color: #FFFFFF;
  transition: 0.3s;
}
.fct .mide .left .item .txt a:hover{
  text-decoration: underline;
}
.fct .mide .left .item .txt a:not(:first-of-type){
  margin-top: 12px;
}
.fct .mide .right{
  width: 400px;
}
.fct .mide .right .desc{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  width: calc(100% - 40px);
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
}
.fct .bottom{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.fct .bottom a{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: #FFFFFF;
}
.appft{
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 102;
  background-color: #f8f8f8;
  border-radius: 25px 25px 0 0;
  box-shadow: 0px 0px 20px 0px rgba(153,153,153,0.3);
  display: flex;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.appft a{
  width: calc((100% - 3px) / 4);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.appft a:not(:first-of-type){
  border-left: 1px solid #E5E5E5;
}
.appft a img{
  height: 20px;
}
.appft a p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  margin-top: 7px;
}
.brandSs{
  margin-top: 25px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  width: 300px;
  height: 34px;
  border: 1px solid #55BB8A;
}
.brandSs input{
  width: calc(100% - 50px - 20px);
  padding: 0 10px;
  height: 100%;
  border: none;
  outline: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #555555;
}
.brandSs button{
  width: 50px;
  height: 100%;
  outline: none;
  border: none;
  background-color: #55BB8A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.brandSs button i{
  font-size: 18px;
  color: #FFFFFF;
}