* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Source Han Sans SC;
  font-size: 0.16rem;
  color: #333;
}
span {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}
@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Regular.otf');
  font-weight: 400;
}
@font-face {
  font-family: Source Han Sans SC;
  src: url('../fonts/SourceHanSansSC-Light.otf');
  font-weight: 350;
}
@font-face {
  font-family: Source Han Sans SC;
  src: url('../fonts/SourceHanSansSC-Regular.otf');
  font-weight: 400;
}
@font-face {
  font-family: Source Han Sans SC;
  src: url('../fonts/SourceHanSansSC-Medium.otf');
  font-weight: 500;
}
@font-face {
  font-family: Source Han Sans SC;
  src: url('../fonts/SourceHanSansSC-Bold.otf');
  font-weight: 700;
}
@font-face {
  font-family: MiSans;
  src: url('../fonts/MiSans-Bold.ttf');
  font-weight: 700;
}
@font-face {
  font-family: MiSans;
  src: url('../fonts/MiSans-Regular.ttf');
  font-weight: 400;
}
@font-face {
  font-family: Alumni Sans;
  src: url('../fonts/AlumniSansSC-SemiBold.ttf');
  font-weight: 600;
}
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;
}
.ellipsis4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
/* 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: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}
.main {
  width: 94%;
  max-width: 16rem;
  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;
}
/* 单选框颜色 */
header {
  position: sticky;
  width: 100%;
  height: 1.1rem;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.02rem 0rem rgba(0, 0, 0, 0.2);
  padding: 0 0.8rem 0 0.45rem;
  display: flex;
  align-items: center;
}
header.home {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  box-shadow: none;
}
header.home .logo {
  filter: brightness(0) invert(1);
}
header.home .headNav .item:not(:last-child)>a {
  border-right: 0.01rem solid #fff;
}
header.home .headNav .item>a {
  color: #fff;
}
header .logo {
  width: 4.78rem;
  height: 0.69rem;
  display: flex;
}
header .headNav {
  display: flex;
  align-items: center;
  margin-left: auto;
  height: 100%;
  /*position: relative;*/
}
header .headNav .item {
  
  height: 100%;
  display: flex;
  align-items: center;
}
header .headNav .item.active>a,
header .headNav .item:hover>a {
  color: #073A7C;
}
/*header .headNav .item:not(:last-child) {*/
/*  border-right: 0.01rem solid #000;*/
/*}*/
header .headNav .item>a {
  line-height: 1;
  font-weight: 500;
  font-size: 0.18rem;
  color: #444444;
  position: relative;
  /*height: 100%;*/
  padding: 0 0.25rem;
}

header .headNav .item:not(:last-child)>a{
    border-right: 0.01rem solid #333;
}

header .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  margin-left: 0.45rem;
  width: 0.79rem;
  height: 0.31rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 0.03rem 0.03rem 0.03rem 0.03rem;
}
header .lang a {
  width: 0.28rem;
  height: 0.19rem;
}
.headNav .level2 {
  border-bottom: 0.5rem solid #00AB7B;
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 100%;
  background: #fff;
  display: none;
}
.level2Wrap{
    border-bottom: 0.5rem solid #00AB7B;
}
.level2{
   background: #fff;

   display: none;
}

header .headNav .item:hover .level2{
  display: block;
}
.level2 .main {
  height: 3rem;
  display: flex;
  justify-content: space-between;
}
.level2 .main .left {
  padding: 0.39rem 0;
  height: 100%;
}
.level2 .main .left h3 {
  font-weight: 700;
  font-size: 0.3rem;
  color: #333333;
  margin-bottom: 0.13rem;
}
.level2 .main .left a {
  font-weight: 400;
  font-size: 0.16rem;
  color: #888888;
}
.level2 .main .center {
    display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0.39rem 0 0.95rem;
  height: 100%;
  gap: 0 0.93rem;
}
.level2 .main .center a {
  width: 1.83rem;
  height: 0.53rem;
  border-bottom: 0.01rem solid #D8D8D8;
  display: flex;
  align-items: center;
}
.level2 .main .center a:hover {
  color: #00AB7B;
}
.level2 .main .right {
  width: 5.43rem;
  height: 100%;
}
.level2 .main .right.is-empty {
  background: #F6F7FD;
  
}
.bread {
  padding-top: 0.36rem;
}
.bread .main {
  display: flex;
  align-items: center;
  gap: 0.17rem;
}
.bread .main img {
  width: 0.22rem;
  height: 0.22rem;
}
.bread .main nav {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.16rem;
  color: #666666;
  line-height: 0.3rem;
}
.bread .main nav a {
  font-weight: 400;
  font-size: 0.16rem;
  color: #666666;
  line-height: 0.3rem;
}
.compage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.07rem;
}
.compage > a,
.compage > span {
  width: 0.36rem;
  height: 0.36rem;
  background: #F3F3F3;
  border-radius: 0.03rem 0.03rem 0.03rem 0.03rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #444444;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compage > a:hover,
.compage > span:hover,
.compage > a.act,
.compage > span.act {
  background: #003E95;
  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.16rem;
  height: 0.16rem;
}
footer {
  padding-top: 0.68rem;
  background: #E8EBEE;
}
footer .main .top {
  display: flex;
  padding-bottom: 0.23rem;
}
footer .main .top .left {
  margin-right: 0.96rem;
  flex-shrink: 0;
}
footer .main .top .left .logo {
  width: 2.8rem;
  height: 0.58rem;
  display: flex;
}
footer .main .top .left .desc {
  font-weight: 400;
  font-size: 0.16rem;
  color: #1C1C1C;
  line-height: 0.26rem;
  margin-top: 0.16rem;
}
footer .main .top .left .share {
  display: flex;
  align-items: center;
  gap: 0.11rem;
  margin-top: 0.25rem;
}
footer .main .top .right {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
footer .main .top .right .item .tit {
  font-weight: 700;
  font-size: 0.2rem;
  color: #1A57A7;
  line-height: 0.24rem;
  margin-bottom: 0.14rem;
}
footer .main .top .right .item .it {
  font-weight: 350;
  font-size: 0.16rem;
  color: #1C1C1C;
  line-height: 0.32rem;
}
footer .main .top .right .item .it p {
  display: flex;
  font-weight: 350;
  font-size: 0.16rem;
  color: #1C1C1C;
  line-height: 0.32rem;
}
footer .main .top .right .item .it p span {
  min-width: 1.1rem;
  text-align: right;
}
footer .main .top .right .item .formTip {
  font-weight: 400;
  font-size: 0.14rem;
  color: #1C1C1C;
}
footer .main .top .right .item form {
  width: 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  margin-top: 0.2rem;
}
footer .main .top .right .item form input {
  width: 100%;
  height: 0.48rem;
  border-radius: 0.47rem 0.47rem 0.47rem 0.47rem;
  border: 0.01rem solid #CCCCCC;
  font-weight: 400;
  font-size: 0.12rem;
  color: #1C1C1C;
  padding: 0 0.19rem;
}
footer .main .top .right .item form input::-webkit-input-placeholder {
  color: #777777;
}
footer .main .top .right .item form button {
  width: 100%;
  height: 0.48rem;
  background: #1A57A7;
  border-radius: 0.47rem 0.47rem 0.47rem 0.47rem;
  border: 0.01rem solid #CCCCCC;
  font-family: Poppins, Poppins;
  font-weight: 500;
  font-size: 0.14rem;
  color: #FFFFFF;
  padding: 0 1rem;
  /*text-align: left;*/
  text-align: center;
}
footer .main .bottom {
  width: 100%;
  height: 0.86rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .main .bottom .left {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
footer .main .bottom .left a {
  font-weight: 350;
  font-size: 0.16rem;
  color: #1C1C1C;
}
footer .main .bottom .right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
footer .main .bottom .right a {
  font-weight: 350;
  font-size: 0.16rem;
  color: #1C1C1C;
}
.sidebar {
  position: fixed;
  top: 50%;
  right: 0.1rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.13rem;
  align-items: flex-end;
  z-index: 99;
}
.sidebar .item:not(:last-child) {
  width: 0.46rem;
  height: 0.46rem;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.1rem 0rem rgba(0, 0, 0, 0.2);
  border-radius: 0.05rem 0.05rem 0.05rem 0.05rem;
  font-weight: 400;
  font-size: 0.08rem;
  color: #222222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  position: relative;
}
.sidebar .item:not(:last-child) > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  color: #222222;
}
.sidebar .item:not(:last-child):hover .code {
  opacity: 1;
  right: calc(100% + 0.1rem);
  pointer-events: auto;
}
.sidebar .item:not(:last-child) > img {
  max-width: 0.2rem;
  max-height: 0.17rem;
}
.sidebar .item:not(:last-child) > a > img {
  max-width: 0.2rem;
  max-height: 0.17rem;
}
.sidebar .item:not(:last-child) > a > span {
  font-weight: 400;
  font-size: 0.08rem;
  color: #222222;
  line-height: 1;
}
.sidebar .item:not(:last-child) .code {
  position: absolute;
  top: 0;
  width: 1.89rem;
  height: 1.89rem;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.1rem 0.01rem rgba(85, 85, 85, 0.16);
  border-radius: 0.05rem 0.05rem 0.05rem 0.05rem;
  border: 0.01rem solid #FAFAFA;
  padding: 0.13rem 0.27rem;
  display: flex;
  flex-direction: column;
  gap: 0.11rem;
  font-weight: 400;
  font-size: 0.14rem;
  color: #5C5C5C;
  opacity: 0;
  right: -1.89rem;
  transition: right 0.3s linear, opacity 0.3s linear;
  pointer-events: none;
}
.sidebar .item:not(:last-child) .code img {
  width: 1.35rem;
  height: 1.35rem;
}
.sidebar .item:last-child {
  width: 1.58rem;
  height: 0.64rem;
  background: #003E95;
  border-radius: 0.05rem 0.05rem 0.05rem 0.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #FFFFFF;
}
.sidebar .item:last-child img {
  width: 0.44rem;
  height: 0.46rem;
}
.smallTit {
  font-weight: 400;
  font-size: 0.16rem;
  color: #1A57A7;
  text-align: center;
}
.bigTit {
  font-weight: 700;
  font-size: 0.36rem;
  color: #000;
  text-align: center;
}
.bigTit span {
  color: #1A57A7;
}
.titLine {
  width: 0.38rem;
  height: 0.06rem;
  display: flex;
  align-items: center;
  gap: 0.02rem;
  margin: 0.27rem auto 0;
}
.titLine::before,
.titLine::after {
  content: '';
  height: 0.06rem;
  background: #15A376;
  border-radius: 0.48rem 0.48rem 0.48rem 0.48rem;
}
.titLine::before {
  width: 0.3rem;
  animation: titLineMove1 2s ease-in-out infinite;
}
.titLine::after {
  width: 0.06rem;
  animation: titLineMove2 2s ease-in-out infinite;
}
@keyframes titLineMove1 {
  0% {
    width: 0.06rem;
  }
  50% {
    width: 0.3rem;
  }
  100% {
    width: 0.06rem;
  }
}
@keyframes titLineMove2 {
  0% {
    width: 0.3rem;
  }
  50% {
    width: 0.06rem;
  }
  100% {
    width: 0.3rem;
  }
}


@media screen and (max-width:1024px){
    *{
      font-size: 14px;
    }



    html,body{
        overflow-x: hidden;
        overflow-y: auto;
    }
    footer .main .top{
        flex-direction: column;
    }
    footer .main .top .left{
        margin-right: 0;
        margin-bottom: 20px;
    }
    footer .main .top .right{
        /*flex-direction: column;*/
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 20px;
    }
    footer .main .top .left .logo{
        width: 5rem;
        height: auto;
    }
    footer .main .top .left .desc{
        font-size: 12px;
        line-height: 1.5;
    }
    footer .main .top .right .item .tit{
        font-size: 14px;
    }
    footer .main .top .right .item .it{
        font-size: 12px;
    }
    footer .main .top .right .item .it p{
        font-size: 12px;
    }
    footer .main .top .right .item .formTip{
        font-size: 12px;
    }
    footer .main .top .right .item form input{
        font-size: 12px;
    }
    footer .main .top .right .item form button{
        font-size: 12px;
    }
    footer .main .bottom{
        flex-wrap: wrap;
        justify-content: center;
    }
    footer .main .bottom .left a,
    footer .main .bottom .right a{
        font-size: 12px;
    }
    .smallTit{
        font-size: 14px;
    }
    .bigTit{
        font-size: 18px;
    }





    .bread{
      padding-top: 20px;
    }
    .bread .main img{
      width: 14px;
      height: 14px;
    }
    .bread .main nav,
    .bread .main nav a{
      font-size: 14px;
      flex-wrap: wrap;
      line-height: 1.6;
    }
   .headerWrap{
        background: #fff;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    }
    header{
        position: relative;
        height: auto;
        min-height: 64px;
        padding: 10px 16px 0;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px 12px;
    }
    header .logo{
        width: min(58vw, 220px);
        height: auto;
        flex-shrink: 1;
        align-items: center;
    }
    header .logo img{
        width: 100%;
        height: auto;
    }
    header .headNav{
        order: 3;
        display: flex;
        width: calc(100% + 32px);
        height: auto;
        margin: 0 -16px;
        padding: 8px 12px 10px;
        overflow-x: auto;
        overflow-y: hidden;
        border-top: 1px solid #eee;
        /*background: #fff;*/
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    header .headNav::-webkit-scrollbar{
        display: none;
    }
    header .headNav .item{
        height: 36px;
        flex: 0 0 auto;
    }
    header .headNav .item>a{
        height: 36px;
        padding: 0 13px;
        display: flex;
        align-items: center;
        font-size: 13px;
        line-height: 36px;
        white-space: nowrap;
    }
    header .headNav .item:not(:last-child)>a{
        border-right: 0;
    }
    header .lang{
        margin-left: auto;
        width: auto;
        height: 26px;
        padding: 0 6px;
        gap: 6px;
        flex-shrink: 0;
    }
    header .lang a{
        width: 28px;
        height: 19px;
    }
    .level2Wrap{
        border-bottom-width: 4px;
        background: #fff;
        box-shadow: 0 8px 14px rgba(0, 0, 0, 0.08);
    }
    .level2 .main{
        width: 100%;
        height: auto;
        max-height: calc(100vh - 120px);
        padding: 18px 16px;
        display: block;
        overflow-y: auto;
    }
    .level2 .main .left{
        height: auto;
        padding: 0 0 14px;
        border-bottom: 1px solid #eee;
    }
    .level2 .main .left h3{
        margin-bottom: 8px;
        font-size: 18px;
        line-height: 1.35;
    }
    .level2 .main .left a{
        font-size: 13px;
    }
    .level2 .main .center{
        height: auto;
        padding: 12px 0 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 12px;
    }
    .level2 .main .center a{
        width: 100%;
        height: 42px;
        min-width: 0;
        font-size: 13px;
        line-height: 1.35;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .level2 .main .right{
        display: none;
    }
    
    .sidebar .item:not(:last-child){
        width: 46px;
        height: 46px;
    }
    .sidebar .item:not(:last-child) > a > span,
    .sidebar .item:last-child{
        font-size: 10px;
    }
    .sidebar .item:not(:last-child) > a > img{
        max-width: 20px;
        max-height: 17px;
    }
}
