* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #333;
}
ul, ol {
  list-style: none;
}
.hidden{
  overflow: hidden;
}
.bg-pink{
  background: linear-gradient(90deg, #F3F6F8 0%, #E9E8F7 20%, #F4F5F9 40%, #F4E9F3 80%, #fff 100%);
}
.bg-lightpink{
  background: linear-gradient(90deg, rgba(240,240,254,0.2) 18%, rgba(252,234,245,0.2) 54%, rgba(236,232,253,0.2) 75%, rgba(241,240,253,0.2) 95%, rgba(251,230,242,0.2) 100%);
}
.bg-initial{
  background: initial !important;
}
/* 新增字体包 */
@font-face {
  font-family: 'HONORSansExtraLight';
  src: url('../fonts/HONORSans-ExtraLight.ttf') format('truetype');
}

@font-face {
  font-family: 'InterBold';
  src: url('../fonts/Inter-Bold-4.otf') format('opentype');
}
@font-face {
  font-family: 'InterThin';
  src: url('../fonts/Inter-Thin-11.otf') format('opentype');
}
@font-face {
  font-family: 'LatoRegular';
  src: url('../fonts/Lato-Regular-2.ttf') format('truetype');
}
@font-face {
  font-family: 'PlayfairDisplayBlack';
  src: url('../fonts/PlayfairDisplay-Black-2.ttf') format('truetype');
}
@font-face {
  font-family: 'PTSerif';
  src: url('../fonts/PTSerif.ttf') format('truetype');
}
@font-face {
  font-family: 'UbuntuMonoBI';
  src: url('../fonts/UbuntuMono-BI-11.ttf') format('truetype');
}
@font-face {
  font-family: 'InterMedium';
  src: url('../fonts/Inter-Medium-8.otf') format('opentype');
}
@font-face {
  font-family: 'InterRegular';
  src: url('../fonts/Inter-Regular-9.otf') format('opentype');
}
@font-face {
  font-family: 'InterSemiBold';
  src: url('../fonts/Inter-SemiBold-10.otf') format('opentype');
}
@font-face {
  font-family: 'LatoBold';
  src: url('../fonts/Lato-Bold-4.ttf') format('truetype');
}
@font-face {
  font-family: 'LatoMedium';
  src: url('../fonts/Lato-Medium-8.ttf') format('truetype');
}
.hero h1,
.hero p,
.container p,
.container .text,
.about-text h3,
.banner .name,
.question-container .header,
.container .name,
.k-flow .section-title,
.data-container .title,
.k-Insight .section-title,
.trending .section-title,
.rankings .section-title,
.question-container .msg .name,
.insight-list li .box .name,
.swiper-container .section-title,
.customize-select .list li{
  font-family: 'InterBold' !important;
}

.about-text p{
  font-family: 'InterMedium' !important;
}
.product-list .product-info .tip,
.product-list .product-info .tag,
.product-list .product-info .text,
.detail-list .name,
.about-text p,
.detail-list .desc,
.question .list,
.menu-list li:hover a, .menu-list li.active a,
.menu-list li,
.flow-content .tip,
.flow-content .tag,
.flow-content .text,
.menu-list li a{
  font-family: 'InterRegular';
}
.data-container .title,
.flow-content .desc,
.product-list .product-info .name{
  font-family: 'PTSerif';
}
.PTSerif{
  font-family: 'PTSerif' !important;
}
.swiper-box .info .tip{
  font-family: 'LatoBold' !important;
}
.footer-content .footer-column li{
  font-family: 'LatoRegular' !important;
}
.question-container .msg p{
  font-family: 'HONORSansExtraLight' !important;
}
header {
  /* height: 70px; */
  overflow: hidden;
  /* border-bottom: 1px solid #D8D8D8; */
  position: fixed;
  width: 100%;
  left: 0;
  top:0;
  background:rgba(255, 255, 255, .4);
  z-index: 99999;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* height: 70px; */
  padding: 16px 50px;
  background: #fff;
  /* max-width: 1200px; */
  border-bottom: 1px solid #C3C3C3;
  margin: 0 auto;
}
.header-content #menu,
.header-content #search{
  display: none;
}
.header-content .logo{
  font-size: 0;
}
.header-content .logo img{
  width: 226px;
  height: 56px;
}
.header-content .nav-links {
  display: flex;
  gap: 30px;
}
.header-content .nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 16px;
}
.header-content .nav-links a.active,
.header-content .nav-links a:hover{
  color:#7B2BF5;
}
.header-content .header-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header-content .header-right a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.header-content .header-right .business{
  border: 1px solid #CC4FEF;
  border-radius: 20px;
  padding: 8px 20px;
}
.header-right .chat{
  position: relative;
  height: 65px;
  line-height: 65px;
}
.header-right .chat .name{
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
}
.header-right .chat .name:hover{
  color: #7B2BF5;
}
.header-right .chat .list{
  /* display: none; */
  position: fixed;
  top: 93px;
  right: 160px;
  background: #fff;
  border-top: 1px solid #ccc;
  padding: 5px 40px 0;
  z-index: 999;
  display: flex;
  gap: 2vw;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
}
.header-right .chat:hover .list{
  top: 83px;
  opacity: 1;
  visibility: visible;
}
.header-menu,
.header-mobile-more{
  display: none;
}
.header-more{
  width: 100%;
  /* height: 100px; */
  position: absolute;
  left: 0;
  top: 97px;
  padding: 2vw 7vw;
  min-height: 300px;
  background: rgba(255, 255, 255, 0.8);
}
.header-more .text{
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-more .text a{
  color: #666666;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.header-more .text a:hover{
  color: #7B2BF5;
}
.header-more .search-input{
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-more .search-input .btn{
  display: inline-block;
  width: 10vw;
  cursor: pointer;
  color: #000;
  text-decoration: none;
}
.header-more .search-input .btn:hover{
  color: #7B2BF5;
}
.header-more input{
  color: #666666;
  background: initial;
  border: none;
  border-bottom: 1px solid #000000;
  width: 100%;
  font-size: 14px;
  padding: 5px 0;
  margin-bottom: 10px;
}
.header-more input:focus{
  outline: none;
}
.header-more .items{
  color: #666666;
  position: relative;
  cursor: pointer;
  display: flex;
}
.header-more .items .select{
  color: #222222;
  margin-left: 5px;
}
.header-more  .items .list{
  position: absolute;
  display: none;
  left: 90px;
  background: #FFFFFF;
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
  border-radius: 5px;
  border: 1px solid #BABABA;
  padding: 10px;
  font-size: 14px;
  min-width: 100px;
}
.header-more  .items .list a{
  color: #222;
  text-decoration: none;
}
.header-more .items .select:hover .list{
  display: block;
}
.header-more  .items .list li{
  padding: 5px 0;
}
.header-more  .items .list li:hover a{
  color: #7B2BF5;
}
.container{
  margin-top: 98px;
}
.container2{
  margin-top: 140px;
}
.container2 .aboutus{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
footer {
  background: #F3F1EE;
  color: #fff;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
.footer-content {
  gap: 30px;
  width: 70%;
  margin: 0 auto;
  display: flex;
}
.footer-content .footer-column{
  width: 33.3%;
  position: relative;
  /* padding-left: 4%; */
}
.footer-content .footer-column:nth-child(2) {
  min-width: 372px;
}
.footer-content .footer-column:after{
  content: '';
  width: 1px;
  height: 100%;
  background: #cdcdcd;
  position: absolute;
  left: -2vw;
  top: 0;
}
.footer-content .footer-column:first-child:after{
  background: inherit
}
.footer-content .footer-column:last-child{
  /* width: 30%; */
}
.footer-content .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-content .footer-column li {
  line-height: 40px;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: #000;
}
.footer-content .footer-column .chat{
  display: flex;
  gap: 2.5vw;
  margin: 10px 0 50px;
}
.footer-content .footer-column .email{
  width: 80%;
  position: relative;
}
.footer-content .footer-column input{
  border: none;
  background: inherit;
  border-bottom: 1px solid #838383;
  width: 100%;
  padding: 5px 20px 5px 5px;
  color: #131519;
  /* pointer-events: none; */
}
.footer-content .footer-column input:focus{
  outline: none;
  border-bottom: 1px solid #7B2BF5;
}
.footer-content .footer-column .dot{
  position: absolute;
  right: 0;
}
.footer-content .footer-column a {
  color: #000;
  text-decoration: none;
  font-family: 'LatoRegular', Arial, sans-serif;
}
.footer-content .footer-column a:hover{
  color: #7B2BF5;
}

.swiper-box{
  position: relative;
  padding-bottom: 60px;
  overflow: hidden;
  background: #fff;
  z-index: 1;
  border-bottom: 1px solid #C5C4C3;
}
.swiper-box .swiper-slide{
  padding-bottom: 80px;
  /* width: calc(30% - 30px) !important; */
}
.swiper-box .swiper-slide img{
  object-fit: cover;
  height: 32vw;
}
.swiper-box .swiper-container{
  margin-bottom: 20px;
  position: relative;
  width: 130%;
  margin-left: -15%;
}
.swiper-box .swiper-slide .img-box{
  display: flex;
  gap: 20px;
}
.hero .tab-info{
  display: none;
}
.swiper-box .info{
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: -1vw;
  transform: translate(-50%, 0);
  padding: 2vw 3vw;
  width: 85%;
  min-height: 10vw;
  text-align: center;
  /* font-family: math; */
  /* font-weight: 600; */
  color: #000;
  display: none;
}
.swiper-box .swiper-slide-next .info{
  display: block;
}
.swiper-box .info .tip{
  text-align: center;
  font-size: max(.85vw, 12px);
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: max(1vw, 12px);
  font-weight: bold;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  opacity: 0;
}
.swiper-box .swiper-slide-next .tip {
  animation: info-fade-in .6s forwards .2s;
}
.swiper-box .info .text{ 
  font-size: 2.6vw;
  margin-top: 1vw;
  letter-spacing: .5px;
  opacity: 0;
  font-family: 'PTSerif' !important;
}
.swiper-box .swiper-slide-next .text {
  animation: info-fade-in .6s forwards .2s;
}
@keyframes info-fade-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  40% {
    transform: translateY(-5px);
  }
  80% {
    transform: translateY(5px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}
.swiper-box .swiper-pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
  z-index: 1;
}
.swiper-box .swiper-pagination-bullet{
  background: #595959;
}
.swiper-box .swiper-pagination-bullet-active{
  background: #000000;
}
.swiper-box .swiper-btn{
  display: inline-block;
  width: 20px;
  height: 15px;
  background: url(../images/arrow.png) 0 0 no-repeat;
  background-size: 100%;
  cursor: pointer;
  position: absolute;
  bottom: 55px;
  z-index: 2;
}
.swiper-box .swiper-prev{
  left: 50%;
  margin-left: -14.5vw;
  transform: rotate(180deg);
}
.swiper-box .swiper-next{
  left: 50%;
  margin-left: 14.5vw;
  bottom: 59px;
}
.swiper-container .info{
  display: none;
}
.product-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  padding-top: 30px;
  border-right: 1px solid #C5C4C3;
  width: 60%;
}
.product-list .product-item {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #C5C4C3;
  padding-bottom: 30px;
}
.product-list .product-item:last-child{
  border-bottom: none;
}
.product-list .product-item .img-box{
  width: 20vw;
  height: 25vw;
  /* border-radius: 5px; */
  overflow: hidden;
  position: relative;
}
.product-list .product-img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}
.product-list .product-item .card{
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: max(1vw, 14px);
  font-weight: bold;
  color: #fff;
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s ease; 
  text-decoration: none;
}
.product-list .product-item .card .text{
  width: max(3vw, 36px);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease; 
}
.product-list .product-item .img-box:hover .card{
  display: flex;
  opacity: 1;
}
.product-list .product-item .img-box:hover .text {
  opacity: 1;
  transform: translateY(0px);
}

.product-list .product-info {
  flex: 1;
  position: relative;
}
.product-list .product-info .tip{
  color: #222222;
  font-size: max(.75vw, 12px);
  font-weight: bold;
  font-family: 'InterRegular' !important;
}
.product-list .product-info .name {
  margin: 1vw 0;
  font-size: max(2.1vw, 20px);
  width: 30vw;
  width: 60%;
  line-height: max(2.7vw, 20px);
  font-weight: 400;
  font-family: 'PTSerif' !important;
  letter-spacing: 1px;
}
.product-list .product-info .tag{
  margin-bottom: 1vw;
  font-size: max(.75vw, 12px);
  color: #757575;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: 'InterRegular' !important;
}
.product-list .product-info .text {
  color: #222222;
  font-size: max(.95vw, 14px);
  width: 40%;
  font-family: 'InterRegular' !important;
  line-height: max(1.5vw, 20px);
}
.product-list .product-info .more{
  position: absolute;
  right: 0;
  bottom: 20px;
  font-size: max(.9vw, 12px);
  cursor: pointer;
  color: #222;
  font-family: 'LatoRegular', Arial, sans-serif;
}
.product-list .product-info .more:hover{
  color: #7B2BF5 ;
}
.product-list .section-title{
  display: none;
}
.trending{
  margin-top: 2vw;
  border-top: 1px solid #C5C4C3;
}
.trending .section-title{
  width: 60%;
  margin: 0 auto; 
  padding: 2vw 0 0; 
  border-right: 1px solid #C5C4C3; 
  text-align: left;
  letter-spacing: 3px;
  /* font-size: max(1.25vw, 14px); */
}
.brand-box{
  width: 60%;
  min-height: calc(100vh - 128px);
  margin: 105px auto;
}
.brand-box .card{
  padding: 30px 0 10px;
}
.brand-box .text{
  font-weight: bold;
  font-size: 1vw;
  height: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-box .list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 20px 0 40px;
}
.brand-box .list li{
  width: calc(100% / 8 - 35px);
  text-align: center;
  font-size: 12px;
  color: #222222;
}
.brand-box .img-box{
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-box .img-box img{
  width: 100%;
}
.brand-box a{
  color: #222;
  text-decoration: none;
  transition: all .3s;
}
.brand-box a:hover{
  color: #703AF2;
}
.menu-list{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  padding: 3vw;
  gap: 1vw;
  border-bottom: 1px solid #C5C4C3;
}
.menu-list li{
  font-size: 1vw;
  white-space: nowrap;
  border-radius: 26px;
  /* border: 1px solid #D4D2D8; */
  padding: .4vw 1vw;
  cursor: pointer;
}
.menu-list li:hover{
  color: #fff;
  background: linear-gradient(to bottom, #DB53EF, #703AF2);
}
.menu-list li.active{
  color: #fff;
  background: linear-gradient(to bottom, #DB53EF, #703AF2);
}
.menu-list li a{
  color: #222;
  text-decoration: none;
}
.menu-list li:hover a,
.menu-list li.active a{
  color: #fff;
}
.aboutus{
  background: #fff;
  width: 75%;
  margin: auto;
  padding: 1vw 12vw 4vw;
  border-radius: 20px;
  color: #222222;
  min-height: calc(100vh - 98px - 400px);
}
.aboutus .title{
  text-align: center;
  font-size: max(1.6vw, 18px);
  font-weight: 600;
  font-family: 'PlayfairDisplayBlack' !important;
}
.aboutus .tip{
  text-align: center;
  margin-top: 2vw;
  font-size: max(.85vw, 12px);
}
.aboutus .desc{
  text-align: center;
  margin-top: 2vw;
  border-bottom: 1px solid #979797;
  font-size: max(.9vw, 12px);
}
.aboutus .desc span{
  position: relative;
  top: .5vw;
  background: #fff;
  padding: 0 2vw;
}
.aboutus .info{
  margin-top: 3vw;
  min-height: 500px;
}
.aboutus p{
  margin-top: max(1.2vw, 10px);
  font-size: max(1vw, 12px);
  line-height: max(1.6vw, 20px);
  font-family: 'LatoRegular' !important;
  font-weight: 300;
  color: #000;
  line-height: 27px;
}
.aboutus p b{
  font-weight: bold;
  font-family: 'LatoBold' !important;
}
.aboutus .name{
  padding-top: 1.2vw;
  font-weight: 500;
}
.aboutus .paragraph{
 padding-left: 2vw;
}
.aboutus .paragraph p {
  position: relative;
}
.aboutus .paragraph p::before{
  content: '';
  width: 5px;
  height: 5px;
  background: #000;
  position: absolute;
  border-radius: 50%;
  left: -.8vw;
  top: .6vw;
}
.brand-nav{
  display: none;
}
@media (max-width: 1200px) {
  .aboutus .paragraph p::before{
    width: 3px;
    height: 3px;
    top: .7vw;
  }
}

.aboutus a{
  color: #2f7ee6;
}
.k-Insight{
  background: linear-gradient(to right, #FBF6FA 0%, #F9F8FD 50%, #FBF6FA 100%) !important;
  padding: 30px 0;
  border-top: 1px solid #C3C3C3;
  border-bottom: 1px solid #C3C3C3;
  /* margin-bottom: 40px; */
}
.k-Insight .section-title{
  letter-spacing: 1.5px;
}
.insight-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 1vw auto 0;
  width: 62%;
  gap: 1vw;
}
.insight-list li {
  width: calc(100% / 4);
  transition: all .3s;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.insight-list li .img{
  width: 100%;
  height: 20vw;
  /* border-radius: 10px; */
  overflow: hidden;
}
.insight-list li img{
  width: 33vw;
  height: 20vw;
}
/* .insight-list li:hover{
  width: calc((100% - 50vw) / 4);
} */
/* .insight-list li.hover:hover{
   width: 50vw;
} */
.insight-list li .box{
  color: #222222;
  margin-left: 1vw;
}
.insight-list li .box .name{
  font-size: .9vw;
  font-weight: bold;
}
.insight-list li .box .info{
  font-size: max(.85vw, 12px);
  /* margin-top: 0; */
  line-height: max(1.4vw, 20px);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  color: #222222;
  opacity: .9;
  font-family: 'InterRegular' !important;
}
.banner{
  margin-top: 98px;
  height: 43vw;
  position: relative;
}
.banner .box{
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.banner .name{
  font-size: 4vw;
  color: #FFFFFF;
  line-height: max(5vw, 20px);
  letter-spacing: 2px;
  font-weight: 600;
}
.mobile-banner{
  display: none;
}
.search-bar {
  width: max(30vw, 530px);
  margin: 15px auto;
  position: relative;
  display: flex;
  background: #fff;
  border-radius: 30px;
  /* overflow: hidden; */
  padding: 6px 15px;
}
.search-bar .select{
  width: 30%;
  border: 1px solid #fff;
  background: #fff;
  outline: none;
  font-size: max(.85vw, 14px);
  cursor: pointer;
}
.search-bar .select:after{
  content: '';
  width: 1px;
  height: 40%;
  background: #DCDCDC;
  position: absolute;
  right: -12px;
  top: 30%;
}
.search-bar .select:focus{
  border: 1px solid #fff;
}
.search-bar .select .selected{
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 95%;
  font-family: 'InterMedium' !important;
  font-weight: normal;
}
.search-bar .select .list li{
  font-family: 'InterMedium' !important;
  font-weight: normal;
}
.search-bar .select .selected .more{
  top: 0;
}
.search-bar .select .list{
  width: 170px;
  max-width: none;
}
.search-bar input {
  width: 70%;
  padding: 12px 40px 12px 25px;
  border: none;
  font-size: 16px;
  outline: none;
  font-size: max(.85vw, 14px);
}
.search-bar input::placeholder{
  color: #A3A3A3 ;
}
.search-bar .search {
  display: inline-block;
  width: 38px;
  height: 38px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -19px;
  background: linear-gradient(to bottom, #DB53EF, #703AF2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.search-bar .search:hover img{
  transform: scale(1.05);
  transition: all 0.3s;
}
.search-bar .search a{
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-title{
  text-align: center;
  text-transform: uppercase;
  margin: 1vw 0 1vw 0;
}
.section-title.capitalize{
  text-transform: capitalize;
}
/* .rankings {
  overflow: hidden;
}
.rankings .list{
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
} */
.rankings .section-title{
  margin: 2vw auto;
  letter-spacing: 3px;
}
.rankings-container a{
  color: #222;
  text-decoration: none;
  transition: all 0.3s;
}
.rankings-container a:hover{
  color: #703AF2;
}
.rankings-container li{
  flex: 0 0 15vw;
}
.rankings-container .desc{
  width: 92%;
  margin-left: 3.2%;
  margin-top: -8%;
  line-height: max(2vw, 30px);
  background:rgb(000, 000, 000);
  color: #fff;
  text-align: center;
  font-size: max(.9vw, 12px);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.rankings-container .name{
  margin: 0 5% 0;
  font-size: 1vw;
  font-family:'LatoRegular' !important;
}
.question{
  width: 70%;
  margin: 0 auto 2vw; 
}
.question .section-title{
  margin: max(1.5vw, 20px) auto;
  font-size: max(1.26vw, 20px);
  line-height: 25px;
  letter-spacing: 3px;
}
.question .list{
  margin-bottom: 2vw;
}
.question .list li{
  border-radius: max(1vw, 10px);
  border: 1px solid #979797;
  margin-bottom: max(1.5vw, 15px);
  overflow: hidden;
  transition: all .3s;
  letter-spacing: 1px;
  font-family:'LatoMedium' !important ;
  font-size: max(1.26vw, 14px);
}
.question .list .ques{
  padding: max(1.4vw, 10px) max(1.8vw, 15px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family:'InterRegular' !important ;
}
.question .list .more {
  display: inline-block;
  width: max(2vw, 20px);
  flex: 0 0 max(2vw, 20px);
  height: max(2vw, 20px);
  background: url(../images/down.png) 0 0 no-repeat;
  background-size: 100%;
  transition: all 0.2s ease; 
}
.question .list li:hover .ques,
.question .list li.active .ques{
  background: #F8E2FB;
}
.question .list .ans{
  padding: max(1.4vw, 10px) max(1.8vw, 15px);
  line-height: max(2vw, 20px);
  display: none;
  font-family:'InterRegular' !important ;
}
.question .list li.active .ans{
  display: block;
}
.question .list li.active .more{
  transform: rotate(180deg);
}
.question .ques-img{
  display: inline-block;
  width: 100%;
  height: 39vw;
  background: url(../images/ques-img2.png) 0 0 no-repeat;
  background-size: 100%;
}
.select-box{
  width: fit-content;
  display: inline-block;
  cursor: pointer;
  position: relative;
  z-index: 1;
  min-height: 3vw;
}
.select-box .cur{
  margin: 0;
  border: 1px solid transparent;
  padding: max(.4vw, 2px) max(1vw, 15px);
  font-size: max(.8vw, 12px);
  border-radius: 20px;
  background: 
    linear-gradient(#fff, #fff) padding-box, /* 内容背景色 */
    linear-gradient(90deg, #CC4FEF, #753BF2) border-box; /* border渐变色 */
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 27px;
  font-weight: bold;
}
.select-box .list{
  position: absolute;
  top: max(2.8vw, 40px);
  box-shadow: 0px 2px 4px 3px rgba(109,107,107,0.22);
  border-radius: max(1vw, 10px);
  padding: max(1vw, 10px) max(1vw, 10px);
  line-height: max(1.2vw, 20px);
  background: #fff;
  text-align: left;
  display: none;
}
.select-box .list li{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .3vw;
  font-size: max(.8vw, 12px);
  color: #6A6A67;
  white-space: nowrap;
  transition: .3s all;
}
.select-box .list li:hover{
  color: #222222;
}
.select-box .checkbox {
  display: inline-block;
  width: max(1vw, 10px);
  height: max(1vw, 10px);
  border-radius: 50%;
  border: 1px solid #6A6A67;
  position: relative;
}
.select-box li.active{
  color: #222222;
}
.select-box li.active .checkbox{
  border: 1px solid transparent;
  border-radius: 50%;
  background: 
    linear-gradient(#fff, #fff) padding-box, /* 内容背景色 */
    linear-gradient(90deg, #CC4FEF, #753BF2) border-box; /* border渐变色 */
}
.select-box li.active .checkbox:after{
  content: '';
  position: absolute;
  width: max(.9vw, 8px);
  height: max(.9vw, 8px);
  background: url(../images/tick.png) 0 0 no-repeat;
  background-size: 100%;
}
.select-box:hover .list{
  display: block;
}
.cookie-box{
  background: rgba(000, 000, 000, .6);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  max-height: 100vh;
  /* display: none; */
}
.cookie-box .card{
  width: 600px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  padding: 1.5vw 1.5vw 2vw;
  border-radius: 5px;
  text-align: center;
}
.cookie-box .card .header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2vw;
}
.cookie-box .card .logo{
  display: inline-block;
  width: 200px;
  height: 55px;
  background: url(../images/logo2.png) 0 0 no-repeat;
  background-size: 100%;
}
.cookie-box .card .header .name {
  font-size: max(1.5vw, 20px);
  color: #fff;
}
.cookie-box .card .header .close{
  display: inline-block;
  cursor: pointer;
  width: max(1.5vw, 20px);
  height: max(1.5vw, 20px);
  background: url(../images/delete.png) 0 0 no-repeat;
  background-size: 100%;
}
.cookie-box .card .cont{
  /* width: 80%; */
  padding: 0 10%;
  margin: 0 auto;
  max-height: calc(100vh - 300px);
  overflow: auto;
  font-size: max(.8vw, 12px);
  color: #fff;
  line-height: max(1.6vw, 20px);
}
.cookie-box .card .msg{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.cookie-box .checkbox{
  width: max(3.5vw, 40px);
  height: max(1.8vw, 20px);
  background: #9b9b9b;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cookie-box .checkbox .btn{
  display: inline-block;
  width: max(1.5vw, 14px);
  height: max(1.5vw, 14px);
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 3px;
  top: 3px;
  transition: all .2s ease-in-out;
}
.cookie-box .checkbox.active{
  background: #13C164;
}
.cookie-box .checkbox.active .btn{
  left: 51%;
}
.cookie-box .card .cont a{
  display: inline-block;
  color: #fff;
  font-size: max(.8vw, 12px);
  margin: 1.2vw 0;
}
.cookie-box .card .btn-box{
  width: 18vw;
  margin: 10px auto 0;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
.cookie-box .card .reject-btn{
  display: inline-block;
  color: #fff;
  background: initial;
  border: 2px solid #fff;
  font-size: max(1vw, 16px);
  padding: .5vw 0;
  border-radius: 5px;
  cursor: pointer;
}
.cookie-box .card .reject-btn:hover{
  color: #713AF2;
  border-color: #713AF2;
}
.cookie-box .card .accept-btn{
  display: inline-block;
  color: #fff;
  background: linear-gradient( 90deg, #D150EF 0%, #713AF2 100%);
  font-size: max(1vw, 16px);
  border: none;
  padding: .5vw 0;
  border-radius: 5px;
  cursor: pointer;
}
.cookie-box .card .accept-btn:hover{
  background: linear-gradient( 90deg, #713AF2 0%, #D150EF 100%);
}
.cookie-box .card .set-btn{
  cursor: pointer;
  font-size: max(1vw, 16px);
  color: #fff;
}
.cookie-box .card .set-btn:hover{
  color: #713AF2;
}
.cookie-box2 .card .cont{
  padding: 0 5%;
}
.question-container{
  /* margin-top: 70px; */
  padding-bottom: 30px;
}
.question-container .header{
  background: #2D0777;
  position: relative;
  height: 14vw;
}
.question-container .header .text{
  font-size: max(1.6vw, 18px);
  color: #fff;
  text-align: left;
  position: absolute;
  top: 50%;
  left: 13%;
  transform: translate(0, -50%);
}
.question-container .info{
  width: 70%;
  margin: 2vw auto;
  display: flex;
  position: relative;
}
.question-container .nav{
  width: max(15vw, 200px);
  position: absolute;
  background: #fff;
}
.question-container .nav.fixed{
  position: fixed;
  left: 15%;
  top: 116px;
}
.question-container .nav .tit{
  font-size: max(1.1vw, 16px);
  font-family: 'InterMedium';
  margin-bottom: 1vw;
  padding-left: 1vw;
}
.question-container .nav .tip{
  font-size: max(.9vw, 12px);
  color: #2D0777;
  border-left: 4px solid #2D0777;
  padding: .5vw 0 .5vw 1vw;
  margin-bottom: 1vw;
}
.question-container .nav .list{
  padding-left: 1vw;
}
.question-container .nav.fixed .list{
  max-height: 500px;
  overflow: auto;

}
.question-container .nav .list li{
  font-family: 'InterRegular';
  font-size: max(.85vw, 12px);
  line-height: max(1.4vw, 20px);
  padding: .4vw 0;
  cursor: pointer;
}
.question-container .nav .list li:hover{
  color: #713AF2
}
.question-container .msg{
  margin-left: max(18vw, 230px);
  width: calc(100% - max(18vw, 230px));
  font-size: max(.85vw, 14px);
  font-family: 'InterRegular';
  line-height: max(1.4vw, 20px);
}
.question-container .msg .tit{
  display: inline-block;
  font-size: max(.9vw, 14px);
  margin: 1vw 0 2vw;
  padding: .7vw 1.2vw;
  background: #2D0777;
  color: #fff;
}
.question-container .msg .name{
  font-size: max(1.2vw, 20px);
  margin: max(1.8vw, 20px) 0 max(1.4vw, 15px);
  /* font-weight: bold; */
  line-height: max(1.2vw, 26px);
  color: #000;
  font-family: 'PlayfairDisplayBlack' !important;
}
.question-container .mobile-tit{
  display: none;
}
.customize-select{
  width: 100%;
  position: relative;
}
.customize-select .selected{
  border-bottom: 1px solid #979797;
  font-size: max(.75vw, 14px);
  padding: 15px 0 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.customize-select .selected .cur{
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
}
.customize-select .selected .more{
  display: inline-block;
  width: 16px;
  height: 12px;
  background: url(../images/more-gray.png) no-repeat;
  background-size: 100%;
  position: relative;
  top: 5px;
}
.customize-select .list{
  background: #FFFFFF;
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
  border-radius: 5px;
  border: 1px solid #BABABA;
  font-size: max(.75vw, 14px);
  padding: 5px 0;
  width: fit-content;
  max-width: 100%;
  margin-top: 2px;
  display: none;
  position: absolute;
  z-index: 111;
}
.customize-select .list li{
  padding: 12px 15px;
  cursor: pointer;
  white-space: nowrap;
  text-align: left;
}
.customize-select .list li:hover{
  color: #7C00FF;
}
.nav-right{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 11111;
}
.nav-right .border{
  text-align: right;
  padding: 0 3vw;
  position: relative;
  z-index: 1;
}
.nav-right .h{
  border-top: 1px solid #C5C4C3;
  height: 20px;
  background: #fff;
  z-index: 1;
  position: relative;
}
.nav-right .btn{
  width: 14vw;
  font-size: max(.95vw, 14px);
  height: 2.6vw;
  background: linear-gradient(90deg, #D150EF 0%, #713AF2 100%);
  border-radius: 4px 4px 0px 0px;
  color: #fff;
  border: none;
  cursor: pointer;
}
.nav-right .btn:hover {
  background: linear-gradient(to right, #703AF2, #D150EF);
  box-shadow: 0 4px 16px rgba(111,51,244,0.22);
  transition: all 0.25s;
}
.nav-right .btn{
  position: relative;
}
.nav-right .remove{
  position: absolute;
  right: -16px;
  top:-16px;
  display: inline-block;
  border-radius: 50%;
  width: max(1vw, 15px);
  height: max(1vw, 15px);
  background: linear-gradient(90deg, #D150EF 0%, #713AF2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}
.nav-right .icon-remove {
  display: inline-block;
  width: max(.7vw, 12px);
  height: max(.75vw, 10px);
  background: url(../images/delete.png) no-repeat center center;
  background-size: 100%;
}
.nav-right .btn.active .remove{
  display: block;
}
.load-more{
  text-align: center;
  color: #0B0B0B;
  padding: 1vw 0 2vw;
  margin: 0 auto;
  width: 60%;
  border-right: 1px solid #C5C4C3;
  cursor: pointer;
}
.load-more .box{
  display: inline-block;
}
.load-more span{
  font-size: max(.75vw, 14px);
  line-height: 17px;
  letter-spacing: 1px;
  font-family: 'LatoBold' !important;
}
.load-more p{
  font-family: none !important;
  margin: .5vw 0;
}
.load-more .box:hover span,
.load-more .box:hover p{
  color:#7B2BF5;
}
/* 媒体查询小于1000px */
@media (max-width: 1000px) {
  a{
    text-decoration: none;
  }
  .header-content{
    padding: 14px 10px;
    border-bottom: 1px solid #D9D9D9;
  }
  .header-content #menu,
  .header-content #search{
    display: block;
  }
  .header-content .nav-links,
  .header-content .header-right{
    display: none;
  }
  .header-content .logo img{
    width: 124px;
    height: 31px;
  }
  .header-menu {
    display: block;
    width: 100%;
    position: fixed;
    top: 60px;
    height: calc(100% - 60px);
    background: rgba(000, 000, 000, .6);
    opacity: 0;
    transition: all .3s;
    visibility: hidden;
  }
  .header-menu.active {
    visibility: visible;
    opacity: 1;
  }

  .header-menu .content {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    position: relative;
    /* left: 100%; */
    transition: all .3s;
    /* display: flex; */
    padding: 20px;
  }
  .header-menu .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-menu .header .menu{
    /* font-family: 'PTSerif'; */
    font-weight: normal;
    font-size: 30px;
    color: #000000;
    line-height: 24px;
    letter-spacing: 2px;
    text-align: left;
    font-style: normal;
  }
  .header-menu .header .close{
    /* font-family: 'InterRegular' !important; */
    font-weight: 400;
    font-size: 12px;
    color: #000000;
    line-height: 24px;
    letter-spacing: 1px;
    font-style: normal;
  }
  .header-menu .business {
    display: block;
    background: #000000;
    font-size: 12px;
    height: 36px;
    line-height: 36px;
    color: #fff;
    text-align: center;
    width: 100%;
    margin: 20px 0 20px;
  }
  .header-menu .info{
    /* border-top: 1px solid #C5C4C3; */
    /* padding-top: 20px; */
    font-weight: 400;
    font-size: 12px;
    color: #000000;
    line-height: 44px;
    letter-spacing: 1px;
    font-family: 'InterRegular';
  }
  .header-menu .info .list{
    border-top: 1px solid #C5C4C3;
    margin-top: 20px;
    padding-top: 15px;
    display: flex;
    gap: 20px;
  }
  .header-menu .info .list img{
    width: 12px;
  }
  .header-menu .info a{
    color: #000;
  }
  .header-mobile-more {
    display: block;
    width: 100%;
    position: fixed;
    top: 60px;
    height: calc(100% - 60px);
    background: rgba(255, 255, 255, .9);
    opacity: 0;
    transition: all .3s;
    padding: 40px;
    font-size: 16px;
    visibility: hidden;
  }
  .header-mobile-more.active {
    visibility: visible;
    opacity: 1;
  }
  .header-mobile-more .text{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .header-mobile-more input {
    color: #666666;
    background: initial;
    border: 1px solid #7C00FF;
    border-radius: 5px;
    padding: 8px 10px;
    width: 100%;
    font-size: 16px;
  }
  .header-mobile-more a {
    color: #222;
    text-decoration: none;
    /* letter-spacing: 2px; */
  }
  .header-mobile-more .items {
    color: #666666;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-top: 30px;
  }
  .header-mobile-more .items .select {
    color: #222222;
    font-size: 15px;
  }
  .header-mobile-more .items .text {
    display: flex;
    align-items: center;
    font-size: 16px;
  }
  .header-mobile-more .items .list {
    position: absolute;
    display: none;
    left: 90px;
    background: #FFFFFF;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    border: 1px solid #BABABA;
    padding: 10px 15px;
    font-size: 14px;
  }
  .header-mobile-more .items .list li {
    padding: 5px 0;
  }
  .container{
    margin-top: 60px;
  }
  .container2{
    margin-top: 60px;
  }
  /* .hero{
    display: none;
  }
  .swiper-container .section-title{
    display: none;
  } */
  .swiper-box{
    border: none;
    padding-bottom: 20px;
  }
  .swiper-box .swiper-slide img{
    height: 540px;
  }
  .swiper-box .swiper-slide-next .info{
    display: none;
  }
  .swiper-box .swiper-slide-active .info{
    display: block;
  }
  /* .swiper-box .swiper-slide-active .tip {
    display: none;
  } */
  .swiper-box .swiper-slide-active .tip {
    animation: info-fade-in .6s forwards .2s;
  }
  .swiper-box .swiper-slide-active .text {
    animation: info-fade-in .6s forwards .2s;
  }
  .swiper-box .info {
    background: #fff;
    left: 50%;
    bottom: -20px;
    padding: 30px 25px;
    font-size: 22px;
    width: 60%;
    min-height: 160px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #000;
  }
  .swiper-box .info .text {
    text-align: center;
    opacity: 0;
    font-size: 22px;
    color: #222222;
    line-height: 28px;
    letter-spacing: -0.3px;
    /* font-family: 'PTSerif' !important; */
    font-weight: normal;
  }
  .swiper-box .swiper-container{
    width: 100%;
    margin: 0;
  }
  .swiper-box .swiper-slide{
    padding-bottom: 20px;
  }
  .swiper-box .swiper-btn{
    display: none;
  }
  .hero{
    padding-top: 60px !important;
  }
  .hero.tab-hero{
    position: absolute;
    width: 100%;
    z-index: 99;
    padding-top: 0px !important;
  }
  .hero .tab-info {
    display: block;
    width: 90%;
    margin: 20px;
    /* position: absolute;
    left: 50%;
    transform: translate(-50%, 20px);
    z-index: 111; */
  }
  .hero .tab-info .list {
    display: flex;
    background: rgba(255, 255, 255, .9);
    border-radius: 12px;
  }
  .hero .tab-info .list li {
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
    font-weight: bold;
    width: 33.3%;
    text-align: center;
    font-family: 'InterBold';
  }
  .hero .tab-info .list li:active,
  .hero .tab-info .list li.active {
    background: #fff;
    border-radius: 12px;
  }
  .hero .tab-info .list li a {
    color: #666666;
    text-decoration: none;
  }
  .hero .tab-info .list li:active a,
  .hero .tab-info .list li.active a{
    color: #7C00FF;
  }
  .hero .tab-info .title{
    width: 95%;
    margin: 15px auto 0;
    font-weight: normal;
    font-size: 25px;
    color: #FFFFFF;
    line-height: 40px;
    text-align: center;
    letter-spacing: -.5px;
    /* font-family: 'InterRegular' !important; */
  }
  .product-list{
    width: 90%;
    padding-top: 0;
    border: none;
    gap: 5px;
  }
  .product-list .product-item{
    padding: 30px 0 30px 10px;
    gap: 20px;
  }
  .product-list .product-item .img-box{
    width: 46%;
    height: 100%;
  }
  .product-list .product-info .tip{
    font-weight: 400;
    font-size: 10px;
    color: #222222;
    line-height: 12px;
    text-align: left;
    font-style: normal;
  }
  .product-list .product-info .name{
    width: 100%;
    font-size: 24px;
    margin-top: 20px;
    color: #222222;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    /* font-family: 'PTSerif' !important; */
  }
  .product-list .product-info .tag{
    font-weight: 400;
    font-size: 10px;
    color: #757575;
    line-height: 12px;
    letter-spacing: 1.67px;
    text-align: left;
    font-style: normal;
    /* font-family: 'InterRegular' !important; */
    margin-top: 15px;
  }
  .product-list .product-info .text{
    width: 100%;
    font-weight: 400;
    font-size: 10px;
    color: #222222;
    line-height: 12px;
    text-align: left;
    font-style: normal;
    /* font-family: 'InterRegular' !important; */
    margin-top: 30px;
  }
  .section-title {
    text-align: center;
    /* font-family: 'InterMedium' !important; */
    font-weight: 400;
    font-size: 24px;
    color: #222222;
    line-height: 35px;
    font-style: normal;
    letter-spacing: normal;
  }
  .k-Insight{
    background: #fff !important;
    margin: 0 20px;
    padding-bottom: 20px;
  }
  .k-Insight .section-title {
    /* font-family: 'InterMedium' !important; */
    margin-bottom: 20px;
    font-size: 22px;
  }
  .insight-list{
    width: 100%;
    flex-wrap: wrap;
  }
  .insight-list li{
    width: calc(100% / 2 - 5px);
    margin-bottom: 20px;
  }
  .insight-list li .img{
    height: auto;
  }
  .insight-list li img{
    width: 100%;
    height: 100%;
  }
  .insight-list li .box .name{
    font-size: 16px;
    margin-top: 5px;
    /* font-weight: normal; */
    /* font-family: 'HONORSansExtraLight' !important; */
  }
  .swiper-pagination-bullet-active {
    background: #000000 !important;
  }
  footer{
    padding-bottom: 10px;
  }
  .footer-content{
    width: calc(100% - 60px); 
    margin: 0 30px 10px;
    display: block;
  }
  .footer-content .footer-column{
    min-width: 100% !important;
    margin-bottom: 30px;
    width: 100%;
  }
  .footer-content .footer-column li{
    line-height: 25px;
    font-size: 12px;
    letter-spacing: 0.75px;
  }
  .footer-content .footer-column:after{
    background: inherit;
  }
  .footer-content .footer-column a{
    font-size: 12px;
  }
  .footer-content .footer-column .chat{
    gap: 37px;
    margin-top: 13px;
    margin-bottom: 40px;
  }
  .footer-content .footer-column .email{
    width: 100%;
  }
  .footer-content .footer-column input{
    font-size: 8px;
    border-radius: 0;
    letter-spacing: 0.75px;
    line-height: 20px;
  }
  .footer-content .footer-column input::placeholder{
    color: #AAA9A7;
  }
  .footer-content .footer-column .dot{
    font-size: 10px;
  }
  .footer-content .footer-column .chat img{
    width: 12px !important;
  }
  .cookie-box .card{
    background: #fff;
    top: initial;
    bottom: 0;
    width: 90%;
    transform: translate(-50%, 0);
    border-radius: 0;
    padding: 15px;
  }
  .cookie-box .card .logo{
    background: url(../images/logo.png) 0 0 no-repeat;
    background-size: 100%;
    width: 120px;
    height: 30px;
  }
  .cookie-box .card .header .close{
    background: url(../images/delete2.png) 0 0 no-repeat;
    background-size: 100%;
  }
  .cookie-box .card .cont{
    color: #000000;
    font-size: 12px;
    padding: 20px 0 0;
  }
  .cookie-box .card .cont a{
    color: #000000;
    margin-top: 30px;
    text-decoration: underline;
  }
  .cookie-box .card .btn-box{
    width: 100%;
    gap: 10px;
  }
  .cookie-box .card .reject-btn,
  .cookie-box .card .set-btn{
    color: #000;
    height: 36px;
    line-height: 32px;
    border-radius: 1px;
    border: 1px solid #000000;
  }
  .cookie-box .card .set-btn{
    line-height: 36px;
  }
  .cookie-box .card .accept-btn{
    height: 36px;
    line-height: 34px;
    background: #000000;
    border-radius: 0;
    border-radius: 1px;
  }
  .cookie-box .card .header .name{
    color: #000;
  }
  .cookie-box2 .card{
    width: 100%;
    height: 100vh;
  }
  .cookie-box2 .card .cont{
    font-size: 14px;
    max-height: 100%;
  }
  .cookie-box2 .card .oper{
    margin-top: 30vh;
  }
  .aboutus{
    width: 100%;
    border-radius: 0;
    padding: 20px 20px;
    min-height: calc(100vh - 60px - 438px);
  }
  .aboutus .title{
    font-weight: 900;
    font-size: 30px;
    line-height: 40px;
    /* font-family: 'PlayfairDisplaySCRegular' !important; */
  }
  .aboutus p,
  .aboutus .name{
    /* font-family: 'HONORSansExtraLight' !important; */
    font-weight: 600 !important;
  }
  .aboutus .paragraph{
    padding-left: 25px;
  }
  .aboutus .paragraph p::before{
    top: 11px;
    left: -8px;
  }
  .banner{
    display: none;
  }
  .mobile-banner{
    margin-top: 60px;
    display: block;
  }
  .mobile-banner .tit{
    font-size: 12px;
    color: #000000;
    line-height: 45px;
    text-align: center;
    font-family: 'PTSerif';
    /* text-transform: uppercase; */
  }
  .mobile-banner .swiper-box .info{
    width: 65%;
  }
  .mobile-banner .swiper-box .swiper-slide-active .info{
    padding: 15px 10px;
  }
  .bg-pink,
  .bg-lightpink{
    background: #fff;
  }
  .rankings{
    margin: 0 20px;
    border-bottom: 1px solid #C5C4C3;
  }
  .rankings .section-title,
  .rankings .item img{
    display: none;
  }
  .rankings-container .swiper-wrapper{
    overflow: auto;
    padding-bottom: 30px;
  }
  .rankings-container .swiper-slide{
    width: auto;
    margin-right: 6vw;
  }
  .rankings-container .swiper-slide:last-child{
    margin-right: 0;
  }
  .rankings-container .name{
    font-size: 12px;
    white-space: nowrap;
    padding: 4px 5px;
    margin: 0;
  }
  .rankings-container .swiper-slide.active .name{
    background: linear-gradient(to right, #D150EF 0%, #713AF2 100%);
    border-radius: 20px;
    color: #fff;
  }
  .trending{
    border-top: none;
    margin-top: 20px;
  }
  .trending .section-title{
    border-right: none;
    width: calc(100% - 40px);
    margin: 0 28px;
    letter-spacing: normal;
    /* font-family: 'InterRegular' !important; */
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 1.31px;
  }
  .brand-box{
    margin: 66px auto;
    width: 100%;
  }
  .brand-nav{
    display: block;
    padding: 20px;
    box-sizing: border-box;
  }
  .brand-nav .nav-list {
    display: flex;
    text-align: center;
    justify-content: space-between;
    /* padding-bottom: 10px; */
  }
  .brand-nav .nav-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    white-space: nowrap;
    font-size: max(2vw, 11px);
    font-family: 'InterBold' !important;
  }
  .brand-nav .nav-list li.active {
    color: #7C00FF;
  }
  .brand-box .card{
    padding: 10px 20px 10px;
  }
  .brand-box .card .text{
    display: none;
  }
  .brand-box .card .name{
    font-size: 10px;
  }
  .brand-box .list{
    gap: max(4vw,15px);
    margin: 0 0 40px;
  }
  .brand-box .list li{
    width: calc(100% / 5 - max( 3.3vw, 14px));
  }
  .brand-box .img-box{
    height: 15vw;
  }
  .menu-list{
    width: 300px;
    padding: 0;
    border-bottom: none;
    flex-wrap: wrap;
    gap: 10px 2px;
  }
  .menu-list li{
    font-size: 12px;
    padding: 5px 10px;
    letter-spacing: normal;
    /* text-transform: uppercase; */
    font-family: 'InterBold' !important;
  }
  .product-list .section-title{
    display: block;
    width: calc(100% - 20px);
    margin: 20px 10px 0;
    font-family: 'InterBold' !important;
    letter-spacing: 1.5px;
    font-weight: normal;
    font-size: 12px;
    text-align: left;
  }
  .product-list .first-item{
    padding-top: 10px;
  }
  .question{
    width: 90%;
  }
  .question .section-title{
    letter-spacing: normal;
    /* font-family: 'PTSerif' !important; */
    width: max(30vw, 250px);
    letter-spacing: 2px;
  }
  .question .ques-img{
    width: 100%;
    padding-bottom: 56%;
    background: url(../images/ques-img.png) 0 0 no-repeat;
    background-size: 100%;
  }
  .question-container .header,
  .question-container .nav,
  .question-container .msg .tit{
    display: none;
  }
  .question-container .info{
    width: 90%;
  }
  .question-container .msg{
    margin: 0;
    width: 100%;
  }
  .question-container .msg .mobile-tit{
    display: block;
    font-weight: 900;
    font-size: 22px;
    padding: 15px 0 20px;
    width: max(20vw, 250px);
    margin: 0 auto;
    color: #222222;
    line-height: 30px;
    text-align: center;
    font-style: normal;
    font-family: 'PlayfairDisplayBlack' !important;
  }
  .question-container .msg .ques-img{
    margin-bottom: 37px;
  }
  .k-Insight .section-title{
    letter-spacing: normal;
  }
  .customize-select .selected .more{
    width: 12px;
  }
  .nav-right .border{
    text-align: center;
    border: none;
    background: #fff;
    padding: 20px 0;
  }
  .nav-right .btn{
    width: 210px;
    height: 40px;
    font-size: 14px;
    border-radius: 4px;
  }
  .nav-right .h{
    display: none;
  }
  .search-bar{
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 0px 8px;
  }
  .search-bar .select{
      width: 34%;
      font-size: 10px;
      border-radius: 30px;
  }
  .search-bar .select:after {
      right: -8px;
  }
  .search-bar input{
      font-size: 12px;
      padding-left: 15px;
      border-radius: 30px;
  }
  .search-bar .search{
      width: 24px;
      height: 24px;
      margin-top: -12px;
  }
  .customize-select .list li{
    font-size: 11px;
    padding: 5px 12px;
    white-space: normal;
  }
  .customize-select .selected{
    font-size: 12px;
  }
  .search-bar  .customize-select .selected{
    font-size: 10px;
  }
  .search-bar .customize-select .list{
    width: 120px;
    margin-top: 9px;
  }
  .search-bar .customize-select .list li{
    font-size: 10px;
    padding: 5px 12px;
  }
  .question .list .ques,
  .question .list .ans{
    /* font-family: 'LatoBold' !important; */
    /* letter-spacing: 1px; */
  }
  .question .list .ans{
    line-height: 24px;
  }
  .load-more{
    border-right:none;
  }
}
