body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Source Han Sans SC,
    Source Han Sans SC;
  font-size: 0.16rem;
  color: #333;
}
span {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}
html {
  scroll-behavior: smooth;
}
a {
  display: block;
  outline: 0;
  text-decoration: none;
}
ul,
ol {
  padding-left: 2em;
}
input,
textarea,
button,
select {
  border: 0;
  resize: none;
  outline: 0;
  background: transparent;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  object-fit: contain;
}
/*多行溢出*/
.ellipsis1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.ellipsis3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
/* hover-图片放大1.1 */
.scale-box,
.imgBox {
  overflow: hidden;
}
.scale-box .scale-img,
.imgBox .scale-img {
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
  cursor: pointer;
  object-fit: cover;
}
.scale-box:hover .scale-img,
.imgBox:hover .scale-img {
  transform: scale(1.1);
}
/* 常用盒子阴影 */
.shadow_box {
  box-shadow: 0 0.02rem 0.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);
  }
}
.headerWrap {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}

.main {
  /*width: 94%;*/
  width: 90%;
  max-width: 15.2rem;
  margin: 0 auto;
}
.center {
  /*width: 94%;*/
  width: 90%;
  max-width: 14rem;
  margin: 0 auto;
}
.back {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.swiper-slide > img,
.swiper-slide > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 单选框颜色 */
/* 头部 */
.headerWrap header.hide{
    transform: translateY(-1.2rem);
}
header {
  width: 100%;
  transition: all 0.3s linear;
}
header.act,
header.on {
  background-color: rgba(0,0,0,0.7);

}
header .main {
  display: flex;
  align-items: center;
  height: 1.2rem;
}
header .main .logo {
  width: 2rem;
  height: 0.72rem;
  /*margin-bottom: 0.1rem;*/
}
header .main .headNav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.46rem;
}
header .main .headNav .item {
  height: 1.2rem;
  display: flex;
  align-items: center;
}
header .main .headNav .item a {
  font-weight: 500;
  font-size: 0.22rem;
  color: #ffffff;
}
/* 底部 */
footer {
  width: 100%;
  padding: 1.2rem 0 0.66rem;
  background: #515154;
}
footer .main {
  height: 100%;
  display: flex;
}
footer .left p:nth-child(1) {
  font-family: HarmonyOS Sans,
        HarmonyOS Sans;
  font-weight: 400;
  font-size: 0.36rem;
  color: #ffffff;
}
footer .left p:nth-child(2) {
  font-family: HarmonyOS Sans,
        HarmonyOS Sans;
  font-weight: 400;
  font-size: 0.2rem;
  color: #bdbdbf;
  line-height: 0.3rem;
  margin-top: 0.2rem;
  width: 3.02rem;
}
footer .left .share {
  margin-top: 1.84rem;
}
footer .left .share .links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin-bottom: 0.24rem;
}
footer .left .share .links a {
  width: 0.26rem;
  height: 0.26rem;
}
footer .left .share .links a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .left .share > a {
  font-family: HarmonyOS Sans,
          HarmonyOS Sans;
  font-weight: 400;
  font-size: 0.16rem;
  color: #bdbdbf;
  line-height: 0.3rem;
}
footer .right {
  margin-left: 2.48rem;
}
footer .right > p {
  font-family: HarmonyOS Sans,
        HarmonyOS Sans;
  font-weight: 400;
  font-size: 0.38rem;
  color: #ffffff;
  line-height: 0.6rem;
  letter-spacing: 0.5px;
}
footer .right .btn {
  width: 1.8rem;
  height: 0.54rem;
  border-radius: 0rem 0rem 0rem 0rem;
  border: 0.01rem solid #ffffff;
  margin-top: 0.3rem;
  justify-content: center;
  display: flex;
  align-items: center;
  font-family: HarmonyOS Sans,
        HarmonyOS Sans;
  font-weight: 400;
  font-size: 0.26rem;
  color: #ffffff;
  transition: all 0.6s;
}
footer .right .btn:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}
footer .right .msg {
  display: flex;
  /*flex-wrap: wrap;*/
  margin-top: 1.22rem;
  gap: 0.76rem;
}
footer .right .msg .item{
    max-width: 250px;
}
footer .right .msg .item > * {
  font-family: HarmonyOS Sans,
            HarmonyOS Sans;
  font-weight: 400;
  font-size: 0.2rem;
  color: #bdbdbf;
}
footer .right .msg .item > a {
  font-size: 0.22rem;
  margin-top: 0.07rem;
}
.bread {
  width: 100%;
}
.bread .main {
  display: flex;
  height: 0.8rem;
  align-items: center;
  justify-content: space-between;
}
.bread .left {
  display: flex;
  align-items: center;
  gap: 0.08rem;
}
.bread .left img {
  width: 0.14rem;
  height: 0.14rem;
}
.bread .left a,
.bread .left span {
  font-weight: 400;
  font-size: 0.16rem;
  color: #999;
}
.bread .left a:last-child {
  color: #54b361;
}
.bread .right {
  height: 100%;
  display: flex;
  gap: 0.6rem;
}
.bread .right a {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.18rem;
  color: #484848;
  position: relative;
}
.bread .right a.active {
  font-weight: bold;
  color: #54b361;
  border-bottom: 2px solid #54b361;
}
.bread .right a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0rem;
  height: 0.1rem;
  border: 0.01rem solid #d8d8d8;
}
.compage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.2rem;
}
.compage > a,
.compage > span {
  width: 0.72rem;
  height: 0.4rem;
  line-height: 0.4rem;
  text-align: center;
  background: #ffffff;
  border-radius: 0.02rem;
  font-family: HarmonyOS Sans,
      HarmonyOS Sans;
  font-weight: 400;
  font-size: 0.18rem;
  color: rgba(29, 29, 31, 0.84);
  border: 0.01rem solid rgba(29, 29, 31, 0.84);
  border-radius: 0.3rem 0.3rem 0.3rem 0.3rem;
}
.compage > a.btn,
.compage > span.btn {
  width: 1.12rem;
}
.compage > a:hover,
.compage > span:hover,
.compage > a.act,
.compage > span.act {
  background: #000;
  color: #fff;
}
.compage > a:hover img,
.compage > span:hover img,
.compage > a.act img,
.compage > span.act img {
  filter: brightness(0) invert(1);
}
.compage > a img,
.compage > span img {
  width: 0.07rem;
  height: 0.13rem;
}
.compage div {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.16rem;
  color: #9a9a9a;
}
.compage div input {
  width: 0.54rem;
  height: 0.3rem;
  background: #ffffff;
  border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
  border: 0.01rem solid #e6e6e6;
  text-align: center;
}

.wrapBg{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
}

.navbar-default{
    display: none;
}

.bannerCenter{
    width: 90%;
    max-width: 15.2rem;
    margin: 0 auto;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.swiper-container{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/*分页*/




@media screen and (max-width: 1042px) {
    header .main{
        justify-content: space-between;
        height: auto;
        padding: 15px 0;
        overflow: hidden;
    }
    header .main .logo{
        width: auto;
        height: 50px;
    }
    header .main .logo img{
        width: auto;
        height: 100%;
    }
    header .main .headNav{
        gap: 30px;
    }
    header .main .headNav .item{
        height: auto;
    }
    header .main .headNav .item a{
        font-size: 18px;
    }
    
    
    
    
    
    footer{
        padding: 90px 0 30px;
        overflow: hidden;
    }
    footer .left p:nth-child(1){
        font-size: 26px;
    }
    footer .left p:nth-child(2){
        font-size: 16px;
        line-height: 1.5;
        width: auto;
        /*white-space: nowrap;*/
        margin-top: 15px;
    }
    footer .left .share{
        margin-top: 120px;
    }
    footer .left .share .links{
        gap: 20px;
        margin-bottom: 20px;
    }
    footer .left .share .links a{
        width: 26px;
        height: 26px;
    }
    footer .left .share > a{
        font-size: 16px;
        line-height: 1.875;
    }
    footer .right{
        margin: 0 0 0 auto;
        width: 60%;
    }
    footer .right > p{
        font-size: 30px;
        line-height: 1.57;
    }
    footer .right .btn{
        margin-top: 20px;
        width: fit-content;
        height: auto;
        font-size: 20px;
        padding: 8px 20px;
    }
    footer .right .msg{
        gap: 30px;
        margin-top: 80px;
    }
    footer .right .msg .item > *{
        font-size: 18px;
    }
    footer .right .msg .item > a{
        font-size: 20px;
        margin-top: 7px;
    }
    
    
    
    
    
    .compage{
        gap: 0 10px;
    }
    .compage > a, .compage > span{
        font-size: 16px;
        width: 66px;
        height: 32px;
        line-height: 30px;
        border-radius: 30px;
    }
    .compage > a.btn, .compage > span.btn{
        width: 100px;
    }
    
}

@media screen and (max-width: 769px) {
    
    .navbar-default{position: static!important;height:auto!important;display: block;}
    .navbar-toggle {position: relative!important;float: right;padding:0;background-color: transparent;background-image: none;border:0;border-radius: 0}
    .navbar-toggle:focus { outline: 0 }
    .navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border-radius: 1px }
    .navbar-toggle .icon-bar + .icon-bar { margin-top: 4px }
    .navbar-default .navbar-toggle .icon-bar {background-color: #ffffff;}
    .navbar-toggle .icon-bar { position: relative }
    .navbar-toggle .icon-bar + .icon-bar { margin-top: 6px }
    .navbar-toggle .icon-bar:nth-child(2) { -moz-transition: background .3s ease 0s; -o-transition: background .3s ease 0s; -webkit-transition: background .3s ease; -webkit-transition-delay: 0s; transition: background .3s ease 0s; background: transparent }
    .transform-fallback-fix .navbar-toggle .icon-bar:nth-child(2) { background: #606060 }
    .navbar-toggle .icon-bar:nth-child(1), .navbar-toggle .icon-bar:nth-child(3) { -moz-transition: top .3s ease, -moz-transform .3s ease .4s; -o-transition: top .3s ease, -o-transform .3s ease .4s; -webkit-transition: top .3s ease, -webkit-transform .3s ease; -webkit-transition-delay: 0s, .4s; transition: top .3s ease, transform .3s ease .4s }
    .navbar-toggle .icon-bar:nth-child(1) { top: 8px; -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -webkit-transform: rotate(45deg); transform: rotate(45deg) }
    .transform-fallback-fix .navbar-toggle .icon-bar:nth-child(1) { top: 0 }
    .navbar-toggle .icon-bar:nth-child(3) { top: -8px; -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -webkit-transform: rotate(-45deg); transform: rotate(-45deg) }
    .transform-fallback-fix .navbar-toggle .icon-bar:nth-child(3) { top: 0 }
    .navbar-toggle.collapsed .icon-bar:nth-child(2) {-moz-transition: background .3s ease .4s;-o-transition: background .3s ease .4s;-webkit-transition: background .3s ease;-webkit-transition-delay: .4s;transition: background .3s ease .4s;background-color: #ffffff;}
    .navbar-toggle.collapsed .icon-bar:nth-child(1), .navbar-toggle.collapsed .icon-bar:nth-child(3) { top: 0; -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); transform: rotate(0deg); -moz-transform-origin: 50% 50%; -ms-transform-origin: 50% 50%; -webkit-transform-origin: 50% 50%; transform-origin: 50% 50%; -moz-transition: top .3s ease .4s, -moz-transform .3s ease; -o-transition: top .3s ease .4s, -o-transform .3s ease; -webkit-transition: top .3s ease, -webkit-transform .3s ease; -webkit-transition-delay: .4s, 0s; transition: top .3s ease .4s, transform .3s ease }



    
    header,
    header.act, header.on{
        background: #000;
    }
    header .main .headNav{
        position: fixed;
        width: 50%;
        height: 100vh;
        background: #000;
        top: 80px;
        right: -50%;
        padding: 30px;
        transition: right 0.5s;
        flex-wrap: wrap;
        gap: 20px;
        align-content: flex-start;
    }
    header .main .headNav.on{
        right: 0;
    }
    header .main .headNav .item{
        width: 100%;
    }
    
    
    
    
    
    
    
    footer .main{
        flex-wrap: wrap;
        flex-direction: column-reverse;
        row-gap: 40px;
    }
    footer .right{
        width: 100%;
    }
    footer .right > p{
        font-size: 20px;
        line-height: 1.8;
    }
    footer .right .btn{
        font-size: 18px;
        /*margin: 27px 0 117px;*/
        margin: 27px 0 0;
        padding: 8px 39px;
    }
    footer .right .msg{
        flex-wrap: wrap;
        gap: 10px 30px;
        width: 100%;
    }
    footer .right .msg .item{
        display: flex;
        max-width: 100%;
        align-items: center;
        column-gap: 8px;
        width: 100%;
        color: #808080;
    }
    footer .left p:nth-child(1) {
        font-size: 16px;
    }
    footer .right .btn,
    footer .right .msg .item > *{
        font-size: 16px;
    }
    footer .right .msg .item > a{
        margin: 0;
        font-size: 18px;
    }
    footer .left .share{
        margin-top: 50px;
    }
    footer .left .share > a{
        font-size: 14px;
    }
}


