* {
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
button,
select {
  border: 0;
  resize: none;
  outline: 0;
  background: transparent;
}

button {
  cursor: pointer;
}

img {
  width: 100%;
  height: auto;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*多行溢出*/
.line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

/* hover-图片放大1.1 */
.scale-box {
  overflow: hidden;
}

.scale-box .scale-img {
  width: 100%;
  height: 100%;
  transition: all .5s linear;
  cursor: pointer;
  object-fit: cover;
}

.scale-box:hover .scale-img {
  transform: scale(1.1);
}


/* 常用盒子阴影 */
.shadow_box {
  box-shadow: 0 .02rem .12rem 0 rgba(0, 0, 0, 0.1)
}

/* 水波纹效果 */
.btn-ripple {
  vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
  opacity: 1;
  position: relative;
  overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
  animation: ani_ripple 0.75s;
  z-index: 1;
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
  0% {
    background: rgba(0, 0, 0, 0.25);
    transform: translateX(-50%) translateY(-50%) scale(0);
  }

  to {
    background: transparent;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}

body::-webkit-scrollbar {
  display: none;
}

header {
  width: 100%;
  transition: all .5s;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}

.headerC {
  width: 16.1rem;
  height: 1.2rem;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.logo {
  width: 1.91rem;
  display: flex;
  margin-right: 1.51rem;
}

.logo img:last-child {
  display: none;
}

.headerNav {
  width: 7.55rem;
  display: flex;
  margin-right: 1.55rem;
  align-items: center;
  justify-content: space-between;
}

.navOne {
  display: flex;
}

.navOneItem {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 0.18rem;
  color: #FFFFFF;
  /*margin-right: .65rem;*/
  position: relative;
}

.navOne:last-child .navOneItem {
  margin: 0;
}

.navOneItem::after {
  transition: all .5s;
  content: '';
  width: 0rem;
  height: 0.04rem;
  background: #FFFFFF;
  position: absolute;
  left: 50%;
  bottom: -.16rem;
  transform: translateX(-50%);
}

.navOneItem:hover::after,
.navOneItem_active::after {
  content: '';
  width: 0.28rem;
}

.navTwo {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 100%;
  height: 1rem;
  background: #FFFFFF;
  display: none;
  border-top: 0.01rem solid rgba(112, 112, 112, .5);
  box-shadow: 0rem 0.03rem 0.2rem 0.01rem rgba(0, 0, 0, 0.07);
  z-index: 100;
}

.navTwoBox {
  width: 16rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.navTwoItemActive,
.navTwoItem {
  display: flex;
  align-items: center;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.18rem;
  color: #555555;
  margin: 0 .415rem;
}

.navTwoItem:hover {
  color: #0866DF;
}

.navTwoItem img {
  width: 0;
  height: auto;
  margin-right: .07rem;
  transition: all .5s;
}

.navTwoItemActive img,
.navTwoItem:hover img {
  width: .21rem;
}
.active{
    color: #0866DF;
}
.active img {
  width: .21rem;
}
.headerR {
  display: flex;
  align-items: center;
}

.headerTel {
  font-family: Arial, Arial;
  font-weight: bold;
  font-size: 0.3rem;
  color: #FFFFFF;
  margin-right: .58rem;
}

.searchBtn,
.lang {
  width: .4rem;
  height: .4rem;
  display: flex;
  margin-right: .19rem;
  cursor: pointer;
}

.searchBtn img:last-child,
.lang img:last-child,
.searchBtn img:nth-child(2),
.lang img:nth-child(2) {
  display: none;
}

.lang {
  margin-right: .05rem;
}

.headerActive {
  background: #FFFFFF;
  box-shadow: 0rem 0.03rem 0.2rem 0.01rem rgba(0, 0, 0, 0.07);
}

.headerActive .logo img:first-child,
.headerActive .searchBtn img:first-child,
.headerActive .lang img:first-child,
.headerActive .searchBtn img:nth-child(2),
.headerActive .lang img:nth-child(2),
.headerActive .searchBtn:hover img:nth-child(2),
.headerActive .lang:hover img:nth-child(2) {
  display: none !important;
}

.headerActive .logo img:last-child,
.headerActive .searchBtn img:nth-child(2),
.headerActive .lang img:nth-child(2) {
  display: block !important;
}


.headerActive .searchBtn:hover img:last-child,
.headerActive .lang:hover img:last-child {
  display: block;
}

.headerActive .navOneItem {
  color: #333333;
}

.headerActive .navOneItem:hover::after,
.headerActive .navOneItem_active::after {
  background: #0866DF;
}

.headerActive .headerTel {
  color: #0866DF;
}

.searchBox {
  width: 3.6rem;
  height: 0.8rem;
  background: #FFFFFF;
  border-radius: 0rem 0rem 0.15rem 0.15rem;
  position: absolute;
  top: 100%;
  right: 1.6rem;
  padding: .2rem .3rem;
  box-sizing: border-box;
  display: none;
  box-shadow: 0rem 0.03rem 0.2rem 0.01rem rgba(0, 0, 0, 0.07);
  z-index: 100;
}

.searchBoxC {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-bottom: .1rem;
  border-bottom: .02rem solid #F5F5F5;
}

.searchBoxC input {
  width: 100%;
}

.searchBoxC button {
  width: .25rem;
  height: .25rem;
  flex-shrink: 0;
}

footer {
  width: 100%;
  background: #181E2E;
  position: relative;
  overflow: hidden;
}

.footerTop {
  width: 16rem;
  margin: 0 auto;
  padding: .95rem 0 .82rem;
  display: flex;
  align-items: flex-start;
}

.footerLogo {
  width: 2.02rem;
  height: auto;
  display: flex;
  margin-right: 1rem;
  flex-shrink: 0;
}

.footerNav {
  display: flex;
}

.footerNavItem {
  margin-right: .55rem;
  position: relative;
}

.footerNavItem:last-child {
  margin-right: 0;
}

.footerNavTit {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  font-size: 0.18rem;
  color: #EBEBEB;
  position: relative;
  width: 1.2rem;
  padding-bottom: .15rem;
  margin-bottom: .2rem;
  border-bottom: 0.01rem solid #707070;
}

.footerNavItem a {
  display: block;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.15rem;
  color: #B1B1B1;
  margin-bottom: .1rem;
}

.footerNavItem a:hover {
  color: #FFFFFF;
}

.footerNavItem a:last-child {
  margin: 0;
}

.footerNavTxt {
  display: flex;
  align-items: center;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.15rem;
  color: #B1B1B1;
  margin-bottom: .21rem;
}

.footerNavTxt img {
  width: .2rem;
  height: .2rem;
  object-fit: contain;
  margin-right: .12rem;
}

.codeBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
}

.codeBox img {
  width: 1.29rem;
  height: 1.29rem;
  margin-bottom: .11rem;
}

.codeBox p {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #EBEBEB;
}

.footerBottom {
  width: 16rem;
  margin: 0 auto;
  border-top: 0.01rem solid #707070;
  display: flex;
  justify-content: center;
  padding: .17rem 0;
  position: relative;
}

.friend {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translatey(-50%);
  display: flex;
  align-items: center;
  margin-right: 2.27rem;
}

.friend p,
.friend a {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.12rem;
  color: #9F9F9F;
}

.friend a {
  margin-right: .25rem;
}

.footerBottom a {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.12rem;
  color: #828282;
  margin: 0 .1rem;
}

.footLogo {
  position: absolute;
  top: .83rem;
  right: -.85rem;
  width: 3.09rem;
}

.sideBox {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  /* display: none; */
  z-index: 100;
}

.sideItem {
  width: 0.6rem;
  height: 0.6rem;
  background: #A1ABB7;
  border-radius: 0.05rem 0rem 0rem 0.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: .01rem;
  transition: all .3s;
  position: relative;
}

.sideItem:hover {
  background: #0866DF;
}

.sideItemImg {
  width: 100%;
  height: 100%;
  display: flex;
}

.sideItemImg img:last-child,
.sideItem:hover img:first-child {
  display: none;
}

.sideItem:hover img:last-child {
  display: block;
}

.sideCode {
  position: absolute;
  right: 100%;
  top: 0;
  width: 1.1rem;
  height: 1.1rem;
  display: flex;
  display: none;
  transition: all .5s;
}

.sideItem:hover .sideCode {
  display: block;
}

.commonNav {
  width: 16rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.commonNavBox {
  display: flex;
}

.commonNavBox a:last-child {
  color: #000000;
}

.commonNavBox a {
  display: flex;
  align-items: center;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  font-size: 0.16rem;
  color: #999999;
}

.commonNavBox a img {
  width: .22rem;
  height: auto;
  margin-right: .08rem;
}

.commonNavBox a::after {
  content: '-';
  margin: .05rem;
}

.commonNavBox a:last-child::after {
  display: none;
}

.commonSearch {
  width: 3.7rem;
  height: 0.5rem;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  padding: 0 .14rem 0 .25rem;
  box-sizing: border-box;
}

.commonSearch input {
  width: 100%;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #555555;
}

.commonSearch button {
  width: .24rem;
  height: .24rem;
  display: flex;
  flex-shrink: 0;
}

.bannerSwiper {
  height: 7.5rem;
}

.bannerSwiper .swiper-slide::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3984E5 0%, rgba(8, 102, 223, 0.25) 100%);
  top: 0;
  left: 0;
}

.bannerSwiper .swiperText {
  position: absolute;
  top: 0rem;
  left: 1.6rem;
  opacity: 0;
  max-width: 6.5rem;
  z-index: 10;
}

.bannerSwiper .swiper-slide>img {
  transition: all 5s;
}

.bannerSwiper .swiper-slide-active>img {
  transform: scale(1.2);
}

.bannerSwiper .swiper-slide-active .swiperText {
  animation: swiperText 1.5s .5s forwards;
}

@keyframes swiperText {
  0% {
    top: 0rem;
    opacity: 0;
  }

  100% {
    top: 2.21rem;
    opacity: 1;
  }
}

.bannerSwiper .swiperTit {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: bold;
  font-size: 0.6rem;
  color: #FFFFFF;
  margin-bottom: .27rem;
}

.bannerSwiper .swiperTit span {
  color: #3984E5;
}

.bannerSwiper .swiperTxt {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 0.28rem;
  color: #FFFFFF;
  margin-bottom: .68rem;
}

.bannerSwiper .swiperTxtEn {
  font-family: Arial, Arial;
  font-weight: 900;
  font-size: 0.45rem;
  color: #FFFFFF;
  opacity: .5;
  margin-bottom: .88rem;
}

.bannerSwiper .swiperMore {
  width: 1.85rem;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem 1rem 1rem 1rem;
  border: 0.01rem solid #FFFFFF;
  display: flex;
  align-items: center;
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 0.17rem;
  color: #FFFFFF;
  padding: 0 .08rem 0 .27rem;
  box-sizing: border-box;
  justify-content: space-between;
  transition: all .5s;
}

.bannerSwiper .swiperMore img {
  width: .36rem !important;
  height: .36rem !important;
}

.bannerSwiper .swiperMore:hover {
  background: #3984E5;
  border: 0.01rem solid #3984E5;
}

.commmonTitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.commmonTit {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  font-size: 0.5rem;
  color: #010101;
  margin-bottom: .19rem;
}

.commmonTxt {
  font-family: Arial, Arial;
  font-weight: 400;
  font-size: 0.22rem;
  color: #888888;
}

.page {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page a {
  width: .4rem;
  height: .4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 .1rem;
  font-family: Arial, Arial;
  font-weight: bold;
  font-size: 0.18rem;
  color: #8E8E8E;
}

.page a img {
  width: auto;
  height: auto;
}

.pageActive {
  background: #3984E5;
  color: #FFFFFF !important;
}


.case {
  overflow: hidden;
  background: #F7F7F7;
}

.case .commmonTitle {
  margin-top: 1.1rem;
}

.caseSwiper {
  width: 16rem;
  margin: .79rem auto 1.41rem !important;
}

.caseSwiper .swiper-slide {
  border-radius: .15rem;
  overflow: hidden;
}

.caseImg {
  width: 100%;
  height: 3rem;
  overflow: hidden;
}

.caseTit {
  width: 100%;
  height: .63rem;
  padding: 0 .45rem;
  box-sizing: border-box;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  font-size: 0.2rem;
  color: #FFFFFF;
  line-height: 0.63rem;
  background: linear-gradient(180deg, #0866DF 0%, #3984E5 100%);
}

.product {
  overflow: hidden;
  background: #F7F7F7;
}

.product .commmonTitle {
  margin-top: .91rem;
}

.productSwiper {
  width: 16rem;
  margin: .88rem auto 1.15rem !important;
}

.productSwiper .swiper-slide {
  padding: .2rem .45rem;
  box-sizing: border-box;
  background: #FFFFFF;
}

.productImg {
  width: 2.72rem;
  height: 3.15rem;
  overflow: hidden;
  margin: 0 auto .19rem;
}

.productTit {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.2rem;
  color: #333333;
  margin-bottom: 0.22rem;
  text-align: center;
}

.productMore {
  height: .36rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #0866DF;
  margin: 0 auto;
  width: fit-content;
  margin-bottom: .27rem;
  display: flex;
  align-items: center;
  padding: 0 .18rem;
  transition: all .5s;
}

.productSwiper .swiper-slide:hover .productMore {
  background: #3984E5;
  color: #FFFFFF;
  border-radius: .36rem;
}

.detailPage{
  width: 16rem;
  max-width: 100%;
  margin: 0 auto .87rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.detailPage a{
  max-width: 40%;
  display: flex;
  align-items: center;
}

.detailPage a .arrow{
  display: flex;
  width: .23rem;
  margin: 0 .16rem
}

.detailPage a p{
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.16rem;
  color: #333333;
}

.detailPage a:hover p{
  color: #3984E5;
}

.detailPage a .arrow img:last-child,
.detailPage a:hover img:first-child{
  display: none;
}

.detailPage a:hover img:last-child{
  display: block;
}

.commonTab {
  width: 100%;
  display: flex;
  margin-bottom: .7rem;
}

.commonTabItem {
  width: fit-content;
  height: 0.5rem;
  border-radius: 0.08rem 0.08rem 0.08rem 0.08rem;
  border: 0.01rem solid #707070;
  padding: 0 .3rem;
  display: flex;
  align-items: center;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.2rem;
  color: #333333;
  margin-right: .35rem;
}

.commonTabActive {
  background: rgba(57, 132, 229, 0.1);
  border: 0.01rem solid #3984E5;
  color: #3984E5;
}



.common-phone-header,
.side-wrap{
    display: none;
}
@media only screen and (max-width: 1024px) {
    header {
        display: none;
    }
    .common-phone-header {
        display: block !important;
    }
    .side-wrap {
        display: block !important;
    }
    .common-phone-header {
        position: fixed;
        z-index: 10000;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
    }
    .common-phone-header-inner {
        display: flex;
        height: 50px;
        border-bottom: 1px solid #eee;
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;
    }
    .header-menu-phone{
        height: 30px;
        width: auto;
        display: block;
    }
    .header-logo-phone {
        width: auto;
        height: 30px;
        /*width: auto;*/
        display: block;
        object-fit: contain;
        padding-right: 0.4rem;
    }
    .header-search-phone {
        height: 30px;
        width: auto;
        display: block;
    }
    .header-search-box-phone {
        display: none;
    }
    .header-search-input-phone {
        border-radius: 20px;
        height: 35px;
        border-width: 1px;
        border: 1px solid #333;
        padding: 0 10px;
        font-size: 14px;
        display: block;
    }
    .side-modal {
        display: none;
        position: fixed;
        z-index: 99999;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100vw;
        background:rgba(0, 0, 0, .5);
    }
    .side-container {
        display: none;
        position: fixed;
        z-index: 100000;
        right: 0;
        top: 0;
        height: 100vh;
        width: 60%;
        background-color: #fff;
        color: #000;
        border-left: 1px solid #eee;
        animation: ani_side 1s;
    }
    .side-container.shown {
        display: block;
    }
    @keyframes ani_side{
        from {
            display: none;
            width: 3rem;
        }
        to {
            display: block;
            width: 60%;
        }
    }
    .side-wrap {
        width: 100%;
    }
    .side-top {
        display: flex;
        height: 60px;
        padding: 0 20px 0 30px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #eee;
    }
    .side-logo {
        height: 30px;
        width: auto;
        display: block;
    }
    .side-close {
        width:.48rem;
        display: block;
    }
    .side-bottom {
        padding:  0 .48rem 0 .72rem;
        max-height: 75vh;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .nav-item-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0 10px 0;
        border-bottom: 1px solid #eee;
    }
    .nav-item-inner span{
        display: flex;
        align-items: center;
        font-size: 14px;
    }
    .nav-item-inner img{
        width: .4rem;
    }
    .side-nav-list .nav-item a{
        color: #000;
        font-size: .26rem;
        width: 100%;
        /*display: inline-block !important;*/
    }
    .side-nav-list .side-local-img {
        width: .3rem;
        margin-right: .2rem;
        vertical-align: text-bottom;
    }   
    .side-nav-list-sub {
        display: none;
    }
    .side-nav-list-sub  .side-back-img {
        width: .3rem;
        margin-right: .2rem;
        vertical-align: text-bottom;
    }
    .mobileLang{
        width: 30px;
        height: 30px;
        display: flex;
    }
    .footerNavTit,
    .footerNavTxt,
    .footerNavItem a{
        display: none;
    }
    .codeBox{
        position: static;
    }
    .footerTop{
        width: 100%;
        padding: .3rem;
        box-sizing: border-box;
        align-items: center;
        justify-content: center;
    }
    .codeBox p{
        font-size: 12px;
        white-space: nowrap;
    }
    .footerNavItem{
        margin-right: 0;
    }
    .footerBottom{
        width: 100%;
    }
    .footerBottom{
        flex-direction: column;
        align-items: center;
    }
    .friend{
        position: static;
        margin: 0;
        transform: translateY(0);
    }
    .footerBottom a,
    .friend p, .friend a{
        font-size: 12px;
        line-height: 2;
    }
    .bannerSwiper{
        height: 4rem;
        margin-top: 50px;
    }
    .commonNav{
        display: none;
    }
    .bannerSwiper .swiperText{
        max-width: 95%;
        width: 100%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .bannerSwiper .swiperTit{
        font-size: 18px;
        margin-bottom: .3rem;
    }
    .bannerSwiper .swiperTxt{
        font-size: 16px;
        height: auto;
        margin-bottom: .3rem;
    }
    .bannerSwiper .swiperTxtEn{
        font-size: 14px;
    }
    .bannerSwiper .swiperMore{
        font-size: 14px;
        width: fit-content;
        padding: 0 .15rem;
    }
    .bannerSwiper .swiperMore img{
        margin-left: .15rem;
    }
    
    .bannerSwiper  .swiper-slide-active .swiperText {
      animation: swiperMobile 1.5s .5s forwards;
    }
    
    @keyframes swiperMobile {
      0% {
        top: 0;
        opacity: 0;
      }
    
      100% {
        top: 50%;
        opacity: 1;
      }
    }
    .commmonTit{
        font-size: 18px;
    }
    .commmonTxt{
        font-size: 14px;
    }
    .caseTit{
        font-size: 14px;
    }
    .detailPage{
        width: 95%;
    }
    .detailPage a p{
        font-size: 14px;
    }
    .commonTab{
        flex-wrap: wrap;
    }
    .commonTabItem{
        font-size: 14px;
        margin-bottom: .2rem;
        margin-right: .2rem;
    }
    .productText{
        padding: 0 .3rem;
        box-sizing: border-box;
    }
    .productTit{
        font-size: 14px;
    }
    .productMore{
        font-size: 14px;
    }
    .header-logo-box-phone {
        flex: 0 0 50%;
    }
}