* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: MiSans;
  /*font-size: 0.16rem;*/
  /*font-weight: 400;*/
}
span {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}
@font-face {
  font-family: MiSans;
  src: url("../font/MiSans-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: MiSans;
  src: url("../font/MiSans-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: MiSans;
  src: url("../font/MiSans-Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: MiSans;
  src: url("../font/MiSans-Demibold.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;
}
.anmao {
  position: relative;
  top: -0.8rem;
}
.anmao#home {
  top: 0;
}
/* 单选框颜色 */
header {
  width: 100%;
  height: 1rem;
  background: #ffffff;
  position: sticky;
  top: 0;
}
header .main {
  height: 1rem;
  display: flex;
  align-items: center;
}
header .main .logo {
  width: 2.94rem;
  height: 0.6rem;
}
header .main .logo img {
  width: 100%;
  height: 100%;
  display: block;
}
header .main .headNav {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  margin-left: auto;
  height: 100%;
}
header .main .headNav > div {
  font-weight: 400;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 0.02rem solid transparent;
}
header .main .headNav > div:hover {
  border-bottom: 0.02rem solid #003580;
}
header .main .headNav > div:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.06rem solid transparent;
  border-right: 0.06rem solid transparent;
  border-top: 0.06rem solid #003580;
}
header .main .headNav > div.lang:hover{
    border: none;
}
header .main .headNav > div.lang:hover::after{
    display: none;
}
header .main .headNav > div:hover .level2 {
  display: block;
}
header .main .headNav > div:hover a {
  color: #003580;
  font-weight: 600;
}
header .main .headNav > div > a {
  font-size: 0.18rem;
  color: #333333;
}

header .main .headNav > div.active > a{
    color: #003580;
    font-weight: 600;
}
header .main .headNav > div .level2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 0.01rem);
  background-color: #fff;
  width: fit-content;
  border-radius: 0rem 0rem 0.05rem 0.05rem;
  overflow: hidden;
  display: none;
}

header .main .headNav > div.lang .level2{
    top: 70%;
}

header .main .headNav > div.lang .level2 a.active{
   background-color: #c41e2a;
  color: #fff;
}
header .main .headNav > div .level2 a {
  padding: 0 0.15rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 400;
  font-size: 0.16rem;
  color: #7b7b7b;
  text-align: center;
  transition: all 0.6s;
}
header .main .headNav > div .level2 a:hover {
  background-color: #c41e2a;
  color: #fff;
}
header .main .headNav .lang {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  font-weight: 400;
  font-size: 0.14rem;
  color: #003580;
}
.comMore {
  width: 1.22rem;
  height: 0.4rem;
  background: #003580;
  border-radius: 0.2rem 0.2rem 0.2rem 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 0.16rem;
  color: #fff;
  gap: 0.1rem;
  transition: all 0.3s linear;
}
.comMore:hover {
  background: #c41e2a;
}
.comMore:hover span:last-child img:first-child {
  opacity: 0;
}
.comMore:hover span:last-child img:last-child {
  opacity: 1;
  transform: rotate(0deg);
}
.comMore span:last-child {
  font-size: 0.24rem;
  width: 0.28rem;
  height: 0.28rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.comMore span:last-child img {
  width: 0.2rem;
  height: 0.2rem;
  transition: all 0.6s;
}
.comMore span:last-child img:last-child {
  opacity: 0;
  width: 0.16rem;
  position: absolute;
  left: 0.06rem;
  top: 0.04rem;
  transform: rotate(-45deg);
}
footer {
  background: linear-gradient(180deg, #092951 0%, #021531 100%);
}
footer .main {
  display: flex;
  height: 6rem;
}
footer .left {
  width: 4.12rem;
  padding-top: 0.79rem;
  border-right: 0.01rem solid rgba(255, 255, 255, 0.2);
}
footer .left .tit {
  font-weight: 400;
  font-size: 0.32rem;
  color: #ffffff;
  margin-bottom: 0.26rem;
}
footer .left .tip {
  width: 2.41rem;
  height: 0.46rem;
  background: #c41e2a;
  border-radius: 0.23rem 0.23rem 0.23rem 0.23rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  font-weight: 400;
  font-size: 0.2rem;
  color: #ffffff;
  margin-bottom: 0.56rem;
}
footer .left .tip img {
  width: 0.18rem;
  height: 0.18rem;
}
footer .left .item {
  font-weight: 400;
  font-size: 0.16rem;
  color: #ffffff;
  margin-bottom: 0.13rem;
  line-height: 0.26rem;
}
footer .left .share {
  margin-top: 0.51rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
footer .left .share a {
  width: 0.21rem;
  height: 0.21rem;
}
footer .left .share a img {
  width: 100%;
  height: 100%;
}
footer .right .navList {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 5.4rem;
  padding-top: 0.79rem;
  padding-left: 1rem;
  column-gap: 1rem;
}
footer .right .navList .item:last-child {
  margin-top: 0.3rem;
}
footer .right .navList .item.hasChild {
  height: 100%;
}
footer .right .navList .item a {
  font-weight: 400;
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 0.34rem;
  transition: all 0.3s linear;
}
footer .right .navList .item a:hover {
  color: #ffffff;
}
footer .right .navList .item a.tit {
  font-weight: 400;
  font-size: 0.18rem;
  color: #ffffff;
  padding-bottom: 0.15rem;
  position: relative;
  margin-bottom: 0.2rem;
}
footer .right .navList .item a.tit::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.2rem;
  height: 0.02rem;
  background: #c41e2a;
}
footer .right .beian {
  width: 100%;
  height: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 0.14rem;
  color: #4e5d72;
  padding-left: 0.49rem;
  border-top: 0.01rem solid rgba(255, 255, 255, 0.2);
}
footer .right .beian .l {
  font-weight: 400;
  font-size: 0.14rem;
  color: #4e5d72;
}
footer .right .beian a {
  display: inline-block;
  font-weight: 400;
  font-size: 0.14rem;
  color: #4e5d72;
}
.about-hero {
  height: 5.8rem;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.about-hero::after{
  content: '';
  width: 100%;
  height: 100%;
  position:absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(10, 18, 43, 0.5) 0%, rgba(0, 53, 128, 0) 100%);
  
}
.about-hero .main {
  height: 100%;
  padding-top: 1.72rem;
  position: relative;
  z-index: 2;
}
.about-hero__city {
  width: 100%;
  height: 2.55rem;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.86;
}
.about-hero__en {
  font-weight: 400;
  font-size: 0.24rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  line-height: 0.34rem;
}
.about-hero h1 {
  margin-top: 0.06rem;
  font-weight: 600;
  font-size: 0.48rem;
  line-height: 0.62rem;
  color: #ffffff;
}
.about-hero__line {
  width: 0.6rem;
  height: 0.02rem;
  display: block;
  background: #c41e2a;
  margin-top: 0.22rem;
}
.about-hero__slogan {
  margin-top: 0.32rem;
  font-weight: 600;
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #f8bc54;
}
.about-channel {
  height: 0.82rem;
  border-bottom: 0.01rem solid #e9e9e9;
  background: #ffffff;
}
.about-channel .main {
  height: 0.82rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-tabs {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.54rem;
}
.about-tabs a {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 600;
  font-size: 0.18rem;
  color: #8d8d8d;
  white-space: nowrap;
  transition: all 0.3s linear;
}
.about-tabs a::after {
  content: "";
  width: 0;
  height: 0.02rem;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #003580;
  transition: all 0.3s linear;
}
.about-tabs a.active,
.about-tabs a:hover {
  color: #003580;
}
.about-tabs a.active::after,
.about-tabs a:hover::after {
  width: 100%;
}
.about-channel.is-product .crumb {
  position: absolute;
  right: calc((100% - 16rem) / 2);
  top: -0.54rem;
  z-index: 4;
  color: #ffffff;
}
.crumb {
  display: flex;
  align-items: center;
  gap: 0.07rem;
  white-space: nowrap;
  font-weight: 400;
  font-size: 0.13rem;
  color: #8c8c8c;
}
.crumb a {
  color: #8c8c8c;
}
.crumb img {
  width: 0.15rem;
  height: 0.15rem;
}
.crumb span,
.crumb i,
.crumb em {
  font-style: normal;
  font-weight: 400;
  font-size: 0.13rem;
}
.crumb em {
  color: #c41e2a;
}
.about-channel.is-product {
  height: 0.78rem;
  position: relative;
}
.about-channel.is-product .main {
  height: 0.78rem;
  display: block;
}
.about-channel.is-product .about-tabs {
  width: 100%;
  /*justify-content: center;*/
  gap: 0.44rem;
  overflow-x: auto;
}
.about-channel.is-product .about-tabs a {
  height: 0.78rem;
  flex: 0 0 auto;
  font-size: 0.16rem;
}
.about-channel.is-product .crumb {
  position: absolute;
  right: calc((100% - 16rem) / 2);
  top: -0.54rem;
  z-index: 4;
  color: #ffffff;
}
.about-channel.is-product .crumb a,
.about-channel.is-product .crumb span,
.about-channel.is-product .crumb i {
  color: rgba(255, 255, 255, 0.9);
}
.about-channel.is-product .crumb em {
  color: #ff4d5c;
}
.about-channel.is-product .crumb img {
  filter: brightness(0) invert(1);
}
@media (max-width: 1600px) {
  .about-channel.is-product .crumb {
    right: 0.32rem;
  }
}
.home-dot {
  width: 0.14rem;
  height: 0.14rem;
  display: inline-block;
  position: relative;
  background: #003580;
  clip-path: polygon(50% 0, 100% 42%, 86% 42%, 86% 100%, 14% 100%, 14% 42%, 0 42%);
}
.gzzPage {
  margin-top: 0.49rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.06rem;
}
.gzzPage a,
.gzzPage span {
  width: 0.32rem;
  height: 0.32rem;
  background-color: #fff;
  border: 0.01rem solid #e5e5e5;
  border-radius: 0.02rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 0.14rem;
  color: #999999;
  line-height: 1;
}
.gzzPage span {
  border-color: transparent;
  width: 0.24rem;
  background: none;
}
.gzzPage .current {
  background: #003580;
  border-color: #003580;
  color: #ffffff;
}
.gzzPage .prev,
.gzzPage .next {
  position: relative;
}
.gzzPage .prev::before,
.gzzPage .next::before {
  content: "";
  width: 0.07rem;
  height: 0.07rem;
  border-top: 0.01rem solid #cfcfcf;
  border-right: 0.01rem solid #cfcfcf;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.gzzPage .next::before {
  left: 42%;
}
.gzzPage .prev::before {
  left: 55%;
  transform: translate(-50%, -50%) rotate(-135deg);
}
