@charset "utf-8";
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.flex-hc {
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.flex-zBetween {
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex-zEnd {
  -webkit-box-pack: end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-zStart {
  -webkit-box-pack: start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.flex-ac {
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.flex-cStart {
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.flex-cEnd {
  -webkit-box-align: end;
  -moz-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.flex-cBaseline {
  -webkit-box-align: baseline;
  -moz-align-items: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.flex-cStretch {
  -webkit-box-align: stretch;
  -moz-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.flex-zTopBottom {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.flex-zBottomTop {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.flex-zLeftRight {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.flex-zRightLeft {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-shrink {
  -webkit-box-flex: 0;
  -moz-flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.flex-center {
  -webkit-align-content: center;
  align-content: center;
}
.flex-start {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
.flex-end {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}
.flex-between {
  -webkit-align-content: space-between;
  align-content: space-between;
}
.flex-container {
  -webkit-align-content: space-around;
  align-content: space-around;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-nowrap {
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex_bd {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw / 19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "HONORSansCN-Regular", "PingFang SC", "Microsoft YaHei";
  /* COLOR */
  --active-color: #cc0000;
  --white-color: #ffffff;
  --black-000: #000000;
  --gray: rgba(0, 0, 0, 0.6);
  --gray04: rgba(0, 0, 0, 0.4);
  --white04: rgba(255, 255, 255, 0.4);
  --white06: rgba(255, 255, 255, 0.6);
  --white08: rgba(255, 255, 255, 0.8);
  --black-e5e: #e5e5e5;
  --black-333: #333333;
  --bg-f7: #f7f7f7;
  --bg-f8: #f8f8f8;
  --bg-f9: #f9f9f9;
  --bg-ef: #efefef;
  --bg-7e: #7e7e7e;
  --bg-28: #282828;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw / 7.5);
  }
}
body {
  font: 14px "HONORSansCN-Regular", "PingFang SC", "Microsoft YaHei";
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
@font-face {
  font-family: "HONORSansCN-Bold";
  src: url('../font/HONORSansCN-Bold.ttf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HONORSansCN-Medium";
  src: url('../font/HONORSansCN-Medium.ttf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HONORSansCN-Regular";
  src: url('../font/HONORSansCN-Regular.ttf');
  font-style: normal;
  font-display: swap;
}
.container {
  max-width: 1440px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.pt75 {
  padding-top: 0.75rem;
}
@media (max-width: 991px) {
  .pt75 {
    padding-top: 1rem;
  }
}
@media (max-width: 480px) {
  .pt75 {
    padding-top: 1rem;
  }
}
.pb75 {
  padding-bottom: 0.75rem;
}
@media (max-width: 991px) {
  .pb75 {
    padding-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .pb75 {
    padding-bottom: 1rem;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .pt100 {
    padding-top: 0.8rem;
  }
}
@media (max-width: 480px) {
  .pt100 {
    padding-top: 1rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .pb100 {
    padding-bottom: 0.8rem;
  }
}
@media (max-width: 480px) {
  .pb100 {
    padding-bottom: 1rem;
  }
}
.pt120 {
  padding-top: 1.2rem;
}
@media (max-width: 767px) {
  .pt120 {
    padding-top: 0.8rem;
  }
}
@media (max-width: 480px) {
  .pt120 {
    padding-top: 1rem;
  }
}
.pb120 {
  padding-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .pb120 {
    padding-bottom: 0.8rem;
  }
}
@media (max-width: 480px) {
  .pb120 {
    padding-bottom: 1rem;
  }
}
.pt140 {
  padding-top: 1.4rem;
}
@media (max-width: 991px) {
  .pt140 {
    padding-top: 1.2rem;
  }
}
@media (max-width: 767px) {
  .pt140 {
    padding-top: 1rem;
  }
}
@media (max-width: 480px) {
  .pt140 {
    padding-top: 1.2rem;
  }
}
.pb140 {
  padding-bottom: 1.4rem;
}
@media (max-width: 991px) {
  .pb140 {
    padding-bottom: 1.2rem;
  }
}
@media (max-width: 767px) {
  .pb140 {
    padding-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .pb140 {
    padding-bottom: 1.2rem;
  }
}
.pt180 {
  padding-top: 1.8rem;
}
@media (max-width: 991px) {
  .pt180 {
    padding-top: 1.4rem;
  }
}
@media (max-width: 767px) {
  .pt180 {
    padding-top: 1rem;
  }
}
@media (max-width: 480px) {
  .pt180 {
    padding-top: 1.2rem;
  }
}
.pb180 {
  padding-bottom: 1.8rem;
}
@media (max-width: 991px) {
  .pb180 {
    padding-bottom: 1.4rem;
  }
}
@media (max-width: 767px) {
  .pb180 {
    padding-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .pb180 {
    padding-bottom: 1.2rem;
  }
}
.pt90 {
  padding-top: 0.9rem;
}
@media (max-width: 767px) {
  .pt90 {
    padding-top: 0.8rem;
  }
}
@media (max-width: 480px) {
  .pt90 {
    padding-top: 1rem;
  }
}
.pb90 {
  padding-bottom: 0.9rem;
}
@media (max-width: 767px) {
  .pb90 {
    padding-bottom: 0.8rem;
  }
}
@media (max-width: 480px) {
  .pb90 {
    padding-bottom: 1rem;
  }
}
.pt110 {
  padding-top: 1.1rem;
}
@media (max-width: 767px) {
  .pt110 {
    padding-top: 0.8rem;
  }
}
@media (max-width: 480px) {
  .pt110 {
    padding-top: 1rem;
  }
}
.pt120 {
  padding-top: 1.2rem;
}
@media (max-width: 767px) {
  .pt120 {
    padding-top: 0.8rem;
  }
}
@media (max-width: 480px) {
  .pt120 {
    padding-top: 1rem;
  }
}
.pb120 {
  padding-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .pb120 {
    padding-bottom: 0.8rem;
  }
}
@media (max-width: 480px) {
  .pb120 {
    padding-bottom: 1rem;
  }
}
.pt150 {
  padding-top: 1.5rem;
}
@media (max-width: 991px) {
  .pt150 {
    padding-top: 1.2rem;
  }
}
@media (max-width: 767px) {
  .pt150 {
    padding-top: 1rem;
  }
}
@media (max-width: 480px) {
  .pt150 {
    padding-top: 1.2rem;
  }
}
.pb150 {
  padding-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .pb150 {
    padding-bottom: 1.2rem;
  }
}
@media (max-width: 767px) {
  .pb150 {
    padding-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .pb150 {
    padding-bottom: 1.2rem;
  }
}
.pt170 {
  padding-top: 1.7rem;
}
@media (max-width: 991px) {
  .pt170 {
    padding-top: 1.4rem;
  }
}
@media (max-width: 767px) {
  .pt170 {
    padding-top: 1rem;
  }
}
@media (max-width: 480px) {
  .pt170 {
    padding-top: 1.2rem;
  }
}
.pb170 {
  padding-bottom: 1.7rem;
}
@media (max-width: 991px) {
  .pb170 {
    padding-bottom: 1.4rem;
  }
}
@media (max-width: 767px) {
  .pb170 {
    padding-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .pb170 {
    padding-bottom: 1.2rem;
  }
}
.pt200 {
  padding-top: 2rem;
}
@media (max-width: 991px) {
  .pt200 {
    padding-top: 1.5rem;
  }
}
@media (max-width: 767px) {
  .pt200 {
    padding-top: 1rem;
  }
}
@media (max-width: 480px) {
  .pt200 {
    padding-top: 1.2rem;
  }
}
.pb200 {
  padding-bottom: 2rem;
}
@media (max-width: 991px) {
  .pb200 {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .pb200 {
    padding-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .pb200 {
    padding-bottom: 1.2rem;
  }
}
.pb220 {
  padding-bottom: 2.2rem;
}
@media (max-width: 991px) {
  .pb220 {
    padding-bottom: 1.7rem;
  }
}
@media (max-width: 767px) {
  .pb220 {
    padding-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .pb220 {
    padding-bottom: 1.2rem;
  }
}
.font12 {
  font-size: 12px;
}
.font14 {
  font-size: 14px;
}
@media (max-width: 1900px) {
  .font14 {
    font-size: 0.7291666666666667vw;
  }
}
@media (max-width: 1260px) {
  .font14 {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .font14 {
    font-size: 14px;
  }
}
.font16 {
  font-size: 16px;
}
@media (max-width: 1900px) {
  .font16 {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .font16 {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .font16 {
    font-size: 14px;
  }
}
.font18 {
  font-size: 18px;
}
@media (max-width: 1900px) {
  .font18 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .font18 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .font18 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .font18 {
    font-size: 0.26rem;
  }
}
.font20 {
  font-size: 20px;
}
@media (max-width: 1900px) {
  .font20 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .font20 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .font20 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .font20 {
    font-size: 0.28rem;
  }
}
.font24 {
  font-size: 24px;
}
@media (max-width: 1900px) {
  .font24 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .font24 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .font24 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .font24 {
    font-size: 0.35rem;
  }
}
.font28 {
  font-size: 28px;
}
@media (max-width: 1900px) {
  .font28 {
    font-size: 1.458333333333333vw;
  }
}
@media (max-width: 1260px) {
  .font28 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .font28 {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .font28 {
    font-size: 21px;
  }
}
@media (max-width: 480px) {
  .font28 {
    font-size: 0.34rem;
  }
}
.font30 {
  font-size: 30px;
}
@media (max-width: 1900px) {
  .font30 {
    font-size: 1.5625vw;
  }
}
@media (max-width: 1260px) {
  .font30 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .font30 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .font30 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .font30 {
    font-size: 0.38rem;
  }
}
.font40 {
  font-size: 40px;
}
@media (max-width: 1900px) {
  .font40 {
    font-size: 2.083333333333333vw;
  }
}
@media (max-width: 1260px) {
  .font40 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .font40 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .font40 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .font40 {
    font-size: 0.42rem;
  }
}
.font50 {
  font-size: 50px;
}
@media (max-width: 1900px) {
  .font50 {
    font-size: 2.604166666666667vw;
  }
}
@media (max-width: 1260px) {
  .font50 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .font50 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .font50 {
    font-size: 0.5rem;
  }
}
.font60 {
  font-size: 60px;
}
@media (max-width: 1900px) {
  .font60 {
    font-size: 3.125vw;
  }
}
@media (max-width: 1260px) {
  .font60 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .font60 {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .font60 {
    font-size: 0.52rem;
  }
}
.font120 {
  font-size: 6.25vw;
}
@media (max-width: 991px) {
  .font120 {
    font-size: 64px;
  }
}
@media (max-width: 767px) {
  .font120 {
    font-size: 45px;
  }
}
@media (max-width: 480px) {
  .font120 {
    font-size: 0.72rem;
  }
}
.spacing {
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
}
@media (max-width: 991px) {
  .spacing {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }
}
.obanner {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}
.obanner > img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .obanner > img.pImg {
    display: none;
  }
}
.obanner > img.mImg {
  display: none;
}
@media (max-width: 991px) {
  .obanner > img.mImg {
    display: block;
  }
}
@media (max-width: 1260px) {
  .obanner > img {
    height: 48vh;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .obanner > img {
    height: 60vh;
  }
}
@media (max-width: 1260px) {
  .obanner.oth > img {
    height: 35vh;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .obanner.oth > img {
    height: 48vh;
  }
}
.obanner .bannerImg {
  display: none;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.obanner .bannerTitle {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
  text-align: center;
}
.obanner .bannerTitle .box .title {
  font-family: "HONORSansCN-Bold";
  color: #ffffff;
  font-size: 60px;
}
@media (max-width: 1900px) {
  .obanner .bannerTitle .box .title {
    font-size: 3.125vw;
  }
}
@media (max-width: 1260px) {
  .obanner .bannerTitle .box .title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .obanner .bannerTitle .box .title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .obanner .bannerTitle .box .title {
    font-size: 0.52rem;
  }
}
.obanner .bannerTitle .box .subtit {
  font-family: "HONORSansCN-Bold";
  color: #ffffff;
  font-size: 40px;
}
@media (max-width: 1900px) {
  .obanner .bannerTitle .box .subtit {
    font-size: 2.083333333333333vw;
  }
}
@media (max-width: 1260px) {
  .obanner .bannerTitle .box .subtit {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .obanner .bannerTitle .box .subtit {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .obanner .bannerTitle .box .subtit {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .obanner .bannerTitle .box .subtit {
    font-size: 0.42rem;
  }
}
.obanner .bannerTitle .box .text {
  max-width: 7.5rem;
  width: 100%;
  font-size: 24px;
  color: #ffffff;
  line-height: 1.7;
  margin-top: 0.1rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1900px) {
  .obanner .bannerTitle .box .text {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .obanner .bannerTitle .box .text {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .obanner .bannerTitle .box .text {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .obanner .bannerTitle .box .text {
    font-size: 0.35rem;
  }
}
@media (max-width: 991px) {
  .obanner .bannerTitle .box .text {
    font-size: 20px;
  }
}
@media (max-width: 991px) and (max-width: 1900px) {
  .obanner .bannerTitle .box .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 991px) and (max-width: 1260px) {
  .obanner .bannerTitle .box .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .obanner .bannerTitle .box .text {
    font-size: 18px;
  }
}
@media (max-width: 991px) and (max-width: 480px) {
  .obanner .bannerTitle .box .text {
    font-size: 0.28rem;
  }
}
.obanner .bannerTitle .box .text.w100 {
  max-width: 100%;
}
.obanner .bannerTitle .searchfor .layui-form-item .layui-form-label {
  float: none;
  width: 100%;
  padding: 0;
  margin-bottom: 0.35rem;
  text-align: center;
  line-height: inherit;
  font-family: "HONORSansCN-Bold";
  color: #ffffff;
  font-size: 40px;
}
@media (max-width: 1900px) {
  .obanner .bannerTitle .searchfor .layui-form-item .layui-form-label {
    font-size: 2.083333333333333vw;
  }
}
@media (max-width: 1260px) {
  .obanner .bannerTitle .searchfor .layui-form-item .layui-form-label {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .obanner .bannerTitle .searchfor .layui-form-item .layui-form-label {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .obanner .bannerTitle .searchfor .layui-form-item .layui-form-label {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .obanner .bannerTitle .searchfor .layui-form-item .layui-form-label {
    font-size: 0.42rem;
  }
}
.obanner .bannerTitle .searchfor .layui-form-item .layui-input-inline {
  position: relative;
  float: none;
  display: block;
  max-width: 6rem;
  width: 100%;
  margin: auto;
  padding-right: 1.2rem;
  border: rgba(255, 255, 255, 0.2) solid 2px;
  border-radius: 0.45rem;
  box-sizing: border-box;
}
@media (max-width: 1260px) {
  .obanner .bannerTitle .searchfor .layui-form-item .layui-input-inline {
    max-width: 6.6rem;
  }
}
@media (max-width: 991px) {
  .obanner .bannerTitle .searchfor .layui-form-item .layui-input-inline {
    max-width: 7.2rem;
    border: rgba(255, 255, 255, 0.2) solid 1px;
  }
}
.obanner .bannerTitle .searchfor .layui-form-item .layui-input-inline .layui-input {
  width: 100%;
  height: 0.78rem;
  line-height: 0.78rem;
  font-size: 20px;
  color: #FFFFFF;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
  background: none;
  border: none;
}
@media (max-width: 1900px) {
  .obanner .bannerTitle .searchfor .layui-form-item .layui-input-inline .layui-input {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .obanner .bannerTitle .searchfor .layui-form-item .layui-input-inline .layui-input {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .obanner .bannerTitle .searchfor .layui-form-item .layui-input-inline .layui-input {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .obanner .bannerTitle .searchfor .layui-form-item .layui-input-inline .layui-input {
    font-size: 0.28rem;
  }
}
.obanner .bannerTitle .searchfor .layui-form-item .layui-input-inline .layui-input::-webkit-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(255, 255, 255, 0.6);
}
.obanner .bannerTitle .searchfor .layui-form-item .layui-input-inline .layui-input::-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(255, 255, 255, 0.6);
}
.obanner .bannerTitle .searchfor .layui-form-item .layui-input-inline .layui-input:-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(255, 255, 255, 0.6);
}
.obanner .bannerTitle .searchfor .layui-form-item .layui-input-inline .layui-input:-ms-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(255, 255, 255, 0.6);
}
.obanner .bannerTitle .searchfor .layui-form-item .layui-input-inline .layui-btn {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.2rem;
  height: 100%;
  background: #CC0000;
  border-radius: 0.45rem;
}
.obanner .bannerTitle .searchfor .layui-form-item .layui-input-inline .layui-btn img {
  max-width: 0.29rem;
}
.obanner .positioning {
  position: absolute;
  left: 0;
  bottom: 0.7rem;
  width: 100%;
}
.escalator-category {
  width: 100%;
}
@media (max-width: 767px) {
  .escalator-category {
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
  }
}
.escalator-category ul {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  gap: 0.12rem;
}
@media (max-width: 991px) {
  .escalator-category ul {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .escalator-category ul::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
  .escalator-category ul::-webkit-scrollbar-button {
    background-color: rgba(0, 0, 0, 0);
  }
  .escalator-category ul::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
  }
  .escalator-category ul::-webkit-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0);
  }
  .escalator-category ul::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0);
  }
  .escalator-category ul::-webkit-scrollbar-corner {
    background-color: rgba(0, 0, 0, 0);
  }
  .escalator-category ul::-webkit-scrollbar-resizer {
    background-color: rgba(0, 0, 0, 0);
  }
  .escalator-category ul::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
}
@media (max-width: 767px) {
  .escalator-category ul {
    gap: 3.5%;
    justify-content: flex-start;
  }
}
.escalator-category ul li {
  display: inline-block;
  list-style: none;
  min-width: 17.70833333333333%;
}
@media (max-width: 767px) {
  .escalator-category ul li {
    width: 31%;
    min-width: 31%;
  }
}
.escalator-category ul li span,
.escalator-category ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.8rem;
  color: #FFFFFF;
  font-size: 24px;
  font-family: "HONORSansCN-Bold";
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
  padding: 0.1rem 0.25rem;
  box-sizing: border-box;
  min-height: 0.8rem;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 1900px) {
  .escalator-category ul li span,
  .escalator-category ul li a {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .escalator-category ul li span,
  .escalator-category ul li a {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .escalator-category ul li span,
  .escalator-category ul li a {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .escalator-category ul li span,
  .escalator-category ul li a {
    font-size: 0.35rem;
  }
}
@media (max-width: 991px) {
  .escalator-category ul li span,
  .escalator-category ul li a {
    font-size: 20px;
  }
}
@media (max-width: 991px) and (max-width: 1900px) {
  .escalator-category ul li span,
  .escalator-category ul li a {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 991px) and (max-width: 1260px) {
  .escalator-category ul li span,
  .escalator-category ul li a {
    font-size: 16px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .escalator-category ul li span,
  .escalator-category ul li a {
    font-size: 18px;
  }
}
@media (max-width: 991px) and (max-width: 480px) {
  .escalator-category ul li span,
  .escalator-category ul li a {
    font-size: 0.28rem;
  }
}
@media (max-width: 767px) {
  .escalator-category ul li span,
  .escalator-category ul li a {
    height: 0.64rem;
  }
}
@media (max-width: 480px) {
  .escalator-category ul li span,
  .escalator-category ul li a {
    height: 0.8rem;
  }
}
.escalator-category ul li.active span,
.escalator-category ul li.active a {
  background: #CC0000;
}
.shade::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}
.img-cover {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.mImg {
  display: none;
}
@media (max-width: 991px) {
  .mImg {
    display: block;
  }
}
.pImg {
  display: block;
}
@media (max-width: 991px) {
  .pImg {
    display: none;
  }
}
/* 视频弹窗 */
#hi-video-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-video-pop * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-video-pop .hi-close {
  position: fixed;
  top: 85%;
  left: 50%;
  z-index: 5;
  margin-left: -25px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #fff;
  border-radius: 50%;
  transition: .3s;
  cursor: pointer;
}
#hi-video-pop .hi-close:after,
#hi-video-pop .hi-close:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 20px;
  height: 2px;
  margin: -1px 0 0 -10px;
  background: #333;
  transition: .3s;
}
#hi-video-pop .hi-close:hover {
  background: #005CE6;
}
#hi-video-pop .hi-close:hover:after,
#hi-video-pop .hi-close:hover:before {
  background: #fff;
}
#hi-video-pop .hi-close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#hi-video-pop .hi-close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#hi-video-pop .hi-video-box {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#hi-video-pop .hi-video-box .hi-video-wrap {
  max-width: 96vh;
  border: 2px solid #fff;
}
#hi-video-pop .hi-video-box .hi-video-wrap video {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
@media (max-width: 767px) {
  #hi-video-pop .hi-video-box .hi-video-wrap {
    max-width: 90%;
  }
}
/*
插件：图片弹窗
版本：
官网：
*/
/* 视频弹窗 */
#hi-video-pop {
  color: var(--color-active);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-video-pop * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-video-pop .hi-close {
  position: fixed;
  top: 85%;
  left: 50%;
  z-index: 5;
  margin-left: -25px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #fff;
  border-radius: 50%;
  transition: .4s;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#hi-video-pop .hi-close:after,
#hi-video-pop .hi-close:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 20px;
  height: 2px;
  margin: -1px 0 0 -10px;
  background: #333;
  transition: .4s;
}
#hi-video-pop .hi-close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#hi-video-pop .hi-close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#hi-video-pop .hi-close:hover {
  background: var(--color-active);
}
#hi-video-pop .hi-close:hover:after,
#hi-video-pop .hi-close:hover:before {
  background: #fff;
}
#hi-video-pop .hi-video-box {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#hi-video-pop .hi-video-box .hi-video-wrap {
  position: relative;
  max-width: 90vh;
  border: 2px solid #fff;
}
@media (max-width: 767px) {
  #hi-video-pop .hi-video-box .hi-video-wrap {
    max-width: 90%;
  }
}
#hi-video-pop .hi-video-box .hi-video-wrap video {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
/* iframe视频弹窗 */
#hi-iframe-video {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-iframe-video * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-iframe-video .hi-close {
  position: fixed;
  top: 85%;
  left: 50%;
  z-index: 5;
  margin-left: -25px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #fff;
  border-radius: 50%;
  transition: .4s;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#hi-iframe-video .hi-close:after,
#hi-iframe-video .hi-close:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 20px;
  height: 2px;
  margin: -1px 0 0 -10px;
  background: #333;
  transition: .4s;
}
#hi-iframe-video .hi-close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#hi-iframe-video .hi-close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#hi-iframe-video .hi-close:hover {
  background: var(--color-active);
}
#hi-iframe-video .hi-close:hover:after,
#hi-iframe-video .hi-close:hover:before {
  background: #fff;
}
#hi-iframe-video iframe {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 100vh;
  height: 60vh;
  max-width: 90%;
  max-height: 70%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  #hi-iframe-video iframe {
    width: 90vw;
    height: 60vw;
  }
}
/*
插件：视频全屏
版本：
官网：
*/
#hi-video-pop2 {
  display: none;
  height: 0;
  width: 0;
}
.c-close {
  max-width: .24rem;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: .3rem;
  margin-right: .3rem;
  cursor: pointer;
  z-index: 2;
}
.c-close img,
.c-close svg {
  width: 100%;
  height: auto;
}
.c-close.c-close-white {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
@media only screen and (max-width: 1024px) {
  .c-close {
    top: -1rem;
  }
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  width: 100%;
  padding: 0 0.2rem;
  height: 0.8rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  box-sizing: border-box;
}
.header::before {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  width: calc(100% - 0.4rem);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .header {
    padding: 0 15px;
    height: 70px;
  }
}
.header.white {
  background-color: #ffffff;
}
.header.white::before {
  background: rgba(0, 0, 0, 0.1);
}
.header.white .nav li > a {
  color: #000000;
}
.header.h-white {
  background-color: #ffffff;
}
.header.h-white::before {
  background: rgba(0, 0, 0, 0.1);
}
.header.h-white .nav li > a {
  color: #000000;
}
.header .logo img {
  display: block;
  width: 1.12rem;
  user-select: none;
  cursor: pointer;
}
@media (max-width: 991px) {
  .header .logo img {
    width: 112px;
  }
}
.header .nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: auto;
  margin-right: 0.21rem;
  height: 100%;
  padding: 0;
}
@media (max-width: 991px) {
  .header .nav {
    display: none;
  }
}
.header .nav li {
  position: relative;
  padding-left: 0.21rem;
  padding-right: 0.21rem;
  height: 100%;
  list-style: none;
}
.header .nav li:hover > a {
  font-family: "HONORSansCN-Bold";
  color: #cc0000;
}
.header .nav li:hover > a::before {
  width: 100%;
}
.header .nav li.current > a {
  font-weight: bold;
  color: #cc0000;
  transition: all 0.45s ease;
}
.header .nav li.current > a::before {
  width: 100%;
}
.header .nav li > a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  font-family: "HONORSansCN-Regular";
  font-size: 18px;
  color: #ffffff;
  line-height: 1;
  position: relative;
}
@media (max-width: 1900px) {
  .header .nav li > a {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .header .nav li > a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .header .nav li > a {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .header .nav li > a {
    font-size: 0.26rem;
  }
}
.header .nav li > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 2px;
  background: #cc0000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header .nav li > a:hover {
  font-weight: bold;
  color: #cc0000;
  transition: all 0.45s ease;
}
.header .nav li .navcell {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0.12rem 0;
  min-width: 1.6rem;
  background: #ffffff;
  box-shadow: 10px 0px 30px rgba(0, 0, 0, 0.05);
}
.header .nav li .navcell a {
  display: block;
  text-align: center;
  color: #000000;
  font-family: "HONORSansCN-Regular";
  font-size: 16px;
  line-height: 1.7;
  white-space: nowrap;
  padding: 0.05rem 0.2rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1900px) {
  .header .nav li .navcell a {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .header .nav li .navcell a {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .header .nav li .navcell a {
    font-size: 14px;
  }
}
.header .nav li .navcell a:hover {
  color: #cc0000;
}
.header .nav li .drop-down {
  display: none;
  position: absolute;
  top: 100%;
  left: 0%;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 14px 16px rgba(200, 200, 200, 0.21);
}
.header .nav li .drop-down .box {
  width: 100%;
}
.header .nav li .drop-down .box .textbox {
  width: 56.25%;
  box-sizing: border-box;
  overflow: hidden;
  padding-top: 5%;
  padding-left: calc((100% - 1440px) / 2);
  padding-right: 6%;
}
@media (max-width: 1580px) {
  .header .nav li .drop-down .box .textbox {
    padding-left: 5%;
    padding-right: 4%;
  }
}
.header .nav li .drop-down .box .textbox .title {
  position: relative;
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 30px;
  margin-bottom: 0.4rem;
}
@media (max-width: 1900px) {
  .header .nav li .drop-down .box .textbox .title {
    font-size: 1.5625vw;
  }
}
@media (max-width: 1260px) {
  .header .nav li .drop-down .box .textbox .title {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .header .nav li .drop-down .box .textbox .title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .header .nav li .drop-down .box .textbox .title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .header .nav li .drop-down .box .textbox .title {
    font-size: 0.38rem;
  }
}
.header .nav li .drop-down .box .textbox .title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 2px;
  background: #f0f0f0;
}
.header .nav li .drop-down .box .textbox .title span {
  position: relative;
  z-index: 2;
  display: inline-block;
  border-bottom: #CC0000 solid 2px;
  padding-bottom: 0.15rem;
}
.header .nav li .drop-down .box .textbox .column {
  max-width: 5.2rem;
  width: 100%;
  column-gap: 0.45rem;
  row-gap: 0.1rem;
}
.header .nav li .drop-down .box .textbox .column a {
  position: relative;
  font-family: "HONORSansCN-Bold";
  color: #a6a6a6;
  font-size: 20px;
  line-height: 1.7;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 1900px) {
  .header .nav li .drop-down .box .textbox .column a {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .header .nav li .drop-down .box .textbox .column a {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .header .nav li .drop-down .box .textbox .column a {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .header .nav li .drop-down .box .textbox .column a {
    font-size: 0.28rem;
  }
}
.header .nav li .drop-down .box .textbox .column a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 2px;
  background: #CC0000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header .nav li .drop-down .box .textbox .column a:hover {
  color: #cc0000;
}
.header .nav li .drop-down .box .textbox .column a:hover::before {
  width: 100%;
}
.header .nav li .drop-down .box .textbox .title_en {
  position: absolute;
  left: calc((100% - 1440px) / 2);
  bottom: 0;
  font-family: "HONORSansCN-Bold";
  font-size: 10.41666666666667vw;
  color: rgba(0, 0, 0, 0.1);
  line-height: 0.6;
  text-transform: uppercase;
}
@media (max-width: 1580px) {
  .header .nav li .drop-down .box .textbox .title_en {
    left: 5%;
    font-size: 12vw;
  }
}
.header .nav li .drop-down .box .imgbox {
  width: 43.75%;
  overflow: hidden;
}
.header .nav li .drop-down .box .imgbox img {
  display: block;
  width: 100%;
}
.header .operate {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 991px) {
  .header .operate {
    margin-left: auto;
    margin-right: 15px;
  }
}
.header .operate .item.head-nation {
  position: relative;
}
.header .operate .item .i-icon {
  width: 0.4rem;
  height: 0.4rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  background: #cc0000;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .header .operate .item .i-icon {
    width: 0.56rem;
    height: 0.56rem;
  }
}
@media (max-width: 767px) {
  .header .operate .item .i-icon {
    width: 0.45rem;
    height: 0.45rem;
  }
}
@media (max-width: 480px) {
  .header .operate .item .i-icon {
    width: 0.56rem;
    height: 0.56rem;
  }
}
.header .operate .item .i-icon img {
  width: 40%;
}
.header .operate .item:first-child {
  margin-right: 0.11rem;
}
@media (max-width: 991px) {
  .header .operate .item:first-child {
    margin-right: 0.25rem;
  }
}
@media (max-width: 767px) {
  .header .operate .item:first-child {
    margin-right: 0.15rem;
  }
}
@media (max-width: 480px) {
  .header .operate .item:first-child {
    margin-right: 0.25rem;
  }
}
.header .operate .item .dropdown {
  position: absolute;
  left: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0.1rem);
  transform: translate(-50%, 0.1rem);
  top: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .header .operate .item .dropdown {
    top: 100%;
    padding: 10px 0px;
    min-width: 90px;
  }
}
.header .operate .item .dropdown ul {
  margin-top: 0.2rem;
  background-color: #ffffff;
  padding: 0.1rem 0px;
  text-align: left;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
.header .operate .item .dropdown ul li {
  list-style: none;
}
.header .operate .item .dropdown ul li a {
  display: block;
  font-size: 14px;
  color: var(--black-666);
  line-height: 2.2;
  min-width: 0.9rem;
  text-align: center;
  padding: 0 0.2rem;
  white-space: nowrap;
  box-sizing: border-box;
  list-style: none;
}
@media (max-width: 1900px) {
  .header .operate .item .dropdown ul li a {
    font-size: 0.7291666666666667vw;
  }
}
@media (max-width: 1260px) {
  .header .operate .item .dropdown ul li a {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .header .operate .item .dropdown ul li a {
    font-size: 14px;
  }
}
.header .operate .item .dropdown ul li a:hover {
  color: #cc0000;
}
.header .operate .item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.header .phone-toggle {
  margin-right: 15px;
  user-select: none;
  cursor: pointer;
  display: none;
}
@media (max-width: 991px) {
  .header .phone-toggle {
    display: block;
  }
}
.header .phone-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #cc0000;
  margin-bottom: 5px;
  transition: all 0.45s ease;
}
.header .phone-toggle span:last-of-type {
  margin-bottom: 0;
}
.mbox .header {
  background: #ffffff;
}
.m-nav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 0px;
  z-index: 99;
  background-color: #FFFFFF;
  overflow-y: scroll;
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.m-nav > ul {
  padding-top: 10px;
  padding-left: 5%;
  padding-right: 5%;
}
.m-nav > ul > li {
  position: relative;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  list-style: none;
  border-bottom: #e5e5e5 solid 1px;
}
.m-nav > ul > li a {
  display: block;
  font-family: "HONORSansCN-Regular";
  line-height: 1.7;
  color: #333333;
  font-size: 17px;
  padding: 14px 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.m-nav > ul > li .headtitle {
  position: relative;
  display: block;
  font-family: "HONORSansCN-Regular";
  line-height: 1.7;
  color: #333333;
  font-size: 17px;
  padding: 14px 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.m-nav > ul > li .headtitle a {
  display: inline-block;
  padding: 0;
}
.m-nav > ul > li .headtitle i {
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 100%;
  background: url(../images/icon79.png) center no-repeat;
  background-size: 8px auto;
  transition: all 0.4s ease;
}
.m-nav > ul > li .headtitle.on {
  color: #cc0000;
}
.m-nav > ul > li .headtitle.on i {
  background: url(../images/icon79.png) center no-repeat;
  background-size: 8px auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.m-nav > ul > li ul {
  display: none;
  padding-left: 20px;
  border-top: #e5e5e5 solid 1px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.m-nav > ul > li ul li {
  list-style: none;
}
.m-nav > ul > li ul li a {
  display: block;
  font-family: "HONORSansCN-Regular";
  font-size: 16px;
  padding: 7px 0px;
}
.m-nav > ul > li ul li:hover a {
  color: #cc0000;
}
.m-nav > ul > li:hover > a {
  color: #cc0000;
}
.mbox .m-nav {
  height: calc(100vh - 70px);
}
.mbox .phone-toggle span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.mbox .phone-toggle span:nth-child(2) {
  display: none;
}
.mbox .phone-toggle span:nth-child(3) {
  transform: rotate(45deg);
}
.footer {
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left bottom;
  background-color: #282828;
}
.footer .foot-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer .foot-top .foot-logo img {
  display: block;
  width: 1rem;
}
@media (max-width: 991px) {
  .footer .foot-top .foot-logo img {
    width: 100px;
  }
}
.footer .foot-top .foot-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.footer .foot-top .foot-nav li {
  margin-right: 0.48rem;
}
.footer .foot-top .foot-nav li:last-of-type {
  margin-right: 0;
}
.footer .foot-top .foot-nav a {
  font-family: "HONORSansCN-Bold";
  font-size: 20px;
  color: #ffffff;
  line-height: 1;
}
@media (max-width: 1900px) {
  .footer .foot-top .foot-nav a {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .footer .foot-top .foot-nav a {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .footer .foot-top .foot-nav a {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .footer .foot-top .foot-nav a {
    font-size: 0.28rem;
  }
}
.footer .foot-top .foot-nav a:hover {
  color: #cc0000;
}
.footer .foot-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 0.56rem;
  padding-bottom: 1.45rem;
}
.footer .foot-bottom .left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.footer .foot-bottom .left .info-item {
  width: 2.6rem;
  margin-right: 1.1rem;
}
.footer .foot-bottom .left .info-item:last-child {
  margin-right: 0;
}
.footer .foot-bottom .left .info-item .foot-title {
  display: block;
  font-family: "HONORSansCN-Bold";
  font-size: 20px;
  color: #ffffff;
  line-height: 1;
  padding-bottom: 0.23rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0.21rem;
}
@media (max-width: 1900px) {
  .footer .foot-bottom .left .info-item .foot-title {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .footer .foot-bottom .left .info-item .foot-title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .footer .foot-bottom .left .info-item .foot-title {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .footer .foot-bottom .left .info-item .foot-title {
    font-size: 0.28rem;
  }
}
.footer .foot-bottom .left .info-item .list .desc {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.875;
}
@media (max-width: 1900px) {
  .footer .foot-bottom .left .info-item .list .desc {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .footer .foot-bottom .left .info-item .list .desc {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .footer .foot-bottom .left .info-item .list .desc {
    font-size: 14px;
  }
}
.footer .foot-bottom .right {
  flex-shrink: 0;
}
.footer .foot-bottom .right .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.footer .foot-bottom .right .list .right-item {
  margin-right: 0.14rem;
}
@media (max-width: 991px) {
  .footer .foot-bottom .right .list .right-item {
    margin-right: 0.3rem;
  }
}
.footer .foot-bottom .right .list .right-item:last-of-type {
  margin-right: 0;
}
.footer .foot-bottom .right .list .right-item .pic {
  text-align: center;
}
.footer .foot-bottom .right .list .right-item .pic img {
  display: block;
  margin: auto;
  width: 0.76rem;
}
@media (max-width: 991px) {
  .footer .foot-bottom .right .list .right-item .pic img {
    width: 1rem;
  }
}
.footer .foot-bottom .right .list .right-item p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
  margin-top: 0.17rem;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 1900px) {
  .footer .foot-bottom .right .list .right-item p {
    font-size: 0.7291666666666667vw;
  }
}
@media (max-width: 1260px) {
  .footer .foot-bottom .right .list .right-item p {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .footer .foot-bottom .right .list .right-item p {
    font-size: 14px;
  }
}
.footer .foot-copyright {
  padding-top: 0.22rem;
  padding-bottom: 0.23rem;
  background-color: #282828;
}
.footer .foot-copyright .footer-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
.footer .foot-copyright .copyright-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media (max-width: 991px) {
  .footer .foot-copyright .copyright-list {
    flex-wrap: wrap;
  }
}
.footer .foot-copyright .copyright-list li::after {
  display: inline-block;
  content: "|";
  margin-left: 2px;
  margin-right: 2px;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
}
@media (max-width: 1900px) {
  .footer .foot-copyright .copyright-list li::after {
    font-size: 0.7291666666666667vw;
  }
}
@media (max-width: 1260px) {
  .footer .foot-copyright .copyright-list li::after {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .footer .foot-copyright .copyright-list li::after {
    font-size: 14px;
  }
}
.footer .foot-copyright .copyright-list li:last-of-type::after {
  content: none;
}
.footer .foot-copyright .copyright-list a {
  font-size: 14px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .footer .foot-copyright .copyright-list a {
    font-size: 0.7291666666666667vw;
  }
}
@media (max-width: 1260px) {
  .footer .foot-copyright .copyright-list a {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .footer .foot-copyright .copyright-list a {
    font-size: 14px;
  }
}
.footer .foot-copyright .copyright-list a:hover {
  color: #cc0000;
}
.footer .foot-copyright .support {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}
@media (max-width: 1900px) {
  .footer .foot-copyright .support {
    font-size: 0.7291666666666667vw;
  }
}
@media (max-width: 1260px) {
  .footer .foot-copyright .support {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .footer .foot-copyright .support {
    font-size: 14px;
  }
}
.footer .foot-copyright .support:hover {
  color: #cc0000;
}
.footer .foot-copyright .support:hover a {
  color: #cc0000;
}
.footer .foot-copyright .support a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}
@media (max-width: 1900px) {
  .footer .foot-copyright .support a {
    font-size: 0.7291666666666667vw;
  }
}
@media (max-width: 1260px) {
  .footer .foot-copyright .support a {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .footer .foot-copyright .support a {
    font-size: 14px;
  }
}
.footer .foot-copyright .support a:hover {
  color: #cc0000;
}
@media (max-width: 992px) {
  .footer {
    padding-top: 75px;
  }
  .footer .foot-bottom {
    padding-top: 35px;
    padding-bottom: 65px;
  }
  .footer .foot-top .foot-nav li {
    margin-right: 15px;
  }
  .footer .foot-top .foot-nav li a {
    font-size: 18px;
    white-space: nowrap;
  }
  .footer .foot-bottom {
    flex-wrap: wrap;
  }
  .footer .foot-bottom .left,
  .footer .foot-bottom .right {
    width: 100%;
    flex: none;
  }
  .footer .foot-bottom .left {
    margin-bottom: 25px;
  }
  .footer .foot-bottom .left {
    justify-content: space-between;
  }
  .footer .foot-bottom .left .info-item {
    width: 47.5%;
    margin-right: 0;
  }
  .footer .foot-copyright .footer-wrap {
    flex-wrap: wrap;
  }
  .footer .foot-copyright .footer-wrap .copyright-list {
    flex-wrap: wrap;
  }
  .footer .foot-copyright .footer-wrap .copyright-list li {
    margin-bottom: 7px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-top: 35px;
    padding-bottom: 20px;
  }
  .footer-wrap {
    width: 92%;
  }
  .footer .foot-top {
    flex-wrap: wrap;
    padding-bottom: 5px;
  }
  .footer .foot-top .foot-nav {
    margin-top: 25px;
    width: 100%;
    margin-left: 0;
    flex-wrap: wrap;
  }
  .footer .foot-top .foot-nav li {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 15px;
  }
  .footer .foot-top .foot-nav li:nth-child(3n) {
    margin-right: 0;
  }
  .footer .foot-copyright {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .footer .foot-top .foot-nav li a {
    font-size: 16px;
  }
  .footer .foot-bottom .left .info-item .foot-title {
    font-size: 18px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .footer .foot-bottom .left .info-item .list .desc {
    font-size: 14px;
  }
  .footer .foot-bottom {
    padding-bottom: 45px;
  }
  .footer .foot-bottom .right .list .right-item .pic img {
    width: 76px;
  }
}
/** 大于或者等于992px */
@media (min-width: 992px) {
  .phone-toggle {
    display: none !important;
  }
}
.sidebar {
  position: fixed;
  right: -0.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 15;
}
.sidebar .spot {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  background: #cc0000;
  border-radius: 50%;
  box-sizing: border-box;
  cursor: move;
  user-select: none;
}
@media (max-width: 991px) {
  .sidebar .spot {
    width: 1.2rem;
    height: 1.2rem;
  }
}
@media (max-width: 767px) {
  .sidebar .spot {
    width: 80px;
    height: 80px;
  }
}
.sidebar .spot .text {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.sidebar .spot .text .icon {
  display: inline-flex;
}
.sidebar .spot .text .icon img {
  width: 0.25rem;
}
@media (max-width: 991px) {
  .sidebar .spot .text .icon img {
    width: 0.35rem;
  }
}
@media (max-width: 767px) {
  .sidebar .spot .text .icon img {
    width: 18px;
  }
}
.sidebar .spot .text .sp {
  margin-top: 0.1rem;
  font-family: "HONORSansCN-Bold";
  color: #ffffff;
  font-size: 12px;
  white-space: nowrap;
}
.sidebar .spot .animate-wave {
  width: 200%;
  height: 200%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.sidebar .spot .animate-wave * {
  background: #cc0000;
  position: absolute;
  border-radius: 50%;
  animation: opac 3s infinite;
}
.sidebar .spot .animate-wave .w2 {
  animation-delay: 1s;
}
.sidebar .spot .animate-wave .w3 {
  animation-delay: 2s;
}
.sidebar.noclass .spot .animate-wave {
  display: none;
}
@-webkit-keyframes opac {
  from {
    opacity: 0.3;
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
  }
  to {
    opacity: 0.08;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
@keyframes opac {
  from {
    opacity: 0.3;
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
  }
  to {
    opacity: 0.08;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.istop {
  position: fixed;
  right: 0;
  bottom: 8vh;
  z-index: 16;
}
.istop a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  background: #CC0000;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .istop a {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.istop a img {
  display: block;
  margin: auto;
  width: 48%;
}
.ContactForm {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 21;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: auto;
  padding-top: 5%;
  padding-bottom: 5%;
}
.ContactForm.active {
  opacity: 1;
  visibility: visible;
}
.ContactForm.active .box {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.ContactForm .box {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.6s, opacity 0.6s, transform 0.6s;
  transform: translateY(100%);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: stretch;
  width: 69.79166666666667%;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
}
@media (max-width: 1580px) {
  .ContactForm .box {
    width: 75%;
  }
}
@media (max-width: 1260px) {
  .ContactForm .box {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .ContactForm .box {
    width: 90%;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -moz-align-items: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column-reverse;
  }
}
.ContactForm .box .closebtn {
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  cursor: pointer;
}
@media (max-width: 1580px) {
  .ContactForm .box .closebtn {
    right: 0.35rem;
    top: 0.35rem;
  }
}
@media (max-width: 767px) {
  .ContactForm .box .closebtn {
    right: 0.4rem;
    top: 0.4rem;
  }
}
.ContactForm .box .closebtn img {
  max-width: 0.24rem;
}
@media (max-width: 1580px) {
  .ContactForm .box .closebtn img {
    max-width: 0.28rem;
  }
}
@media (max-width: 767px) {
  .ContactForm .box .closebtn img {
    max-width: 0.36rem;
  }
}
.ContactForm .box .imgbox {
  position: relative;
  width: 41.04477611940299%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .ContactForm .box .imgbox {
    width: 100%;
  }
}
.ContactForm .box .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .ContactForm .box .imgbox img {
    display: none;
  }
}
.ContactForm .box .imgbox .hotlinetext {
  position: absolute;
  left: 0;
  bottom: 0.75rem;
  width: 100%;
  padding: 0 8.7%;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .ContactForm .box .imgbox .hotlinetext {
    position: static;
    padding-bottom: 0.8rem;
  }
}
.ContactForm .box .imgbox .hotlinetext .t1 {
  font-size: 20px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .ContactForm .box .imgbox .hotlinetext .t1 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .ContactForm .box .imgbox .hotlinetext .t1 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .ContactForm .box .imgbox .hotlinetext .t1 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .ContactForm .box .imgbox .hotlinetext .t1 {
    font-size: 0.28rem;
  }
}
@media (max-width: 991px) {
  .ContactForm .box .imgbox .hotlinetext .t1 {
    color: #000000;
  }
}
.ContactForm .box .imgbox .hotlinetext .t2 {
  font-family: "HONORSansCN-Bold";
  font-size: 40px;
  color: #ffffff;
  margin-top: 0.06rem;
}
@media (max-width: 1900px) {
  .ContactForm .box .imgbox .hotlinetext .t2 {
    font-size: 2.083333333333333vw;
  }
}
@media (max-width: 1260px) {
  .ContactForm .box .imgbox .hotlinetext .t2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .ContactForm .box .imgbox .hotlinetext .t2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .ContactForm .box .imgbox .hotlinetext .t2 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .ContactForm .box .imgbox .hotlinetext .t2 {
    font-size: 0.42rem;
  }
}
@media (max-width: 991px) {
  .ContactForm .box .imgbox .hotlinetext .t2 {
    margin-top: 0.12rem;
    color: #000000;
  }
}
.ContactForm .box .textbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 58.95522388059701%;
  padding: 3.35% 7.4%;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .ContactForm .box .textbox {
    width: 100%;
    padding: 5% 8%;
  }
}
@media (max-width: 767px) {
  .ContactForm .box .textbox {
    padding: 0.5rem 0.4rem 0.3rem;
  }
}
.ContactForm .box .textbox .title {
  font-family: "HONORSansCN-Bold";
  font-size: 40px;
  color: #333333;
  padding: 0.2rem 0;
  border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
  margin-bottom: 0.3rem;
}
@media (max-width: 1900px) {
  .ContactForm .box .textbox .title {
    font-size: 2.083333333333333vw;
  }
}
@media (max-width: 1260px) {
  .ContactForm .box .textbox .title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .ContactForm .box .textbox .title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .ContactForm .box .textbox .title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .ContactForm .box .textbox .title {
    font-size: 0.42rem;
  }
}
@media (max-width: 767px) {
  .ContactForm .box .textbox .title {
    padding-top: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 30px;
  }
}
@media (max-width: 767px) and (max-width: 1900px) {
  .ContactForm .box .textbox .title {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) and (max-width: 1260px) {
  .ContactForm .box .textbox .title {
    font-size: 24px;
  }
}
@media (max-width: 767px) and (max-width: 991px) {
  .ContactForm .box .textbox .title {
    font-size: 20px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .ContactForm .box .textbox .title {
    font-size: 22px;
  }
}
@media (max-width: 767px) and (max-width: 480px) {
  .ContactForm .box .textbox .title {
    font-size: 0.38rem;
  }
}
@media (max-width: 480px) {
  .ContactForm .box .textbox .title {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .ContactForm .box .commonlayui-form .layui-form-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .ContactForm .box .commonlayui-form .layui-form-item .layui-form-label {
    width: auto;
    min-width: 80px;
    flex-shrink: 0;
    margin-right: 10px;
    margin-bottom: 0;
    margin-top: 12px;
  }
}
@media (max-width: 480px) {
  .ContactForm .box .commonlayui-form .layui-form-item .layui-form-label {
    min-width: 72px;
  }
}
@media (max-width: 991px) {
  .ContactForm .box .commonlayui-form .layui-form-item .layui-input-block {
    flex: 1;
  }
}
.ContactForm .box .commonlayui-form .layui-form-item .layui-input-block .layui-input {
  height: 40px;
}
.ContactForm .box .commonlayui-form .layui-form-item .layui-input-block .layui-form-radio {
  padding-right: 0;
}
.ContactForm .box .commonlayui-form .layui-form-item .layui-input-block .layui-form-radio:last-child {
  margin-right: 0;
}
.ContactForm .box .commonlayui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
  height: 40px;
}
.ContactForm .box .commonlayui-form .layui-form-item .layui-input-block .layui-form-select dl {
  top: 40px;
}
.i-title.center {
  text-align: center;
}
@media (max-width: 767px) {
  .i-title.center .headline {
    text-wrap: balance;
  }
}
.i-title .headline {
  font-family: "HONORSansCN-Bold";
  font-size: 40px;
  color: #000000;
}
@media (max-width: 1900px) {
  .i-title .headline {
    font-size: 2.083333333333333vw;
  }
}
@media (max-width: 1260px) {
  .i-title .headline {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .i-title .headline {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .i-title .headline {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .i-title .headline {
    font-size: 0.42rem;
  }
}
.i-title .headline.white {
  color: #ffffff;
}
.i-title .headline span {
  display: inline-block;
  color: #cc0000;
}
.i-title .text {
  margin-top: 0.1rem;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .i-title .text {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .i-title .text {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .i-title .text {
    font-size: 14px;
  }
}
.i-title .text.white {
  color: rgba(255, 255, 255, 0.6);
}
.i-title .txt {
  margin-top: 0.1rem;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .i-title .txt {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .i-title .txt {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .i-title .txt {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .i-title .txt {
    font-size: 0.35rem;
  }
}
.i-title .txt.white {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .i-title .txt {
    font-size: 20px;
  }
}
@media (max-width: 991px) and (max-width: 1900px) {
  .i-title .txt {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 991px) and (max-width: 1260px) {
  .i-title .txt {
    font-size: 16px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .i-title .txt {
    font-size: 18px;
  }
}
@media (max-width: 991px) and (max-width: 480px) {
  .i-title .txt {
    font-size: 0.28rem;
  }
}
.i-title .sp {
  margin-top: 0.2rem;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .i-title .sp {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .i-title .sp {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .i-title .sp {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .i-title .sp {
    font-size: 0.26rem;
  }
}
.i-title .sp.white {
  color: rgba(255, 255, 255, 0.6);
}
.swiper-button.swiper-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  left: auto;
  width: 0.58rem;
  height: 0.58rem;
  margin-top: 0;
  z-index: 10;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(175, 175, 175, 0.3) url(../images/icon2.png) center no-repeat;
  background-size: 18.97% auto;
  backdrop-filter: blur(8px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .swiper-button.swiper-button-next {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.swiper-button.swiper-button-next::after {
  display: none;
}
.swiper-button.swiper-button-next:hover {
  background: #FFFFFF url(../images/icon2a.png) center no-repeat;
  background-size: 18.97% auto;
  backdrop-filter: blur(0);
}
.swiper-button.swiper-button-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 10px;
  right: auto;
  width: 0.58rem;
  height: 0.58rem;
  margin-top: 0;
  z-index: 10;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(175, 175, 175, 0.3) url(../images/icon1.png) center no-repeat;
  background-size: 18.97% auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .swiper-button.swiper-button-prev {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.swiper-button.swiper-button-prev::after {
  display: none;
}
.swiper-button.swiper-button-prev:hover {
  background: #FFFFFF url(../images/icon1a.png) center no-repeat;
  background-size: 18.97% auto;
  backdrop-filter: blur(0);
}
.generalBtn {
  display: inline-flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: space-between;
  min-width: 1.6rem;
  height: 0.5rem;
  border: rgba(255, 255, 255, 0.4) solid 2px;
  padding: 0 0.25rem;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1260px) {
  .generalBtn {
    height: 0.6rem;
  }
}
@media (max-width: 991px) {
  .generalBtn {
    min-width: 120px;
    height: 42px;
  }
}
@media (max-width: 480px) {
  .generalBtn {
    height: 40px;
  }
}
.generalBtn .link-text {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  font-family: "HONORSansCN-Bold";
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1900px) {
  .generalBtn .link-text {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .generalBtn .link-text {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .generalBtn .link-text {
    font-size: 14px;
  }
}
.generalBtn .link-text::before {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #cc0000;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.generalBtn .link-icon {
  display: inline-block;
  font-size: 0;
  margin-left: 0.2rem;
  flex-shrink: 0;
}
.generalBtn .link-icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% + 4px);
  background-color: #cc0000;
  top: -2px;
  right: -2px;
}
.generalBtn .link-icon img {
  width: 0.09rem;
}
@media (max-width: 991px) {
  .generalBtn .link-icon img {
    width: 0.1rem;
  }
}
.generalBtn::before,
.generalBtn::after {
  content: "";
  width: 0.56rem;
  height: 2px;
  background-color: #cc0000;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.generalBtn::before {
  top: -2px;
}
.generalBtn::after {
  bottom: -2px;
}
.generalBtn.ashy {
  border: rgba(0, 0, 0, 0.1) solid 2px;
}
.generalBtn.ashy .link-text {
  color: rgba(0, 0, 0, 0.6);
}
.generalBtn.small {
  min-width: 1rem;
  height: 0.36rem;
  padding: 0 0.15rem;
}
@media (max-width: 1580px) {
  .generalBtn.small {
    min-width: 1.3rem;
    height: 0.48rem;
  }
}
@media (max-width: 480px) {
  .generalBtn.small {
    min-width: 1.56rem;
    height: 0.56rem;
  }
}
.generalBtn.small::before,
.generalBtn.small::after {
  width: 0.36rem;
}
.generalBtn.small .link-text {
  font-size: 12px;
  margin-top: 0.02rem;
}
.generalBtn.small .link-icon img {
  width: 0.06rem;
}
@media (max-width: 991px) {
  .generalBtn.small .link-icon img {
    width: 0.08rem;
  }
}
.generalBtn:hover::before,
.generalBtn:hover::after {
  width: 100%;
}
.generalBtn:hover .link-text {
  color: #cc0000;
  opacity: 1;
}
.generalBtn:hover .link-text::before {
  height: calc(100% + 4px);
  transition-delay: 0.45s;
}
.commonbtn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.55rem;
}
@media (max-width: 991px) {
  .commonbtn {
    margin-top: 7%;
  }
}
@media (max-width: 480px) {
  .commonbtn {
    margin-top: 9%;
  }
}
.commonbtn .generalBtn {
  display: inline-flex;
  width: auto;
  min-width: 1.6rem;
  padding: 0 0.25rem;
}
@media (max-width: 991px) {
  .commonbtn .generalBtn {
    min-width: 2.1rem;
    padding: 0 0.35rem;
  }
}
@media (max-width: 767px) {
  .commonbtn .generalBtn {
    min-width: 1.8rem;
    padding: 0 0.3rem;
  }
}
@media (max-width: 480px) {
  .commonbtn .generalBtn {
    min-width: 2.2rem;
    padding: 0 0.3rem;
  }
}
.commonbtn.gray .generalBtn {
  border: 2px solid #e5e5e5;
}
.commonbtn.gray .generalBtn .link-text {
  color: rgba(0, 0, 0, 0.3);
}
.commonbtn.gray .generalBtn .link-icon {
  margin-left: 0.35rem;
}
.commonbtn.gray .generalBtn:hover::before,
.commonbtn.gray .generalBtn:hover::after {
  width: 100%;
}
.commonbtn.gray .generalBtn:hover .link-text {
  color: #cc0000;
}
.index-page .banner {
  width: 100%;
}
.index-page .banner .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.index-page .banner .swiper-slide {
  position: relative;
}
.index-page .banner .swiper-slide .pic img {
  width: 100%;
}
.index-page .banner .swiper-slide .info {
  position: absolute;
  top: 34.02%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1440px;
  width: 90%;
  text-align: center;
}
.index-page .banner .swiper-slide .info .info-title {
  font-family: "HONORSansCN-Bold";
  font-size: 60px;
  color: #ffffff;
  line-height: 1.25;
}
@media (max-width: 1900px) {
  .index-page .banner .swiper-slide .info .info-title {
    font-size: 3.125vw;
  }
}
@media (max-width: 1260px) {
  .index-page .banner .swiper-slide .info .info-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .index-page .banner .swiper-slide .info .info-title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .index-page .banner .swiper-slide .info .info-title {
    font-size: 0.52rem;
  }
}
.index-page .banner .swiper-slide .info .info-subtitle {
  margin-top: 0.2rem;
  font-size: 20px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .index-page .banner .swiper-slide .info .info-subtitle {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .index-page .banner .swiper-slide .info .info-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .index-page .banner .swiper-slide .info .info-subtitle {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .index-page .banner .swiper-slide .info .info-subtitle {
    font-size: 0.28rem;
  }
}
.index-page .banner .swiper-slide .desc {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.5;
  position: absolute;
  bottom: 31.443%;
  left: 2.447%;
}
@media (max-width: 1900px) {
  .index-page .banner .swiper-slide .desc {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .index-page .banner .swiper-slide .desc {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .index-page .banner .swiper-slide .desc {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .index-page .banner .swiper-slide .desc {
    font-size: 0.28rem;
  }
}
@media (max-width: 991px) {
  .index-page .banner .swiper-slide .desc {
    left: 4%;
    bottom: 18%;
  }
}
@media (max-width: 480px) {
  .index-page .banner .swiper-slide .desc {
    left: 5%;
    bottom: 13%;
  }
}
.index-page .banner .swiper-slide .generalBtn {
  margin-top: 0.45rem;
}
.index-page .banner .swiper-slide.slide1 .info {
  top: 38.144%;
  text-align: left;
}
.index-page .banner .swiper-slide.slide1 .info .generalBtn {
  margin-left: 0;
  margin-top: 0.36rem;
}
.index-page .banner .swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3vw;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .index-page .banner .swiper-pagination {
    bottom: 0.5rem;
  }
}
.index-page .banner .swiper-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.2;
  margin: 0;
  margin-right: 0.1rem;
}
@media (max-width: 991px) {
  .index-page .banner .swiper-pagination .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    margin-right: 0.14rem;
  }
}
@media (max-width: 480px) {
  .index-page .banner .swiper-pagination .swiper-pagination-bullet {
    width: 0.14rem;
    height: 0.14rem;
  }
}
.index-page .banner .swiper-pagination .swiper-pagination-bullet:last-of-type {
  margin-right: 0;
}
.index-page .banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 0.6rem;
  border-radius: 0.05rem;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  opacity: 1;
}
@media (max-width: 991px) {
  .index-page .banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.64rem;
    border-radius: 0.06rem;
  }
}
@media (max-width: 480px) {
  .index-page .banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.68rem;
    border-radius: 0.07rem;
  }
}
.index-page .banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #ffffff;
  animation: animate 5s linear;
  border-radius: 5px;
}
.index-page .pro {
  background-image: url(../images/index-pro-bg.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 75% auto;
}
@media (max-width: 1260px) {
  .index-page .pro {
    background-image: url(../images/index-pro-bg.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 90% auto;
  }
}
.index-page .pro .container {
  text-align: center;
}
.index-page .pro .container .i-title .headline {
  color: rgba(51, 51, 51, 0.9);
}
.index-page .pro .container .i-title .sp {
  color: rgba(0, 0, 0, 0.6);
}
.index-page .pro .container .count-list {
  max-width: 9.4rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.75%;
}
@media (max-width: 991px) {
  .index-page .pro .container .count-list {
    margin-top: 6%;
    max-width: 100%;
    row-gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .index-page .pro .container .count-list {
    margin-top: 8%;
  }
}
.index-page .pro .container .count-list .item {
  text-align: center;
  margin-right: 0.9rem;
  white-space: nowrap;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.index-page .pro .container .count-list .item:last-of-type {
  margin-right: 0;
}
@media (max-width: 991px) {
  .index-page .pro .container .count-list .item {
    flex: none;
    width: 30%;
    margin-right: 5%;
  }
}
@media (max-width: 991px) {
  .index-page .pro .container .count-list .item:nth-child(3n) {
    margin-right: 0;
  }
}
.index-page .pro .container .count-list .item .top {
  margin-bottom: 0.05rem;
}
.index-page .pro .container .count-list .item .top .num {
  font-family: "HONORSansCN-Bold";
  font-size: 40px;
  color: #cc0000;
  line-height: 1;
}
@media (max-width: 1900px) {
  .index-page .pro .container .count-list .item .top .num {
    font-size: 2.083333333333333vw;
  }
}
@media (max-width: 1260px) {
  .index-page .pro .container .count-list .item .top .num {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .index-page .pro .container .count-list .item .top .num {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .index-page .pro .container .count-list .item .top .num {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .index-page .pro .container .count-list .item .top .num {
    font-size: 0.42rem;
  }
}
.index-page .pro .container .count-list .item .top .text {
  font-size: 20px;
  color: #cc0000;
  line-height: 2;
  margin-left: 0.1rem;
}
@media (max-width: 1900px) {
  .index-page .pro .container .count-list .item .top .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .index-page .pro .container .count-list .item .top .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .index-page .pro .container .count-list .item .top .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .index-page .pro .container .count-list .item .top .text {
    font-size: 0.28rem;
  }
}
.index-page .pro .container .count-list .item .bottom {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1;
  text-align: center;
}
@media (max-width: 1900px) {
  .index-page .pro .container .count-list .item .bottom {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .index-page .pro .container .count-list .item .bottom {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .index-page .pro .container .count-list .item .bottom {
    font-size: 14px;
  }
}
.index-page .pro .container .generalBtn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.7rem;
  position: relative;
  z-index: 2;
}
.index-page .pic1 {
  position: relative;
  overflow: hidden;
  margin-bottom: 0.2rem;
}
.index-page .pic1 .img {
  width: 100%;
  display: block;
}
@media (max-width: 991px) {
  .index-page .pic1 .img {
    min-height: 56vh;
    object-fit: cover;
  }
}
.index-page .pic1 .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86%;
  overflow-wrap: break-word;
  text-align: center;
}
.index-page .pic1 .text .i-title .txt {
  color: #ffffff;
}
.index-page .pic1 .text .generalBtn {
  margin-top: 0.4rem;
}
.index-page .more-pro .title {
  font-family: "HONORSansCN-Bold";
  font-size: 40px;
  color: #333333;
  line-height: 1;
  text-align: center;
  margin-bottom: 0.6rem;
}
@media (max-width: 1900px) {
  .index-page .more-pro .title {
    font-size: 2.083333333333333vw;
  }
}
@media (max-width: 1260px) {
  .index-page .more-pro .title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .index-page .more-pro .title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .index-page .more-pro .title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .index-page .more-pro .title {
    font-size: 0.42rem;
  }
}
.index-page .more-pro .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  margin-top: 4.16666666666667%;
}
@media (max-width: 991px) {
  .index-page .more-pro .list {
    margin-top: 6%;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .index-page .more-pro .list {
    margin-top: 8%;
  }
}
.index-page .more-pro .list .left,
.index-page .more-pro .list .right {
  width: 49.305%;
}
@media (max-width: 991px) {
  .index-page .more-pro .list .left,
  .index-page .more-pro .list .right {
    width: 100%;
  }
}
.index-page .more-pro .list .left {
  position: relative;
}
@media (max-width: 991px) {
  .index-page .more-pro .list .left {
    margin-bottom: 0.4rem;
  }
}
.index-page .more-pro .list .left .pic {
  padding-top: 87.323%;
  position: relative;
  overflow: hidden;
}
.index-page .more-pro .list .left .pic::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17.5%;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}
@media (max-width: 991px) {
  .index-page .more-pro .list .left .pic::before::before {
    top: 0;
  }
}
.index-page .more-pro .list .left .pic:hover img {
  transform: scale(1.17);
}
.index-page .more-pro .list .left .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.45s ease;
}
.index-page .more-pro .list .left .text {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  position: absolute;
  bottom: 0.28rem;
  left: 0;
  z-index: 5;
  width: 100%;
}
@media (max-width: 991px) {
  .index-page .more-pro .list .left .text {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    bottom: 0.4rem;
  }
}
.index-page .more-pro .list .left .text .text-area {
  margin-right: 0.15rem;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
}
.index-page .more-pro .list .left .text .name {
  font-family: "HONORSansCN-Bold";
  font-size: 28px;
  color: #ffffff;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  line-height: normal;
}
@media (max-width: 1900px) {
  .index-page .more-pro .list .left .text .name {
    font-size: 1.458333333333333vw;
  }
}
@media (max-width: 1260px) {
  .index-page .more-pro .list .left .text .name {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .index-page .more-pro .list .left .text .name {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .index-page .more-pro .list .left .text .name {
    font-size: 21px;
  }
}
@media (max-width: 480px) {
  .index-page .more-pro .list .left .text .name {
    font-size: 0.34rem;
  }
}
.index-page .more-pro .list .left .text .desc {
  font-size: 18px;
  color: #ffffff;
  line-height: normal;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
@media (max-width: 1900px) {
  .index-page .more-pro .list .left .text .desc {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .index-page .more-pro .list .left .text .desc {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .index-page .more-pro .list .left .text .desc {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .index-page .more-pro .list .left .text .desc {
    font-size: 0.26rem;
  }
}
.index-page .more-pro .list .left .text .common-link-btn {
  align-self: flex-end;
  padding-bottom: 2px;
}
.index-page .more-pro .list .right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
}
.index-page .more-pro .list .right .item {
  display: block;
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .index-page .more-pro .list .right .item {
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 991px) {
  .index-page .more-pro .list .right .item:last-child {
    margin-bottom: 0rem;
  }
}
.index-page .more-pro .list .right .item .pic {
  width: 100%;
  padding-top: 42.253%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .index-page .more-pro .list .right .item .pic {
    padding-top: 87.323%;
  }
}
.index-page .more-pro .list .right .item .pic::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}
.index-page .more-pro .list .right .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.45s ease;
}
.index-page .more-pro .list .right .item .pic:hover img {
  transform: scale(1.17);
}
.index-page .more-pro .list .right .item .text {
  width: 100%;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  position: absolute;
  bottom: 0.28rem;
  left: 0;
  z-index: 5;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  -webkit-box-align: end;
  -moz-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .index-page .more-pro .list .right .item .text {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    bottom: 0.4rem;
  }
}
.index-page .more-pro .list .right .item .text .text-area {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 0.15rem;
  overflow: hidden;
}
.index-page .more-pro .list .right .item .text .name {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  overflow: hidden;
}
@media (max-width: 1900px) {
  .index-page .more-pro .list .right .item .text .name {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .index-page .more-pro .list .right .item .text .name {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .index-page .more-pro .list .right .item .text .name {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .index-page .more-pro .list .right .item .text .name {
    font-size: 0.35rem;
  }
}
.index-page .more-pro .list .right .item .text .desc {
  font-size: 18px;
  color: #ffffff;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  overflow: hidden;
}
@media (max-width: 1900px) {
  .index-page .more-pro .list .right .item .text .desc {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .index-page .more-pro .list .right .item .text .desc {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .index-page .more-pro .list .right .item .text .desc {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .index-page .more-pro .list .right .item .text .desc {
    font-size: 0.26rem;
  }
}
.index-page .pic4 {
  position: relative;
}
.index-page .pic4 .img img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .index-page .pic4 .img img {
    min-height: 56vh;
    object-fit: cover;
  }
}
.index-page .pic4 .text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 1440px;
  width: 90%;
}
.index-page .pic4 .text .i-title .txt {
  color: #ffffff;
}
.index-page .pic4 .text .generalBtn {
  margin-top: 0.4rem;
}
.index-page .proformace .title-box {
  text-align: center;
  margin-bottom: 0.6rem;
}
.index-page .proformace .title-box .title {
  font-family: "HONORSansCN-Bold";
  font-size: 40px;
  color: #333333;
  line-height: 1;
  margin-bottom: 0.15rem;
}
@media (max-width: 1900px) {
  .index-page .proformace .title-box .title {
    font-size: 2.083333333333333vw;
  }
}
@media (max-width: 1260px) {
  .index-page .proformace .title-box .title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .index-page .proformace .title-box .title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .index-page .proformace .title-box .title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .index-page .proformace .title-box .title {
    font-size: 0.42rem;
  }
}
.index-page .proformace .title-box .sub-title {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1;
}
@media (max-width: 1900px) {
  .index-page .proformace .title-box .sub-title {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .index-page .proformace .title-box .sub-title {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .index-page .proformace .title-box .sub-title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .index-page .proformace .title-box .sub-title {
    font-size: 0.35rem;
  }
}
.index-page .proformace .swiper-container {
  width: 100%;
}
.index-page .proformace .swiper-container .swiper4 {
  max-width: 12rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
  position: relative;
}
.index-page .proformace .swiper-container .swiper4 .swiper-slide {
  display: block;
  position: relative;
}
.index-page .proformace .swiper-container .swiper4 .swiper-slide.swiper-slide-active .text .txt {
  margin-top: 0.1rem;
  max-height: 0.8rem;
  opacity: 1;
  visibility: visible;
}
.index-page .proformace .swiper-container .swiper4 .img {
  padding-top: 51.666%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .index-page .proformace .swiper-container .swiper4 .img {
    padding-top: 70%;
  }
}
@media (max-width: 767px) {
  .index-page .proformace .swiper-container .swiper4 .img {
    padding-top: 80%;
  }
}
.index-page .proformace .swiper-container .swiper4 .img::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
.index-page .proformace .swiper-container .swiper4 .img:hover img {
  transform: scale(1.17);
}
.index-page .proformace .swiper-container .swiper4 .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.45s ease;
}
.index-page .proformace .swiper-container .swiper4 .text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 5;
  padding-left: 2.5%;
  padding-right: 3%;
  padding-bottom: 3.25%;
  background-image: url(../images/index-text-mask.png);
  background-size: 100% 100%;
}
@media (max-width: 991px) {
  .index-page .proformace .swiper-container .swiper4 .text {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    padding-bottom: 0.4rem;
  }
}
.index-page .proformace .swiper-container .swiper4 .text .name {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
  line-height: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
@media (max-width: 1900px) {
  .index-page .proformace .swiper-container .swiper4 .text .name {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .index-page .proformace .swiper-container .swiper4 .text .name {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .index-page .proformace .swiper-container .swiper4 .text .name {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .index-page .proformace .swiper-container .swiper4 .text .name {
    font-size: 0.35rem;
  }
}
.index-page .proformace .swiper-container .swiper4 .text .txt {
  margin-top: 0;
  font-size: 18px;
  color: #ffffff;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1900px) {
  .index-page .proformace .swiper-container .swiper4 .text .txt {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .index-page .proformace .swiper-container .swiper4 .text .txt {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .index-page .proformace .swiper-container .swiper4 .text .txt {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .index-page .proformace .swiper-container .swiper4 .text .txt {
    font-size: 0.26rem;
  }
}
.index-page .proformace .swiper-container .swiper4 .swiper-button-prev {
  left: 3.5%;
}
.index-page .proformace .swiper-container .swiper4 .swiper-button-next {
  right: 3.5%;
}
@keyframes animate {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.productsinfo1 {
  position: relative;
  min-height: 50.52083333333333vw;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .productsinfo1 {
    min-height: 56vh;
  }
}
.productsinfo1 .picswiper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.productsinfo1 .picswiper .swiper-wrapper {
  height: 100%;
}
.productsinfo1 .picswiper .swiper-wrapper .img-cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .productsinfo1 .picswiper .swiper-wrapper .img-cover {
    height: 100%;
    object-fit: cover;
    background-position: right center;
  }
}
.productsinfo1 .container {
  position: relative;
  z-index: 12;
}
.productsinfo1 .container .content {
  width: 49%;
  padding-bottom: 7.5%;
}
@media (max-width: 991px) {
  .productsinfo1 .container .content {
    width: 56%;
  }
}
@media (max-width: 767px) {
  .productsinfo1 .container .content {
    width: 100%;
  }
}
.productsinfo1 .container .content .tabbox {
  margin-top: 5%;
  gap: 0.1rem;
}
@media (max-width: 991px) {
  .productsinfo1 .container .content .tabbox {
    margin-top: 0.5rem;
    gap: 15px;
  }
}
.productsinfo1 .container .content .tabbox .tabli {
  display: inline-flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-width: 1.6rem;
  min-height: 0.55rem;
  padding: 0.05rem 0.3rem;
  box-shadow: 0px 10px 22px rgba(200, 200, 200, 0.26);
  box-sizing: border-box;
  background: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .productsinfo1 .container .content .tabbox .tabli {
    padding: 4px 20px;
  }
}
.productsinfo1 .container .content .tabbox .tabli.current {
  background: #cc0000;
}
.productsinfo1 .container .content .tabbox .tabli.current .t1 {
  color: #ffffff;
}
.productsinfo1 .container .content .tabbox .tabli.current .t2 {
  color: #ffffff;
}
.productsinfo1 .container .content .tabbox .tabli:hover {
  background: #cc0000;
}
.productsinfo1 .container .content .tabbox .tabli:hover .t1 {
  color: #ffffff;
}
.productsinfo1 .container .content .tabbox .tabli:hover .t2 {
  color: #ffffff;
}
.productsinfo1 .container .content .tabbox .tabli .t1 {
  font-size: 18px;
  font-family: "HONORSansCN-Bold";
  color: #000000;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1900px) {
  .productsinfo1 .container .content .tabbox .tabli .t1 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo1 .container .content .tabbox .tabli .t1 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo1 .container .content .tabbox .tabli .t1 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo1 .container .content .tabbox .tabli .t1 {
    font-size: 0.26rem;
  }
}
.productsinfo1 .container .content .tabbox .tabli .t2 {
  font-size: 12px;
  font-family: "HONORSansCN-Bold";
  color: #000000;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.productsinfo1 .container .content .textswiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 5%;
}
@media (max-width: 991px) {
  .productsinfo1 .container .content .textswiper {
    margin-top: 0.5rem;
  }
}
.productsinfo1 .container .content .textswiper .swiper-slide {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.productsinfo1 .container .content .textswiper .swiper-slide .describe {
  -webkit-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.productsinfo1 .container .content .textswiper .swiper-slide .describe .part {
  margin-bottom: 0.2rem;
  padding-bottom: 0.25rem;
  border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
}
@media (max-width: 991px) {
  .productsinfo1 .container .content .textswiper .swiper-slide .describe .part {
    margin-bottom: 0.3rem;
    padding-bottom: 0.35rem;
  }
}
.productsinfo1 .container .content .textswiper .swiper-slide .describe .part .sp1 {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo1 .container .content .textswiper .swiper-slide .describe .part .sp1 {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo1 .container .content .textswiper .swiper-slide .describe .part .sp1 {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .productsinfo1 .container .content .textswiper .swiper-slide .describe .part .sp1 {
    font-size: 14px;
  }
}
.productsinfo1 .container .content .textswiper .swiper-slide .describe .part .sp2 {
  font-family: "HONORSansCN-Bold";
  font-size: 30px;
  margin-top: 0.1rem;
}
@media (max-width: 1900px) {
  .productsinfo1 .container .content .textswiper .swiper-slide .describe .part .sp2 {
    font-size: 1.5625vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo1 .container .content .textswiper .swiper-slide .describe .part .sp2 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .productsinfo1 .container .content .textswiper .swiper-slide .describe .part .sp2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .productsinfo1 .container .content .textswiper .swiper-slide .describe .part .sp2 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo1 .container .content .textswiper .swiper-slide .describe .part .sp2 {
    font-size: 0.38rem;
  }
}
.productsinfo1 .container .content .textswiper .swiper-slide .describe .part .sp3 {
  color: #000000;
  font-size: 20px;
  margin-top: 0.05rem;
}
@media (max-width: 1900px) {
  .productsinfo1 .container .content .textswiper .swiper-slide .describe .part .sp3 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo1 .container .content .textswiper .swiper-slide .describe .part .sp3 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .productsinfo1 .container .content .textswiper .swiper-slide .describe .part .sp3 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .productsinfo1 .container .content .textswiper .swiper-slide .describe .part .sp3 {
    font-size: 0.28rem;
  }
}
.productsinfo1 .container .content .textswiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.productsinfo1 .container .content .textswiper .swiper-slide.swiper-slide-active .describe {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.descriptive {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .descriptive {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .descriptive {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .descriptive {
    font-size: 14px;
  }
}
.descriptive ul {
  padding: 0 0 0.15rem;
}
.descriptive ul li {
  position: relative;
  padding-left: 0.15rem;
  list-style: none;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .descriptive ul li {
    padding-left: 15px;
  }
}
.descriptive ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background: #cc0000;
}
@media (max-width: 991px) {
  .descriptive ul li::before {
    top: 7px;
    width: 7px;
    height: 7px;
  }
}
.descriptive.spe {
  font-size: 18px;
}
@media (max-width: 1900px) {
  .descriptive.spe {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .descriptive.spe {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .descriptive.spe {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .descriptive.spe {
    font-size: 0.26rem;
  }
}
.descriptive.spe ul li {
  padding-left: 0.25rem;
}
.productsinfo2 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.productsinfo2 .picswiper .swiper-slide {
  position: relative;
}
.productsinfo2 .picswiper .swiper-slide .pic {
  padding-top: 50.52%;
  position: relative;
}
@media (max-width: 1260px) {
  .productsinfo2 .picswiper .swiper-slide .pic {
    padding-top: 75%;
  }
}
@media (max-width: 991px) {
  .productsinfo2 .picswiper .swiper-slide .pic {
    padding-top: 100%;
  }
}
@media (max-width: 767px) {
  .productsinfo2 .picswiper .swiper-slide .pic {
    padding-top: 90vh;
  }
}
.productsinfo2 .picswiper .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productsinfo2 .picswiper .swiper-slide .i-title {
  position: absolute;
  top: 36.597%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  overflow-wrap: break-word;
  max-width: 1440px;
  width: 90%;
}
@media (max-width: 1260px) {
  .productsinfo2 .picswiper .swiper-slide .i-title {
    top: 20%;
  }
}
@media (max-width: 767px) {
  .productsinfo2 .picswiper .swiper-slide .i-title {
    top: 15%;
  }
}
@media (max-width: 480px) {
  .productsinfo2 .picswiper .swiper-slide .i-title {
    top: 12%;
  }
}
.productsinfo2 .picswiper .swiper-slide .i-title .txt.white {
  color: #FFFFFF;
}
.productsinfo2 .picswiper .swiper-slide .i-title .generalBtn {
  margin-top: 0.4rem;
}
.productsinfo2 .picswiper .swiper-slide .i-title .generalBtn.gray {
  border: 2px solid #e5e5e5;
}
.productsinfo2 .picswiper .swiper-slide .i-title .generalBtn.gray .link-text {
  color: rgba(0, 0, 0, 0.3);
}
.productsinfo2 .picswiper .swiper-slide .i-title .generalBtn.gray .link-icon {
  margin-left: 0.35rem;
}
.productsinfo2 .picswiper .swiper-slide .i-title .generalBtn.gray:hover::before,
.productsinfo2 .picswiper .swiper-slide .i-title .generalBtn.gray:hover::after {
  width: 100%;
}
.productsinfo2 .picswiper .swiper-slide .i-title .generalBtn.gray:hover .link-text {
  color: #cc0000;
}
.productsinfo2 .picswiper .swiper-button {
  top: auto;
  bottom: 7vw;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
@media (max-width: 1900px) {
  .productsinfo2 .picswiper .swiper-button {
    bottom: 7.5vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo2 .picswiper .swiper-button {
    bottom: 14vw;
  }
}
@media (max-width: 991px) {
  .productsinfo2 .picswiper .swiper-button {
    bottom: 18vw;
  }
}
@media (max-width: 767px) {
  .productsinfo2 .picswiper .swiper-button {
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.productsinfo2 .picswiper .swiper-button.swiper-button-next {
  right: calc((100% - 1660px) / 2);
}
@media (max-width: 1900px) {
  .productsinfo2 .picswiper .swiper-button.swiper-button-next {
    right: 0;
  }
}
@media (max-width: 767px) {
  .productsinfo2 .picswiper .swiper-button.swiper-button-next {
    right: 3%;
  }
}
.productsinfo2 .picswiper .swiper-button.swiper-button-prev {
  left: calc((100% - 1660px) / 2);
}
@media (max-width: 1900px) {
  .productsinfo2 .picswiper .swiper-button.swiper-button-prev {
    left: 0;
  }
}
@media (max-width: 767px) {
  .productsinfo2 .picswiper .swiper-button.swiper-button-prev {
    left: 3%;
  }
}
.productsinfo2 .textswiper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 7.835%;
  width: 100%;
  padding-left: calc((100% - 1460px) / 2);
  padding-right: calc((100% - 1460px) / 2);
  box-sizing: border-box;
  z-index: 2;
}
@media (max-width: 1900px) {
  .productsinfo2 .textswiper {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media (max-width: 767px) {
}
.productsinfo2 .textswiper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: calc((100% - 1460px) / 2);
  height: 100%;
  backdrop-filter: blur(2px);
}
@media (max-width: 1900px) {
  .productsinfo2 .textswiper::before {
    width: 5%;
  }
}
.productsinfo2 .textswiper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  width: calc((100% - 1460px) / 2);
  height: 100%;
  backdrop-filter: blur(2px);
}
@media (max-width: 1900px) {
  .productsinfo2 .textswiper::after {
    width: 5%;
  }
}
.productsinfo2 .textswiper .swiper-slide {
  align-items: stretch;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: 0px 0px 14px 2px rgba(200, 200, 200, 0.21);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  padding: 0.2rem 0.4rem;
}
@media (max-width: 1260px) {
  .productsinfo2 .textswiper .swiper-slide {
    padding: 0.4rem;
  }
}
.productsinfo2 .textswiper .swiper-slide .left {
  display: inline-flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0.13rem;
  padding-right: 0.1rem;
}
.productsinfo2 .textswiper .swiper-slide .left .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
@media (max-width: 1900px) {
  .productsinfo2 .textswiper .swiper-slide .left .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo2 .textswiper .swiper-slide .left .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo2 .textswiper .swiper-slide .left .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo2 .textswiper .swiper-slide .left .text .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo2 .textswiper .swiper-slide .left .text .t2 {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1900px) {
  .productsinfo2 .textswiper .swiper-slide .left .text .t2 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo2 .textswiper .swiper-slide .left .text .t2 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .productsinfo2 .textswiper .swiper-slide .left .text .t2 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .productsinfo2 .textswiper .swiper-slide .left .text .t2 {
    font-size: 0.28rem;
  }
}
.productsinfo2 .textswiper .swiper-slide .right {
  width: 31%;
  text-align: center;
}
.productsinfo2 .textswiper .swiper-slide .right .pic {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -moz-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
}
.productsinfo2 .textswiper .swiper-slide .right .pic img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.productsinfo2 .textswiper .swiper-slide.current {
  background-color: #ffffff;
}
.productsinfo2 .textswiper .swiper-slide.current .left .text {
  color: #000000;
}
.productsinfo2 .textswiper .swiper-slide.current .left .generalBtn {
  display: inline-flex;
  border-color: rgba(0, 0, 0, 0.1);
}
.productsinfo2 .textswiper .swiper-slide.current .left .generalBtn .link-text {
  color: #000000;
  opacity: 0.6;
}
.productsinfo2 .textswiper .swiper-slide.current .left .generalBtn:hover .link-text {
  color: #cc0000;
  opacity: 1;
}
.productsinfo2 .textswiper .swiper-slide.swiper-slide-thumb-active {
  background-color: #ffffff;
}
.productsinfo2 .textswiper .swiper-slide.swiper-slide-thumb-active .left .text .t1 {
  color: #000000;
}
.productsinfo2 .textswiper .swiper-slide.swiper-slide-thumb-active .left .text .t2 {
  opacity: 1;
}
.productsinfo2 .textswiper .swiper-slide.swiper-slide-thumb-active .left .generalBtn {
  border-color: rgba(0, 0, 0, 0.1);
}
.productsinfo2 .textswiper .swiper-slide.swiper-slide-thumb-active .left .generalBtn .link-text {
  color: #000000;
  opacity: 0.6;
}
.productsinfo2 .textswiper .swiper-slide.swiper-slide-thumb-active .left .generalBtn:hover .link-text {
  color: #cc0000;
  opacity: 1;
}
.CoreComponents {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.CoreComponents .switch {
  position: relative;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .CoreComponents .switch {
    margin-top: 0.4rem;
  }
}
.CoreComponents .switch::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.CoreComponents .switch ul {
  padding: 0;
  gap: 0.1rem;
}
.CoreComponents .switch ul li {
  position: relative;
  list-style: none;
  padding: 0.15rem 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
  font-family: "HONORSansCN-Bold";
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1900px) {
  .CoreComponents .switch ul li {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .CoreComponents .switch ul li {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .CoreComponents .switch ul li {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .CoreComponents .switch ul li {
    font-size: 0.28rem;
  }
}
.CoreComponents .switch ul li::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 2px;
  background: #cc0000;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.CoreComponents .switch ul li.active {
  color: #cc0000;
}
.CoreComponents .switch ul li.active::before {
  width: 100%;
}
.CoreComponents .switch ul li:hover {
  color: #cc0000;
}
.CoreComponents .switch ul li:hover::before {
  width: 100%;
}
.CoreComponents .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 5%;
}
@media (max-width: 991px) {
  .CoreComponents .swiper {
    margin-top: 7%;
  }
}
@media (max-width: 480px) {
  .CoreComponents .swiper {
    margin-top: 8%;
  }
}
@media (max-width: 767px) {
  .CoreComponents .swiper .swiper-slide .item {
    flex-wrap: wrap;
  }
}
.CoreComponents .swiper .swiper-slide .item .picture {
  width: 52.77777777777778%;
  text-align: center;
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  opacity: 0;
}
@media (max-width: 991px) {
  .CoreComponents .swiper .swiper-slide .item .picture {
    width: 46%;
  }
}
@media (max-width: 767px) {
  .CoreComponents .swiper .swiper-slide .item .picture {
    width: 100%;
  }
}
.CoreComponents .swiper .swiper-slide .item .picture img {
  max-width: 100%;
}
.CoreComponents .swiper .swiper-slide .item .textbox {
  width: 46.38888888888889%;
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  opacity: 0;
}
@media (max-width: 991px) {
  .CoreComponents .swiper .swiper-slide .item .textbox {
    width: 52%;
  }
}
@media (max-width: 767px) {
  .CoreComponents .swiper .swiper-slide .item .textbox {
    margin-top: 0.4rem;
    width: 100%;
  }
}
.CoreComponents .swiper .swiper-slide .item .textbox ul {
  max-width: 6rem;
  width: 100%;
  padding: 0;
}
@media (max-width: 767px) {
  .CoreComponents .swiper .swiper-slide .item .textbox ul {
    max-width: 100%;
  }
}
.CoreComponents .swiper .swiper-slide .item .textbox ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  list-style: none;
  padding: 3.5% 5.9% 3.5% 7%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.2rem;
  margin-bottom: 0.12rem;
  min-height: 1.4rem;
}
@media (max-width: 991px) {
  .CoreComponents .swiper .swiper-slide .item .textbox ul li {
    padding: 0.3rem 0.4rem;
    margin-bottom: 0.3rem;
  }
}
.CoreComponents .swiper .swiper-slide .item .textbox ul li div {
  width: 100%;
}
.CoreComponents .swiper .swiper-slide .item .textbox ul li div .icon {
  display: inline-flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 11.2%;
  margin-right: 6%;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .CoreComponents .swiper .swiper-slide .item .textbox ul li div .icon {
    width: 0.48rem;
    margin-right: 0.25rem;
  }
}
.CoreComponents .swiper .swiper-slide .item .textbox ul li div .icon img {
  max-width: 0.48rem;
}
@media (max-width: 991px) {
  .CoreComponents .swiper .swiper-slide .item .textbox ul li div .icon img {
    max-width: 100%;
  }
}
.CoreComponents .swiper .swiper-slide .item .textbox ul li div .text {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.CoreComponents .swiper .swiper-slide .item .textbox ul li div .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .CoreComponents .swiper .swiper-slide .item .textbox ul li div .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .CoreComponents .swiper .swiper-slide .item .textbox ul li div .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .CoreComponents .swiper .swiper-slide .item .textbox ul li div .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .CoreComponents .swiper .swiper-slide .item .textbox ul li div .text .t1 {
    font-size: 0.35rem;
  }
}
.CoreComponents .swiper .swiper-slide .item .textbox ul li div .text .t2 {
  margin-top: 0.06rem;
  font-size: 20px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .CoreComponents .swiper .swiper-slide .item .textbox ul li div .text .t2 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .CoreComponents .swiper .swiper-slide .item .textbox ul li div .text .t2 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .CoreComponents .swiper .swiper-slide .item .textbox ul li div .text .t2 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .CoreComponents .swiper .swiper-slide .item .textbox ul li div .text .t2 {
    font-size: 0.28rem;
  }
}
.CoreComponents .swiper .swiper-slide.swiper-slide-active .item .picture {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.CoreComponents .swiper .swiper-slide.swiper-slide-active .item .textbox {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.MoreFunction {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.MoreFunction .box {
  margin-top: 5%;
  gap: 0.5rem;
}
@media (max-width: 991px) {
  .MoreFunction .box {
    gap: 5%;
    margin-top: 7%;
  }
}
.MoreFunction .box .item {
  width: 16%;
  text-align: center;
}
@media (max-width: 991px) {
  .MoreFunction .box .item {
    width: 30%;
  }
}
.MoreFunction .box .item .icon {
  margin-bottom: 0.2rem;
}
@media (max-width: 991px) {
  .MoreFunction .box .item .icon {
    margin-bottom: 0.3rem;
  }
}
.MoreFunction .box .item .icon img {
  max-width: 0.77rem;
}
.MoreFunction .box .item .text {
  font-family: "HONORSansCN-Bold";
  color: #ffffff;
  font-size: 20px;
}
@media (max-width: 1900px) {
  .MoreFunction .box .item .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .MoreFunction .box .item .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .MoreFunction .box .item .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .MoreFunction .box .item .text {
    font-size: 0.28rem;
  }
}
.MoreFunction .box .item .text sup {
  font-size: 12px;
}
.MoreFunction .box .item .text .sp {
  display: block;
  font-family: "HONORSansCN-Regular";
  font-size: 16px;
}
@media (max-width: 1900px) {
  .MoreFunction .box .item .text .sp {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .MoreFunction .box .item .text .sp {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .MoreFunction .box .item .text .sp {
    font-size: 14px;
  }
}
.productsinfo3 {
  position: relative;
}
.productsinfo3 .i-title {
  position: absolute;
  left: 0;
  top: 6vw;
  z-index: 5;
  width: 100%;
}
@media (max-width: 991px) {
  .productsinfo3 .i-title {
    top: 1rem;
  }
}
.productsinfo3 .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .productsinfo3 .swiper .swiper-slide {
    position: relative;
    padding-bottom: 100%;
  }
}
.productsinfo3 .swiper .swiper-slide img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .productsinfo3 .swiper .swiper-slide img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo3 .swiper .swiper-pagination {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  bottom: 4.375vw;
  width: 100%;
  z-index: 12;
}
@media (max-width: 991px) {
  .productsinfo3 .swiper .swiper-pagination {
    bottom: 0.5rem;
  }
}
.productsinfo3 .swiper .swiper-pagination li {
  position: relative;
  width: 0.32rem;
  height: 0.32rem;
  margin: 0 0.14rem;
  bottom: 0 !important;
  background-position: center;
  background-repeat: no-repeat;
  float: none;
  display: inline-block;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
}
.productsinfo3 .swiper .swiper-pagination li::before {
  content: '';
  position: absolute;
  left: -0.07rem;
  top: -0.07rem;
  z-index: 2;
  width: calc(100% + 0.14rem);
  height: calc(100% + 0.14rem);
  border: #ffffff solid 2px;
  box-sizing: border-box;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.productsinfo3 .swiper .swiper-pagination li.active::before {
  opacity: 1;
}
@media (max-width: 991px) {
  .productsinfo3 .swiper .swiper-pagination li {
    width: 0.2rem;
    height: 0.2rem;
    margin: 0 0.12rem;
  }
  .productsinfo3 .swiper .swiper-pagination li.active {
    width: 0.26rem;
    height: 0.26rem;
  }
}
.productsinfo4 {
  position: relative;
  min-height: 46.875vw;
}
@media (max-width: 991px) {
  .productsinfo4 {
    min-height: 56vh;
  }
}
.productsinfo4 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .productsinfo4 .img-cover {
    height: 100%;
    object-fit: cover;
    background-position: right center;
  }
}
.productsinfo4 .container {
  position: relative;
  z-index: 5;
  padding-bottom: 7%;
}
.productsinfo4 .container .content {
  width: 60%;
}
@media (max-width: 991px) {
  .productsinfo4 .container .content {
    width: 100%;
  }
}
.productsinfo4 .container .content .descriptive {
  margin-top: 3.2%;
}
@media (max-width: 991px) {
  .productsinfo4 .container .content .descriptive {
    margin-top: 6%;
  }
}
.productsinfo5 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo5 {
    min-height: 56vh;
  }
}
.productsinfo5 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .productsinfo5 .img-cover {
    height: 100%;
    object-fit: cover;
    background-position: left 8% center;
  }
}
.productsinfo5 .container {
  position: relative;
  z-index: 5;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 991px) {
  .productsinfo5 .container .textbox ul {
    flex-wrap: wrap;
    margin-top: 7%;
  }
}
.productsinfo5 .container .textbox ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 24.325%;
  margin-right: 0.9%;
  margin-bottom: 0.9%;
  padding: 1.5%;
  min-height: 1.6rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.productsinfo5 .container .textbox ul li:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo5 .container .textbox ul li:nth-child(4n) {
    margin-right: 2%;
  }
}
@media (max-width: 991px) {
  .productsinfo5 .container .textbox ul li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
    padding: 0.4rem;
  }
}
@media (max-width: 991px) {
  .productsinfo5 .container .textbox ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .productsinfo5 .container .textbox ul li {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.3rem;
  }
}
.productsinfo5 .container .textbox ul li .text {
  width: 100%;
  text-align: center;
}
.productsinfo5 .container .textbox ul li .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo5 .container .textbox ul li .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo5 .container .textbox ul li .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo5 .container .textbox ul li .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo5 .container .textbox ul li .text .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo5 .container .textbox ul li .text .t2 {
  margin-top: 0.08rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo5 .container .textbox ul li .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo5 .container .textbox ul li .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo5 .container .textbox ul li .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo5 .container .textbox ul li .text .t2 {
    font-size: 0.26rem;
  }
}
.productsinfo8 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo8 {
    min-height: 56vh;
  }
}
.productsinfo8 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo8 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo8 .container {
  position: relative;
  z-index: 5;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.productsinfo8 .container .i-title {
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .productsinfo8 .container .textbox ul {
    flex-wrap: wrap;
  }
}
.productsinfo8 .container .textbox ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 24.325%;
  margin-right: 0.9%;
  margin-bottom: 0.9%;
  padding: 2.77% 2%;
  min-height: 1.6rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.productsinfo8 .container .textbox ul li:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo8 .container .textbox ul li:nth-child(4n) {
    margin-right: 2%;
  }
}
@media (max-width: 991px) {
  .productsinfo8 .container .textbox ul li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
    padding: 0.4rem;
  }
}
@media (max-width: 991px) {
  .productsinfo8 .container .textbox ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .productsinfo8 .container .textbox ul li {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.3rem;
  }
}
.productsinfo8 .container .textbox ul li .text {
  width: 100%;
}
.productsinfo8 .container .textbox ul li .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo8 .container .textbox ul li .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo8 .container .textbox ul li .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo8 .container .textbox ul li .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo8 .container .textbox ul li .text .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo8 .container .textbox ul li .text .t2 {
  margin-top: 0.08rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo8 .container .textbox ul li .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo8 .container .textbox ul li .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo8 .container .textbox ul li .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo8 .container .textbox ul li .text .t2 {
    font-size: 0.26rem;
  }
}
.productsinfo10 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo10 {
    min-height: 56vh;
  }
}
.productsinfo10 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo10 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo10 .container {
  position: relative;
  z-index: 5;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.productsinfo10 .container .i-title {
  max-width: 11.1rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .productsinfo10 .container .textbox ul {
    flex-wrap: wrap;
  }
}
.productsinfo10 .container .textbox ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 24.325%;
  margin-right: 0.9%;
  margin-bottom: 0.9%;
  padding: 2.77% 2%;
  min-height: 1.6rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.productsinfo10 .container .textbox ul li:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo10 .container .textbox ul li:nth-child(4n) {
    margin-right: 2%;
  }
}
@media (max-width: 991px) {
  .productsinfo10 .container .textbox ul li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
    padding: 0.4rem;
  }
}
@media (max-width: 991px) {
  .productsinfo10 .container .textbox ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .productsinfo10 .container .textbox ul li {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.3rem;
  }
}
.productsinfo10 .container .textbox ul li .text {
  width: 100%;
}
.productsinfo10 .container .textbox ul li .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo10 .container .textbox ul li .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo10 .container .textbox ul li .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo10 .container .textbox ul li .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo10 .container .textbox ul li .text .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo10 .container .textbox ul li .text .t2 {
  margin-top: 0.08rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo10 .container .textbox ul li .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo10 .container .textbox ul li .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo10 .container .textbox ul li .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo10 .container .textbox ul li .text .t2 {
    font-size: 0.26rem;
  }
}
.productsinfo13 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo13 {
    min-height: 56vh;
  }
}
.productsinfo13 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo13 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo13 .container {
  position: relative;
  z-index: 5;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 767px) {
  .productsinfo13 .container {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.productsinfo13 .container .i-title {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
@media (max-width: 991px) {
  .productsinfo13 .container .i-title {
    top: 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@media (max-width: 767px) {
  .productsinfo13 .container .i-title {
    position: relative;
    margin-bottom: 7%;
  }
}
.productsinfo13 .container .textbox {
  width: 100%;
}
.productsinfo13 .container .textbox ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 24.325%;
  margin-right: 0.9%;
  margin-bottom: 0.9%;
  padding: 0.4rem 0.3rem;
  min-height: 1.6rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.productsinfo13 .container .textbox ul li:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo13 .container .textbox ul li:nth-child(4n) {
    margin-right: 2%;
  }
}
@media (max-width: 991px) {
  .productsinfo13 .container .textbox ul li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
    padding: 0.4rem;
  }
}
@media (max-width: 991px) {
  .productsinfo13 .container .textbox ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .productsinfo13 .container .textbox ul li {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.3rem;
  }
}
.productsinfo13 .container .textbox ul li .icon {
  display: inline-block;
  margin-right: 0.15rem;
  flex-shrink: 0;
}
.productsinfo13 .container .textbox ul li .icon img {
  max-width: 0.3rem;
}
@media (max-width: 991px) {
  .productsinfo13 .container .textbox ul li .icon img {
    max-width: 0.4rem;
  }
}
.productsinfo13 .container .textbox ul li .text {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 1900px) {
  .productsinfo13 .container .textbox ul li .text {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo13 .container .textbox ul li .text {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo13 .container .textbox ul li .text {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo13 .container .textbox ul li .text {
    font-size: 0.26rem;
  }
}
.productsinfo23 {
  position: relative;
  min-height: 51.04166666666667vw;
}
@media (max-width: 991px) {
  .productsinfo23 {
    min-height: 56vh;
  }
}
.productsinfo23 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo23 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo23 .container {
  position: relative;
  z-index: 5;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
}
.productsinfo23 .container .i-title {
  width: 100%;
  margin-bottom: 0.5rem;
}
.productsinfo23 .container .textbox {
  width: 100%;
}
@media (max-width: 991px) {
  .productsinfo23 .container .textbox ul {
    flex-wrap: wrap;
  }
}
.productsinfo23 .container .textbox ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 24.325%;
  margin-right: 0.9%;
  margin-bottom: 0.9%;
  padding: 0.3rem;
  min-height: 1.8rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.productsinfo23 .container .textbox ul li:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo23 .container .textbox ul li:nth-child(4n) {
    margin-right: 2%;
  }
}
@media (max-width: 991px) {
  .productsinfo23 .container .textbox ul li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
    padding: 0.4rem;
  }
}
@media (max-width: 991px) {
  .productsinfo23 .container .textbox ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .productsinfo23 .container .textbox ul li {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.3rem;
  }
}
.productsinfo23 .container .textbox ul li .icon {
  display: inline-block;
  margin-right: 0.15rem;
  flex-shrink: 0;
}
.productsinfo23 .container .textbox ul li .icon img {
  max-width: 0.3rem;
}
@media (max-width: 991px) {
  .productsinfo23 .container .textbox ul li .icon img {
    max-width: 0.4rem;
  }
}
.productsinfo23 .container .textbox ul li .text {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.productsinfo23 .container .textbox ul li .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo23 .container .textbox ul li .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo23 .container .textbox ul li .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo23 .container .textbox ul li .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo23 .container .textbox ul li .text .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo23 .container .textbox ul li .text .t2 {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 1900px) {
  .productsinfo23 .container .textbox ul li .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo23 .container .textbox ul li .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo23 .container .textbox ul li .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo23 .container .textbox ul li .text .t2 {
    font-size: 0.26rem;
  }
}
.productsinfo23 .container .textbox ul li .text .t3 {
  font-size: 12px;
  color: #ffffff;
  line-height: 1.6;
}
.productsinfo42 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo42 {
    min-height: 56vh;
  }
}
.productsinfo42 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo42 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo42 .container {
  position: relative;
  z-index: 5;
  min-height: 36vw;
}
.productsinfo42 .container .textbox ul {
  margin-top: 0.4rem;
}
@media (max-width: 991px) {
  .productsinfo42 .container .textbox ul {
    flex-wrap: wrap;
    margin-top: 7%;
  }
}
.productsinfo42 .container .textbox ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: calc((100% - 0.3rem) / 3);
  margin-right: 0.15rem;
  margin-bottom: 0.15rem;
  padding: 2.5% 4.2%;
  min-height: 1.8rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.productsinfo42 .container .textbox ul li:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo42 .container .textbox ul li:nth-child(3n) {
    margin-right: 2%;
  }
}
@media (max-width: 991px) {
  .productsinfo42 .container .textbox ul li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
    padding: 0.4rem;
  }
}
@media (max-width: 991px) {
  .productsinfo42 .container .textbox ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .productsinfo42 .container .textbox ul li {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.4rem;
  }
}
.productsinfo42 .container .textbox ul li .text {
  width: 100%;
  text-align: center;
}
@media (max-width: 991px) {
  .productsinfo42 .container .textbox ul li .text {
    text-align: left;
  }
}
.productsinfo42 .container .textbox ul li .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo42 .container .textbox ul li .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo42 .container .textbox ul li .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo42 .container .textbox ul li .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo42 .container .textbox ul li .text .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo42 .container .textbox ul li .text .t2 {
  margin-top: 0.08rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo42 .container .textbox ul li .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo42 .container .textbox ul li .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo42 .container .textbox ul li .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo42 .container .textbox ul li .text .t2 {
    font-size: 0.26rem;
  }
}
.productsinfo43 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo43 {
    min-height: 56vh;
  }
}
.productsinfo43 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo43 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo43 .container {
  position: relative;
  z-index: 5;
  min-height: 36vw;
}
.productsinfo43 .container .textbox ul {
  margin-top: 0.4rem;
}
@media (max-width: 991px) {
  .productsinfo43 .container .textbox ul {
    flex-wrap: wrap;
    margin-top: 7%;
  }
}
.productsinfo43 .container .textbox ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: calc((100% - 0.3rem) / 3);
  margin-right: 0.15rem;
  margin-bottom: 0.15rem;
  padding: 2.5% 4.2%;
  min-height: 1.8rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.productsinfo43 .container .textbox ul li:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo43 .container .textbox ul li:nth-child(3n) {
    margin-right: 2%;
  }
}
@media (max-width: 991px) {
  .productsinfo43 .container .textbox ul li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
    padding: 0.4rem;
  }
}
@media (max-width: 991px) {
  .productsinfo43 .container .textbox ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .productsinfo43 .container .textbox ul li {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.4rem;
  }
}
.productsinfo43 .container .textbox ul li .text {
  width: 100%;
}
.productsinfo43 .container .textbox ul li .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo43 .container .textbox ul li .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo43 .container .textbox ul li .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo43 .container .textbox ul li .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo43 .container .textbox ul li .text .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo43 .container .textbox ul li .text .t2 {
  margin-top: 0.08rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo43 .container .textbox ul li .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo43 .container .textbox ul li .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo43 .container .textbox ul li .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo43 .container .textbox ul li .text .t2 {
    font-size: 0.26rem;
  }
}
.exhibition .box {
  margin-top: 3.5%;
}
@media (max-width: 991px) {
  .exhibition .box {
    margin-top: 6%;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .exhibition .box {
    margin-top: 6%;
  }
}
.exhibition .box .left_w {
  width: 56.94444444444444%;
}
@media (max-width: 991px) {
  .exhibition .box .left_w {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.exhibition .box .left_w .item .img {
  position: relative;
  padding-top: 57.31707317073171%;
}
.exhibition .box .left_w .item .img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
.exhibition .box .right_w {
  width: calc(43.05555555555556% - 0.2rem);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.1rem;
}
@media (max-width: 991px) {
  .exhibition .box .right_w {
    width: 100%;
    gap: 0;
  }
}
.exhibition .box .right_w .item .img {
  padding-top: 42.2575976845152%;
}
@media (max-width: 991px) {
  .exhibition .box .right_w .item .img {
    padding-top: 87.4095513748191%;
  }
}
.exhibition .box .right_w .wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.exhibition .box .right_w .wrap a {
  min-height: 0.75rem;
  border-bottom: #FFFFFF solid 0.05rem;
}
@media (max-width: 991px) {
  .exhibition .box .right_w .wrap a {
    border-bottom: #FFFFFF solid 10px;
  }
}
.exhibition .box .right_w .wrap a:last-child {
  min-height: 0.7rem;
  border-bottom: none;
}
.exhibition .box .right_w .wrap a.linkitem {
  position: relative;
  width: 100%;
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 20px;
  padding: 0.1rem 0.7rem 0.1rem 0.35rem;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1900px) {
  .exhibition .box .right_w .wrap a.linkitem {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .exhibition .box .right_w .wrap a.linkitem {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .exhibition .box .right_w .wrap a.linkitem {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .exhibition .box .right_w .wrap a.linkitem {
    font-size: 0.28rem;
  }
}
.exhibition .box .right_w .wrap a.linkitem::before {
  content: '';
  position: absolute;
  right: 0.35rem;
  top: 0;
  z-index: 5;
  width: 0.1rem;
  height: 100%;
  background: url(../images/icon86.png) center no-repeat;
  background-size: 100% auto;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.exhibition .box .right_w .wrap a.linkitem:hover {
  background: #CC0000;
  color: #FFFFFF;
}
.exhibition .box .right_w .wrap a.linkitem:hover::before {
  opacity: 1;
}
@media (max-width: 991px) {
  .exhibition .box .right_w .wrap a.linkitem {
    padding: 15px 40px 15px 20px;
  }
}
.exhibition .box .right_w .generalBtn {
  padding: 0.1rem 0.35rem;
  height: auto;
  min-height: 0.9rem;
}
@media (max-width: 991px) {
  .exhibition .box .right_w .generalBtn {
    margin-top: 20px;
  }
}
.exhibition .box .right_w .generalBtn::before,
.exhibition .box .right_w .generalBtn::after {
  width: 0.8rem;
}
@media (max-width: 991px) {
  .exhibition .box .right_w .generalBtn::before,
  .exhibition .box .right_w .generalBtn::after {
    width: 0.7rem;
  }
}
@media (max-width: 480px) {
  .exhibition .box .right_w .generalBtn::before,
  .exhibition .box .right_w .generalBtn::after {
    width: 0.8rem;
  }
}
.exhibition .box .right_w .generalBtn:hover::before,
.exhibition .box .right_w .generalBtn:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .exhibition .box .right_w .generalBtn {
    padding: 15px 20px;
  }
}
.exhibition .box .right_w .generalBtn .link-text {
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 24px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1900px) {
  .exhibition .box .right_w .generalBtn .link-text {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .exhibition .box .right_w .generalBtn .link-text {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .exhibition .box .right_w .generalBtn .link-text {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .exhibition .box .right_w .generalBtn .link-text {
    font-size: 0.35rem;
  }
}
.exhibition .box .right_w .generalBtn .link-icon {
  margin-left: 0;
}
.exhibition .box .right_w .generalBtn .link-icon img {
  width: 0.12rem;
}
.exhibition .box .item {
  position: relative;
}
@media (max-width: 991px) {
  .exhibition .box .item {
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 991px) {
  .exhibition .box .item:last-child {
    margin-bottom: 0;
  }
}
.exhibition .box .item .img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.exhibition .box .item .img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 200%;
  background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
.exhibition .box .item .img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exhibition .box .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 0.3rem;
  box-sizing: border-box;
}
.exhibition .box .item .text .subtit {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: "HONORSansCN-Bold";
  font-size: 28px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .exhibition .box .item .text .subtit {
    font-size: 1.458333333333333vw;
  }
}
@media (max-width: 1260px) {
  .exhibition .box .item .text .subtit {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .exhibition .box .item .text .subtit {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .exhibition .box .item .text .subtit {
    font-size: 21px;
  }
}
@media (max-width: 480px) {
  .exhibition .box .item .text .subtit {
    font-size: 0.34rem;
  }
}
.exhibition .box .item .text .generalBtn {
  flex-shrink: 0;
  margin-left: 0.2rem;
}
.consultation .box {
  box-shadow: 0px 0px 10px rgba(4, 0, 0, 0.08);
}
@media (max-width: 991px) {
  .consultation .box {
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
  }
}
.consultation .box .imgbox {
  width: 43.75%;
}
@media (max-width: 991px) {
  .consultation .box .imgbox {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.15;
  }
}
.consultation .box .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.consultation .box .textbox {
  width: 56.25%;
  padding: 3.75% 6.95%;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .consultation .box .textbox {
    width: 100%;
    padding: 0.6rem 0.4rem;
  }
}
.consultation .box .textbox .layuibox {
  margin-top: 6%;
}
@media (max-width: 991px) {
  .consultation .box .textbox .layuibox .commonlayui-form .layui-form-item .layui-input {
    background: none;
    border: #cacaca solid 1px;
  }
  .consultation .box .textbox .layuibox .commonlayui-form .layui-form-item .layui-textarea {
    background: none;
    border: #cacaca solid 1px;
  }
}
.commonlayui-form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.2rem;
}
.commonlayui-form .layui-form-item {
  width: 100%;
  margin-bottom: 0.32rem;
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item {
    margin-bottom: 0.4rem;
  }
}
.commonlayui-form .layui-form-item.half {
  width: calc((100% - 0.2rem) / 2);
}
.commonlayui-form .layui-form-item.half:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item.half {
    width: 100%;
    margin-right: 0 !important;
  }
}
.commonlayui-form .layui-form-item:last-child {
  margin-bottom: 0;
}
.commonlayui-form .layui-form-item .layui-form-label {
  float: none;
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  font-family: "HONORSansCN-Bold";
  font-size: 20px;
  color: #000000;
  margin-bottom: 0.2rem;
}
@media (max-width: 1900px) {
  .commonlayui-form .layui-form-item .layui-form-label {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .commonlayui-form .layui-form-item .layui-form-label {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-form-label {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .commonlayui-form .layui-form-item .layui-form-label {
    font-size: 0.28rem;
  }
}
.commonlayui-form .layui-form-item .layui-form-label span {
  color: #cc0000;
}
.commonlayui-form .layui-form-item .layui-input-block {
  margin-left: 0;
  width: 100%;
}
.commonlayui-form .layui-form-item .layui-input-block .layui-form-radio {
  display: inline-flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  color: #000000;
  font-size: 18px;
}
@media (max-width: 1900px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-radio {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-radio {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-radio {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-radio {
    font-size: 0.26rem;
  }
}
.commonlayui-form .layui-form-item .layui-input-block .layui-form-radio * {
  color: #000000;
  font-size: 18px;
}
@media (max-width: 1900px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-radio * {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-radio * {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-radio * {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-radio * {
    font-size: 0.26rem;
  }
}
.commonlayui-form .layui-form-item .layui-input-block .layui-form-radio .layui-icon {
  width: 0.18rem;
  height: 0.18rem;
  background: url(../images/icon37.png) center no-repeat;
  background-size: 100% auto;
  color: transparent;
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-radio .layui-icon {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-radio .layui-icon {
    width: 14px;
    height: 14px;
  }
}
.commonlayui-form .layui-form-item .layui-input-block .layui-form-radio.layui-form-radioed .layui-icon {
  background: url(../images/icon38.png) center no-repeat;
  background-size: 100% auto;
}
.commonlayui-form .layui-form-item .layui-input-block .layui-input {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 0.58rem;
  padding: 0 0.2rem;
  color: #333333;
  font-size: 18px;
  box-sizing: border-box;
  border: #e5e5e5 solid 1px;
  border-radius: 0.06rem;
}
@media (max-width: 1900px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-input {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-input {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-input {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-input {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-input {
    padding: 0 0.3rem;
    height: 45px;
  }
}
.commonlayui-form .layui-form-item .layui-input-block .layui-input::-webkit-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.commonlayui-form .layui-form-item .layui-input-block .layui-input::-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.commonlayui-form .layui-form-item .layui-input-block .layui-input:-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.commonlayui-form .layui-form-item .layui-input-block .layui-input:-ms-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.commonlayui-form .layui-form-item .layui-input-block .layui-input:focus {
  border-color: #cc0000 !important;
}
.commonlayui-form .layui-form-item .layui-input-block .layui-textarea {
  width: 100%;
  height: 0.9rem;
  min-height: 0.9rem;
  font-size: 18px;
  color: #333333;
  padding: 0.2rem;
  border: #e5e5e5 solid 1px;
  border-radius: 0.06rem;
  box-sizing: border-box;
  resize: none;
}
@media (max-width: 1900px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-textarea {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-textarea {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-textarea {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-textarea {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-textarea {
    padding: 0.3rem;
    height: 100px;
    min-height: 1px;
  }
}
.commonlayui-form .layui-form-item .layui-input-block .layui-textarea::-webkit-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.commonlayui-form .layui-form-item .layui-input-block .layui-textarea::-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.commonlayui-form .layui-form-item .layui-input-block .layui-textarea:-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.commonlayui-form .layui-form-item .layui-input-block .layui-textarea:-ms-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.commonlayui-form .layui-form-item .layui-input-block .layui-textarea:focus {
  border-color: #cc0000 !important;
}
.commonlayui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
  padding-left: 0.2rem;
  padding-right: 0.4rem;
  height: 0.58rem;
  font-family: "HONORSansCN-regular";
  font-size: 18px;
  color: #333333;
  border: #e5e5e5 solid 1px;
  border-radius: 0.06rem;
}
@media (max-width: 1900px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    padding-left: 0.3rem;
    padding-right: 0.5rem;
    height: 45px;
  }
}
.commonlayui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input::-webkit-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.commonlayui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input::-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.commonlayui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input:-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.commonlayui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input:-ms-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.commonlayui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-edge {
  right: 0.2rem;
}
.commonlayui-form .layui-form-item .layui-input-block .layui-form-select dl {
  padding: 0;
  top: 0.58rem;
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-select dl {
    top: 45px;
  }
}
.commonlayui-form .layui-form-item .layui-input-block .layui-form-select dl dd {
  font-family: "HONORSansCN-regular";
  font-size: 16px;
  color: #333333;
  padding: 0 0.2rem;
}
@media (max-width: 1900px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-select dl dd {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-select dl dd {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-select dl dd {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-select dl dd {
    padding: 0 0.3rem;
  }
}
.commonlayui-form .layui-form-item .layui-input-block .layui-form-select dl dd.layui-this {
  color: #ffffff;
  background-color: #cc0000;
  padding: 0 0.2rem !important;
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-form-select dl dd.layui-this {
    padding: 0 0.3rem !important;
  }
}
.commonlayui-form .layui-form-item .layui-input-block.layui-form-selected .layui-edge {
  margin-top: -3px;
}
.commonlayui-form .layui-form-item .layui-input-block .layui-btn {
  display: block;
  width: 1.4rem;
  height: 0.5rem;
  border-radius: 0.06rem;
  background: #cc0000;
  color: #ffffff;
  font-family: "HONORSansCN-Bold";
  font-size: 16px;
}
@media (max-width: 1900px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-btn {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-btn {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-btn {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .commonlayui-form .layui-form-item .layui-input-block .layui-btn {
    width: 120px;
    height: 42px;
    border-radius: 21px;
  }
}
.commonlayui-form .layui-form-item .layui-input-block .layui-btn img {
  display: inline-block;
  margin-left: 0.25rem;
  width: 0.08rem;
}
.othergroup .box {
  width: 100%;
}
@media (max-width: 991px) {
  .othergroup .box {
    flex-wrap: wrap;
  }
}
.othergroup .box .item {
  width: 100%;
  text-align: center;
  padding-top: 5.2vw;
  padding-bottom: 5.2vw;
  background-image: url(../images/img28.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .othergroup .box .item {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.othergroup .box .item.half {
  width: calc((100% - 0.1rem) / 2);
  margin-right: 0.1rem;
}
.othergroup .box .item.half:nth-child(2n) {
  margin-right: 0;
}
.othergroup .box .item.white .text .t1 {
  color: #FFFFFF;
}
.othergroup .box .item.white .text .t2 {
  color: #FFFFFF;
}
.othergroup .box .item .icon img {
  width: 0.46rem;
}
.othergroup .box .item .text {
  margin-top: 0.2rem;
}
.othergroup .box .item .text .t1 {
  font-family: "HONORSansCN-Bold";
  color: #333333;
  font-size: 24px;
}
@media (max-width: 1900px) {
  .othergroup .box .item .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .othergroup .box .item .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .othergroup .box .item .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .othergroup .box .item .text .t1 {
    font-size: 0.35rem;
  }
}
.othergroup .box .item .text .t2 {
  margin-top: 0.06rem;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .othergroup .box .item .text .t2 {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .othergroup .box .item .text .t2 {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .othergroup .box .item .text .t2 {
    font-size: 14px;
  }
}
.othergroup .box .item .generalBtn {
  margin-top: 0.36rem;
}
.product .box .productnav {
  position: sticky;
  top: 1rem;
  max-width: 1.4rem;
  width: 13%;
  padding: 0.44rem 0;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .product .box .productnav {
    display: none;
  }
}
.product .box .productnav::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.44rem;
  background: url(../images/icon10.png) center no-repeat;
  background-size: 40.72%;
}
.product .box .productnav::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.44rem;
  background: url(../images/icon11.png) center no-repeat;
  background-size: 40.72%;
}
.product .box .productnav ul {
  border: #e5e5e5 solid 0.05rem;
}
.product .box .productnav ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-height: 0.9rem;
  border-bottom: #e5e5e5 solid 0.05rem;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product .box .productnav ul li:last-child {
  border-bottom: none;
}
.product .box .productnav ul li span {
  color: #000000;
  font-size: 20px;
  font-family: "HONORSansCN-Bold";
}
@media (max-width: 1900px) {
  .product .box .productnav ul li span {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .product .box .productnav ul li span {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .product .box .productnav ul li span {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .product .box .productnav ul li span {
    font-size: 0.28rem;
  }
}
.product .box .productnav ul li.active {
  background: #cc0000;
}
.product .box .productnav ul li.active span {
  color: #ffffff;
}
.product .box .productlist {
  width: 83.33333333333333%;
}
@media (max-width: 991px) {
  .product .box .productlist {
    width: 100%;
  }
}
.product .box .productlist .wrap .item {
  position: relative;
  display: block;
  margin-bottom: 0.2rem;
}
@media (max-width: 991px) {
  .product .box .productlist .wrap .item {
    margin-bottom: 0.4rem;
  }
}
.product .box .productlist .wrap .item .img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.product .box .productlist .wrap .item .img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
.product .box .productlist .wrap .item .img img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .product .box .productlist .wrap .item .img img {
    min-height: 42vh;
    object-fit: cover;
  }
}
.product .box .productlist .wrap .item .text {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  padding: 0 6.66666666666667%;
  box-sizing: border-box;
}
.product .box .productlist .wrap .item .text .t1 {
  font-family: "HONORSansCN-Bold";
  color: #ffffff;
  font-size: 30px;
}
@media (max-width: 1900px) {
  .product .box .productlist .wrap .item .text .t1 {
    font-size: 1.5625vw;
  }
}
@media (max-width: 1260px) {
  .product .box .productlist .wrap .item .text .t1 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .product .box .productlist .wrap .item .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .product .box .productlist .wrap .item .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .product .box .productlist .wrap .item .text .t1 {
    font-size: 0.38rem;
  }
}
.product .box .productlist .wrap .item .text .t2 {
  margin-top: 0.06rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .product .box .productlist .wrap .item .text .t2 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .product .box .productlist .wrap .item .text .t2 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .product .box .productlist .wrap .item .text .t2 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .product .box .productlist .wrap .item .text .t2 {
    font-size: 0.28rem;
  }
}
.productsinfo6 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo6 {
    min-height: 56vh;
  }
}
.productsinfo6 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo6 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo6 .container {
  position: relative;
  z-index: 5;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.productsinfo6 .container .i-title .text {
  margin-top: 0.2rem;
  font-size: 18px;
}
@media (max-width: 1900px) {
  .productsinfo6 .container .i-title .text {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo6 .container .i-title .text {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo6 .container .i-title .text {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo6 .container .i-title .text {
    font-size: 0.26rem;
  }
}
.productsinfo6 .container .i-title .text ul {
  padding: 0;
}
.productsinfo6 .container .i-title .text ul li {
  position: relative;
  padding-left: 0.2rem;
}
.productsinfo6 .container .i-title .text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background: #ffffff;
}
.productsinfo6 .container .textbox {
  margin-top: 2.5%;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo6 .container .textbox {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo6 .container .textbox {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .productsinfo6 .container .textbox {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .productsinfo6 .container .textbox {
    font-size: 0.28rem;
  }
}
@media (max-width: 991px) {
  .productsinfo6 .container .textbox {
    margin-top: 5%;
  }
}
@media (max-width: 767px) {
  .productsinfo6 .container .textbox {
    margin-top: 7%;
  }
}
.productsinfo6 .container .textbox ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding: 0;
}
.productsinfo6 .container .textbox ul li {
  display: inline-flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-right: 0.32rem;
  color: #ffffff;
  font-size: 20px;
}
@media (max-width: 1900px) {
  .productsinfo6 .container .textbox ul li {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo6 .container .textbox ul li {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .productsinfo6 .container .textbox ul li {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .productsinfo6 .container .textbox ul li {
    font-size: 0.28rem;
  }
}
.productsinfo6 .container .textbox ul li:last-child {
  margin-right: 0;
}
.productsinfo6 .container .textbox ul li img {
  display: inline-block;
  margin-right: 0.1rem;
  width: 0.3rem;
}
@media (max-width: 991px) {
  .productsinfo6 .container .textbox ul li img {
    width: 0.4rem;
    margin-right: 0.2rem;
  }
}
.productsinfo9 .i-title {
  max-width: 11.1rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.productsinfo9 .box {
  margin-top: 2.5%;
  position: relative;
}
@media (max-width: 991px) {
  .productsinfo9 .box {
    margin-top: 5%;
  }
}
@media (max-width: 767px) {
  .productsinfo9 .box {
    margin-top: 7%;
  }
}
.productsinfo9 .box img {
  display: block;
  width: 100%;
}
.productsinfo9 .box .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0.64rem;
  height: 0.64rem;
  cursor: pointer;
}
.productsinfo9 .box .icon img {
  display: block;
  width: 100%;
}
.patent .box {
  margin-top: 3%;
  position: relative;
}
@media (max-width: 991px) {
  .patent .box {
    margin-top: 6%;
  }
}
@media (max-width: 767px) {
  .patent .box {
    margin-top: 8%;
  }
}
.patent .box .img {
  width: 100%;
  overflow: hidden;
}
.patent .box .img img {
  display: block;
  width: 100%;
}
.patent .box .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 0.1rem;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .patent .box .textbox {
    position: static;
    padding: 0;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }
}
.patent .box .textbox .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: calc((100% - 0.3rem) / 4);
  margin-right: 0.1rem;
  margin-bottom: 0.1rem;
  padding: 1.56%;
  min-height: 1.4rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.patent .box .textbox .item:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .patent .box .textbox .item {
    width: 100%;
    flex: auto;
    padding: 0.4rem;
    margin-right: 0;
    margin-bottom: 0.3rem;
    background: #f9f9f9;
  }
}
.patent .box .textbox .item .icon {
  flex-shrink: 0;
  margin-right: 0.2rem;
}
.patent .box .textbox .item .icon img {
  width: 0.3rem;
}
@media (max-width: 991px) {
  .patent .box .textbox .item .icon img {
    width: 0.4rem;
  }
}
.patent .box .textbox .item .text {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.patent .box .textbox .item .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .patent .box .textbox .item .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .patent .box .textbox .item .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .patent .box .textbox .item .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .patent .box .textbox .item .text .t1 {
    font-size: 0.35rem;
  }
}
@media (max-width: 991px) {
  .patent .box .textbox .item .text .t1 {
    color: #000000;
  }
}
.patent .box .textbox .item .text .t2 {
  margin-top: 0.08rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .patent .box .textbox .item .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .patent .box .textbox .item .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .patent .box .textbox .item .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .patent .box .textbox .item .text .t2 {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .patent .box .textbox .item .text .t2 {
    color: rgba(0, 0, 0, 0.6);
  }
}
.patent .box .textbox .item .text .t3 {
  margin-top: 0.08rem;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .patent .box .textbox .item .text .t3 {
    color: rgba(0, 0, 0, 0.6);
  }
}
.productsinfo21 .box {
  margin-top: 3%;
  position: relative;
}
@media (max-width: 991px) {
  .productsinfo21 .box {
    margin-top: 6%;
  }
}
@media (max-width: 767px) {
  .productsinfo21 .box {
    margin-top: 8%;
  }
}
.productsinfo21 .box .img {
  width: 100%;
  overflow: hidden;
}
.productsinfo21 .box .img img {
  display: block;
  width: 100%;
}
.productsinfo21 .box .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 0.28rem 0.24rem;
  box-sizing: border-box;
  gap: 0.2rem;
}
@media (max-width: 991px) {
  .productsinfo21 .box .textbox {
    position: static;
    padding: 0;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }
}
.productsinfo21 .box .textbox .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 1.56%;
  min-height: 1.4rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
@media (max-width: 991px) {
  .productsinfo21 .box .textbox .item {
    width: 100%;
    flex: auto;
    padding: 0.4rem;
    margin-right: 0;
    margin-bottom: 0.3rem;
    background: #f9f9f9;
  }
}
.productsinfo21 .box .textbox .item .icon {
  flex-shrink: 0;
  margin-right: 0.2rem;
}
.productsinfo21 .box .textbox .item .icon img {
  width: 0.3rem;
}
@media (max-width: 991px) {
  .productsinfo21 .box .textbox .item .icon img {
    width: 0.4rem;
  }
}
.productsinfo21 .box .textbox .item .text {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.productsinfo21 .box .textbox .item .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo21 .box .textbox .item .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo21 .box .textbox .item .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo21 .box .textbox .item .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo21 .box .textbox .item .text .t1 {
    font-size: 0.35rem;
  }
}
@media (max-width: 991px) {
  .productsinfo21 .box .textbox .item .text .t1 {
    color: #000000;
  }
}
.productsinfo21 .box .textbox .item .text .t2 {
  margin-top: 0.08rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo21 .box .textbox .item .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo21 .box .textbox .item .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo21 .box .textbox .item .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo21 .box .textbox .item .text .t2 {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .productsinfo21 .box .textbox .item .text .t2 {
    color: rgba(0, 0, 0, 0.6);
  }
}
.productsinfo21 .box .textbox .item .text .t3 {
  margin-top: 0.08rem;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .productsinfo21 .box .textbox .item .text .t3 {
    color: rgba(0, 0, 0, 0.6);
  }
}
.productsinfo45 .box {
  margin-top: 3%;
  position: relative;
}
@media (max-width: 991px) {
  .productsinfo45 .box {
    margin-top: 6%;
  }
}
@media (max-width: 767px) {
  .productsinfo45 .box {
    margin-top: 8%;
  }
}
.productsinfo45 .box .img {
  width: 100%;
  overflow: hidden;
}
.productsinfo45 .box .img img {
  display: block;
  width: 100%;
}
.productsinfo45 .box .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 0.1rem 0.15rem;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .productsinfo45 .box .textbox {
    position: static;
    padding: 0;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }
}
.productsinfo45 .box .textbox .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: calc((100% - 0.3rem) / 4);
  margin-right: 0.1rem;
  padding: 1.56%;
  min-height: 1.4rem;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.productsinfo45 .box .textbox .item:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo45 .box .textbox .item {
    width: 100%;
    flex: auto;
    padding: 0.4rem;
    margin-right: 0;
    margin-bottom: 0.4rem;
    background: #f9f9f9;
  }
  .productsinfo45 .box .textbox .item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .productsinfo45 .box .textbox .item {
    padding: 0.35rem;
    margin-bottom: 0.3rem;
  }
  .productsinfo45 .box .textbox .item:last-child {
    margin-bottom: 0;
  }
}
.productsinfo45 .box .textbox .item .icon {
  flex-shrink: 0;
  margin-right: 0.2rem;
}
.productsinfo45 .box .textbox .item .icon img {
  max-width: 0.31rem;
}
.productsinfo45 .box .textbox .item .text {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.productsinfo45 .box .textbox .item .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo45 .box .textbox .item .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo45 .box .textbox .item .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo45 .box .textbox .item .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo45 .box .textbox .item .text .t1 {
    font-size: 0.35rem;
  }
}
@media (max-width: 991px) {
  .productsinfo45 .box .textbox .item .text .t1 {
    color: #000000;
  }
}
.productsinfo45 .box .textbox .item .text .t2 {
  margin-top: 0.08rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo45 .box .textbox .item .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo45 .box .textbox .item .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo45 .box .textbox .item .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo45 .box .textbox .item .text .t2 {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .productsinfo45 .box .textbox .item .text .t2 {
    color: rgba(0, 0, 0, 0.6);
  }
}
.productsinfo45 .box .textbox .item .text .t3 {
  margin-top: 0.08rem;
  font-size: 10px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .productsinfo45 .box .textbox .item .text .t3 {
    color: rgba(0, 0, 0, 0.6);
  }
}
.SafetyTechnology .box {
  position: relative;
  margin-top: 3%;
}
@media (max-width: 991px) {
  .SafetyTechnology .box {
    margin-top: 6%;
  }
}
@media (max-width: 767px) {
  .SafetyTechnology .box {
    margin-top: 8%;
  }
}
.SafetyTechnology .box .img {
  width: 100%;
  overflow: hidden;
}
.SafetyTechnology .box .img img {
  display: block;
  width: 100%;
}
.SafetyTechnology .box .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 0.34rem 0.1rem;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .SafetyTechnology .box .textbox {
    position: static;
    padding: 0;
    margin-top: 0.5rem;
  }
}
.SafetyTechnology .box .textbox .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: calc((100% - 0.26rem) / 3);
  margin-right: 0.13rem;
  margin-bottom: 0.13rem;
  padding: 1.56%;
  min-height: 1.2rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
@media (max-width: 991px) {
  .SafetyTechnology .box .textbox .item {
    width: 100%;
    padding: 0.4rem;
    margin-right: 0;
    margin-bottom: 0.3rem;
    background: #f9f9f9;
  }
}
.SafetyTechnology .box .textbox .item:nth-child(3n) {
  margin-right: 0;
}
.SafetyTechnology .box .textbox .item .icon {
  flex-shrink: 0;
  margin-right: 0.2rem;
}
.SafetyTechnology .box .textbox .item .icon img {
  width: 0.3rem;
}
@media (max-width: 991px) {
  .SafetyTechnology .box .textbox .item .icon img {
    width: 0.4rem;
  }
}
.SafetyTechnology .box .textbox .item .text {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.SafetyTechnology .box .textbox .item .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .SafetyTechnology .box .textbox .item .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .SafetyTechnology .box .textbox .item .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .SafetyTechnology .box .textbox .item .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .SafetyTechnology .box .textbox .item .text .t1 {
    font-size: 0.35rem;
  }
}
@media (max-width: 991px) {
  .SafetyTechnology .box .textbox .item .text .t1 {
    color: #000000;
  }
}
.SafetyTechnology .box .textbox .item .text .t2 {
  margin-top: 0.08rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .SafetyTechnology .box .textbox .item .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .SafetyTechnology .box .textbox .item .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .SafetyTechnology .box .textbox .item .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .SafetyTechnology .box .textbox .item .text .t2 {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .SafetyTechnology .box .textbox .item .text .t2 {
    color: rgba(0, 0, 0, 0.6);
  }
}
.ExcitingCases .box {
  margin-top: 2.6%;
}
@media (max-width: 991px) {
  .ExcitingCases .box {
    margin-top: 5%;
  }
}
@media (max-width: 767px) {
  .ExcitingCases .box {
    margin-top: 7%;
  }
}
.ExcitingCases .box .swiper {
  position: relative;
  width: 100%;
  padding-left: calc((100% - 1440px) / 2);
  padding-right: calc((100% - 1440px) / 2);
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 991px) {
  .ExcitingCases .box .swiper {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.ExcitingCases .box .swiper .swiper-slide .item {
  position: relative;
  width: 100%;
}
.ExcitingCases .box .swiper .swiper-slide .item .img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.ExcitingCases .box .swiper .swiper-slide .item .img::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
@media (max-width: 767px) {
  .ExcitingCases .box .swiper .swiper-slide .item .img {
    position: relative;
    padding-bottom: 90%;
  }
}
.ExcitingCases .box .swiper .swiper-slide .item .img img {
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .ExcitingCases .box .swiper .swiper-slide .item .img img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
  }
}
.ExcitingCases .box .swiper .swiper-slide .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 0.4rem;
  box-sizing: border-box;
}
.ExcitingCases .box .swiper .swiper-slide .item .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .ExcitingCases .box .swiper .swiper-slide .item .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .ExcitingCases .box .swiper .swiper-slide .item .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .ExcitingCases .box .swiper .swiper-slide .item .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .ExcitingCases .box .swiper .swiper-slide .item .text .t1 {
    font-size: 0.35rem;
  }
}
.ExcitingCases .box .swiper .swiper-slide .item .text .t2 {
  margin-top: 0.1rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .ExcitingCases .box .swiper .swiper-slide .item .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .ExcitingCases .box .swiper .swiper-slide .item .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .ExcitingCases .box .swiper .swiper-slide .item .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .ExcitingCases .box .swiper .swiper-slide .item .text .t2 {
    font-size: 0.26rem;
  }
}
.ExcitingCases .box .swiper .bottom-nav {
  margin-top: 2.6%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: stretch;
}
@media (max-width: 991px) {
  .ExcitingCases .box .swiper .bottom-nav {
    margin-top: 5%;
  }
}
@media (max-width: 767px) {
  .ExcitingCases .box .swiper .bottom-nav {
    margin-top: 7%;
  }
}
@media (max-width: 480px) {
  .ExcitingCases .box .swiper .bottom-nav {
    margin-top: 8%;
  }
}
.ExcitingCases .box .swiper .bottom-nav .ups-icon-videoplay {
  display: inline-flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #f7f7f7;
  margin-right: 0.12rem;
  cursor: pointer;
}
.ExcitingCases .box .swiper .bottom-nav .ups-icon-videoplay i {
  display: inline-block;
  width: 20%;
  height: 100%;
  background: url(../images/icon19.png) center no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .ExcitingCases .box .swiper .bottom-nav .ups-icon-videoplay i {
    width: 24%;
  }
}
.ExcitingCases .box .swiper .bottom-nav .ups-icon-videoplay.stop-status i {
  background: url(../images/icon20.png) center no-repeat;
  background-size: 100% auto;
}
.ExcitingCases .box .swiper .bottom-nav .swiper-pagination {
  position: static;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.3rem;
  padding: 0 0.3rem;
  background: #f7f7f7;
}
.ExcitingCases .box .swiper .bottom-nav .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 0.04rem;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  margin: 0 0.06rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .ExcitingCases .box .swiper .bottom-nav .swiper-pagination .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 0.06rem;
  }
}
.ExcitingCases .box .swiper .bottom-nav .swiper-pagination .swiper-pagination-bullet i {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--progress, 0%);
  height: 100%;
  background: rgba(0, 0, 0, 0);
  border-radius: 0.05rem;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.ExcitingCases .box .swiper .bottom-nav .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 0.48rem;
}
.ExcitingCases .box .swiper .bottom-nav .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active i {
  width: var(--progress-width, 0%);
  background: #cc0000;
}
.about_animation {
  position: relative;
  min-height: 100vh;
  background: url(../images/img36.png) center bottom no-repeat;
  background-size: 76.40625% auto;
  overflow: hidden;
}
@media (max-width: 1260px) {
  .about_animation {
    min-height: 1px;
    margin-top: 8%;
  }
}
@media (max-width: 767px) {
  .about_animation {
    margin-top: 10%;
  }
}
.about_animation .box {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
}
@media (max-width: 1260px) {
  .about_animation .box {
    position: relative;
    top: 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    padding: 15vh 0;
  }
}
@media (max-width: 767px) {
  .about_animation .box {
    padding-top: 18vh;
  }
}
.about_animation .box .textbox {
  width: 32.3%;
  overflow: hidden;
}
@media (max-width: 1260px) {
  .about_animation .box .textbox {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .about_animation .box .textbox {
    width: 60%;
  }
}
@media (max-width: 1260px) {
  .about_animation .box .textbox .i-title .headline {
    color: #ffffff;
  }
}
.about_animation .box .textbox .i-title .sp {
  opacity: 0;
  color: #ffffff;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 1260px) {
  .about_animation .box .textbox .i-title .sp {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.about_animation .box .textbox .generalBtn {
  margin-top: 15%;
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 1260px) {
  .about_animation .box .textbox .generalBtn {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .about_animation .box .textbox .generalBtn {
    margin-top: 0.5rem;
  }
}
.about_animation .imgbox {
  position: absolute;
  right: 12.5%;
  top: 7%;
  width: 46.875%;
  overflow: hidden;
  transform-origin: center 80%;
}
@media (max-width: 1260px) {
  .about_animation .imgbox {
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 78.41796875vw;
    overflow: hidden;
  }
}
.about_animation .imgbox img {
  display: block;
  width: 100%;
}
@media (max-width: 1260px) {
  .about_animation .imgbox img {
    height: 100%;
    object-fit: cover;
  }
}
.speech {
  background: url(../images/img38.png) center bottom no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .speech .box {
    flex-wrap: wrap;
  }
}
.speech .box .textbox {
  width: 45.83333333333333%;
}
@media (max-width: 991px) {
  .speech .box .textbox {
    width: 100%;
  }
}
.speech .box .textbox .text {
  position: relative;
  margin-top: 5.5%;
  color: #000000;
  font-size: 20px;
  line-height: 1.7;
  padding: 10% 0;
  box-sizing: border-box;
}
@media (max-width: 1900px) {
  .speech .box .textbox .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .speech .box .textbox .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .speech .box .textbox .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .speech .box .textbox .text {
    font-size: 0.28rem;
  }
}
.speech .box .textbox .text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0.48rem;
  height: 0.4rem;
  background: url(../images/img40.png) center no-repeat;
  background-size: 100% auto;
}
.speech .box .textbox .text::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.48rem;
  height: 0.4rem;
  background: url(../images/img41.png) center no-repeat;
  background-size: 100% auto;
}
.speech .box .imgbox {
  width: 48.19444444444444%;
}
@media (max-width: 991px) {
  .speech .box .imgbox {
    margin-top: 6%;
    width: 100%;
  }
}
.speech .box .imgbox .img {
  position: relative;
  width: 100%;
  overflow: hidden;
  mix-blend-mode: multiply;
}
.speech .box .imgbox .img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}
.speech .box .imgbox .img img {
  display: block;
  width: 100%;
}
.speech .box .imgbox .name {
  padding-left: 20%;
  margin-top: 0.15rem;
  text-align: center;
  font-family: "HONORSansCN-Bold";
  font-size: 20px;
  color: #000000;
}
@media (max-width: 1900px) {
  .speech .box .imgbox .name {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .speech .box .imgbox .name {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .speech .box .imgbox .name {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .speech .box .imgbox .name {
    font-size: 0.28rem;
  }
}
@media (max-width: 991px) {
  .speech .box .imgbox .name {
    margin-top: 0.25rem;
  }
}
.MSnetwork .box {
  position: relative;
}
.MSnetwork .box .imgbox {
  width: 100%;
  overflow: hidden;
}
.MSnetwork .box .imgbox img {
  display: block;
  width: 100%;
}
.MSnetwork .box .textbox {
  position: absolute;
  left: 0;
  top: 10%;
  width: 100%;
  text-align: center;
}
.MSnetwork .box .textbox .numberbox {
  margin-top: 4.17%;
}
@media (max-width: 991px) {
  .MSnetwork .box .textbox .numberbox {
    margin-top: 7%;
  }
}
.MSnetwork .box .textbox .numberbox ul {
  gap: 0.9rem;
}
.MSnetwork .box .textbox .numberbox ul li .t1 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: baseline;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-family: "HONORSansCN-Bold";
  color: #cc0000;
  font-size: 40px;
  line-height: 1;
}
@media (max-width: 1900px) {
  .MSnetwork .box .textbox .numberbox ul li .t1 {
    font-size: 2.083333333333333vw;
  }
}
@media (max-width: 1260px) {
  .MSnetwork .box .textbox .numberbox ul li .t1 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .MSnetwork .box .textbox .numberbox ul li .t1 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .MSnetwork .box .textbox .numberbox ul li .t1 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .MSnetwork .box .textbox .numberbox ul li .t1 {
    font-size: 0.42rem;
  }
}
.MSnetwork .box .textbox .numberbox ul li .t1 .sp {
  font-size: 20px;
}
@media (max-width: 1900px) {
  .MSnetwork .box .textbox .numberbox ul li .t1 .sp {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .MSnetwork .box .textbox .numberbox ul li .t1 .sp {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .MSnetwork .box .textbox .numberbox ul li .t1 .sp {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .MSnetwork .box .textbox .numberbox ul li .t1 .sp {
    font-size: 0.28rem;
  }
}
.MSnetwork .box .textbox .numberbox ul li .t2 {
  margin-top: 0.05rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .MSnetwork .box .textbox .numberbox ul li .t2 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .MSnetwork .box .textbox .numberbox ul li .t2 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .MSnetwork .box .textbox .numberbox ul li .t2 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .MSnetwork .box .textbox .numberbox ul li .t2 {
    font-size: 0.28rem;
  }
}
.LatestNews {
  background: #f9f9f9;
}
.LatestNews .box {
  margin-top: 4.5%;
}
@media (max-width: 991px) {
  .LatestNews .box {
    flex-wrap: wrap;
    margin-top: 6%;
  }
}
@media (max-width: 767px) {
  .LatestNews .box {
    margin-top: 8%;
  }
}
.LatestNews .box .left_w {
  width: 55.55555555555556%;
}
@media (max-width: 991px) {
  .LatestNews .box .left_w {
    width: 100%;
  }
}
.LatestNews .box .left_w .item {
  position: relative;
  display: block;
  width: 100%;
}
.LatestNews .box .left_w .item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 50%;
  background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}
.LatestNews .box .left_w .item .imgbox {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  overflow: hidden;
}
.LatestNews .box .left_w .item .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.LatestNews .box .left_w .item .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  padding: 0.24rem 0.3rem;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .LatestNews .box .left_w .item .textbox {
    padding: 0.4rem;
  }
}
.LatestNews .box .left_w .item .textbox .t1 {
  color: #ffffff;
  font-size: 24px;
  font-family: "HONORSansCN-Bold";
}
@media (max-width: 1900px) {
  .LatestNews .box .left_w .item .textbox .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .LatestNews .box .left_w .item .textbox .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .LatestNews .box .left_w .item .textbox .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .LatestNews .box .left_w .item .textbox .t1 {
    font-size: 0.35rem;
  }
}
.LatestNews .box .left_w .item .textbox .t2 {
  margin-top: 0.05rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .LatestNews .box .left_w .item .textbox .t2 {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .LatestNews .box .left_w .item .textbox .t2 {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .LatestNews .box .left_w .item .textbox .t2 {
    font-size: 14px;
  }
}
.LatestNews .box .left_w .item:hover .imgbox img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.LatestNews .box .right_w {
  width: 42.36111111111111%;
}
@media (max-width: 991px) {
  .LatestNews .box .right_w {
    width: 100%;
    margin-top: 0.4rem;
  }
}
.LatestNews .box .right_w .item {
  position: relative;
  display: block;
  width: 100%;
  border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
}
@media (max-width: 991px) {
  .LatestNews .box .right_w .item {
    margin-bottom: 0.4rem;
  }
}
.LatestNews .box .right_w .item:first-child {
  border-top: rgba(0, 0, 0, 0.1) solid 1px;
}
@media (max-width: 991px) {
  .LatestNews .box .right_w .item:last-child {
    margin-bottom: 0;
  }
}
.LatestNews .box .right_w .item.active .imgbox {
  padding-bottom: 36.0655737704918%;
}
.LatestNews .box .right_w .item .imgbox {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .LatestNews .box .right_w .item .imgbox {
    padding-bottom: 36.0655737704918%;
  }
}
.LatestNews .box .right_w .item .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.LatestNews .box .right_w .item .textbox {
  padding: 3.8% 0 3.2%;
}
@media (max-width: 991px) {
  .LatestNews .box .right_w .item .textbox {
    padding: 0.4rem 0;
  }
}
.LatestNews .box .right_w .item .textbox .t1 {
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1900px) {
  .LatestNews .box .right_w .item .textbox .t1 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .LatestNews .box .right_w .item .textbox .t1 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .LatestNews .box .right_w .item .textbox .t1 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .LatestNews .box .right_w .item .textbox .t1 {
    font-size: 0.28rem;
  }
}
.LatestNews .box .right_w .item .textbox .t2 {
  margin-top: 0.05rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 1.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1900px) {
  .LatestNews .box .right_w .item .textbox .t2 {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .LatestNews .box .right_w .item .textbox .t2 {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .LatestNews .box .right_w .item .textbox .t2 {
    font-size: 14px;
  }
}
.about_video .box {
  margin-top: 3.125%;
}
@media (max-width: 991px) {
  .about_video .box {
    margin-top: 6%;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .about_video .box {
    margin-top: 8%;
  }
}
.about_video .box .item {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .about_video .box .item {
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 991px) {
  .about_video .box .item:last-child {
    margin-bottom: 0;
  }
}
.about_video .box .item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.about_video .box .item .img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.about_video .box .item .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_video .box .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 0.2rem 0.25rem;
  box-sizing: border-box;
  font-family: "HONORSansCN-Bold";
  font-size: 20px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .about_video .box .item .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .about_video .box .item .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .about_video .box .item .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .about_video .box .item .text {
    font-size: 0.28rem;
  }
}
@media (max-width: 991px) {
  .about_video .box .item .text {
    padding: 0.4rem;
  }
}
.about_video .box .item .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 0.64rem;
  height: 0.64rem;
  background: url(../images/icon14.png) center no-repeat;
  background-size: 100% auto;
  cursor: pointer;
}
.about_video .box .left_w {
  width: 55.55555555555556%;
}
@media (max-width: 991px) {
  .about_video .box .left_w {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.about_video .box .left_w .img {
  padding-bottom: 72.5%;
}
.about_video .box .left_w .icon {
  width: 0.64rem;
  height: 0.64rem;
}
.about_video .box .right_w {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
  width: 43.05555555555556%;
}
@media (max-width: 991px) {
  .about_video .box .right_w {
    width: 100%;
  }
}
.about_video .box .right_w .img {
  padding-bottom: 45.16129032258065%;
}
.about_video .box .right_w .icon {
  width: 0.47rem;
  height: 0.47rem;
}
@media (max-width: 991px) {
  .about_video .box .right_w .icon {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.BlackLabel_animation {
  position: relative;
  min-height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 1260px) {
  .BlackLabel_animation {
    min-height: 58.59375vw;
  }
}
.BlackLabel_animation .textbox {
  position: relative;
  z-index: 10;
}
.BlackLabel_animation .textbox .depict {
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0;
  max-width: 9.8rem;
  width: 100%;
  margin-top: 0.3rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1900px) {
  .BlackLabel_animation .textbox .depict {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .BlackLabel_animation .textbox .depict {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .BlackLabel_animation .textbox .depict {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .BlackLabel_animation .textbox .depict {
    font-size: 0.26rem;
  }
}
@media (max-width: 1260px) {
  .BlackLabel_animation .textbox .depict {
    opacity: 1;
    color: rgba(0, 0, 0, 0.6);
  }
}
.BlackLabel_animation .imgbox {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 75%;
}
@media (max-width: 1260px) {
  .BlackLabel_animation .imgbox {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    margin-top: 5%;
    width: 100%;
  }
}
.BlackLabel_animation .imgbox img {
  display: block;
  width: 100%;
}
.texture .box {
  margin-top: 3.5%;
  gap: 0.13rem;
}
@media (max-width: 991px) {
  .texture .box {
    margin-top: 6%;
    gap: 0.3rem;
  }
}
@media (max-width: 767px) {
  .texture .box {
    margin-top: 8%;
  }
}
@media (max-width: 480px) {
  .texture .box {
    gap: 0.4rem;
  }
}
.texture .box .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .texture .box .swiper {
    padding-bottom: 0.5rem;
  }
}
.texture .box .swiper .swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  text-align: center;
  display: none;
}
@media (max-width: 991px) {
  .texture .box .swiper .swiper-pagination {
    display: block;
  }
}
.texture .box .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  background: #000000;
  border-radius: 50%;
  opacity: 0.2;
  margin: 0;
  margin-right: 0.1rem;
}
@media (max-width: 991px) {
  .texture .box .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    margin-right: 0.14rem;
  }
}
@media (max-width: 480px) {
  .texture .box .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 0.14rem;
    height: 0.14rem;
  }
}
.texture .box .swiper .swiper-pagination .swiper-pagination-bullet:last-of-type {
  margin-right: 0;
}
.texture .box .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #cc0000;
  z-index: 2;
  opacity: 1;
}
.texture .box .item {
  position: relative;
  width: 100%;
}
.texture .box .item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 50%;
  background: -webkit-linear-gradient(to bottom, rgba(204, 0, 0, 0), rgba(204, 0, 0, 0.45));
  background: linear-gradient(to bottom, rgba(204, 0, 0, 0), rgba(204, 0, 0, 0.45));
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  .texture .box .item::before {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .texture .box .item::before {
    height: 100%;
    background: -webkit-linear-gradient(to bottom, rgba(204, 0, 0, 0) 0%, rgba(204, 0, 0, 0) 60%, rgba(204, 0, 0, 0.35) 100%);
    background: linear-gradient(to bottom, rgba(204, 0, 0, 0) 0%, rgba(204, 0, 0, 0) 60%, rgba(204, 0, 0, 0.35) 100%);
  }
}
.texture .box .item .imgbox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.texture .box .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .texture .box .item .imgbox img {
    max-height: 64vh;
  }
}
.texture .box .item .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 0.25rem;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .texture .box .item .textbox {
    padding: 0.3rem 0.2rem;
  }
}
@media (max-width: 767px) {
  .texture .box .item .textbox {
    padding: 0.4rem 0.3rem;
  }
}
.texture .box .item .textbox .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .texture .box .item .textbox .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .texture .box .item .textbox .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .texture .box .item .textbox .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .texture .box .item .textbox .t1 {
    font-size: 0.35rem;
  }
}
.texture .box .item .textbox .t2 {
  margin-top: 0.15rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
@media (max-width: 1900px) {
  .texture .box .item .textbox .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .texture .box .item .textbox .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .texture .box .item .textbox .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .texture .box .item .textbox .t2 {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .texture .box .item .textbox .t2 {
    opacity: 1;
    max-height: 300px;
  }
}
@media (max-width: 767px) {
  .texture .box .item .textbox .t2 {
    margin-top: 0.2rem;
  }
}
.texture .box .item:hover::before {
  opacity: 1;
}
.texture .box .item:hover .textbox .t2 {
  opacity: 1;
  max-height: 300px;
}
.renew .box {
  margin-top: 3.5%;
  gap: 0.13rem;
}
@media (max-width: 991px) {
  .renew .box {
    margin-top: 6%;
    gap: 0.3rem;
  }
}
@media (max-width: 767px) {
  .renew .box {
    margin-top: 8%;
  }
}
@media (max-width: 480px) {
  .renew .box {
    gap: 0.4rem;
  }
}
.renew .box .item {
  position: relative;
  width: calc((100% - 0.52rem) / 5);
}
@media (max-width: 991px) {
  .renew .box .item {
    width: calc((100% - 0.3rem) / 2);
  }
}
@media (max-width: 767px) {
  .renew .box .item {
    width: 100%;
  }
}
.renew .box .item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 50%;
  background: -webkit-linear-gradient(to bottom, rgba(204, 0, 0, 0), rgba(204, 0, 0, 0.45));
  background: linear-gradient(to bottom, rgba(204, 0, 0, 0), rgba(204, 0, 0, 0.45));
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  .renew .box .item::before {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .renew .box .item::before {
    height: 100%;
    background: -webkit-linear-gradient(to bottom, rgba(204, 0, 0, 0) 0%, rgba(204, 0, 0, 0) 60%, rgba(204, 0, 0, 0.35) 100%);
    background: linear-gradient(to bottom, rgba(204, 0, 0, 0) 0%, rgba(204, 0, 0, 0) 60%, rgba(204, 0, 0, 0.35) 100%);
  }
}
.renew .box .item .imgbox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.renew .box .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .renew .box .item .imgbox img {
    max-height: 64vh;
  }
}
.renew .box .item .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 0.25rem;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .renew .box .item .textbox {
    padding: 0.3rem 0.2rem;
  }
}
@media (max-width: 767px) {
  .renew .box .item .textbox {
    padding: 0.4rem 0.3rem;
  }
}
.renew .box .item .textbox .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .renew .box .item .textbox .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .renew .box .item .textbox .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .renew .box .item .textbox .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .renew .box .item .textbox .t1 {
    font-size: 0.35rem;
  }
}
.renew .box .item .textbox .t2 {
  margin-top: 0.15rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
@media (max-width: 1900px) {
  .renew .box .item .textbox .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .renew .box .item .textbox .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .renew .box .item .textbox .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .renew .box .item .textbox .t2 {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .renew .box .item .textbox .t2 {
    opacity: 1;
    max-height: 300px;
  }
}
@media (max-width: 767px) {
  .renew .box .item .textbox .t2 {
    margin-top: 0.2rem;
  }
}
.renew .box .item:hover::before {
  opacity: 1;
}
.renew .box .item:hover .textbox .t2 {
  opacity: 1;
  max-height: 300px;
}
.renew .wrap {
  width: 100%;
  overflow: hidden;
  text-align: center;
  margin-top: 3.5%;
}
@media (max-width: 991px) {
  .renew .wrap {
    margin-top: 6%;
  }
}
@media (max-width: 767px) {
  .renew .wrap {
    margin-top: 8%;
  }
}
.renew .wrap img {
  display: block;
  width: 100%;
}
.elevator-function .i-title .txt {
  max-width: 9rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.elevator-function .box {
  margin-top: 3.5%;
  gap: 0.1rem;
}
@media (max-width: 991px) {
  .elevator-function .box {
    margin-top: 6%;
    gap: 0.3rem;
  }
}
@media (max-width: 767px) {
  .elevator-function .box {
    margin-top: 8%;
  }
}
@media (max-width: 480px) {
  .elevator-function .box {
    gap: 0.4rem;
  }
}
.elevator-function .box .item {
  position: relative;
  width: calc((100% - 0.4rem) / 5);
}
@media (max-width: 991px) {
  .elevator-function .box .item {
    width: calc((100% - 0.3rem) / 2);
  }
}
@media (max-width: 767px) {
  .elevator-function .box .item {
    width: 100%;
  }
}
.elevator-function .box .item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}
.elevator-function .box .item .imgbox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .elevator-function .box .item .imgbox {
    display: flex;
    align-items: flex-end;
    max-height: 75vw;
  }
}
.elevator-function .box .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 767px) {
  .elevator-function .box .item .imgbox img {
    max-height: 64vh;
  }
}
.elevator-function .box .item .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 0.25rem;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .elevator-function .box .item .textbox {
    padding: 0.3rem 0.2rem;
  }
}
@media (max-width: 767px) {
  .elevator-function .box .item .textbox {
    padding: 0.4rem 0.3rem;
  }
}
.elevator-function .box .item .textbox .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .elevator-function .box .item .textbox .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .elevator-function .box .item .textbox .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .elevator-function .box .item .textbox .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .elevator-function .box .item .textbox .t1 {
    font-size: 0.35rem;
  }
}
.elevator-function .box .item .textbox .t2 {
  margin-top: 0.15rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
@media (max-width: 1900px) {
  .elevator-function .box .item .textbox .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .elevator-function .box .item .textbox .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .elevator-function .box .item .textbox .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .elevator-function .box .item .textbox .t2 {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .elevator-function .box .item .textbox .t2 {
    opacity: 1;
    max-height: 300px;
  }
}
@media (max-width: 767px) {
  .elevator-function .box .item .textbox .t2 {
    margin-top: 0.2rem;
  }
}
.elevator-function .box .item:hover .imgbox img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.elevator-function .wrap {
  width: 100%;
  overflow: hidden;
  text-align: center;
  margin-top: 3.5%;
}
@media (max-width: 991px) {
  .elevator-function .wrap {
    margin-top: 6%;
  }
}
@media (max-width: 767px) {
  .elevator-function .wrap {
    margin-top: 8%;
  }
}
.elevator-function .wrap img {
  display: block;
  width: 100%;
}
.component {
  background: #f8f8f8;
}
.component .box {
  margin-top: 3.125%;
  gap: 0.2rem;
}
@media (max-width: 991px) {
  .component .box {
    margin-top: 6%;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .component .box {
    margin-top: 8%;
  }
}
.component .box .item {
  position: relative;
  width: calc((100% - 0.2rem) / 2);
  background: #ffffff;
}
@media (max-width: 991px) {
  .component .box .item {
    width: 100%;
  }
}
.component .box .item .imgbox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .component .box .item .imgbox {
    position: absolute;
    left: 0;
    top: 0;
    height: auto;
  }
}
.component .box .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.component .box .item .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.4rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .component .box .item .textbox {
    position: relative;
    padding-top: 4rem;
  }
}
.component .box .item .textbox .subtitle {
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 24px;
}
@media (max-width: 1900px) {
  .component .box .item .textbox .subtitle {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .component .box .item .textbox .subtitle {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .component .box .item .textbox .subtitle {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .component .box .item .textbox .subtitle {
    font-size: 0.35rem;
  }
}
.component .box .item .textbox dl {
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.08rem;
}
@media (max-width: 991px) {
  .component .box .item .textbox dl {
    margin-top: 0.35rem;
    gap: 0.2rem;
  }
}
.component .box .item .textbox dl dd {
  width: calc((100% - 0.08rem) / 2);
  padding: 0.15rem 0.18rem;
  background: #ffffff;
  box-shadow: 0px 0px 16px rgba(200, 200, 200, 0.21);
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .component .box .item .textbox dl dd {
    padding: 0.25rem;
    width: calc((100% - 0.2rem) / 2);
  }
}
@media (max-width: 480px) {
  .component .box .item .textbox dl dd {
    width: 100%;
  }
}
.component .box .item .textbox dl dd .t1 {
  font-family: "HONORSansCN-Bold";
  color: #cc0000;
  font-size: 20px;
}
@media (max-width: 1900px) {
  .component .box .item .textbox dl dd .t1 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .component .box .item .textbox dl dd .t1 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .component .box .item .textbox dl dd .t1 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .component .box .item .textbox dl dd .t1 {
    font-size: 0.28rem;
  }
}
.component .box .item .textbox dl dd .t2 {
  margin-top: 0.1rem;
  color: #000000;
  font-size: 16px;
}
@media (max-width: 1900px) {
  .component .box .item .textbox dl dd .t2 {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .component .box .item .textbox dl dd .t2 {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .component .box .item .textbox dl dd .t2 {
    font-size: 14px;
  }
}
.component .box .item .textbox dl.third {
  gap: 0.13rem;
}
@media (max-width: 991px) {
  .component .box .item .textbox dl.third {
    gap: 0.2rem;
  }
}
.component .box .item .textbox dl.third dd {
  width: calc((100% - 0.4rem) / 3);
}
@media (max-width: 480px) {
  .component .box .item .textbox dl.third dd {
    width: 100%;
  }
}
.specifications .i-title {
  max-width: 9.6rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.specifications .box {
  margin-top: 3%;
}
@media (max-width: 991px) {
  .specifications .box {
    margin-top: 6%;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .specifications .box {
    margin-top: 8%;
  }
}
.specifications .box .item {
  position: relative;
  width: calc((100% - 0.2rem) / 2);
  margin-right: 0.2rem;
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
}
@media (max-width: 991px) {
  .specifications .box .item {
    width: 100%;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0.4rem;
  }
}
.specifications .box .item:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .specifications .box .item:last-child {
    margin-bottom: 0;
  }
}
.specifications .box .item .imgbox {
  width: 100%;
  overflow: hidden;
}
.specifications .box .item .imgbox img {
  display: block;
  width: 100%;
}
.specifications .box .item .textbox {
  position: absolute;
  left: 0.4rem;
  top: 0.4rem;
  width: 2.4rem;
  box-sizing: border-box;
}
@media (max-width: 1580px) {
  .specifications .box .item .textbox {
    width: 3.6rem;
  }
}
@media (max-width: 767px) {
  .specifications .box .item .textbox {
    left: 0;
    top: 0;
    width: 100%;
    padding: 0.4rem;
    box-sizing: border-box;
  }
}
.specifications .box .item .textbox .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 0.15rem;
  padding-bottom: 0.2rem;
  border-bottom: rgba(255, 255, 255, 0.1) solid 1px;
}
@media (max-width: 1900px) {
  .specifications .box .item .textbox .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .specifications .box .item .textbox .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .specifications .box .item .textbox .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .specifications .box .item .textbox .t1 {
    font-size: 0.35rem;
  }
}
.specifications .box .item .textbox .t2 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .specifications .box .item .textbox .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .specifications .box .item .textbox .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .specifications .box .item .textbox .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .specifications .box .item .textbox .t2 {
    font-size: 0.26rem;
  }
}
.atlasswiper .box {
  margin-top: 4.16666%;
  max-width: 11.32rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .atlasswiper .box {
    margin-top: 6%;
  }
}
@media (max-width: 767px) {
  .atlasswiper .box {
    margin-top: 8%;
  }
}
.atlasswiper .box .swiper {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: clip;
  perspective: 1200px;
}
.atlasswiper .box .swiper .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.atlasswiper .box .swiper .swiper-wrapper .swiper-slide {
  width: 3.5rem;
  height: auto;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
@media (max-width: 1580px) {
  .atlasswiper .box .swiper .swiper-wrapper .swiper-slide {
    width: 4rem;
  }
}
@media (max-width: 991px) {
  .atlasswiper .box .swiper .swiper-wrapper .swiper-slide {
    width: 3.5rem;
  }
}
@media (max-width: 767px) {
  .atlasswiper .box .swiper .swiper-wrapper .swiper-slide {
    width: 65%;
  }
}
.atlasswiper .box .swiper .swiper-wrapper .swiper-slide .item .img {
  width: 100%;
  overflow: hidden;
}
.atlasswiper .box .swiper .swiper-wrapper .swiper-slide .item .img img {
  display: block;
  width: 100%;
}
.atlasswiper .box .swiper .swiper-wrapper .swiper-slide .item .text {
  margin-top: 0.5rem;
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #000000;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1900px) {
  .atlasswiper .box .swiper .swiper-wrapper .swiper-slide .item .text {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .atlasswiper .box .swiper .swiper-wrapper .swiper-slide .item .text {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .atlasswiper .box .swiper .swiper-wrapper .swiper-slide .item .text {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .atlasswiper .box .swiper .swiper-wrapper .swiper-slide .item .text {
    font-size: 0.35rem;
  }
}
.atlasswiper .box .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .text {
  opacity: 1;
}
.atlasswiper .box .progressImg {
  position: relative;
  z-index: 1;
  width: 42%;
  margin: -7% auto 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .atlasswiper .box .progressImg {
    width: 65%;
    display: none;
  }
}
.atlasswiper .box .progressImg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 3px;
  height: 0.22rem;
  background: #cc0000;
  margin-left: -3px;
  margin-top: 0.1rem;
}
.atlasswiper .box .progressImg video {
  display: block;
  width: 100%;
  filter: invert(100%);
}
.productsinfo11 {
  position: relative;
  min-height: 41.66666666666667vw;
}
@media (max-width: 991px) {
  .productsinfo11 {
    min-height: 56vh;
  }
}
.productsinfo11 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo11 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo11 .container {
  position: relative;
  z-index: 5;
  padding-bottom: 7%;
}
@media (max-width: 767px) {
  .productsinfo11 .container {
    padding-bottom: 0;
  }
}
.productsinfo11 .container .content {
  width: 50%;
}
@media (max-width: 991px) {
  .productsinfo11 .container .content {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .productsinfo11 .container .content {
    width: 100%;
  }
}
.productsinfo11 .container .content .textbox {
  margin-top: 6%;
}
.productsinfo11 .container .content .textbox .icontext {
  margin-bottom: 0.2rem;
  gap: 0.1rem;
}
@media (max-width: 991px) {
  .productsinfo11 .container .content .textbox .icontext {
    gap: 0.3rem;
    margin-top: 0.2rem;
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 480px) {
  .productsinfo11 .container .content .textbox .icontext {
    flex-wrap: wrap;
  }
}
.productsinfo11 .container .content .textbox .icontext .item {
  display: inline-block;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  padding: 0.2rem;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .productsinfo11 .container .content .textbox .icontext .item {
    -prefix-box-flex: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0.3rem;
  }
}
.productsinfo11 .container .content .textbox .icontext .item .subtit {
  font-family: "HONORSansCN-Bold";
  font-size: 20px;
  color: #333333;
  line-height: 1.7;
  border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
  padding-bottom: 0.06rem;
}
@media (max-width: 1900px) {
  .productsinfo11 .container .content .textbox .icontext .item .subtit {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo11 .container .content .textbox .icontext .item .subtit {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .productsinfo11 .container .content .textbox .icontext .item .subtit {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .productsinfo11 .container .content .textbox .icontext .item .subtit {
    font-size: 0.28rem;
  }
}
@media (max-width: 991px) {
  .productsinfo11 .container .content .textbox .icontext .item .subtit {
    padding-bottom: 0.15rem;
  }
}
@media (max-width: 480px) {
  .productsinfo11 .container .content .textbox .icontext .item .subtit {
    padding-bottom: 0.20rem;
  }
}
.productsinfo11 .container .content .textbox .icontext .item ul {
  color: #333333;
  font-size: 18px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo11 .container .content .textbox .icontext .item ul {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo11 .container .content .textbox .icontext .item ul {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo11 .container .content .textbox .icontext .item ul {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo11 .container .content .textbox .icontext .item ul {
    font-size: 0.26rem;
  }
}
.productsinfo11 .container .content .textbox .icontext .item ul li {
  padding: 0.06rem 0;
  border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
}
@media (max-width: 991px) {
  .productsinfo11 .container .content .textbox .icontext .item ul li {
    padding: 0.15rem 0;
  }
}
@media (max-width: 480px) {
  .productsinfo11 .container .content .textbox .icontext .item ul li {
    padding: 0.20rem 0;
  }
}
.productsinfo11 .container .content .textbox .icontext .item ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.productsinfo11 .container .content .textbox .icontext .item ul li .txt {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: baseline;
  margin-bottom: 0.05rem;
}
.productsinfo11 .container .content .textbox .icontext .item ul li .txt:last-child {
  margin-bottom: 0;
}
.productsinfo11 .container .content .textbox .icontext .item ul li .txt .icon {
  display: inline-block;
  flex-shrink: 0;
  margin-right: 0.1rem;
}
@media (max-width: 991px) {
  .productsinfo11 .container .content .textbox .icontext .item ul li .txt .icon {
    margin-right: 0.15rem;
  }
}
.productsinfo11 .container .content .textbox .icontext .item ul li .txt .icon img {
  max-width: 0.16rem;
}
@media (max-width: 991px) {
  .productsinfo11 .container .content .textbox .icontext .item ul li .txt .icon img {
    max-width: 0.24rem;
  }
}
.productsinfo11 .container .content .textbox .icontext .item ul li .txt .sp {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.productsinfo12 {
  position: relative;
  min-height: 46.875vw;
}
@media (max-width: 991px) {
  .productsinfo12 {
    min-height: 56vh;
  }
}
.productsinfo12 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .productsinfo12 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .productsinfo12 .img-cover {
    background-position: right 42% center;
  }
}
@media (max-width: 480px) {
  .productsinfo12 .img-cover {
    background-position: right 33% center;
  }
}
.productsinfo12 .container {
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  .productsinfo12 .container {
    flex-wrap: wrap;
  }
}
.productsinfo12 .container .content {
  width: 49.375%;
}
@media (max-width: 767px) {
  .productsinfo12 .container .content {
    width: 100%;
  }
}
.productsinfo12 .container .content .descriptive {
  margin-top: 2.5%;
}
.productsinfo12 .container .content .descriptive ul li {
  margin-bottom: 0.1rem;
}
.productsinfo12 .container .imgbox {
  width: 45.83333333333333%;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 767px) {
  .productsinfo12 .container .imgbox {
    width: 100%;
    margin-top: 0.4rem;
  }
}
.productsinfo12 .container .imgbox img {
  max-width: 100%;
}
.TagSwitching ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: stretch;
}
@media (max-width: 991px) {
  .TagSwitching ul {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .TagSwitching ul::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .TagSwitching ul::-webkit-scrollbar-button {
    background-color: rgba(0, 0, 0, 0);
  }
  .TagSwitching ul::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
  }
  .TagSwitching ul::-webkit-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0);
  }
  .TagSwitching ul::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0);
  }
  .TagSwitching ul::-webkit-scrollbar-corner {
    background-color: rgba(0, 0, 0, 0);
  }
  .TagSwitching ul::-webkit-scrollbar-resizer {
    background-color: rgba(0, 0, 0, 0);
  }
}
.TagSwitching ul li {
  position: relative;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  padding-top: 0.27rem;
  padding-bottom: 0.27rem;
}
@media (max-width: 991px) {
  .TagSwitching ul li {
    flex: auto;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
}
.TagSwitching ul li::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.TagSwitching ul li::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 3px;
  background: #cc0000;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.TagSwitching ul li .icon img {
  max-width: 0.36rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.TagSwitching ul li .icon img.ic2 {
  display: none;
}
.TagSwitching ul li .text {
  margin-top: 0.2rem;
  font-family: "HONORSansCN-Bold";
  color: rgba(0, 0, 0, 0.4);
  font-size: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1900px) {
  .TagSwitching ul li .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .TagSwitching ul li .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .TagSwitching ul li .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .TagSwitching ul li .text {
    font-size: 0.28rem;
  }
}
.TagSwitching ul li:hover::after {
  width: 100%;
}
.TagSwitching ul li:hover .icon img.ic1 {
  display: none;
}
.TagSwitching ul li:hover .icon img.ic2 {
  display: inline-block;
}
.TagSwitching ul li:hover .text {
  color: #cc0000;
}
.TagSwitching ul li.active::after {
  width: 100%;
}
.TagSwitching ul li.active .icon img.ic1 {
  display: none;
}
.TagSwitching ul li.active .icon img.ic2 {
  display: inline-block;
}
.TagSwitching ul li.active .text {
  color: #cc0000;
}
.scheme.Solution .box .item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: -webkit-linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
.scheme.SearchDistributors .box {
  margin-top: 0;
}
.scheme.SearchDistributors .box .item:last-child {
  margin-bottom: 0;
}
.scheme.SearchDistributors .box .item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: -webkit-linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
.scheme.achievement .box .commonbtn .generalBtn .link-text {
  color: rgba(0, 0, 0, 0.3);
}
.scheme.achievement .box .commonbtn .generalBtn .link-icon img {
  width: 0.14rem;
}
@media (max-width: 991px) {
  .scheme.achievement .box .commonbtn .generalBtn .link-icon img {
    width: 0.17rem;
  }
}
.scheme.achievement .box .commonbtn .generalBtn:hover .link-text {
  color: #cc0000;
}
.scheme .box {
  margin-top: 3.125%;
}
@media (max-width: 991px) {
  .scheme .box {
    margin-top: 5%;
  }
}
@media (max-width: 767px) {
  .scheme .box {
    margin-top: 7%;
  }
}
@media (max-width: 480px) {
  .scheme .box {
    margin-top: 8%;
  }
}
.scheme .box .item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0.2rem;
}
@media (max-width: 991px) {
  .scheme .box .item {
    margin-bottom: 0.4rem;
  }
}
.scheme .box .item .imgbox {
  width: 100%;
  overflow: hidden;
}
.scheme .box .item .imgbox img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .scheme .box .item .imgbox img {
    min-height: 42vh;
    object-fit: cover;
  }
}
.scheme .box .item .textbox {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  box-sizing: border-box;
  padding: 5.8%;
}
.scheme .box .item .textbox .subtitle {
  font-family: "HONORSansCN-Bold";
  color: #ffffff;
  font-size: 30px;
}
@media (max-width: 1900px) {
  .scheme .box .item .textbox .subtitle {
    font-size: 1.5625vw;
  }
}
@media (max-width: 1260px) {
  .scheme .box .item .textbox .subtitle {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .scheme .box .item .textbox .subtitle {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .scheme .box .item .textbox .subtitle {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .scheme .box .item .textbox .subtitle {
    font-size: 0.38rem;
  }
}
.scheme .box .item .textbox .text {
  margin-top: 0.05rem;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .scheme .box .item .textbox .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .scheme .box .item .textbox .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .scheme .box .item .textbox .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .scheme .box .item .textbox .text {
    font-size: 0.28rem;
  }
}
.scheme .box .item .textbox .generalBtn {
  margin-top: 0.4rem;
}
@media (max-width: 991px) {
  .contact .box {
    flex-wrap: wrap;
  }
}
.contact .box .i-title {
  margin-bottom: 5.7%;
}
@media (max-width: 991px) {
  .contact .box .i-title {
    margin-bottom: 5%;
  }
}
@media (max-width: 480px) {
  .contact .box .i-title {
    margin-bottom: 7%;
  }
}
.contact .box .left_w {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
  width: 48.61111111111111%;
}
@media (max-width: 991px) {
  .contact .box .left_w {
    width: 100%;
  }
}
.contact .box .left_w .wrap {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.2rem;
}
@media (max-width: 991px) {
  .contact .box .left_w .wrap {
    gap: 0;
  }
}
.contact .box .left_w .wrap .item {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  background: url(../images/img77.png) bottom right no-repeat;
  background-size: 53.28571428571429% auto;
}
@media (max-width: 991px) {
  .contact .box .left_w .wrap .item {
    margin-bottom: 0.4rem;
  }
}
.contact .box .left_w .wrap .item .text {
  width: 100%;
}
.contact .box .left_w .wrap .item .text .t1 {
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 24px;
  padding-bottom: 0.18rem;
  border-bottom: #e5e5e5 solid 1px;
}
@media (max-width: 1900px) {
  .contact .box .left_w .wrap .item .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .contact .box .left_w .wrap .item .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .contact .box .left_w .wrap .item .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .contact .box .left_w .wrap .item .text .t1 {
    font-size: 0.35rem;
  }
}
@media (max-width: 991px) {
  .contact .box .left_w .wrap .item .text .t1 {
    padding-bottom: 0.25rem;
  }
}
.contact .box .left_w .wrap .item .text .t2 {
  margin-top: 0.2rem;
  color: #000000;
  font-size: 20px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .contact .box .left_w .wrap .item .text .t2 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .contact .box .left_w .wrap .item .text .t2 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .contact .box .left_w .wrap .item .text .t2 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .contact .box .left_w .wrap .item .text .t2 {
    font-size: 0.28rem;
  }
}
@media (max-width: 991px) {
  .contact .box .left_w .wrap .item .text .t2 {
    margin-top: 0.3rem;
  }
}
.contact .box .left_w .wrap .item .text .t2 ul {
  display: block;
  width: 100%;
}
.contact .box .left_w .wrap .item .text .t2 ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.contact .box .left_w .wrap .item .text .t2 ul li .sp1 {
  display: inline-block;
  flex-shrink: 0;
  margin-right: 0.1rem;
}
.contact .box .left_w .wrap .item .text .t2 ul li .sp2 {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.contact .box .right_w {
  width: 48.61111111111111%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .contact .box .right_w {
    width: 100%;
    margin-top: 8%;
  }
}
.contact .box .right_w .item {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.contact .box .item {
  padding: 5.7% 6.9%;
  box-shadow: 0px 0px 10px rgba(4, 0, 0, 0.08);
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .contact .box .item {
    padding: 0.5rem 0.4rem;
  }
}
.EXreservation {
  position: relative;
}
.EXreservation .formSwitching {
  display: none;
}
@media (max-width: 991px) {
  .EXreservation .formSwitching {
    position: absolute;
    left: 0;
    top: 0.7rem;
    z-index: 5;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
  }
}
.EXreservation .formSwitching span {
  position: relative;
  display: inline-block;
  margin: 0 15px;
  color: #ffffff;
  padding-bottom: 0.1rem;
  font-size: 20px;
}
@media (max-width: 1900px) {
  .EXreservation .formSwitching span {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .EXreservation .formSwitching span {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .EXreservation .formSwitching span {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .EXreservation .formSwitching span {
    font-size: 0.28rem;
  }
}
.EXreservation .formSwitching span.cur {
  font-family: "HONORSansCN-Bold";
  font-size: 30px;
}
@media (max-width: 1900px) {
  .EXreservation .formSwitching span.cur {
    font-size: 1.5625vw;
  }
}
@media (max-width: 1260px) {
  .EXreservation .formSwitching span.cur {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .EXreservation .formSwitching span.cur {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .EXreservation .formSwitching span.cur {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .EXreservation .formSwitching span.cur {
    font-size: 0.38rem;
  }
}
.EXreservation .formSwitching span.cur::before {
  opacity: 1;
}
.EXreservation .formSwitching span::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  opacity: 0;
}
@media (max-width: 991px) {
  .EXreservation .box {
    flex-wrap: wrap;
  }
}
.EXreservation .box .section {
  width: 29.16666666666667%;
}
@media (max-width: 991px) {
  .EXreservation .box .section {
    display: none;
    width: 100%;
  }
}
.EXreservation .box .section .appointment {
  position: relative;
  width: 100%;
  height: 100%;
}
.EXreservation .box .section .appointment::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.EXreservation .box .section .appointment .imgbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .EXreservation .box .section .appointment .imgbox {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
  }
}
.EXreservation .box .section .appointment .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .EXreservation .box .section .appointment .imgbox img {
    height: 100%;
    object-fit: cover;
  }
}
.EXreservation .box .section .appointment .appointmentform {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 5;
  padding: 0 10%;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .EXreservation .box .section .appointment .appointmentform {
    padding: 2% 5% 0;
  }
}
@media (max-width: 767px) {
  .EXreservation .box .section .appointment .appointmentform {
    position: relative;
    top: 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    padding: 1.5rem 0.4rem 0.7rem;
  }
}
@media (max-width: 480px) {
  .EXreservation .box .section .appointment .appointmentform {
    padding-top: 1.7rem;
  }
}
.EXreservation .box .section .appointment .appointmentform .text {
  font-family: "HONORSansCN-Bold";
  color: #ffffff;
  font-size: 30px;
  text-align: center;
}
@media (max-width: 1900px) {
  .EXreservation .box .section .appointment .appointmentform .text {
    font-size: 1.5625vw;
  }
}
@media (max-width: 1260px) {
  .EXreservation .box .section .appointment .appointmentform .text {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .EXreservation .box .section .appointment .appointmentform .text {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .EXreservation .box .section .appointment .appointmentform .text {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .EXreservation .box .section .appointment .appointmentform .text {
    font-size: 0.38rem;
  }
}
@media (max-width: 991px) {
  .EXreservation .box .section .appointment .appointmentform .text {
    text-align: left;
    display: none;
  }
}
.EXreservation .box .section .appointment .appointmentform .sheetbox {
  display: none;
}
@media (max-width: 991px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox {
    display: block;
  }
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.2rem;
  margin-top: 0.3rem;
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item {
  width: 100%;
  margin-bottom: 0;
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item.half {
  width: calc((100% - 0.2rem) / 2);
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item.half:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item.half {
    width: 100%;
    margin-right: 0;
  }
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item:last-child {
  margin-bottom: 0;
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item:nth-child(1) .layui-input-block .layui-input {
  border-top: rgba(255, 255, 255, 0.1) solid 1px;
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item:nth-child(2) .layui-input-block .layui-input {
  border-top: rgba(255, 255, 255, 0.1) solid 1px;
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block {
  margin-left: 0;
  width: 100%;
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-input {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  padding-left: 0;
  height: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  box-sizing: border-box;
  border: none;
  border-bottom: rgba(255, 255, 255, 0.1) solid 1px;
  background: none;
}
@media (max-width: 1900px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-input {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-input {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-input {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-input {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-input {
    height: 45px;
  }
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-input::-webkit-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(255, 255, 255, 0.6);
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-input::-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(255, 255, 255, 0.6);
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-input:-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(255, 255, 255, 0.6);
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-input:-ms-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(255, 255, 255, 0.6);
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-input:focus {
  border-color: #cc0000 !important;
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
  padding-left: 0;
  height: 0.7rem;
  font-family: "HONORSansCN-regular";
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  border: none;
  border-bottom: rgba(255, 255, 255, 0.1) solid 1px;
}
@media (max-width: 1900px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    height: 45px;
  }
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input::-webkit-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(255, 255, 255, 0.6);
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input::-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(255, 255, 255, 0.6);
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input:-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(255, 255, 255, 0.6);
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input:-ms-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(255, 255, 255, 0.6);
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-edge {
  right: 0.2rem;
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select dl {
  padding: 0;
  top: 0.7rem;
  border: none;
}
@media (max-width: 991px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select dl {
    top: 45px;
  }
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select dl dd {
  font-family: "HONORSansCN-regular";
  font-size: 16px;
  color: #333333;
}
@media (max-width: 1900px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select dl dd {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select dl dd {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select dl dd {
    font-size: 14px;
  }
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-form-select dl dd.layui-this {
  color: #ffffff;
  background-color: #cc0000;
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block.layui-form-selected .layui-edge {
  margin-top: -3px;
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-btn {
  display: block;
  margin-top: 0.45rem;
  width: 1.4rem;
  height: 0.5rem;
  border-radius: 0.06rem;
  background: #cc0000;
  color: #ffffff;
  font-family: "HONORSansCN-Bold";
  font-size: 16px;
}
@media (max-width: 1900px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-btn {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-btn {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-btn {
    font-size: 14px;
  }
}
.EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-btn img {
  display: inline-block;
  margin-left: 0.25rem;
  width: 0.08rem;
}
@media (max-width: 991px) {
  .EXreservation .box .section .appointment .appointmentform .sheetbox .layui-form .layui-form-item .layui-input-block .layui-btn {
    width: 120px;
    height: 42px;
    border-radius: 21px;
  }
}
.EXreservation .box .section.current {
  width: 69.44444444444444%;
}
.EXreservation .box .section.current .appointment .appointmentform .text {
  text-align: left;
}
@media (max-width: 991px) {
  .EXreservation .box .section.current {
    display: block;
    width: 100%;
  }
}
.marketing .subsidiary {
  margin-top: 3.65%;
}
@media (max-width: 991px) {
  .marketing .subsidiary {
    margin-top: 6%;
  }
}
@media (max-width: 767px) {
  .marketing .subsidiary {
    margin-top: 8%;
  }
}
.marketing .subsidiary .LookUp {
  position: relative;
  z-index: 5;
}
@media (max-width: 991px) {
  .marketing .subsidiary .LookUp {
    flex-wrap: wrap;
  }
}
.marketing .subsidiary .LookUp .item {
  width: 48.95833333333333%;
  background: url(../images/img81.png) center no-repeat;
  background-size: cover;
  padding: 4.16% 2.77%;
  box-sizing: border-box;
  margin-bottom: 0.25rem;
}
.marketing .subsidiary .LookUp .item:nth-child(1) {
  position: relative;
  z-index: 5;
}
.marketing .subsidiary .LookUp .item:nth-child(2) {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .marketing .subsidiary .LookUp .item {
    width: 100%;
    margin-bottom: 0.4rem;
    padding: 0.4rem;
  }
}
.marketing .subsidiary .LookUp .item .text {
  color: #000000;
  font-size: 20px;
  line-height: 1.5;
  min-height: 0.6rem;
}
@media (max-width: 1900px) {
  .marketing .subsidiary .LookUp .item .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .marketing .subsidiary .LookUp .item .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .marketing .subsidiary .LookUp .item .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .marketing .subsidiary .LookUp .item .text {
    font-size: 0.28rem;
  }
}
.marketing .subsidiary .LookUp .item .text span {
  display: inline-block;
  font-family: "HONORSansCN-Bold";
  color: #cc0000;
}
.marketing .subsidiary .LookUp .item .wrap {
  margin-top: 5.6%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.marketing .subsidiary .LookUp .item .wrap .layui-form-item {
  width: calc((100% - 0.3rem) / 2);
  margin-right: 0.3rem;
}
.marketing .subsidiary .LookUp .item .wrap .layui-form-item:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .marketing .subsidiary .LookUp .item .wrap .layui-form-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 991px) {
  .marketing .subsidiary .LookUp .item .wrap .layui-form-item:last-child {
    margin-bottom: 0;
  }
}
.marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block {
  margin-left: 0;
}
.marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
  padding-left: 0.3rem;
  padding-right: 0.5rem;
  height: 0.7rem;
  font-family: "HONORSansCN-regular";
  font-size: 18px;
  color: #333333;
  border: rgba(0, 0, 0, 0.1) solid 1px;
  background: none;
  border-radius: 0.06rem;
}
@media (max-width: 1900px) {
  .marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    font-size: 0.26rem;
  }
}
.marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input::-webkit-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input::-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input:-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input:-ms-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-edge {
  right: 0.2rem;
}
.marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select dl {
  padding: 0;
  top: 0.7rem;
  border: none;
}
.marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select dl dd {
  font-family: "HONORSansCN-regular";
  font-size: 16px;
  color: #333333;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}
@media (max-width: 1900px) {
  .marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select dl dd {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select dl dd {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select dl dd {
    font-size: 14px;
  }
}
.marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block .layui-form-select dl dd.layui-this {
  color: #ffffff;
  background-color: #cc0000;
  padding-left: 0.3rem !important;
  padding-right: 0.3rem;
}
.marketing .subsidiary .LookUp .item .wrap .layui-form-item .layui-input-block.layui-form-selected .layui-edge {
  margin-top: -3px;
}
.marketing .subsidiary .LookUp .item .wrap .layui-input-group {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: stretch;
  width: 100%;
}
.marketing .subsidiary .LookUp .item .wrap .layui-input-group .layui-input {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  padding-left: 0.3rem;
  padding-right: 0.5rem;
  height: 0.7rem;
  color: #333333;
  font-size: 18px;
  box-sizing: border-box;
  border: rgba(0, 0, 0, 0.1) solid 1px;
  border-right: none;
  background: none;
  border-radius: 0.06rem 0 0 0.06rem;
}
@media (max-width: 1900px) {
  .marketing .subsidiary .LookUp .item .wrap .layui-input-group .layui-input {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .marketing .subsidiary .LookUp .item .wrap .layui-input-group .layui-input {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .marketing .subsidiary .LookUp .item .wrap .layui-input-group .layui-input {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .marketing .subsidiary .LookUp .item .wrap .layui-input-group .layui-input {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .marketing .subsidiary .LookUp .item .wrap .layui-input-group .layui-input {
    height: 45px;
  }
}
.marketing .subsidiary .LookUp .item .wrap .layui-input-group .layui-input::-webkit-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.marketing .subsidiary .LookUp .item .wrap .layui-input-group .layui-input::-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.marketing .subsidiary .LookUp .item .wrap .layui-input-group .layui-input:-moz-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.marketing .subsidiary .LookUp .item .wrap .layui-input-group .layui-input:-ms-input-placeholder {
  font-family: "HONORSansCN-regular";
  color: rgba(0, 0, 0, 0.6);
}
.marketing .subsidiary .LookUp .item .wrap .layui-input-group .layui-input:focus {
  border-color: #cc0000 !important;
}
.marketing .subsidiary .LookUp .item .wrap .layui-input-group .layui-input-group-btn {
  display: inline-flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 1rem;
  height: 0.7rem;
}
@media (max-width: 991px) {
  .marketing .subsidiary .LookUp .item .wrap .layui-input-group .layui-input-group-btn {
    height: 45px;
  }
}
.marketing .subsidiary .LookUp .item .wrap .layui-input-group .layui-input-group-btn .layui-btn {
  width: 100%;
  height: 100%;
  line-height: inherit;
  border: none;
  padding: 0;
  background: #cc0000;
  color: #ffffff;
  white-space: nowrap;
  text-align: center;
  border-radius: 0.06rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .marketing .infor {
    flex-wrap: wrap;
  }
}
.marketing .infor .item {
  position: relative;
  width: 48.95833333333333%;
  margin-right: 2.08333333333334%;
  padding: 2.77%;
  box-sizing: border-box;
  margin-bottom: 0.25rem;
  box-shadow: 0px 0px 10px rgba(4, 0, 0, 0.1);
}
.marketing .infor .item:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .marketing .infor .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
    padding: 0.4rem;
  }
}
.marketing .infor .item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #cc0000;
}
.marketing .infor .item .t1 {
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 24px;
  padding: 0.15rem 0;
  border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
}
@media (max-width: 1900px) {
  .marketing .infor .item .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .marketing .infor .item .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .marketing .infor .item .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .marketing .infor .item .t1 {
    font-size: 0.35rem;
  }
}
@media (max-width: 991px) {
  .marketing .infor .item .t1 {
    padding-bottom: 0.25rem;
  }
}
.marketing .infor .item .t2 {
  margin-top: 0.2rem;
  color: #000000;
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 1900px) {
  .marketing .infor .item .t2 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .marketing .infor .item .t2 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .marketing .infor .item .t2 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .marketing .infor .item .t2 {
    font-size: 0.28rem;
  }
}
@media (max-width: 991px) {
  .marketing .infor .item .t2 {
    margin-top: 0.3rem;
  }
}
.marketing .infor .item .t2 ul {
  padding: 0;
}
.marketing .infor .item .t2 ul li {
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.marketing .infor .item .t2 ul li .sp1 {
  display: inline-block;
  margin-right: 0.05rem;
  flex-shrink: 0;
}
.marketing .infor .item .t2 ul li .sp2 {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.HappinessDirect {
  background: url(../images/img83.png) right bottom no-repeat;
  background-size: 35.9375% auto;
}
@media (max-width: 991px) {
  .HappinessDirect {
    background: url(../images/img83.png) right bottom no-repeat;
    background-size: 60% auto;
  }
}
.HappinessDirect .box {
  margin-top: 2.34375%;
  padding-left: calc((100% - 1440px) / 2);
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 1580px) {
  .HappinessDirect .box {
    padding-left: 5%;
  }
}
@media (max-width: 991px) {
  .HappinessDirect .box {
    margin-top: 5%;
    flex-wrap: wrap;
    padding-left: 0;
  }
}
.HappinessDirect .box .left_w {
  width: 41.66666666666667%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .HappinessDirect .box .left_w {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
  }
}
.HappinessDirect .box .left_w .videobox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.HappinessDirect .box .left_w .videobox .imgbox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.HappinessDirect .box .left_w .videobox .imgbox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.HappinessDirect .box .left_w .videobox .imgbox img {
  display: block;
  width: 100%;
}
.HappinessDirect .box .left_w .videobox .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 0.64rem;
  height: 0.64rem;
  background: url(../images/icon14.png) center no-repeat;
  background-size: 100% auto;
  cursor: pointer;
}
.HappinessDirect .box .left_w .title {
  margin-top: 0.2rem;
  text-align: center;
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 24px;
}
@media (max-width: 1900px) {
  .HappinessDirect .box .left_w .title {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .HappinessDirect .box .left_w .title {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .HappinessDirect .box .left_w .title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .HappinessDirect .box .left_w .title {
    font-size: 0.35rem;
  }
}
@media (max-width: 991px) {
  .HappinessDirect .box .left_w .title {
    margin-top: 0.3rem;
  }
}
.HappinessDirect .box .right_w {
  width: 53.57142857142857%;
}
@media (max-width: 991px) {
  .HappinessDirect .box .right_w {
    width: 100%;
    margin-top: 0.8rem;
  }
}
.HappinessDirect .box .right_w .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 0.45rem;
}
@media (max-width: 991px) {
  .HappinessDirect .box .right_w .swiper {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 0.6rem;
    box-sizing: border-box;
  }
}
.HappinessDirect .box .right_w .swiper .swiper-slide .item {
  width: 100%;
  overflow: hidden;
}
.HappinessDirect .box .right_w .swiper .swiper-slide .item .img {
  width: 100%;
  overflow: hidden;
}
.HappinessDirect .box .right_w .swiper .swiper-slide .item .img img {
  display: block;
  width: 100%;
}
.HappinessDirect .box .right_w .swiper .swiper-slide .item .text {
  text-align: center;
  margin-top: 0.12rem;
  color: #000000;
  font-size: 20px;
}
@media (max-width: 1900px) {
  .HappinessDirect .box .right_w .swiper .swiper-slide .item .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .HappinessDirect .box .right_w .swiper .swiper-slide .item .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .HappinessDirect .box .right_w .swiper .swiper-slide .item .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .HappinessDirect .box .right_w .swiper .swiper-slide .item .text {
    font-size: 0.28rem;
  }
}
@media (max-width: 991px) {
  .HappinessDirect .box .right_w .swiper .swiper-slide .item .text {
    margin-top: 0.2rem;
  }
}
.HappinessDirect .box .right_w .swiper .swiper-scrollbar {
  bottom: 0;
  height: 2px;
  background: rgba(204, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .HappinessDirect .box .right_w .swiper .swiper-scrollbar {
    left: 5%;
    width: 90%;
  }
}
.HappinessDirect .box .right_w .swiper .swiper-scrollbar .swiper-scrollbar-drag {
  background: #cc0000;
}
.videoContent .box {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 2.34375%;
}
@media (max-width: 991px) {
  .videoContent .box {
    margin-top: 5%;
  }
}
@media (max-width: 767px) {
  .videoContent .box {
    margin-top: 7%;
  }
}
.videoContent .box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.videoContent .box img {
  display: block;
  width: 100%;
}
.videoContent .box .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 0.64rem;
  height: 0.64rem;
  background: url(../images/icon14.png) center no-repeat;
  background-size: 100% auto;
  cursor: pointer;
}
.AddFeatures .box {
  margin-top: 4.86111111111111%;
}
@media (max-width: 767px) {
  .AddFeatures .box {
    margin-top: 7%;
  }
}
.AddFeatures .box ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: stretch;
  padding: 0;
}
@media (max-width: 991px) {
  .AddFeatures .box ul {
    flex-wrap: wrap;
  }
}
.AddFeatures .box ul li {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  list-style: none;
  background: -webkit-linear-gradient(to right, rgba(221, 221, 221, 0.5), rgba(221, 221, 221, 0));
  background: linear-gradient(to right, rgba(221, 221, 221, 0.5), rgba(221, 221, 221, 0));
  border-radius: 0.5rem;
}
@media (max-width: 991px) {
  .AddFeatures .box ul li {
    flex: auto;
    width: 33.33%;
    margin-bottom: 0.35rem;
  }
}
@media (max-width: 767px) {
  .AddFeatures .box ul li {
    width: 50%;
  }
}
.AddFeatures .box ul li .icon {
  display: inline-flex;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 0px 16px rgba(200, 200, 200, 0.21);
}
.AddFeatures .box ul li .icon img {
  max-width: 0.37rem;
}
.AddFeatures .box ul li .text {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 20px;
  padding-right: 0.1rem;
  box-sizing: border-box;
}
@media (max-width: 1900px) {
  .AddFeatures .box ul li .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .AddFeatures .box ul li .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .AddFeatures .box ul li .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .AddFeatures .box ul li .text {
    font-size: 0.28rem;
  }
}
.productDrawing .box {
  margin-top: 5.5%;
  gap: 1rem;
}
@media (max-width: 991px) {
  .productDrawing .box {
    gap: 0;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .productDrawing .box {
    margin-top: 7%;
  }
}
.productDrawing .box .img {
  width: calc((100% - 3rem) / 4);
  overflow: hidden;
}
@media (max-width: 991px) {
  .productDrawing .box .img {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 991px) {
  .productDrawing .box .img:nth-child(3n) {
    margin-right: 0;
  }
}
.productDrawing .box .img img {
  display: block;
  width: 100%;
}
.productDrawing .wrap {
  margin-top: 11%;
  gap: 0.28rem;
}
@media (max-width: 991px) {
  .productDrawing .wrap {
    gap: 0;
  }
}
.productDrawing .wrap .item {
  position: relative;
  width: calc((100% - 0.28rem) / 2);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
}
@media (max-width: 991px) {
  .productDrawing .wrap .item {
    width: 100%;
    padding-top: 0.6rem;
    background: #FFFFFF;
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 991px) {
  .productDrawing .wrap .item:last-child {
    margin-bottom: 0;
  }
}
.productDrawing .wrap .item .imgbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.productDrawing .wrap .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productDrawing .wrap .item .textbox {
  position: absolute;
  left: 0;
  top: 0.45rem;
  z-index: 5;
  width: 100%;
  padding: 0 0.3rem;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 991px) {
  .productDrawing .wrap .item .textbox {
    top: 0.5rem;
  }
}
.productDrawing .wrap .item .textbox .t1 {
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 24px;
}
@media (max-width: 1900px) {
  .productDrawing .wrap .item .textbox .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productDrawing .wrap .item .textbox .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productDrawing .wrap .item .textbox .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productDrawing .wrap .item .textbox .t1 {
    font-size: 0.35rem;
  }
}
.productDrawing .wrap .item .textbox .t2 {
  margin-top: 0.08rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
}
@media (max-width: 1900px) {
  .productDrawing .wrap .item .textbox .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productDrawing .wrap .item .textbox .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productDrawing .wrap .item .textbox .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productDrawing .wrap .item .textbox .t2 {
    font-size: 0.26rem;
  }
}
.conditions .box {
  margin-top: 4.86111111111111%;
}
@media (max-width: 991px) {
  .conditions .box {
    margin-top: 6%;
  }
}
@media (max-width: 767px) {
  .conditions .box {
    margin-top: 8%;
  }
}
.conditions .box ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: stretch;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  max-width: 12rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .conditions .box ul {
    gap: 0.5rem;
  }
}
.conditions .box ul li {
  width: calc((100% - 1.35rem) / 4);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  list-style: none;
}
@media (max-width: 991px) {
  .conditions .box ul li {
    width: calc((100% - 0.5rem) / 2);
  }
}
.conditions .box ul li .icon {
  display: inline-flex;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 0.6rem;
  height: 0.6rem;
  margin-right: 0.25rem;
  background: #cc0000;
}
@media (max-width: 991px) {
  .conditions .box ul li .icon {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.conditions .box ul li .icon img {
  max-width: 51.66666666666667%;
}
.conditions .box ul li .text {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #000000;
  font-size: 24px;
}
@media (max-width: 1900px) {
  .conditions .box ul li .text {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .conditions .box ul li .text {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .conditions .box ul li .text {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .conditions .box ul li .text {
    font-size: 0.35rem;
  }
}
@media (max-width: 991px) {
  .conditions .box ul li .text {
    font-size: 20px;
  }
}
@media (max-width: 991px) and (max-width: 1900px) {
  .conditions .box ul li .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 991px) and (max-width: 1260px) {
  .conditions .box ul li .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .conditions .box ul li .text {
    font-size: 18px;
  }
}
@media (max-width: 991px) and (max-width: 480px) {
  .conditions .box ul li .text {
    font-size: 0.28rem;
  }
}
.productsinfo14 {
  background: -webkit-linear-gradient(to bottom, #f1f1f1, #ffffff);
  background: linear-gradient(to bottom, #f1f1f1, #ffffff);
}
.productsinfo14 .i-title .txt {
  max-width: 12.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.productsinfo14 .box {
  margin-top: 4.8%;
  text-align: center;
}
@media (max-width: 991px) {
  .productsinfo14 .box {
    margin-top: 6%;
  }
}
@media (max-width: 767px) {
  .productsinfo14 .box {
    margin-top: 8%;
  }
}
.productsinfo14 .box img {
  max-width: 100%;
}
.productsinfo15 {
  background: #ffffff;
}
.productsinfo15 .i-title .txt {
  max-width: 12.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.productsinfo15 .box {
  margin-top: 4.8%;
  text-align: center;
}
.productsinfo15 .box > img {
  max-width: 100%;
}
.productsinfo15 .box .content {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.productsinfo15 .box .content.mbox {
  display: none;
  text-align: center;
}
@media (max-width: 991px) {
  .productsinfo15 .box .content.mbox {
    display: block;
  }
}
.productsinfo15 .box .content.mbox img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .productsinfo15 .box .content.pbox {
    display: none;
  }
}
.productsinfo15 .box .content .part1 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.productsinfo15 .box .content .part1 img {
  display: block;
  width: 100%;
}
.productsinfo15 .box .content .part1 .title {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 22%;
  text-align: center;
  font-family: "HONORSansCN-Bold";
  color: #ffffff;
  font-size: 30px;
}
@media (max-width: 1900px) {
  .productsinfo15 .box .content .part1 .title {
    font-size: 1.5625vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo15 .box .content .part1 .title {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .productsinfo15 .box .content .part1 .title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .productsinfo15 .box .content .part1 .title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo15 .box .content .part1 .title {
    font-size: 0.38rem;
  }
}
.productsinfo15 .box .content .part2 {
  position: absolute;
  left: 0;
  top: 14%;
  z-index: 5;
  width: 100%;
  height: 72%;
}
.productsinfo15 .box .content .part2 ul {
  padding: 0;
}
.productsinfo15 .box .content .part2 ul.left_w {
  position: absolute;
  top: 0;
  left: 0;
  width: 21.25%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
}
.productsinfo15 .box .content .part2 ul.left_w li {
  flex-direction: row-reverse;
  padding-left: 0.3rem;
  box-sizing: border-box;
}
.productsinfo15 .box .content .part2 ul.left_w li::before {
  left: 0;
  background: -webkit-linear-gradient(to right, rgba(204, 0, 0, 0), rgba(204, 0, 0, 0.2));
  background: linear-gradient(to right, rgba(204, 0, 0, 0), rgba(204, 0, 0, 0.2));
}
.productsinfo15 .box .content .part2 ul.left_w li .text {
  margin-right: 0.2rem;
}
.productsinfo15 .box .content .part2 ul.right_w {
  position: absolute;
  top: 0;
  right: 0;
  width: 22.29%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
}
.productsinfo15 .box .content .part2 ul.right_w li {
  padding-right: 0.3rem;
  box-sizing: border-box;
}
.productsinfo15 .box .content .part2 ul.right_w li::before {
  right: 0;
  background: -webkit-linear-gradient(to right, rgba(204, 0, 0, 0.2), rgba(204, 0, 0, 0));
  background: linear-gradient(to right, rgba(204, 0, 0, 0.2), rgba(204, 0, 0, 0));
}
.productsinfo15 .box .content .part2 ul.right_w li .text {
  margin-left: 0.2rem;
}
.productsinfo15 .box .content .part2 ul li {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.productsinfo15 .box .content .part2 ul li::before {
  content: '';
  position: absolute;
  top: 0;
  width: calc(100% - 0.4rem);
  height: 100%;
}
.productsinfo15 .box .content .part2 ul li.a1 {
  width: 96.732%;
}
.productsinfo15 .box .content .part2 ul li.a2 {
  width: 85.62%;
}
.productsinfo15 .box .content .part2 ul li.a3 {
  width: 100%;
}
.productsinfo15 .box .content .part2 ul li.a4 {
  width: 95.95%;
}
.productsinfo15 .box .content .part2 ul li.a5 {
  width: 100%;
}
.productsinfo15 .box .content .part2 ul li .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-shrink: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #cc0000;
}
.productsinfo15 .box .content .part2 ul li .icon img {
  width: 42.5%;
}
.productsinfo15 .box .content .part2 ul li .text {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #000000;
  font-size: 20px;
  text-align: left;
}
@media (max-width: 1900px) {
  .productsinfo15 .box .content .part2 ul li .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo15 .box .content .part2 ul li .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .productsinfo15 .box .content .part2 ul li .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .productsinfo15 .box .content .part2 ul li .text {
    font-size: 0.28rem;
  }
}
.productsinfo16 {
  background: -webkit-linear-gradient(to bottom, #f1f1f1, #ffffff);
  background: linear-gradient(to bottom, #f1f1f1, #ffffff);
}
@media (max-width: 991px) {
  .productsinfo16 .box {
    flex-wrap: wrap;
  }
}
.productsinfo16 .box .textbox {
  width: 48%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .productsinfo16 .box .textbox {
    width: 100%;
  }
}
.productsinfo16 .box .textbox .descriptive {
  margin-top: 0.3rem;
}
.productsinfo16 .box .imgbox {
  width: 45.83333333333333%;
}
@media (max-width: 991px) {
  .productsinfo16 .box .imgbox {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.productsinfo16 .box .imgbox img {
  display: block;
  width: 100%;
}
.BrandInfo {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
@media (max-width: 991px) {
  .BrandInfo {
    min-height: 1px;
  }
}
@media (max-width: 991px) {
  .BrandInfo .animation-section {
    display: none;
  }
}
.BrandInfo .animation-section .brandtext {
  background: #ffffff;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 3;
  mix-blend-mode: screen;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.BrandInfo .animation-section .brandtext .title {
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 6.25vw;
}
@media (max-width: 991px) {
  .BrandInfo .animation-section .brandtext .title {
    font-size: 64px;
  }
}
@media (max-width: 767px) {
  .BrandInfo .animation-section .brandtext .title {
    font-size: 45px;
  }
}
@media (max-width: 480px) {
  .BrandInfo .animation-section .brandtext .title {
    font-size: 0.72rem;
  }
}
.BrandInfo .Info-section {
  position: relative;
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .BrandInfo .Info-section {
    min-height: 1px;
  }
}
.BrandInfo .Info-section .title {
  display: none;
  text-align: center;
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .BrandInfo .Info-section .title {
    display: block;
  }
}
.BrandInfo .Info-section .title .rubric {
  font-family: "HONORSansCN-Bold";
  font-size: 50px;
  color: #000000;
}
@media (max-width: 1900px) {
  .BrandInfo .Info-section .title .rubric {
    font-size: 2.604166666666667vw;
  }
}
@media (max-width: 1260px) {
  .BrandInfo .Info-section .title .rubric {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .BrandInfo .Info-section .title .rubric {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .BrandInfo .Info-section .title .rubric {
    font-size: 0.5rem;
  }
}
.BrandInfo .Info-section .box {
  position: relative;
}
.BrandInfo .Info-section .box .line {
  position: absolute;
  left: 0.07rem;
  top: 0.1rem;
  width: 2px;
  background: rgba(126, 126, 126, 0.1);
  opacity: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  .BrandInfo .Info-section .box .line {
    display: none;
  }
}
.BrandInfo .Info-section .box .line span {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  width: 100%;
  height: 0;
  background: #cc0000;
}
@media (max-width: 991px) {
  .BrandInfo .Info-section .box .line span {
    height: 100% !important;
  }
}
.BrandInfo .Info-section .box .item {
  position: relative;
  padding-bottom: 4.86%;
}
@media (min-width: 992px) {
  .BrandInfo .Info-section .box .item {
    opacity: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}
@media (max-width: 991px) {
  .BrandInfo .Info-section .box .item::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    z-index: 4;
    width: 2px;
    height: 100%;
    background: #cc0000;
  }
  .BrandInfo .Info-section .box .item:last-child::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .BrandInfo .Info-section .box .item {
    flex-wrap: wrap;
    padding-bottom: 6%;
  }
}
.BrandInfo .Info-section .box .item:last-child {
  padding-bottom: 0;
}
.BrandInfo .Info-section .box .item:last-child .textbox .dot {
  background: #cc0000;
}
.BrandInfo .Info-section .box .item .textbox {
  position: relative;
  width: 52.08333333333333%;
  padding-left: 0.56rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .BrandInfo .Info-section .box .item .textbox {
    width: 100%;
  }
}
.BrandInfo .Info-section .box .item .textbox .dot {
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  background: #7e7e7e;
}
@media (max-width: 991px) {
  .BrandInfo .Info-section .box .item .textbox .dot {
    width: 10px;
    height: 10px;
    background: #cc0000;
  }
}
.BrandInfo .Info-section .box .item .textbox .i-title .sp {
  color: #000000;
}
.BrandInfo .Info-section .box .item .imgbox {
  width: 37.5%;
}
@media (max-width: 991px) {
  .BrandInfo .Info-section .box .item .imgbox {
    width: 42%;
  }
}
@media (max-width: 767px) {
  .BrandInfo .Info-section .box .item .imgbox {
    width: 100%;
    margin-top: 5%;
    padding-left: 0.56rem;
    box-sizing: border-box;
  }
}
.BrandInfo .Info-section .box .item .imgbox .founder {
  display: inline-block;
  text-align: center;
}
.BrandInfo .Info-section .box .item .imgbox .founder .img {
  width: 100%;
  overflow: hidden;
}
.BrandInfo .Info-section .box .item .imgbox .founder .img img {
  display: block;
  width: 100%;
}
.BrandInfo .Info-section .box .item .imgbox .founder .txt {
  font-family: "HONORSansCN-Bold";
  font-size: 20px;
  color: #000000;
  margin-top: 0.20rem;
}
@media (max-width: 1900px) {
  .BrandInfo .Info-section .box .item .imgbox .founder .txt {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .BrandInfo .Info-section .box .item .imgbox .founder .txt {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .BrandInfo .Info-section .box .item .imgbox .founder .txt {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .BrandInfo .Info-section .box .item .imgbox .founder .txt {
    font-size: 0.28rem;
  }
}
.BrandInfo .Info-section .box .item .imgbox .f_videobox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.BrandInfo .Info-section .box .item .imgbox .f_videobox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.BrandInfo .Info-section .box .item .imgbox .f_videobox img {
  display: block;
  width: 100%;
}
.BrandInfo .Info-section .box .item .imgbox .f_videobox .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 0.41rem;
  height: 0.41rem;
  background: url(../images/icon73.png) center no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .BrandInfo .Info-section .box .item .imgbox .f_videobox .icon {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.scrollDown {
  position: absolute;
  bottom: 0.64rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
  cursor: pointer;
  display: inline-flex;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .scrollDown {
    top: calc(100vh - 2rem);
    bottom: auto;
  }
}
@media (max-width: 767px) {
  .scrollDown {
    top: calc(100vh - 1.7rem);
  }
}
@media (max-width: 480px) {
  .scrollDown {
    top: calc(100vh - 2rem);
  }
}
.scrollDown .scrollDown__text {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
}
@media (max-width: 1900px) {
  .scrollDown .scrollDown__text {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .scrollDown .scrollDown__text {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .scrollDown .scrollDown__text {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .scrollDown .scrollDown__text {
    font-size: 0.26rem;
  }
}
.scrollDown .scrollDown__icon {
  width: 0.8rem;
  height: 0.8rem;
  padding-top: 0.4rem;
  border: rgba(204, 0, 0, 0.1) solid 1px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.2rem;
  box-sizing: border-box;
}
.scrollDown .scrollDown__icon span {
  position: relative;
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 0.1rem solid transparent;
  border-right: 0.1rem solid transparent;
  border-top: 0.08rem solid #cc0000;
}
.scrollDown .scrollDown__icon span:nth-child(1) {
  top: 0rem;
  animation: arrow-down 2s infinite;
  animation-delay: -0.2s;
}
.scrollDown .scrollDown__icon span:nth-child(2) {
  top: -0.25rem;
  animation: arrow-down1 2s infinite;
  animation-delay: -0.4s;
}
@keyframes arrow-down {
  0% {
    opacity: 0;
    transform: translate(0, -0.15rem);
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate(0, 0.15rem);
  }
}
@keyframes arrow-down1 {
  0% {
    opacity: 0;
    transform: translate(0, -0.15rem);
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate(0, 0.15rem);
  }
}
.productsinfo17 {
  position: relative;
  min-height: 46.875vw;
}
@media (max-width: 991px) {
  .productsinfo17 {
    min-height: 56vh;
  }
}
.productsinfo17 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo17 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo17 .container {
  position: relative;
  z-index: 5;
}
.productsinfo17 .container .textbox {
  text-align: center;
}
.productsinfo17 .container .textbox .t1 {
  font-size: 30px;
  font-family: "HONORSansCN-Bold";
  color: #ffffff;
  margin-bottom: 0.15rem;
}
@media (max-width: 1900px) {
  .productsinfo17 .container .textbox .t1 {
    font-size: 1.5625vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo17 .container .textbox .t1 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .productsinfo17 .container .textbox .t1 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .productsinfo17 .container .textbox .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo17 .container .textbox .t1 {
    font-size: 0.38rem;
  }
}
.productsinfo17 .container .textbox .t2 {
  font-size: 50px;
  font-family: "HONORSansCN-Bold";
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo17 .container .textbox .t2 {
    font-size: 2.604166666666667vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo17 .container .textbox .t2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .productsinfo17 .container .textbox .t2 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .productsinfo17 .container .textbox .t2 {
    font-size: 0.5rem;
  }
}
.Historical .box {
  position: relative;
  padding: 0.25rem 0;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .Historical .box {
    padding: 0.7rem 0.3rem;
  }
}
.Historical .box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to right, #ffffff 25%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, #ffffff 25%, rgba(255, 255, 255, 0) 100%);
}
.Historical .box .i-title {
  position: relative;
  z-index: 5;
}
.Historical .box .textbox {
  position: relative;
  z-index: 5;
  margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .Historical .box .textbox {
    margin-top: 0.6rem;
  }
}
.Historical .box .textbox .swiper {
  position: relative;
  width: 100%;
  height: 5.28rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .Historical .box .textbox .swiper {
    height: 7rem;
  }
}
.Historical .box .textbox .swiper::before {
  content: '';
  position: absolute;
  left: 0.07rem;
  top: 0.15rem;
  width: 2px;
  height: 98%;
  background: -webkit-linear-gradient(to bottom, #cc0000 90%, rgba(204, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, #cc0000 90%, rgba(204, 0, 0, 0) 100%);
}
.Historical .box .textbox .swiper .swiper-slide .item {
  position: relative;
  padding-left: 0.5rem;
  margin-bottom: 0.45rem;
}
.Historical .box .textbox .swiper .swiper-slide .item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  background: #cc0000;
}
.Historical .box .textbox .swiper .swiper-slide .item .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 30px;
  color: #000000;
}
@media (max-width: 1900px) {
  .Historical .box .textbox .swiper .swiper-slide .item .t1 {
    font-size: 1.5625vw;
  }
}
@media (max-width: 1260px) {
  .Historical .box .textbox .swiper .swiper-slide .item .t1 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .Historical .box .textbox .swiper .swiper-slide .item .t1 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .Historical .box .textbox .swiper .swiper-slide .item .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .Historical .box .textbox .swiper .swiper-slide .item .t1 {
    font-size: 0.38rem;
  }
}
.Historical .box .textbox .swiper .swiper-slide .item .t2 {
  margin-top: 0.05rem;
  font-size: 20px;
  color: #000000;
}
@media (max-width: 1900px) {
  .Historical .box .textbox .swiper .swiper-slide .item .t2 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .Historical .box .textbox .swiper .swiper-slide .item .t2 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .Historical .box .textbox .swiper .swiper-slide .item .t2 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .Historical .box .textbox .swiper .swiper-slide .item .t2 {
    font-size: 0.28rem;
  }
}
.Historical .box .textbox .swiper-button {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.1rem;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .Historical .box .textbox .swiper-button {
    margin-top: 0.5rem;
    gap: 0.25rem;
  }
}
.Historical .box .textbox .swiper-button .swiper-button-next,
.Historical .box .textbox .swiper-button .swiper-button-prev {
  position: static;
  margin-top: 0;
  width: 0.34rem;
  height: 0.34rem;
  border: #cc0000 solid 2px;
}
@media (max-width: 991px) {
  .Historical .box .textbox .swiper-button .swiper-button-next,
  .Historical .box .textbox .swiper-button .swiper-button-prev {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.Historical .box .textbox .swiper-button .swiper-button-next::after,
.Historical .box .textbox .swiper-button .swiper-button-prev::after {
  display: none;
}
.Historical .box .textbox .swiper-button .swiper-button-next {
  background: url(../images/icon78.png) center no-repeat;
  background-size: 29.42% auto;
}
.Historical .box .textbox .swiper-button .swiper-button-next.swiper-button-disabled {
  border: #000000 solid 2px;
  background: url(../images/icon78a.png) center no-repeat;
  background-size: 29.42% auto;
}
.Historical .box .textbox .swiper-button .swiper-button-prev {
  background: url(../images/icon77.png) center no-repeat;
  background-size: 29.42% auto;
}
.Historical .box .textbox .swiper-button .swiper-button-prev.swiper-button-disabled {
  border: #000000 solid 2px;
  background: url(../images/icon77a.png) center no-repeat;
  background-size: 29.42% auto;
}
.Historical .box .textbox ul {
  position: relative;
  padding: 0;
}
.Historical .box .textbox ul::before {
  content: '';
  position: absolute;
  left: 0.07rem;
  top: 0.15rem;
  width: 2px;
  height: 100%;
  background: -webkit-linear-gradient(to bottom, #cc0000 90%, rgba(204, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, #cc0000 90%, rgba(204, 0, 0, 0) 100%);
}
.Historical .box .textbox ul li {
  list-style: none;
  position: relative;
  padding-left: 0.5rem;
  margin-bottom: 0.45rem;
}
.Historical .box .textbox ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  background: #cc0000;
}
.Historical .box .textbox ul li .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 30px;
  color: #000000;
}
@media (max-width: 1900px) {
  .Historical .box .textbox ul li .t1 {
    font-size: 1.5625vw;
  }
}
@media (max-width: 1260px) {
  .Historical .box .textbox ul li .t1 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .Historical .box .textbox ul li .t1 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .Historical .box .textbox ul li .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .Historical .box .textbox ul li .t1 {
    font-size: 0.38rem;
  }
}
.Historical .box .textbox ul li .t2 {
  margin-top: 0.05rem;
  font-size: 20px;
  color: #000000;
}
@media (max-width: 1900px) {
  .Historical .box .textbox ul li .t2 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .Historical .box .textbox ul li .t2 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .Historical .box .textbox ul li .t2 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .Historical .box .textbox ul li .t2 {
    font-size: 0.28rem;
  }
}
.productsinfo18 .box {
  margin-top: 3.125%;
}
@media (max-width: 991px) {
  .productsinfo18 .box {
    margin-top: 6%;
  }
}
@media (max-width: 767px) {
  .productsinfo18 .box {
    margin-top: 8%;
  }
}
.productsinfo18 .box .item {
  position: relative;
  width: calc((100% - 0.2rem) / 2);
  margin-right: 0.2rem;
  margin-bottom: 0.2rem;
}
.productsinfo18 .box .item:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo18 .box .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 991px) {
  .productsinfo18 .box .item:last-child {
    margin-bottom: 0;
  }
}
.productsinfo18 .box .item .imgbox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.productsinfo18 .box .item .imgbox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
.productsinfo18 .box .item .imgbox img {
  display: block;
  width: 100%;
}
.productsinfo18 .box .item .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  padding: 0.36rem;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .productsinfo18 .box .item .textbox {
    padding: 0.4rem;
  }
}
.productsinfo18 .box .item .textbox .t1 {
  color: #ffffff;
  font-size: 24px;
  font-family: "HONORSansCN-Bold";
}
@media (max-width: 1900px) {
  .productsinfo18 .box .item .textbox .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo18 .box .item .textbox .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo18 .box .item .textbox .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo18 .box .item .textbox .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo18 .box .item .textbox .t2 {
  margin-top: 0.05rem;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 1900px) {
  .productsinfo18 .box .item .textbox .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo18 .box .item .textbox .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo18 .box .item .textbox .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo18 .box .item .textbox .t2 {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .productsinfo18 .box .item .textbox .t2 {
    margin-top: 0.12rem;
  }
}
.productsinfo19 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.productsinfo19 .i-title {
  position: absolute;
  left: 0;
  top: 4.6875vw;
  z-index: 5;
  width: 100%;
}
@media (max-width: 991px) {
  .productsinfo19 .i-title {
    top: 0.9rem;
  }
}
.productsinfo19 .videobox {
  width: 100%;
  overflow: hidden;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo19 .videobox {
    min-height: 56vh;
  }
}
.productsinfo19 .videobox .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo19 .videobox .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo19 .videobox .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0.64rem;
  height: 0.64rem;
  background: url(../images/icon14.png) center no-repeat;
  background-size: 100% auto;
  cursor: pointer;
}
.productsinfo20 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo20 {
    min-height: 56vh;
  }
}
.productsinfo20 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo20 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo20 .container {
  position: relative;
  z-index: 5;
}
.productsinfo20 .container .textbox {
  max-width: 8.9rem;
  width: 100%;
  margin-top: 0.4rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}
@media (max-width: 1900px) {
  .productsinfo20 .container .textbox {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo20 .container .textbox {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo20 .container .textbox {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo20 .container .textbox {
    font-size: 0.26rem;
  }
}
.productsinfo20 .container .icontext {
  margin-top: 0.4rem;
}
.productsinfo20 .container .icontext ul {
  padding: 0;
  column-gap: 1rem;
}
.productsinfo20 .container .icontext ul li {
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.productsinfo20 .container .icontext ul li .icon {
  display: inline-block;
  margin-right: 0.1rem;
  flex-shrink: 0;
}
.productsinfo20 .container .icontext ul li .icon img {
  max-width: 0.3rem;
}
.productsinfo20 .container .icontext ul li .text {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo20 .container .icontext ul li .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo20 .container .icontext ul li .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .productsinfo20 .container .icontext ul li .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .productsinfo20 .container .icontext ul li .text {
    font-size: 0.28rem;
  }
}
.productsinfo22 {
  position: relative;
  min-height: 46.875vw;
}
.productsinfo22 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo22 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo22 .container {
  position: relative;
  z-index: 5;
  padding-bottom: 7%;
}
.productsinfo22 .container .textbox {
  margin-top: 0.45rem;
}
.productsinfo22 .container .textbox ul {
  max-width: 4.7rem;
  width: 100%;
  padding: 0;
}
@media (max-width: 991px) {
  .productsinfo22 .container .textbox ul {
    max-width: 5rem;
  }
}
@media (max-width: 480px) {
  .productsinfo22 .container .textbox ul {
    max-width: 100%;
  }
}
.productsinfo22 .container .textbox ul li {
  list-style: none;
  margin-bottom: 0.1rem;
  padding: 0.3rem 0.35rem;
  box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.productsinfo22 .container .textbox ul li .icon {
  display: inline-block;
  margin-right: 0.2rem;
  flex-shrink: 0;
}
.productsinfo22 .container .textbox ul li .icon img {
  max-width: 0.35rem;
}
@media (max-width: 991px) {
  .productsinfo22 .container .textbox ul li .icon img {
    max-width: 0.4rem;
  }
}
.productsinfo22 .container .textbox ul li .text {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.productsinfo22 .container .textbox ul li .text .t1 {
  font-size: 24px;
  color: #ffffff;
  font-family: "HONORSansCN-Bold";
}
@media (max-width: 1900px) {
  .productsinfo22 .container .textbox ul li .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo22 .container .textbox ul li .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo22 .container .textbox ul li .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo22 .container .textbox ul li .text .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo22 .container .textbox ul li .text .t2 {
  margin-top: 0.1rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo22 .container .textbox ul li .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo22 .container .textbox ul li .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo22 .container .textbox ul li .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo22 .container .textbox ul li .text .t2 {
    font-size: 0.26rem;
  }
}
.productsinfo24 .box {
  margin-top: 3.125%;
}
@media (max-width: 991px) {
  .productsinfo24 .box {
    margin-top: 6%;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .productsinfo24 .box {
    margin-top: 8%;
  }
}
.productsinfo24 .box .item {
  position: relative;
  width: calc((100% - 0.2rem) / 2);
  margin-right: 0.2rem;
  margin-bottom: 0.2rem;
}
.productsinfo24 .box .item:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo24 .box .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
}
.productsinfo24 .box .item .imgbox {
  width: 100%;
  overflow: hidden;
}
.productsinfo24 .box .item .imgbox img {
  display: block;
  width: 100%;
}
.productsinfo24 .box .item .textbox {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  min-width: 3.3rem;
  padding: 0.4rem;
  box-sizing: border-box;
}
.productsinfo24 .box .item .textbox .t1 {
  font-size: 24px;
  color: #ffffff;
  font-family: "HONORSansCN-Bold";
  margin-bottom: 0.2rem;
  padding-bottom: 0.2rem;
  border-bottom: rgba(255, 255, 255, 0.1) solid 1px;
}
@media (max-width: 1900px) {
  .productsinfo24 .box .item .textbox .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo24 .box .item .textbox .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo24 .box .item .textbox .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo24 .box .item .textbox .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo24 .box .item .textbox .t2 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo24 .box .item .textbox .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo24 .box .item .textbox .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo24 .box .item .textbox .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo24 .box .item .textbox .t2 {
    font-size: 0.26rem;
  }
}
.productsinfo25 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo25 {
    min-height: 56vh;
  }
}
.productsinfo25 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo25 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo25 .container {
  position: relative;
  z-index: 5;
}
.productsinfo25 .container .textbox {
  margin-top: 0.6rem;
}
.productsinfo25 .container .textbox ul {
  padding: 0;
}
.productsinfo25 .container .textbox ul li {
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 0.2rem;
}
.productsinfo25 .container .textbox ul li .icon {
  margin-right: 0.2rem;
  flex-shrink: 0;
}
.productsinfo25 .container .textbox ul li .icon img {
  max-width: 0.27rem;
}
@media (max-width: 991px) {
  .productsinfo25 .container .textbox ul li .icon img {
    max-width: 0.35rem;
  }
}
.productsinfo25 .container .textbox ul li .text {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #000000;
  font-size: 20px;
}
@media (max-width: 1900px) {
  .productsinfo25 .container .textbox ul li .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo25 .container .textbox ul li .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .productsinfo25 .container .textbox ul li .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .productsinfo25 .container .textbox ul li .text {
    font-size: 0.28rem;
  }
}
.productsinfo26 {
  position: relative;
  min-height: 46.875vw;
}
@media (max-width: 991px) {
  .productsinfo26 {
    min-height: 56vh;
  }
}
.productsinfo26 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo26 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo26 .container {
  position: relative;
  z-index: 5;
}
.productsinfo26 .container .i-title .txt {
  max-width: 12.28rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.honor {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.honor .box {
  margin-top: 6%;
}
@media (max-width: 767px) {
  .honor .box {
    margin-top: 8%;
  }
}
.honor .box .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .honor .box .swiper {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    box-sizing: border-box;
  }
}
.honor .box .swiper .swiper-wrapper {
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.honor .box .swiper .swiper-wrapper .swiper-slide.on1 .item {
  width: 55.238%;
  transform: translateX(100%);
}
@media (max-width: 991px) {
  .honor .box .swiper .swiper-wrapper .swiper-slide.on1 .item {
    width: 50%;
    transform: translateX(60%);
  }
}
.honor .box .swiper .swiper-wrapper .swiper-slide.on2 .item {
  width: 55.238%;
  transform: translateX(30%);
}
@media (max-width: 991px) {
  .honor .box .swiper .swiper-wrapper .swiper-slide.on2 .item {
    width: 50%;
    transform: translateX(64%);
  }
}
.honor .box .swiper .swiper-wrapper .swiper-slide.on3 .item {
  width: 55.238%;
  transform: translateX(53%);
}
@media (max-width: 991px) {
  .honor .box .swiper .swiper-wrapper .swiper-slide.on3 .item {
    width: 50%;
    transform: translateX(30%);
  }
}
.honor .box .swiper .swiper-wrapper .swiper-slide.on4 .item {
  width: 55.238%;
  transform: translateX(-18%);
}
@media (max-width: 991px) {
  .honor .box .swiper .swiper-wrapper .swiper-slide.on4 .item {
    width: 50%;
    transform: translateX(-25%);
  }
}
.honor .box .swiper .swiper-wrapper .swiper-slide .item .img {
  width: 100%;
  overflow: hidden;
}
.honor .box .swiper .swiper-wrapper .swiper-slide .item .img img {
  display: block;
  width: 100%;
}
.honor .box .swiper .swiper-wrapper .swiper-slide .item .text {
  text-align: center;
  margin-top: 0.28rem;
  color: #000000;
  font-size: 24px;
  font-family: "HONORSansCN-Bold";
  opacity: 0;
  height: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 1900px) {
  .honor .box .swiper .swiper-wrapper .swiper-slide .item .text {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .honor .box .swiper .swiper-wrapper .swiper-slide .item .text {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .honor .box .swiper .swiper-wrapper .swiper-slide .item .text {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .honor .box .swiper .swiper-wrapper .swiper-slide .item .text {
    font-size: 0.35rem;
  }
}
.honor .box .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .text {
  height: auto;
  opacity: 1;
}
.honor .box .swiper .swiper-button-next,
.honor .box .swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.6rem;
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: transparent;
  border-radius: 50%;
}
.honor .box .swiper .swiper-button-next::after,
.honor .box .swiper .swiper-button-prev::after {
  display: none;
}
.honor .box .swiper .swiper-button-next,
.honor .box .swiper .swiper-container-rtl .swiper-button-prev {
  right: 33%;
  background: #efefef url(../images/icon2a.png) center no-repeat;
  background-size: 18.33333333333333% auto;
}
@media (max-width: 991px) {
  .honor .box .swiper .swiper-button-next,
  .honor .box .swiper .swiper-container-rtl .swiper-button-prev {
    right: 23%;
  }
}
@media (max-width: 767px) {
  .honor .box .swiper .swiper-button-next,
  .honor .box .swiper .swiper-container-rtl .swiper-button-prev {
    right: 0;
  }
}
.honor .box .swiper .swiper-button-prev,
.honor .box .swiper .swiper-container-rtl .swiper-button-next {
  left: 33%;
  background: #efefef url(../images/icon1a.png) center no-repeat;
  background-size: 18.33333333333333% auto;
}
@media (max-width: 991px) {
  .honor .box .swiper .swiper-button-prev,
  .honor .box .swiper .swiper-container-rtl .swiper-button-next {
    left: 23%;
  }
}
@media (max-width: 767px) {
  .honor .box .swiper .swiper-button-prev,
  .honor .box .swiper .swiper-container-rtl .swiper-button-next {
    left: 0;
  }
}
.SocialResponsibility .i-title .txt {
  max-width: 10.6rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.SocialResponsibility .box {
  margin-top: 4.166%;
  gap: 0.12rem;
}
@media (max-width: 991px) {
  .SocialResponsibility .box {
    gap: 0.2rem;
    margin-top: 6%;
  }
}
@media (max-width: 767px) {
  .SocialResponsibility .box {
    margin-top: 8%;
  }
}
@media (max-width: 480px) {
  .SocialResponsibility .box {
    gap: 0.3rem;
  }
}
.SocialResponsibility .box .module {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.12rem;
  width: calc((100% - 0.12rem) / 2);
}
@media (max-width: 991px) {
  .SocialResponsibility .box .module {
    width: 100%;
    gap: 0.2rem;
  }
}
@media (max-width: 767px) {
  .SocialResponsibility .box .module {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .SocialResponsibility .box .module {
    gap: 0.3rem;
  }
}
.SocialResponsibility .box .module .left_w {
  width: 50.42016806722689%;
}
@media (max-width: 767px) {
  .SocialResponsibility .box .module .left_w {
    width: 100%;
  }
}
.SocialResponsibility .box .module .right_w {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.12rem;
  width: calc(49.57983193277311% - 0.12rem);
}
@media (max-width: 991px) {
  .SocialResponsibility .box .module .right_w {
    gap: 0.2rem;
  }
}
@media (max-width: 767px) {
  .SocialResponsibility .box .module .right_w {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .SocialResponsibility .box .module .right_w {
    gap: 0.3rem;
  }
}
.SocialResponsibility .box .module .right_w .item {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: auto;
}
.SocialResponsibility .box .module .item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: url(../images/img130.png) center no-repeat;
  background-size: cover;
}
.SocialResponsibility .box .module .item .img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.SocialResponsibility .box .module .item .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.SocialResponsibility .box .module .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  padding: 0.28rem 0.24rem;
  box-sizing: border-box;
  font-family: "HONORSansCN-Bold";
  color: #ffffff;
  font-size: 20px;
}
@media (max-width: 1900px) {
  .SocialResponsibility .box .module .item .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .SocialResponsibility .box .module .item .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .SocialResponsibility .box .module .item .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .SocialResponsibility .box .module .item .text {
    font-size: 0.28rem;
  }
}
.SocialResponsibility .box .module .item .text::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 175%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
@media (max-width: 991px) {
  .SocialResponsibility .box .module .item .text {
    padding: 0.4rem;
  }
}
.SocialResponsibility .box .module .item.active::before {
  opacity: 1;
}
.SocialResponsibility .box .module .item.active .img img {
  opacity: 1;
}
.SocialResponsibility .box .module .item.active .text {
  color: #ffffff;
}
.SocialResponsibility .box .module .item:hover::before {
  opacity: 1;
}
.SocialResponsibility .box .module .item:hover .img img {
  opacity: 1;
}
.SocialResponsibility .box .module .item:hover .text {
  color: #ffffff;
}
#interval {
  height: 0.8rem;
}
@media (max-width: 991px) {
  #interval {
    height: 70px;
  }
}
.PrivacyPolicy .container {
  color: #333333;
  line-height: 2;
  font-size: 16px;
}
@media (max-width: 1900px) {
  .PrivacyPolicy .container {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .PrivacyPolicy .container {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .PrivacyPolicy .container {
    font-size: 14px;
  }
}
.PrivacyPolicy .container .title {
  font-family: "HONORSansCN-Bold";
  font-size: 40px;
  color: #000000;
  text-align: center;
  padding-bottom: 0.4rem;
  border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
}
@media (max-width: 1900px) {
  .PrivacyPolicy .container .title {
    font-size: 2.083333333333333vw;
  }
}
@media (max-width: 1260px) {
  .PrivacyPolicy .container .title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .PrivacyPolicy .container .title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .PrivacyPolicy .container .title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .PrivacyPolicy .container .title {
    font-size: 0.42rem;
  }
}
.PrivacyPolicy .container .box {
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
  color: #333333;
  line-height: 2;
  font-size: 16px;
}
@media (max-width: 1900px) {
  .PrivacyPolicy .container .box {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .PrivacyPolicy .container .box {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .PrivacyPolicy .container .box {
    font-size: 14px;
  }
}
.PrivacyPolicy .container .box:last-child {
  margin-bottom: 0;
}
.PrivacyPolicy .container .box h3 {
  color: #000000;
  font-size: 30px;
  font-family: "HONORSansCN-Bold";
}
@media (max-width: 1900px) {
  .PrivacyPolicy .container .box h3 {
    font-size: 1.5625vw;
  }
}
@media (max-width: 1260px) {
  .PrivacyPolicy .container .box h3 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .PrivacyPolicy .container .box h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .PrivacyPolicy .container .box h3 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .PrivacyPolicy .container .box h3 {
    font-size: 0.38rem;
  }
}
.PrivacyPolicy .container .box h4 {
  color: #000000;
  font-size: 24px;
  font-family: "HONORSansCN-Bold";
}
@media (max-width: 1900px) {
  .PrivacyPolicy .container .box h4 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .PrivacyPolicy .container .box h4 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .PrivacyPolicy .container .box h4 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .PrivacyPolicy .container .box h4 {
    font-size: 0.35rem;
  }
}
.PrivacyPolicy .container .box h5 {
  color: #000000;
  font-size: 20px;
  font-family: "HONORSansCN-Bold";
}
@media (max-width: 1900px) {
  .PrivacyPolicy .container .box h5 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .PrivacyPolicy .container .box h5 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .PrivacyPolicy .container .box h5 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .PrivacyPolicy .container .box h5 {
    font-size: 0.28rem;
  }
}
.PrivacyPolicy .container .box h6 {
  color: #000000;
  font-size: 18px;
  font-family: "HONORSansCN-Bold";
}
@media (max-width: 1900px) {
  .PrivacyPolicy .container .box h6 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .PrivacyPolicy .container .box h6 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .PrivacyPolicy .container .box h6 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .PrivacyPolicy .container .box h6 {
    font-size: 0.26rem;
  }
}
.PrivacyPolicy .container .box a {
  color: #cc0000;
}
.cookieConsent {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 50;
  width: 100%;
  padding: 0.3rem 0;
  background-color: rgba(20, 20, 20, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
  backdrop-filter: saturate(180%) blur(15px);
  box-sizing: border-box;
  overflow: hidden;
  display: none;
}
@media (max-width: 991px) {
  .cookieConsent {
    padding: 20px 0px;
  }
}
.cookieConsent .container .text-box {
  width: 100%;
  margin-bottom: 0.3rem;
}
@media (max-width: 991px) {
  .cookieConsent .container .text-box {
    margin-bottom: 20px;
  }
}
.cookieConsent .container .text-box .title {
  font-size: 24px;
  font-family: "HONORSansCN-Bold";
  margin-bottom: 5px;
  color: #ccc;
}
@media (max-width: 1900px) {
  .cookieConsent .container .text-box .title {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .cookieConsent .container .text-box .title {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .cookieConsent .container .text-box .title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .cookieConsent .container .text-box .title {
    font-size: 0.35rem;
  }
}
.cookieConsent .container .text-box .desc {
  font-size: 14px;
  color: #ccc;
}
@media (max-width: 1900px) {
  .cookieConsent .container .text-box .desc {
    font-size: 0.7291666666666667vw;
  }
}
@media (max-width: 1260px) {
  .cookieConsent .container .text-box .desc {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .cookieConsent .container .text-box .desc {
    font-size: 14px;
  }
}
.cookieConsent .container .button-list .public-btn {
  display: inline-flex;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  padding: 0 .4rem;
  min-width: 1rem;
  height: 0.5rem;
  font-size: 16px;
  border-radius: .1rem;
  cursor: pointer;
  transition: all .5s linear;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 1900px) {
  .cookieConsent .container .button-list .public-btn {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .cookieConsent .container .button-list .public-btn {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .cookieConsent .container .button-list .public-btn {
    font-size: 14px;
  }
}
.cookieConsent .container .button-list .public-btn:hover {
  border-radius: 0.5rem;
}
.cookieConsent .container .button-list .public-btn.public-btn1 {
  color: #FFFFFF;
  background: #cc0000;
  margin-right: 0.1rem;
}
@media (max-width: 991px) {
  .cookieConsent .container .button-list .public-btn.public-btn1 {
    margin-right: 8px;
  }
}
.cookieConsent .container .button-list .public-btn.public-btn2 {
  color: #FFFFFF;
  background: #cc0000;
}
.disabled-link {
  pointer-events: none;
  color: gray;
  cursor: not-allowed;
}
.escalator-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.escalator-banner .mySwiper2 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.escalator-banner .mySwiper2 .swiper-slide .item {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.escalator-banner .mySwiper2 .swiper-slide .item .imgbox {
  width: 100%;
  overflow: hidden;
}
.escalator-banner .mySwiper2 .swiper-slide .item .imgbox img {
  display: block;
  width: 100%;
}
@media (max-width: 1260px) {
  .escalator-banner .mySwiper2 .swiper-slide .item .imgbox img {
    height: 48vh;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .escalator-banner .mySwiper2 .swiper-slide .item .imgbox img {
    height: 60vh;
  }
}
.escalator-banner .mySwiper2 .swiper-slide .item .textbox {
  position: absolute;
  left: 0%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.escalator-banner .mySwiper2 .swiper-slide .item .textbox .i-title .txt {
  color: #FFFFFF;
}
.escalator-banner .mySwiper2 .swiper-button-prev,
.escalator-banner .mySwiper2 .swiper-button-next {
  display: none;
}
.escalator-banner .thumbsSlider {
  position: absolute;
  bottom: 0.7rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
}
.escalator-banner .thumbsSlider .mySwiper1 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.escalator-banner .thumbsSlider .mySwiper1 .swiper-wrapper .swiper-slide .item {
  color: #FFFFFF;
  font-size: 24px;
  font-family: "HONORSansCN-Bold";
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
  padding: 0.1rem 0.25rem;
  box-sizing: border-box;
  min-height: 0.8rem;
  cursor: pointer;
}
@media (max-width: 1900px) {
  .escalator-banner .thumbsSlider .mySwiper1 .swiper-wrapper .swiper-slide .item {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .escalator-banner .thumbsSlider .mySwiper1 .swiper-wrapper .swiper-slide .item {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .escalator-banner .thumbsSlider .mySwiper1 .swiper-wrapper .swiper-slide .item {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .escalator-banner .thumbsSlider .mySwiper1 .swiper-wrapper .swiper-slide .item {
    font-size: 0.35rem;
  }
}
@media (max-width: 991px) {
  .escalator-banner .thumbsSlider .mySwiper1 .swiper-wrapper .swiper-slide .item {
    font-size: 20px;
    padding: 12px 20px;
  }
}
@media (max-width: 991px) and (max-width: 1900px) {
  .escalator-banner .thumbsSlider .mySwiper1 .swiper-wrapper .swiper-slide .item {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 991px) and (max-width: 1260px) {
  .escalator-banner .thumbsSlider .mySwiper1 .swiper-wrapper .swiper-slide .item {
    font-size: 16px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .escalator-banner .thumbsSlider .mySwiper1 .swiper-wrapper .swiper-slide .item {
    font-size: 18px;
  }
}
@media (max-width: 991px) and (max-width: 480px) {
  .escalator-banner .thumbsSlider .mySwiper1 .swiper-wrapper .swiper-slide .item {
    font-size: 0.28rem;
  }
}
.escalator-banner .thumbsSlider .mySwiper1 .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  background-color: #cc0000;
}
.escalator_section {
  padding-top: 0.8rem;
  margin-top: -0.8rem;
  scroll-behavior: smooth;
}
@media (max-width: 991px) {
  .escalator_section {
    padding-top: 70px;
    margin-top: -70px;
  }
}
.productsinfo27 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo27 {
    min-height: 56vh;
  }
}
.productsinfo27 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo27 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo27 .container {
  position: relative;
  z-index: 5;
}
.productsinfo27 .container .content {
  width: 100%;
}
@media (max-width: 991px) {
  .productsinfo27 .container .content {
    flex-wrap: wrap;
  }
}
.productsinfo27 .container .content .imgbox {
  width: 60%;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  .productsinfo27 .container .content .imgbox {
    width: 100%;
  }
}
.productsinfo27 .container .content .imgbox img {
  max-width: 100%;
}
.productsinfo27 .container .content .textbox {
  width: 37.5%;
}
@media (max-width: 991px) {
  .productsinfo27 .container .content .textbox {
    width: 100%;
  }
}
.productsinfo27 .container .content .textbox .wrap {
  margin-top: 0.5rem;
}
.productsinfo27 .container .content .textbox .wrap .item {
  padding: 8.8%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
  margin-bottom: 0.15rem;
}
@media (max-width: 991px) {
  .productsinfo27 .container .content .textbox .wrap .item {
    padding: 0.4rem;
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 767px) {
  .productsinfo27 .container .content .textbox .wrap .item {
    padding: 0.35rem;
    margin-bottom: 0.3rem;
  }
}
.productsinfo27 .container .content .textbox .wrap .item .t1 {
  color: #ffffff;
  font-size: 24px;
  font-family: "HONORSansCN-Bold";
}
@media (max-width: 1900px) {
  .productsinfo27 .container .content .textbox .wrap .item .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo27 .container .content .textbox .wrap .item .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo27 .container .content .textbox .wrap .item .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo27 .container .content .textbox .wrap .item .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo27 .container .content .textbox .wrap .item .t2 {
  margin-top: 0.06rem;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo27 .container .content .textbox .wrap .item .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo27 .container .content .textbox .wrap .item .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo27 .container .content .textbox .wrap .item .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo27 .container .content .textbox .wrap .item .t2 {
    font-size: 0.26rem;
  }
}
.productsinfo28 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo28 {
    min-height: 56vh;
  }
}
.productsinfo28 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo28 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo28 .container {
  position: relative;
  z-index: 5;
}
.productsinfo28 .container .content {
  width: 45%;
}
@media (max-width: 991px) {
  .productsinfo28 .container .content {
    width: 100%;
  }
}
.productsinfo28 .container .content .wrap {
  display: inline-block;
  min-width: 72.5%;
  margin-top: 0.5rem;
}
@media (max-width: 991px) {
  .productsinfo28 .container .content .wrap {
    min-width: 85%;
  }
}
.productsinfo28 .container .content .wrap .item {
  padding: 8.8%;
  background-color: rgba(150, 150, 150, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
  margin-bottom: 0.15rem;
}
@media (max-width: 991px) {
  .productsinfo28 .container .content .wrap .item {
    padding: 0.4rem;
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 767px) {
  .productsinfo28 .container .content .wrap .item {
    padding: 0.35rem;
  }
}
.productsinfo28 .container .content .wrap .item .icon {
  display: inline-block;
  margin-right: 0.24rem;
}
.productsinfo28 .container .content .wrap .item .icon img {
  max-width: 0.5rem;
}
.productsinfo28 .container .content .wrap .item .txt {
  padding-top: 0.05rem;
  color: #ffffff;
  font-size: 24px;
  font-family: "HONORSansCN-Bold";
}
@media (max-width: 1900px) {
  .productsinfo28 .container .content .wrap .item .txt {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo28 .container .content .wrap .item .txt {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo28 .container .content .wrap .item .txt {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo28 .container .content .wrap .item .txt {
    font-size: 0.35rem;
  }
}
.productsinfo29 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo29 {
    min-height: 90vw;
  }
}
@media (max-width: 767px) {
  .productsinfo29 {
    min-height: 120vw;
  }
}
@media (max-width: 480px) {
  .productsinfo29 {
    min-height: 148.6666666666667vw;
  }
}
.productsinfo29 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .productsinfo29 .img-cover {
    height: 100%;
    object-fit: cover;
    background-position: center;
  }
}
@media (max-width: 480px) {
  .productsinfo29 .img-cover {
    background-position: top center;
  }
}
.productsinfo29 .container {
  position: relative;
  z-index: 5;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.productsinfo29 .container .i-title {
  max-width: 11.1rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
}
.productsinfo29 .container .i-title .txt.white {
  color: #FFFFFF;
}
.productsinfo30 .box {
  margin-top: 0.45rem;
}
.productsinfo30 .box .item {
  position: relative;
  width: calc((100% - 0.3rem) / 3);
  margin-right: 0.15rem;
}
.productsinfo30 .box .item:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo30 .box .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
  .productsinfo30 .box .item:last-child {
    margin-bottom: 0;
  }
}
.productsinfo30 .box .item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
.productsinfo30 .box .item .imgbox {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .productsinfo30 .box .item .imgbox {
    max-height: 45vh;
    display: flex;
    align-items: flex-end;
  }
}
@media (max-width: 480px) {
  .productsinfo30 .box .item .imgbox {
    max-height: 36vh;
  }
}
.productsinfo30 .box .item .imgbox img {
  display: block;
  width: 100%;
}
.productsinfo30 .box .item .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  padding: 0.3rem 0.4rem;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .productsinfo30 .box .item .textbox {
    padding: 0.5rem 0.4rem;
  }
}
.productsinfo30 .box .item .textbox .subtit {
  color: #ffffff;
  font-size: 24px;
  font-family: "HONORSansCN-Bold";
  text-align: center;
}
@media (max-width: 1900px) {
  .productsinfo30 .box .item .textbox .subtit {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo30 .box .item .textbox .subtit {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo30 .box .item .textbox .subtit {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo30 .box .item .textbox .subtit {
    font-size: 0.35rem;
  }
}
.productsinfo31 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo31 {
    min-height: 56vh;
  }
}
.productsinfo31 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo31 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo31 .container {
  position: relative;
  z-index: 5;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.productsinfo31 .container .i-title {
  max-width: 11.1rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
}
.productsinfo31 .container .textbox ul {
  gap: 0.15rem;
}
@media (max-width: 991px) {
  .productsinfo31 .container .textbox ul {
    flex-wrap: wrap;
    gap: 0;
  }
}
.productsinfo31 .container .textbox ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: calc((100% - 0.3rem) / 3);
  padding: 2.77% 2%;
  min-height: 1.6rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
@media (max-width: 991px) {
  .productsinfo31 .container .textbox ul li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
    padding: 0.4rem;
  }
}
@media (max-width: 991px) {
  .productsinfo31 .container .textbox ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .productsinfo31 .container .textbox ul li {
    width: 100%;
    padding: 0.35rem;
    margin-right: 0 !important;
    margin-bottom: 0.3rem;
  }
}
.productsinfo31 .container .textbox ul li .text {
  width: 100%;
}
.productsinfo31 .container .textbox ul li .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo31 .container .textbox ul li .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo31 .container .textbox ul li .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo31 .container .textbox ul li .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo31 .container .textbox ul li .text .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo31 .container .textbox ul li .text .t2 {
  margin-top: 0.08rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo31 .container .textbox ul li .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo31 .container .textbox ul li .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo31 .container .textbox ul li .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo31 .container .textbox ul li .text .t2 {
    font-size: 0.26rem;
  }
}
.product-category {
  min-height: 50.52083333333333vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
}
.product-category .mySwiper1 {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0.5rem;
  border-bottom: rgba(255, 255, 255, 0.2) solid 1px;
}
.product-category .mySwiper1 .swiper-wrapper {
  justify-content: center;
}
.product-category .mySwiper1 .swiper-wrapper .swiper-slide {
  position: relative;
  font-family: "HONORSansCN-Bold";
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
  text-align: center;
  padding-top: 0.1rem;
  padding-bottom: 0.2rem;
  cursor: pointer;
}
@media (max-width: 1900px) {
  .product-category .mySwiper1 .swiper-wrapper .swiper-slide {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .product-category .mySwiper1 .swiper-wrapper .swiper-slide {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .product-category .mySwiper1 .swiper-wrapper .swiper-slide {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .product-category .mySwiper1 .swiper-wrapper .swiper-slide {
    font-size: 0.28rem;
  }
}
.product-category .mySwiper1 .swiper-wrapper .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0%;
  height: 2px;
  background: #cc0000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.product-category .mySwiper1 .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  color: #cc0000;
}
.product-category .mySwiper1 .swiper-wrapper .swiper-slide.swiper-slide-thumb-active::before {
  width: 100%;
}
.product-category .mySwiper2 {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 9%;
}
.product-category .mySwiper2 .swiper-slide {
  opacity: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.product-category .mySwiper2 .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.product-category .mySwiper2 .swiper-slide .swiper .swiper-slide {
  text-align: center;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  opacity: 0.2;
}
.product-category .mySwiper2 .swiper-slide .swiper .swiper-slide.swiper-slide-active {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.product-category .mySwiper2 .swiper-slide .swiper .swiper-slide.swiper-slide-active .text {
  opacity: 1;
}
.product-category .mySwiper2 .swiper-slide .swiper .swiper-slide a {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .product-category .mySwiper2 .swiper-slide .swiper .swiper-slide a {
    width: 80%;
    margin: auto;
  }
}
.product-category .mySwiper2 .swiper-slide .swiper .swiper-slide .imgbox {
  width: 100%;
  overflow: hidden;
  text-align: center;
}
.product-category .mySwiper2 .swiper-slide .swiper .swiper-slide .imgbox img {
  max-width: 100%;
}
.product-category .mySwiper2 .swiper-slide .swiper .swiper-slide .text {
  margin-top: 0.4rem;
  font-family: "HONORSansCN-Bold";
  color: #FFFFFF;
  font-size: 24px;
  opacity: 0;
}
@media (max-width: 1900px) {
  .product-category .mySwiper2 .swiper-slide .swiper .swiper-slide .text {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .product-category .mySwiper2 .swiper-slide .swiper .swiper-slide .text {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .product-category .mySwiper2 .swiper-slide .swiper .swiper-slide .text {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .product-category .mySwiper2 .swiper-slide .swiper .swiper-slide .text {
    font-size: 0.35rem;
  }
}
.product-category .mySwiper2 .swiper-slide .swiper .swiper-button-prev {
  left: 27.5%;
}
@media (max-width: 991px) {
  .product-category .mySwiper2 .swiper-slide .swiper .swiper-button-prev {
    left: 0;
  }
}
.product-category .mySwiper2 .swiper-slide .swiper .swiper-button-next {
  right: 27.5%;
}
@media (max-width: 991px) {
  .product-category .mySwiper2 .swiper-slide .swiper .swiper-button-next {
    right: 0;
  }
}
.productsinfo32 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.productsinfo32 .box {
  margin-top: 0.5rem;
  gap: 0.24rem;
}
@media (max-width: 991px) {
  .productsinfo32 .box {
    gap: 0;
  }
}
.productsinfo32 .box .item {
  width: 34.72222222222222%;
  padding: 3%;
  min-height: 1.6rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
@media (max-width: 991px) {
  .productsinfo32 .box .item {
    width: 100%;
    margin-bottom: 0.4rem;
    padding: 0.4rem;
  }
}
@media (max-width: 767px) {
  .productsinfo32 .box .item {
    margin-bottom: 0.3rem;
    padding: 0.35rem;
  }
}
.productsinfo32 .box .item .t1 {
  font-size: 24px;
  color: #FFFFFF;
  font-family: "HONORSansCN-Bold";
}
@media (max-width: 1900px) {
  .productsinfo32 .box .item .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo32 .box .item .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo32 .box .item .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo32 .box .item .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo32 .box .item .t2 {
  margin-top: 0.1rem;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo32 .box .item .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo32 .box .item .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo32 .box .item .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo32 .box .item .t2 {
    font-size: 0.26rem;
  }
}
.productsinfo32 .box .item .t3 {
  margin-top: 0.2rem;
  font-size: 18px;
  color: #FFFFFF;
}
@media (max-width: 1900px) {
  .productsinfo32 .box .item .t3 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo32 .box .item .t3 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo32 .box .item .t3 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo32 .box .item .t3 {
    font-size: 0.26rem;
  }
}
.productsinfo32 .box .item .t3 span {
  display: inline-block;
  font-family: "HONORSansCN-Bold";
  color: #cc0000;
  font-size: 24px;
}
@media (max-width: 1900px) {
  .productsinfo32 .box .item .t3 span {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo32 .box .item .t3 span {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo32 .box .item .t3 span {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo32 .box .item .t3 span {
    font-size: 0.35rem;
  }
}
.productsinfo33 .box {
  position: relative;
  margin-top: 0.5rem;
}
.productsinfo33 .box .imgbox {
  width: 100%;
  overflow: hidden;
}
.productsinfo33 .box .imgbox img {
  display: block;
  width: 100%;
}
.productsinfo33 .box .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  padding: 0.15rem 0.1rem;
  box-sizing: border-box;
  gap: 0.1rem;
}
@media (max-width: 991px) {
  .productsinfo33 .box .textbox {
    position: static;
    padding: 0;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }
}
.productsinfo33 .box .textbox .item {
  width: calc((100% - 0.3rem) / 4);
  padding: 2.12%;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
  overflow: hidden;
}
@media (max-width: 991px) {
  .productsinfo33 .box .textbox .item {
    width: 100%;
    padding: 0.4rem;
    margin-right: 0;
    margin-bottom: 0.4rem;
    background: #f9f9f9;
  }
  .productsinfo33 .box .textbox .item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .productsinfo33 .box .textbox .item {
    padding: 0.35rem;
    margin-bottom: 0.3rem;
  }
}
.productsinfo33 .box .textbox .item .t1 {
  font-family: "HONORSansCN-Bold";
  color: #ffffff;
  font-size: 24px;
}
@media (max-width: 1900px) {
  .productsinfo33 .box .textbox .item .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo33 .box .textbox .item .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo33 .box .textbox .item .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo33 .box .textbox .item .t1 {
    font-size: 0.35rem;
  }
}
@media (max-width: 991px) {
  .productsinfo33 .box .textbox .item .t1 {
    color: #000000;
  }
}
.productsinfo33 .box .textbox .item .t2 {
  margin-top: 0.06rem;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo33 .box .textbox .item .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo33 .box .textbox .item .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo33 .box .textbox .item .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo33 .box .textbox .item .t2 {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .productsinfo33 .box .textbox .item .t2 {
    color: rgba(0, 0, 0, 0.6);
    margin-top: 6px;
  }
}
.productsinfo34 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo34 {
    min-height: 56vh;
  }
}
.productsinfo34 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo34 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo34 .container {
  position: relative;
  z-index: 5;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.productsinfo34 .container .i-title {
  max-width: 11.1rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
}
.productsinfo34 .container .textbox ul {
  gap: 0.15rem;
}
@media (max-width: 991px) {
  .productsinfo34 .container .textbox ul {
    flex-wrap: wrap;
    gap: 0;
  }
}
.productsinfo34 .container .textbox ul li {
  width: calc((100% - 0.3rem) / 3);
  padding: 3%;
  min-height: 2.4rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
@media (max-width: 991px) {
  .productsinfo34 .container .textbox ul li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
    padding: 0.4rem;
  }
  .productsinfo34 .container .textbox ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .productsinfo34 .container .textbox ul li {
    width: 100%;
    padding: 0.35rem;
    margin-right: 0 !important;
    margin-bottom: 0.3rem;
  }
}
.productsinfo34 .container .textbox ul li .text {
  width: 100%;
}
.productsinfo34 .container .textbox ul li .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo34 .container .textbox ul li .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo34 .container .textbox ul li .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo34 .container .textbox ul li .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo34 .container .textbox ul li .text .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo34 .container .textbox ul li .text .t2 {
  margin-top: 0.08rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo34 .container .textbox ul li .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo34 .container .textbox ul li .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo34 .container .textbox ul li .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo34 .container .textbox ul li .text .t2 {
    font-size: 0.26rem;
  }
}
.productsinfo35 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo35 {
    min-height: 56vh;
  }
}
.productsinfo35 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .productsinfo35 .img-cover {
    height: 100%;
    object-fit: cover;
    background-position: right 30% center;
  }
}
.productsinfo35 .container {
  position: relative;
  z-index: 5;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.productsinfo35 .container .i-title {
  max-width: 11.1rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
}
.productsinfo35 .container .textbox ul {
  gap: 0.15rem;
}
@media (max-width: 991px) {
  .productsinfo35 .container .textbox ul {
    flex-wrap: wrap;
    gap: 0;
  }
}
.productsinfo35 .container .textbox ul li {
  width: calc((100% - 0.6rem) / 5);
  padding: 2%;
  min-height: 2rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
@media (max-width: 991px) {
  .productsinfo35 .container .textbox ul li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
    padding: 0.4rem;
  }
}
@media (max-width: 991px) {
  .productsinfo35 .container .textbox ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .productsinfo35 .container .textbox ul li {
    width: 100%;
    min-height: 1.6rem;
    margin-right: 0 !important;
    padding: 0.35rem;
    margin-bottom: 0.3rem;
  }
}
.productsinfo35 .container .textbox ul li .icon {
  margin-bottom: 0.1rem;
}
@media (max-width: 767px) {
  .productsinfo35 .container .textbox ul li .icon {
    position: absolute;
    left: 0.35rem;
    top: 0.4rem;
  }
}
.productsinfo35 .container .textbox ul li .icon img {
  max-width: 0.37rem;
}
.productsinfo35 .container .textbox ul li .text {
  width: 100%;
}
.productsinfo35 .container .textbox ul li .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo35 .container .textbox ul li .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo35 .container .textbox ul li .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo35 .container .textbox ul li .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo35 .container .textbox ul li .text .t1 {
    font-size: 0.35rem;
  }
}
@media (max-width: 767px) {
  .productsinfo35 .container .textbox ul li .text .t1 {
    padding-left: 0.5rem;
    box-sizing: border-box;
  }
}
.productsinfo35 .container .textbox ul li .text .t2 {
  margin-top: 0.08rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo35 .container .textbox ul li .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo35 .container .textbox ul li .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo35 .container .textbox ul li .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo35 .container .textbox ul li .text .t2 {
    font-size: 0.26rem;
  }
}
.recruitment .box {
  margin-top: 0.5rem;
}
.recruitment .box .wrap {
  padding: 0.4rem 0.45rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 0.25rem;
}
@media (max-width: 767px) {
  .recruitment .box .wrap {
    padding: 0.3rem;
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 540px) {
  .recruitment .box .wrap {
    padding: 0.4rem;
  }
}
@media (max-width: 991px) {
  .recruitment .box .wrap .layui-form {
    flex-wrap: wrap;
  }
}
.recruitment .box .wrap .layui-form .left_w {
  width: 46.3%;
}
@media (max-width: 1260px) {
  .recruitment .box .wrap .layui-form .left_w {
    width: 58%;
  }
}
@media (max-width: 991px) {
  .recruitment .box .wrap .layui-form .left_w {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .recruitment .box .wrap .layui-form .left_w {
    flex-wrap: wrap;
  }
  .recruitment .box .wrap .layui-form .left_w .layui-input-inline {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 6%;
  }
}
.recruitment .box .wrap .layui-form .right_w {
  width: 37.41%;
}
@media (max-width: 991px) {
  .recruitment .box .wrap .layui-form .right_w {
    width: 100%;
    margin-top: 4%;
  }
}
@media (max-width: 540px) {
  .recruitment .box .wrap .layui-form .right_w {
    margin-top: 0;
  }
}
.recruitment .box .wrap .layui-form .layui-form-item {
  margin-bottom: 0;
}
.recruitment .box .wrap .layui-form .layui-form-item .layui-input-inline {
  float: none;
  width: 48%;
  margin-right: 4%;
  left: auto !important;
  margin-left: 0 !important;
}
.recruitment .box .wrap .layui-form .layui-form-item .layui-input-inline:nth-child(2n) {
  margin-right: 0;
}
.recruitment .box .wrap .layui-form .layui-form-item .layui-input-inline .layui-form-select .layui-select-title .layui-input {
  width: 100%;
  height: 0.7rem;
  border: #e5e5e5 solid 1px;
  padding: 0 0.5rem 0 0.3rem;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 1900px) {
  .recruitment .box .wrap .layui-form .layui-form-item .layui-input-inline .layui-form-select .layui-select-title .layui-input {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .recruitment .box .wrap .layui-form .layui-form-item .layui-input-inline .layui-form-select .layui-select-title .layui-input {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .recruitment .box .wrap .layui-form .layui-form-item .layui-input-inline .layui-form-select .layui-select-title .layui-input {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .recruitment .box .wrap .layui-form .layui-form-item .layui-input-inline .layui-form-select .layui-select-title .layui-input {
    font-size: 0.26rem;
  }
}
.recruitment .box .wrap .layui-form .layui-form-item .layui-input-inline .layui-form-select .layui-select-title .layui-edge {
  right: 0.3rem;
  border-top-color: #999999;
}
.recruitment .box .wrap .layui-form .layui-form-item .layui-input-inline .layui-form-select dl {
  top: 0.7rem;
}
.recruitment .box .wrap .layui-form .layui-form-item .layui-input-inline .layui-form-select dl dd {
  line-height: 0.4rem;
  font-size: 16px;
}
@media (max-width: 1900px) {
  .recruitment .box .wrap .layui-form .layui-form-item .layui-input-inline .layui-form-select dl dd {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .recruitment .box .wrap .layui-form .layui-form-item .layui-input-inline .layui-form-select dl dd {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .recruitment .box .wrap .layui-form .layui-form-item .layui-input-inline .layui-form-select dl dd {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .recruitment .box .wrap .layui-form .layui-form-item .layui-input-inline .layui-form-select dl dd {
    line-height: 0.56rem;
  }
}
.recruitment .box .wrap .layui-form .layui-form-item .layui-input-inline .layui-form-select dl dd.layui-this {
  background: #cc0000;
}
.recruitment .box .wrap .layui-form .layui-form-item .searchInput {
  width: 100%;
}
.recruitment .box .wrap .layui-form .layui-form-item .searchInput .layui-input {
  font-size: 18px;
  color: #666666;
  height: 0.68rem;
  padding: 0 0.3rem;
  box-sizing: border-box;
  border: #e5e5e5 solid 1px;
  border-right: none;
  border-radius: 5px 0px 0px 5px;
}
@media (max-width: 1900px) {
  .recruitment .box .wrap .layui-form .layui-form-item .searchInput .layui-input {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .recruitment .box .wrap .layui-form .layui-form-item .searchInput .layui-input {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .recruitment .box .wrap .layui-form .layui-form-item .searchInput .layui-input {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .recruitment .box .wrap .layui-form .layui-form-item .searchInput .layui-input {
    font-size: 0.26rem;
  }
}
.recruitment .box .wrap .layui-form .layui-form-item .searchbtn {
  width: 1rem;
  height: 0.68rem;
  line-height: inherit;
  border-radius: 5px;
  background: #cc0000;
  color: #FFFFFF;
  font-size: 18px;
}
@media (max-width: 1900px) {
  .recruitment .box .wrap .layui-form .layui-form-item .searchbtn {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .recruitment .box .wrap .layui-form .layui-form-item .searchbtn {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .recruitment .box .wrap .layui-form .layui-form-item .searchbtn {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .recruitment .box .wrap .layui-form .layui-form-item .searchbtn {
    font-size: 0.26rem;
  }
}
.recruitment .box .wrap .layui-form .layui-form-item .searchbtn img {
  max-width: 0.23rem;
}
.recruitment .box .recruitList ul {
  margin-bottom: 0.7rem;
}
@media (max-width: 991px) {
  .recruitment .box .recruitList ul {
    margin-bottom: 0.9rem;
  }
}
.recruitment .box .recruitList ul li {
  padding: 0 0.45rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  margin-bottom: 0.15rem;
}
@media (max-width: 767px) {
  .recruitment .box .recruitList ul li {
    padding: 0 0.35rem;
    margin-bottom: 0.4rem;
  }
}
.recruitment .box .recruitList ul li .crosshead {
  position: relative;
  min-height: 0.8rem;
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
  padding-right: 0.7rem;
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 991px) {
  .recruitment .box .recruitList ul li .crosshead {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
}
@media (max-width: 767px) {
  .recruitment .box .recruitList ul li .crosshead {
    flex-wrap: wrap;
  }
}
.recruitment .box .recruitList ul li .crosshead .post {
  font-family: "HONORSansCN-Bold";
  font-size: 20px;
  color: #000000;
  margin-right: 0.5rem;
}
@media (max-width: 1900px) {
  .recruitment .box .recruitList ul li .crosshead .post {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .recruitment .box .recruitList ul li .crosshead .post {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .recruitment .box .recruitList ul li .crosshead .post {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .recruitment .box .recruitList ul li .crosshead .post {
    font-size: 0.28rem;
  }
}
@media (max-width: 767px) {
  .recruitment .box .recruitList ul li .crosshead .post {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.1rem;
  }
}
.recruitment .box .recruitList ul li .crosshead .location {
  font-size: 18px;
  color: #999999;
}
@media (max-width: 1900px) {
  .recruitment .box .recruitList ul li .crosshead .location {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .recruitment .box .recruitList ul li .crosshead .location {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .recruitment .box .recruitList ul li .crosshead .location {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .recruitment .box .recruitList ul li .crosshead .location {
    font-size: 0.26rem;
  }
}
@media (max-width: 767px) {
  .recruitment .box .recruitList ul li .crosshead .location {
    width: 100%;
  }
}
.recruitment .box .recruitList ul li .crosshead .arrow {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.5rem;
  height: 0.8rem;
  background: url(../images/icon97.png) center no-repeat;
  background-size: 0.18rem auto;
}
@media (max-width: 991px) {
  .recruitment .box .recruitList ul li .crosshead .arrow {
    height: 0.9rem;
    background: url(../images/icon97.png) center no-repeat;
    background-size: 0.22rem auto;
  }
}
.recruitment .box .recruitList ul li .content {
  display: none;
  border-top: #f5f5f5 solid 2px;
  padding-top: 0.3rem;
  padding-bottom: 0.6rem;
  font-size: 18px;
  color: #000000;
  line-height: 2;
}
@media (max-width: 1900px) {
  .recruitment .box .recruitList ul li .content {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .recruitment .box .recruitList ul li .content {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .recruitment .box .recruitList ul li .content {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .recruitment .box .recruitList ul li .content {
    font-size: 0.26rem;
  }
}
.recruitment .box .recruitList ul li .content .text {
  margin-bottom: 0.3rem;
}
.recruitment .box .recruitList ul li .content h5 {
  font-family: "HONORSansCN-Bold";
  color: #000000;
}
.recruitment .box .recruitList ul li .content .deliverbtn {
  margin-top: 0.45rem;
}
.recruitment .box .recruitList ul li .content .deliverbtn a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 1.6rem;
  height: 0.5rem;
  border-radius: 0.1rem;
  background: #cc0000;
  font-family: "HONORSansCN-Bold";
  color: #FFFFFF;
  font-size: 16px;
  padding: 0 0.25rem;
  box-sizing: border-box;
}
@media (max-width: 1900px) {
  .recruitment .box .recruitList ul li .content .deliverbtn a {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .recruitment .box .recruitList ul li .content .deliverbtn a {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .recruitment .box .recruitList ul li .content .deliverbtn a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .recruitment .box .recruitList ul li .content .deliverbtn a {
    height: 0.6rem;
  }
}
.recruitment .box .recruitList ul li .content .deliverbtn a i {
  display: inline-block;
  margin-left: 0.15rem;
  width: 0.08rem;
  height: 100%;
  background: url(../images/icon99.png) center no-repeat;
  background-size: 100% auto;
}
.recruitment .box .recruitList ul li.on .crosshead .post {
  color: #cc0000;
}
.recruitment .box .recruitList ul li.on .crosshead .location {
  color: #cc0000;
}
.recruitment .box .recruitList ul li.on .crosshead .arrow {
  background: url(../images/icon98.png) center no-repeat;
  background-size: 0.18rem auto;
}
.page {
  width: 100%;
  text-align: center;
}
.page .page-list {
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.page .page-list a {
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 .1rem;
  min-width: .5rem;
  height: .5rem;
  margin-bottom: .1rem;
  margin-right: .1rem;
  text-align: center;
  font-family: "HONORSansCN-Medium";
  font-size: 20px;
  color: rgba(0, 0, 0, 0.4);
  border: #e5e5e5 solid 1px;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1900px) {
  .page .page-list a {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .page .page-list a {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .page .page-list a {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .page .page-list a {
    font-size: 0.28rem;
  }
}
.page .page-list a:last-child {
  margin-right: 0;
}
.page .page-list a:hover {
  color: #FFFFFF;
  background: #CC0000;
  border: #CC0000 solid 1px;
}
.page .page-list a.first {
  padding: 0 .25rem;
}
@media (max-width: 991px) {
  .page .page-list a.first {
    font-size: 18px;
    padding: 0 .15rem;
  }
}
@media (max-width: 991px) and (max-width: 1900px) {
  .page .page-list a.first {
    font-size: 0.9375vw;
  }
}
@media (max-width: 991px) and (max-width: 1260px) {
  .page .page-list a.first {
    font-size: 14px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .page .page-list a.first {
    font-size: 15px;
  }
}
@media (max-width: 991px) and (max-width: 480px) {
  .page .page-list a.first {
    font-size: 0.26rem;
  }
}
@media (max-width: 767px) {
  .page .page-list a.first {
    font-size: 16px;
  }
}
@media (max-width: 767px) and (max-width: 1900px) {
  .page .page-list a.first {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 767px) and (max-width: 1260px) {
  .page .page-list a.first {
    font-size: 12px;
  }
}
@media (max-width: 767px) and (max-width: 991px) {
  .page .page-list a.first {
    font-size: 14px;
  }
}
.page .page-list a.last {
  padding: 0 .25rem;
}
@media (max-width: 991px) {
  .page .page-list a.last {
    font-size: 18px;
    padding: 0 .15rem;
  }
}
@media (max-width: 991px) and (max-width: 1900px) {
  .page .page-list a.last {
    font-size: 0.9375vw;
  }
}
@media (max-width: 991px) and (max-width: 1260px) {
  .page .page-list a.last {
    font-size: 14px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .page .page-list a.last {
    font-size: 15px;
  }
}
@media (max-width: 991px) and (max-width: 480px) {
  .page .page-list a.last {
    font-size: 0.26rem;
  }
}
@media (max-width: 767px) {
  .page .page-list a.last {
    font-size: 16px;
  }
}
@media (max-width: 767px) and (max-width: 1900px) {
  .page .page-list a.last {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 767px) and (max-width: 1260px) {
  .page .page-list a.last {
    font-size: 12px;
  }
}
@media (max-width: 767px) and (max-width: 991px) {
  .page .page-list a.last {
    font-size: 14px;
  }
}
.page .page-list a.fyprev {
  background: url(../images/icon100.png) center no-repeat;
  background-size: 0.06rem auto;
}
@media (max-width: 991px) {
  .page .page-list a.fyprev {
    background: url(../images/icon100.png) center no-repeat;
    background-size: 0.08rem auto;
  }
}
.page .page-list a.fyprev.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.page .page-list a.fyprev:hover {
  background: #CC0000 url(../images/icon100a.png) center no-repeat;
  background-size: 0.06rem auto;
}
@media (max-width: 991px) {
  .page .page-list a.fyprev:hover {
    background: #CC0000 url(../images/icon100a.png) center no-repeat;
    background-size: 0.08rem auto;
  }
}
.page .page-list a.fynext {
  background: url(../images/icon101.png) center no-repeat;
  background-size: 0.06rem auto;
}
@media (max-width: 991px) {
  .page .page-list a.fynext {
    background: url(../images/icon101.png) center no-repeat;
    background-size: 0.08rem auto;
  }
}
.page .page-list a.fynext.disabled {
  pointer-events: none;
  background: none;
  opacity: 0.5;
}
.page .page-list a.fynext:hover {
  background: #CC0000 url(../images/icon101a.png) center no-repeat;
  background-size: 0.06rem auto;
}
@media (max-width: 991px) {
  .page .page-list a.fynext:hover {
    background: #CC0000 url(../images/icon101a.png) center no-repeat;
    background-size: 0.08rem auto;
  }
}
.page .page-list a.on {
  color: #FFFFFF;
  background: #CC0000;
  border: #CC0000 solid 1px;
}
.mainnew .wrap {
  padding-bottom: 0.4rem;
  margin-bottom: 0.6rem;
  border-bottom: #e5e5e5 solid 1px;
}
@media (max-width: 991px) {
  .mainnew .wrap {
    padding-bottom: 0.6rem;
  }
}
@media (max-width: 767px) {
  .mainnew .wrap {
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.mainnew .wrap .layui-form .layui-form-item {
  margin-bottom: 0;
}
.mainnew .wrap .layui-form .layui-form-item .allbtn {
  display: inline-flex;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 1.2rem;
  height: 0.5rem;
  border-radius: 5px;
  padding: 0 0.2rem;
  box-sizing: border-box;
  color: #999999;
  font-size: 18px;
  background: #FFFFFF;
  border: #e5e5e5 solid 1px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1900px) {
  .mainnew .wrap .layui-form .layui-form-item .allbtn {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .mainnew .wrap .layui-form .layui-form-item .allbtn {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .mainnew .wrap .layui-form .layui-form-item .allbtn {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .mainnew .wrap .layui-form .layui-form-item .allbtn {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .mainnew .wrap .layui-form .layui-form-item .allbtn {
    min-width: 1.5rem;
    height: 0.7rem;
  }
}
@media (max-width: 767px) {
  .mainnew .wrap .layui-form .layui-form-item .allbtn {
    min-width: 1.2rem;
    height: 0.5rem;
    flex-shrink: 0;
  }
}
@media (max-width: 480px) {
  .mainnew .wrap .layui-form .layui-form-item .allbtn {
    height: 0.7rem;
  }
}
.mainnew .wrap .layui-form .layui-form-item .allbtn:hover {
  color: #FFFFFF;
  background: #CC0000;
  border: #CC0000 solid 1px;
}
.mainnew .wrap .layui-form .layui-form-item .allbtn.active {
  color: #FFFFFF;
  background: #CC0000;
  border: #CC0000 solid 1px;
}
.mainnew .wrap .layui-form .layui-form-item .layui-form-inline {
  width: 2rem;
  margin-left: 0.15rem;
}
@media (max-width: 1260px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline {
    width: 2.5rem;
  }
}
@media (max-width: 991px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline {
    width: 3rem;
    margin-left: 0.25rem;
  }
}
@media (max-width: 767px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline {
    width: 2rem;
  }
}
.mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select .layui-select-title .layui-input {
  padding-left: 0.3rem;
  padding-right: 0.6rem;
  height: 0.5rem;
  border: #e5e5e5 solid 1px;
  border-radius: 5px;
  box-sizing: border-box;
  color: #999999;
  font-size: 18px;
}
@media (max-width: 1900px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select .layui-select-title .layui-input {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select .layui-select-title .layui-input {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select .layui-select-title .layui-input {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select .layui-select-title .layui-input {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select .layui-select-title .layui-input {
    height: 0.7rem;
  }
}
@media (max-width: 767px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select .layui-select-title .layui-input {
    height: 0.5rem;
  }
}
@media (max-width: 480px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select .layui-select-title .layui-input {
    height: 0.7rem;
  }
}
.mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select .layui-select-title .layui-edge {
  right: 0.3rem;
  border-top-color: #999999;
}
.mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select dl {
  top: 0.5rem;
}
@media (max-width: 991px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select dl {
    top: 0.7rem;
  }
}
@media (max-width: 767px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select dl {
    top: 0.5rem;
  }
}
@media (max-width: 480px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select dl {
    top: 0.7rem;
  }
}
.mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select dl dd {
  height: auto;
  line-height: 0.4rem;
  font-size: 16px;
}
@media (max-width: 1900px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select dl dd {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select dl dd {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select dl dd {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select dl dd {
    line-height: 0.56rem;
  }
}
.mainnew .wrap .layui-form .layui-form-item .layui-form-inline .layui-form-select dl dd.layui-this {
  background: #CC0000;
}
@media (max-width: 767px) {
  .mainnew .wrap .layui-form .layui-form-item.flex {
    width: calc(100% - 1.2rem);
  }
  .mainnew .wrap .layui-form .layui-form-item.flex .layui-form-inline {
    width: 46%;
    margin-left: 4%;
  }
}
.mainnew .box {
  margin-bottom: 0.8rem;
}
@media (max-width: 991px) {
  .mainnew .box {
    margin-bottom: 0.6rem;
  }
}
.mainnew .box .item {
  width: calc((100% - 0.3rem) / 3);
  margin-right: 0.15rem;
  margin-bottom: 0.15rem;
  padding: 0.22rem;
  box-sizing: border-box;
  border: #f0f0f0 solid 2px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.mainnew .box .item:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .mainnew .box .item {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
    padding: 0.3rem;
  }
  .mainnew .box .item:nth-child(3n) {
    margin-right: 4%;
  }
  .mainnew .box .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .mainnew .box .item {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.4rem;
    padding: 0.35rem;
  }
}
.mainnew .box .item:hover {
  border: #CC0000 solid 2px;
}
.mainnew .box .item:hover .imgbox img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.mainnew .box .item:hover .textbox .date {
  color: #CC0000;
}
.mainnew .box .item:hover .textbox .title {
  color: #CC0000;
}
.mainnew .box .item .imgbox {
  position: relative;
  width: 100%;
  padding-bottom: 57.14285714285714%;
  overflow: hidden;
  flex-shrink: 0;
}
.mainnew .box .item .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.mainnew .box .item .textbox {
  margin-top: 0.24rem;
}
@media (max-width: 991px) {
  .mainnew .box .item .textbox {
    margin-top: 0.3rem;
  }
}
.mainnew .box .item .textbox .date {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 1900px) {
  .mainnew .box .item .textbox .date {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .mainnew .box .item .textbox .date {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .mainnew .box .item .textbox .date {
    font-size: 14px;
  }
}
.mainnew .box .item .textbox .title {
  margin-top: 0.1rem;
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 1900px) {
  .mainnew .box .item .textbox .title {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .mainnew .box .item .textbox .title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .mainnew .box .item .textbox .title {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .mainnew .box .item .textbox .title {
    font-size: 0.28rem;
  }
}
.mainnew .box .item .textbox .generalBtn {
  margin-top: 0.25rem;
  align-self: baseline;
}
@media (max-width: 991px) {
  .mainnew .box .item .textbox .generalBtn {
    margin-top: 0.3rem;
  }
}
.pc_section {
  display: block;
}
@media (max-width: 991px) {
  .pc_section {
    display: none;
  }
}
.m_section {
  display: none;
}
@media (max-width: 991px) {
  .m_section {
    display: block;
  }
}
.public-crumbs .box {
  display: flex;
  align-items: flex-start;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  width: calc(100% - 0.4rem);
  margin: auto;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  overflow: hidden;
}
@media (max-width: 1900px) {
  .public-crumbs .box {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .public-crumbs .box {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .public-crumbs .box {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .public-crumbs .box {
    padding-top: 20px;
    padding-bottom: 0;
    width: calc(100% - 30px);
  }
}
.public-crumbs .box span,
.public-crumbs .box a {
  flex-shrink: 0;
  color: rgba(0, 0, 0, 0.6);
}
.public-crumbs .box span:hover,
.public-crumbs .box a:hover {
  color: #CC0000;
}
.public-crumbs .box span.on,
.public-crumbs .box a.on {
  flex: 1;
  flex-shrink: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newdetails {
  position: relative;
}
@media (max-width: 991px) {
  .newdetails .container .box {
    flex-wrap: wrap;
  }
}
.newdetails .container .box .details {
  width: 66%;
}
@media (max-width: 991px) {
  .newdetails .container .box .details {
    width: 100%;
  }
}
.newdetails .container .box .details .title .sp {
  font-size: 40px;
  color: #000000;
  font-family: "HONORSansCN-Bold";
}
@media (max-width: 1900px) {
  .newdetails .container .box .details .title .sp {
    font-size: 2.083333333333333vw;
  }
}
@media (max-width: 1260px) {
  .newdetails .container .box .details .title .sp {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .newdetails .container .box .details .title .sp {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .newdetails .container .box .details .title .sp {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .newdetails .container .box .details .title .sp {
    font-size: 0.42rem;
  }
}
.newdetails .container .box .details .title .othertxt {
  margin-top: 0.2rem;
}
.newdetails .container .box .details .title .othertxt span {
  display: inline-block;
  margin-right: 0.4rem;
  font-size: 20px;
  color: #000000;
}
@media (max-width: 1900px) {
  .newdetails .container .box .details .title .othertxt span {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .newdetails .container .box .details .title .othertxt span {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .newdetails .container .box .details .title .othertxt span {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .newdetails .container .box .details .title .othertxt span {
    font-size: 0.28rem;
  }
}
.newdetails .container .box .details .text {
  margin-top: 0.3rem;
  padding-top: 0.3rem;
  border-top: #e5e5e5 solid 2px;
  font-size: 18px;
  color: #000000;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .newdetails .container .box .details .text {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .newdetails .container .box .details .text {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .newdetails .container .box .details .text {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .newdetails .container .box .details .text {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .newdetails .container .box .details .text {
    margin-top: 0.3rem;
    padding-top: 0.4rem;
  }
}
@media (max-width: 480px) {
  .newdetails .container .box .details .text {
    font-size: 0.28rem;
  }
}
.newdetails .container .box .details .text img {
  display: block;
  margin: auto;
  max-width: 950px;
}
.newdetails .container .box .details .text video {
  display: block;
  margin: auto;
  max-width: 950px;
}
.newdetails .container .box .details .text .sub1 {
  font-family: "HONORSansCN-Bold";
  color: rgba(0, 0, 0, 0.6);
  font-size: 24px;
}
@media (max-width: 1900px) {
  .newdetails .container .box .details .text .sub1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .newdetails .container .box .details .text .sub1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .newdetails .container .box .details .text .sub1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .newdetails .container .box .details .text .sub1 {
    font-size: 0.35rem;
  }
}
.newdetails .container .box .details .text .sub2 {
  font-family: "HONORSansCN-Bold";
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
}
@media (max-width: 1900px) {
  .newdetails .container .box .details .text .sub2 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .newdetails .container .box .details .text .sub2 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .newdetails .container .box .details .text .sub2 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .newdetails .container .box .details .text .sub2 {
    font-size: 0.28rem;
  }
}
.newdetails .container .box .sidebox {
  width: 27.77777777777778%;
}
@media (max-width: 991px) {
  .newdetails .container .box .sidebox {
    width: 100%;
    margin-top: 7%;
  }
}
@media (max-width: 480px) {
  .newdetails .container .box .sidebox {
    margin-top: 10%;
  }
}
.newdetails .container .box .sidebox .related-news {
  padding: 0.48rem 0.36rem;
  box-shadow: 0px 0px 16px rgba(4, 0, 0, 0.08);
}
.newdetails .container .box .sidebox .related-news .title {
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 24px;
  padding-bottom: 0.2rem;
  border-bottom: #e5e5e5 solid 1px;
}
@media (max-width: 1900px) {
  .newdetails .container .box .sidebox .related-news .title {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .newdetails .container .box .sidebox .related-news .title {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .newdetails .container .box .sidebox .related-news .title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .newdetails .container .box .sidebox .related-news .title {
    font-size: 0.35rem;
  }
}
.newdetails .container .box .sidebox .related-news ul {
  padding-top: 0.24rem;
}
.newdetails .container .box .sidebox .related-news ul li {
  padding-bottom: 0.2rem;
  margin-bottom: 0.2rem;
  border-bottom: #e5e5e5 solid 1px;
}
.newdetails .container .box .sidebox .related-news ul li a .t1 {
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 1900px) {
  .newdetails .container .box .sidebox .related-news ul li a .t1 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .newdetails .container .box .sidebox .related-news ul li a .t1 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .newdetails .container .box .sidebox .related-news ul li a .t1 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .newdetails .container .box .sidebox .related-news ul li a .t1 {
    font-size: 0.28rem;
  }
}
.newdetails .container .box .sidebox .related-news ul li a .t2 {
  margin-top: 0.1rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
}
@media (max-width: 1900px) {
  .newdetails .container .box .sidebox .related-news ul li a .t2 {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .newdetails .container .box .sidebox .related-news ul li a .t2 {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .newdetails .container .box .sidebox .related-news ul li a .t2 {
    font-size: 14px;
  }
}
.newdetails .container .box .sidebox .related-news ul li:hover a .t1 {
  color: #CC0000;
}
.newdetails .container .box .sidebox .article-operate {
  margin-top: 0.18rem;
  padding: 0.48rem 0.36rem;
  box-shadow: 0px 0px 16px rgba(4, 0, 0, 0.08);
}
@media (max-width: 991px) {
  .newdetails .container .box .sidebox .article-operate {
    display: none;
    margin-top: 0.4rem;
  }
}
.newdetails .container .box .sidebox .article-operate a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.newdetails .container .box .sidebox .article-operate a .icon {
  width: 0.5rem;
  height: 0.5rem;
  border: #e5e5e5 solid 2px;
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.newdetails .container .box .sidebox .article-operate a .txt {
  margin-top: 0.1rem;
  text-align: center;
  color: #000000;
  font-size: 16px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 1900px) {
  .newdetails .container .box .sidebox .article-operate a .txt {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .newdetails .container .box .sidebox .article-operate a .txt {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .newdetails .container .box .sidebox .article-operate a .txt {
    font-size: 14px;
  }
}
.newdetails .container .box .sidebox .article-operate a:hover .txt {
  color: #CC0000;
}
.newdetails .container .box .sidebox .article-operate a.prveli .icon {
  background: url(../images/icon100.png) center no-repeat;
  background-size: 0.06rem auto;
}
.newdetails .container .box .sidebox .article-operate a.prveli:hover .icon {
  border: #cc0000 solid 2px;
  background: #cc0000 url(../images/icon100a.png) center no-repeat;
  background-size: 0.06rem auto;
}
.newdetails .container .box .sidebox .article-operate a.article-return .icon {
  background: url(../images/icon102.png) center no-repeat;
  background-size: 0.25rem auto;
}
.newdetails .container .box .sidebox .article-operate a.article-return:hover .icon {
  border: #cc0000 solid 2px;
  background: #cc0000 url(../images/icon102a.png) center no-repeat;
  background-size: 0.25rem auto;
}
.newdetails .container .box .sidebox .article-operate a.nextli .icon {
  background: url(../images/icon101.png) center no-repeat;
  background-size: 0.06rem auto;
}
.newdetails .container .box .sidebox .article-operate a.nextli:hover .icon {
  border: #cc0000 solid 2px;
  background: #cc0000 url(../images/icon101a.png) center no-repeat;
  background-size: 0.06rem auto;
}
.productsinfo36 .container {
  gap: 0.4rem;
}
.productsinfo36 .container .item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .productsinfo36 .container .item {
    flex-wrap: wrap;
  }
}
.productsinfo36 .container .item .imgbox {
  width: 50%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .productsinfo36 .container .item .imgbox {
    width: 100%;
  }
}
.productsinfo36 .container .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productsinfo36 .container .item .textbox {
  width: 50%;
  padding: 4% 7%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(4, 0, 0, 0.08);
}
@media (max-width: 991px) {
  .productsinfo36 .container .item .textbox {
    width: 100%;
    padding: 7%;
  }
}
.productsinfo37 {
  position: relative;
  min-height: 50.52083333333333vw;
}
@media (max-width: 991px) {
  .productsinfo37 {
    min-height: 56vh;
  }
}
.productsinfo37 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo37 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo37 .container {
  position: relative;
  z-index: 5;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.productsinfo37 .container .i-title .txt {
  max-width: 10.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .productsinfo37 .container .textbox ul {
    flex-wrap: wrap;
    margin-top: 7%;
  }
}
.productsinfo37 .container .textbox ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 19%;
  margin-right: 1.25%;
  margin-bottom: 1.25%;
  padding: 1.9%;
  min-height: 1.6rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.productsinfo37 .container .textbox ul li:nth-child(5n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo37 .container .textbox ul li:nth-child(5n) {
    margin-right: 2%;
  }
}
@media (max-width: 991px) {
  .productsinfo37 .container .textbox ul li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
    padding: 0.4rem;
  }
}
@media (max-width: 991px) {
  .productsinfo37 .container .textbox ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .productsinfo37 .container .textbox ul li {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.4rem;
  }
}
.productsinfo37 .container .textbox ul li .text {
  width: 100%;
  text-align: center;
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo37 .container .textbox ul li .text {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo37 .container .textbox ul li .text {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo37 .container .textbox ul li .text {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo37 .container .textbox ul li .text {
    font-size: 0.35rem;
  }
}
.productsinfo38 {
  position: relative;
  min-height: 50.52083333333333vw;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .productsinfo38 {
    min-height: 56vh;
  }
}
.productsinfo38 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo38 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo38 .container {
  position: relative;
  z-index: 5;
}
.productsinfo38 .container .textbox {
  margin-top: 0.5rem;
}
.productsinfo38 .container .textbox .item {
  width: 32.66666666666667%;
  margin-right: 1%;
  min-height: 1.8rem;
  padding: 0.3rem 0.4rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.productsinfo38 .container .textbox .item:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo38 .container .textbox .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
  .productsinfo38 .container .textbox .item:last-child {
    margin-bottom: 0;
  }
}
.productsinfo38 .container .textbox .item .text {
  flex: 1;
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo38 .container .textbox .item .text {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo38 .container .textbox .item .text {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo38 .container .textbox .item .text {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo38 .container .textbox .item .text {
    font-size: 0.35rem;
  }
}
.productsinfo38 .container .textbox .item .icon {
  flex-shrink: 0;
  margin-left: 0.2rem;
}
.productsinfo38 .container .textbox .item .icon img {
  max-width: 0.51rem;
}
.productsinfo39 {
  position: relative;
  min-height: 50.52083333333333vw;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .productsinfo39 {
    min-height: 56vh;
  }
}
.productsinfo39 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo39 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo39 .container {
  position: relative;
  z-index: 5;
}
.productsinfo39 .container .i-title .txt {
  max-width: 11.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.productsinfo39 .container .textbox {
  margin-top: 0.5rem;
}
.productsinfo39 .container .textbox .item {
  width: 32.66666666666667%;
  margin-right: 1%;
  min-height: 1.8rem;
  padding: 0.4rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.productsinfo39 .container .textbox .item:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo39 .container .textbox .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
  .productsinfo39 .container .textbox .item:last-child {
    margin-bottom: 0;
  }
}
.productsinfo39 .container .textbox .item .icon {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin: auto;
}
@media (max-width: 991px) {
  .productsinfo39 .container .textbox .item .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.productsinfo39 .container .textbox .item .icon img {
  max-width: 44.2%;
}
.productsinfo39 .container .textbox .item .text {
  margin-top: 0.24rem;
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 1900px) {
  .productsinfo39 .container .textbox .item .text {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo39 .container .textbox .item .text {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo39 .container .textbox .item .text {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo39 .container .textbox .item .text {
    font-size: 0.35rem;
  }
}
@media (max-width: 991px) {
  .productsinfo39 .container .textbox .item .text {
    margin-top: 0.4rem;
  }
}
.maintenance .i-title .txt {
  max-width: 11.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.maintenance .box {
  margin-top: 0.5rem;
}
@media (max-width: 991px) {
  .maintenance .box .item {
    flex-wrap: wrap;
    position: relative;
  }
}
.maintenance .box .item .imgbox {
  width: 48.61111111111111%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .maintenance .box .item .imgbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
  }
}
.maintenance .box .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.maintenance .box .item .textbox {
  width: 51.38888888888889%;
  padding: 4% 5.9%;
  box-sizing: border-box;
  box-shadow: 0px 0px 40px rgba(4, 0, 0, 0.08);
}
@media (max-width: 991px) {
  .maintenance .box .item .textbox {
    width: 100%;
    padding: 7%;
  }
}
.maintenance .box .item .textbox .wrap .subtit .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 30px;
  color: #000000;
}
@media (max-width: 1900px) {
  .maintenance .box .item .textbox .wrap .subtit .t1 {
    font-size: 1.5625vw;
  }
}
@media (max-width: 1260px) {
  .maintenance .box .item .textbox .wrap .subtit .t1 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .maintenance .box .item .textbox .wrap .subtit .t1 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .maintenance .box .item .textbox .wrap .subtit .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .maintenance .box .item .textbox .wrap .subtit .t1 {
    font-size: 0.38rem;
  }
}
.maintenance .box .item .textbox .wrap .subtit .t2 {
  margin-top: 0.1rem;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 1900px) {
  .maintenance .box .item .textbox .wrap .subtit .t2 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .maintenance .box .item .textbox .wrap .subtit .t2 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .maintenance .box .item .textbox .wrap .subtit .t2 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .maintenance .box .item .textbox .wrap .subtit .t2 {
    font-size: 0.28rem;
  }
}
.maintenance .box .item .textbox .wrap ul {
  margin-top: 0.4rem;
  border-top: #e5e5e5 solid 1px;
}
.maintenance .box .item .textbox .wrap ul li {
  display: flex;
  align-items: baseline;
  padding: 0.24rem 0;
  border-bottom: #e5e5e5 solid 1px;
}
@media (max-width: 991px) {
  .maintenance .box .item .textbox .wrap ul li {
    padding: 0.4rem 0;
  }
}
.maintenance .box .item .textbox .wrap ul li .sp1 {
  flex-shrink: 0;
  font-family: "HONORSansCN-Bold";
  color: #CC0000;
  font-size: 20px;
  margin-right: 0.1rem;
}
@media (max-width: 1900px) {
  .maintenance .box .item .textbox .wrap ul li .sp1 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .maintenance .box .item .textbox .wrap ul li .sp1 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .maintenance .box .item .textbox .wrap ul li .sp1 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .maintenance .box .item .textbox .wrap ul li .sp1 {
    font-size: 0.28rem;
  }
}
@media (max-width: 991px) {
  .maintenance .box .item .textbox .wrap ul li .sp1 {
    margin-right: 10px;
  }
}
.maintenance .box .item .textbox .wrap ul li .sp2 {
  flex: 1;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
}
@media (max-width: 1900px) {
  .maintenance .box .item .textbox .wrap ul li .sp2 {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .maintenance .box .item .textbox .wrap ul li .sp2 {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .maintenance .box .item .textbox .wrap ul li .sp2 {
    font-size: 14px;
  }
}
.productsinfo40 {
  position: relative;
  min-height: 50.52083333333333vw;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .productsinfo40 {
    min-height: 56vh;
  }
}
.productsinfo40 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo40 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo40 .container {
  position: relative;
  z-index: 5;
}
.productsinfo40 .container .textbox {
  margin-top: 0.5rem;
}
.productsinfo40 .container .textbox .item {
  width: 32.66666666666667%;
  margin-right: 1%;
  padding: 0.3rem 0.4rem;
  box-sizing: border-box;
  background-color: rgba(150, 150, 150, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.productsinfo40 .container .textbox .item:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo40 .container .textbox .item {
    width: 100%;
    padding: 0.4rem;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
  .productsinfo40 .container .textbox .item:last-child {
    margin-bottom: 0;
  }
}
.productsinfo40 .container .textbox .item .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo40 .container .textbox .item .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo40 .container .textbox .item .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo40 .container .textbox .item .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo40 .container .textbox .item .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo40 .container .textbox .item .t2 {
  margin-top: 0.06rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo40 .container .textbox .item .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo40 .container .textbox .item .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo40 .container .textbox .item .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo40 .container .textbox .item .t2 {
    font-size: 0.26rem;
  }
}
.productsinfo41 {
  background: #ffffff;
}
.productsinfo41 .box > img {
  max-width: 100%;
}
.productsinfo41 .box .content {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.productsinfo41 .box .content.mbox {
  display: none;
  text-align: center;
}
@media (max-width: 991px) {
  .productsinfo41 .box .content.mbox {
    display: block;
  }
}
.productsinfo41 .box .content.mbox img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .productsinfo41 .box .content.pbox {
    display: none;
  }
}
.productsinfo41 .box .content .part1 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.productsinfo41 .box .content .part1 img {
  display: block;
  width: 100%;
}
.productsinfo41 .box .content .part1 .title {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 22%;
  text-align: center;
  font-family: "HONORSansCN-Bold";
  color: #ffffff;
  font-size: 40px;
}
@media (max-width: 1900px) {
  .productsinfo41 .box .content .part1 .title {
    font-size: 2.083333333333333vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo41 .box .content .part1 .title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .productsinfo41 .box .content .part1 .title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .productsinfo41 .box .content .part1 .title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .productsinfo41 .box .content .part1 .title {
    font-size: 0.42rem;
  }
}
.productsinfo41 .box .content .part2 {
  position: absolute;
  left: 0;
  top: 14%;
  z-index: 5;
  width: 100%;
  height: 72%;
}
.productsinfo41 .box .content .part2 ul {
  padding: 0;
}
.productsinfo41 .box .content .part2 ul.left_w {
  position: absolute;
  top: 0;
  left: 0;
  width: 21.25%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: center;
}
.productsinfo41 .box .content .part2 ul.left_w li {
  flex-direction: row-reverse;
  padding-left: 0.3rem;
  box-sizing: border-box;
}
.productsinfo41 .box .content .part2 ul.left_w li .text {
  margin-right: 0.2rem;
  text-align: right;
}
.productsinfo41 .box .content .part2 ul.right_w {
  position: absolute;
  top: 0;
  right: 0;
  width: 22.29%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: center;
}
.productsinfo41 .box .content .part2 ul.right_w li {
  padding-right: 0.3rem;
  box-sizing: border-box;
}
.productsinfo41 .box .content .part2 ul.right_w li .text {
  margin-left: 0.2rem;
}
.productsinfo41 .box .content .part2 ul li {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  background: #FFFFFF;
  border-radius: 0.4rem;
  margin-bottom: 0.15rem;
}
.productsinfo41 .box .content .part2 ul li:last-child {
  margin-bottom: 0;
}
.productsinfo41 .box .content .part2 ul li .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-shrink: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #cc0000;
}
.productsinfo41 .box .content .part2 ul li .icon img {
  width: 43.75%;
}
.productsinfo41 .box .content .part2 ul li .text {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #000000;
  font-size: 20px;
  text-align: left;
}
@media (max-width: 1900px) {
  .productsinfo41 .box .content .part2 ul li .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo41 .box .content .part2 ul li .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .productsinfo41 .box .content .part2 ul li .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .productsinfo41 .box .content .part2 ul li .text {
    font-size: 0.28rem;
  }
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 21;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.popup.active {
  opacity: 1;
  visibility: visible;
}
.popup.active .box {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.popup .box {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.6s, opacity 0.6s, transform 0.6s;
  transform: translateY(100%);
  width: 75%;
  max-height: 90vh;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  padding: 0.8rem 0rem 0.6rem 0rem;
  box-sizing: border-box;
}
@media (max-width: 1260px) {
  .popup .box {
    width: 90%;
  }
}
@media (max-width: 991px) {
  .popup .box {
    padding: 0.6rem 0rem 0.6rem 0rem;
  }
}
@media (max-width: 480px) {
  .popup .box {
    padding: 0.9rem 0rem 0.7rem 0rem;
  }
}
.popup .box .closebtn {
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .popup .box .closebtn {
    right: 20px;
    top: 20px;
  }
}
.popup .box .closebtn img {
  max-width: 0.24rem;
}
@media (max-width: 991px) {
  .popup .box .closebtn img {
    max-width: 20px;
  }
}
.popup .box .wrap {
  max-height: calc(90vh - 1.5rem);
  overflow-y: auto;
  padding-right: 0.7rem;
  padding-left: 0.9rem;
}
@media (min-width: 1261px) {
  .popup .box .wrap {
    /* 修改滚动条的整体大小 */
    /* 修改滚动条的轨道样式 */
    /* 修改滚动条的滑块样式 */
    /* 修改滑块的 hover 样式 */
  }
  .popup .box .wrap::-webkit-scrollbar {
    width: 0.06rem;
    /* 垂直滚动条的宽度 */
    height: 0.06rem;
    /* 水平滚动条的高度 */
  }
  .popup .box .wrap::-webkit-scrollbar-track {
    background: #f0f0f0;
    /* 轨道背景颜色 */
    border-radius: 0.06rem;
    /* 轨道的圆角 */
  }
  .popup .box .wrap::-webkit-scrollbar-thumb {
    background: #CC0000;
    /* 滑块背景颜色 */
    border-radius: 0.06rem;
    /* 滑块圆角 */
  }
  .popup .box .wrap::-webkit-scrollbar-thumb:hover {
    background: #CC0000;
    /* 当鼠标悬停时滑块的颜色 */
  }
}
@media (max-width: 991px) {
  .popup .box .wrap {
    max-height: calc(90vh - 1.5rem);
    padding-right: 0.4rem;
    padding-left: 0.6rem;
  }
}
@media (max-width: 480px) {
  .popup .box .wrap {
    max-height: calc(90vh - 2rem);
    padding-right: 0.4rem;
    padding-left: 0.4rem;
  }
}
.popup .box .wrap .title {
  text-align: center;
  font-size: 30px;
  color: #000000;
  font-family: "HONORSansCN-Bold";
}
@media (max-width: 1900px) {
  .popup .box .wrap .title {
    font-size: 1.5625vw;
  }
}
@media (max-width: 1260px) {
  .popup .box .wrap .title {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .popup .box .wrap .title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .popup .box .wrap .title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .popup .box .wrap .title {
    font-size: 0.38rem;
  }
}
.popup .box .wrap .content {
  margin-top: 0.3rem;
  box-sizing: border-box;
}
@media (min-width: 1921px) {
  .popup .box .wrap .content {
    max-height: 45vh;
  }
}
@media (min-width: 1261px) {
  .popup .box .wrap .content {
    padding-right: 0.2rem;
    overflow-y: auto;
    max-height: 40vh;
    /* 修改滚动条的整体大小 */
    /* 修改滚动条的轨道样式 */
    /* 修改滚动条的滑块样式 */
    /* 修改滑块的 hover 样式 */
  }
  .popup .box .wrap .content::-webkit-scrollbar {
    width: 0.06rem;
    /* 垂直滚动条的宽度 */
    height: 0.06rem;
    /* 水平滚动条的高度 */
  }
  .popup .box .wrap .content::-webkit-scrollbar-track {
    background: #f0f0f0;
    /* 轨道背景颜色 */
    border-radius: 0.06rem;
    /* 轨道的圆角 */
  }
  .popup .box .wrap .content::-webkit-scrollbar-thumb {
    background: #CC0000;
    /* 滑块背景颜色 */
    border-radius: 0.06rem;
    /* 滑块圆角 */
  }
  .popup .box .wrap .content::-webkit-scrollbar-thumb:hover {
    background: #CC0000;
    /* 当鼠标悬停时滑块的颜色 */
  }
}
.popup .box .wrap .content .subtit {
  padding: 0.3rem 0.25rem;
  text-align: center;
  border: #e5e5e5 solid 2px;
  border-bottom: none;
  box-sizing: border-box;
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 24px;
}
@media (max-width: 1900px) {
  .popup .box .wrap .content .subtit {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .popup .box .wrap .content .subtit {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .popup .box .wrap .content .subtit {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .popup .box .wrap .content .subtit {
    font-size: 0.35rem;
  }
}
.popup .box .wrap .content .table-title {
  text-align: center;
  font-family: "HONORSansCN-Bold";
  color: #CC0000;
  font-size: 20px;
}
@media (max-width: 1900px) {
  .popup .box .wrap .content .table-title {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .popup .box .wrap .content .table-title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .popup .box .wrap .content .table-title {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .popup .box .wrap .content .table-title {
    font-size: 0.28rem;
  }
}
@media (max-width: 991px) {
  .popup .box .wrap .content .table-title {
    font-size: 16px;
  }
}
@media (max-width: 991px) and (max-width: 1900px) {
  .popup .box .wrap .content .table-title {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 991px) and (max-width: 1260px) {
  .popup .box .wrap .content .table-title {
    font-size: 12px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .popup .box .wrap .content .table-title {
    font-size: 14px;
  }
}
.popup .box .wrap .content table {
  width: 100%;
  border-collapse: collapse;
  border: #e5e5e5 solid 2px;
}
.popup .box .wrap .content table tr th {
  text-align: left;
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 20px;
  height: 0.7rem;
  padding: 0.06rem 0.1rem 0.06rem 0.24rem;
  box-sizing: border-box;
  border: #e5e5e5 solid 2px;
}
@media (max-width: 1900px) {
  .popup .box .wrap .content table tr th {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .popup .box .wrap .content table tr th {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .popup .box .wrap .content table tr th {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .popup .box .wrap .content table tr th {
    font-size: 0.28rem;
  }
}
.popup .box .wrap .content table tr th:nth-child(1) {
  min-width: 70px;
}
@media (max-width: 991px) {
  .popup .box .wrap .content table tr th {
    padding: 8px;
    font-size: 16px;
  }
  .popup .box .wrap .content table tr th:nth-child(1) {
    min-width: 50px;
    text-align: center;
  }
}
@media (max-width: 991px) and (max-width: 1900px) {
  .popup .box .wrap .content table tr th {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 991px) and (max-width: 1260px) {
  .popup .box .wrap .content table tr th {
    font-size: 12px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .popup .box .wrap .content table tr th {
    font-size: 14px;
  }
}
.popup .box .wrap .content table tr td {
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  height: 0.7rem;
  padding: 0.06rem 0.1rem 0.06rem 0.24rem;
  box-sizing: border-box;
  border: #e5e5e5 solid 2px;
}
@media (max-width: 1900px) {
  .popup .box .wrap .content table tr td {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .popup .box .wrap .content table tr td {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .popup .box .wrap .content table tr td {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .popup .box .wrap .content table tr td {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .popup .box .wrap .content table tr td {
    padding: 8px;
  }
  .popup .box .wrap .content table tr td:nth-child(1) {
    text-align: center;
  }
}
.popup .box .wrap .content table tr td .loadbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
}
@media (max-width: 991px) {
  .popup .box .wrap .content table tr td .loadbox {
    gap: 8px;
  }
}
.popup .box .wrap .content table tr td .loadbox span,
.popup .box .wrap .content table tr td .loadbox a {
  display: inline-flex;
  align-items: center;
  color: #000000;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 1900px) {
  .popup .box .wrap .content table tr td .loadbox span,
  .popup .box .wrap .content table tr td .loadbox a {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .popup .box .wrap .content table tr td .loadbox span,
  .popup .box .wrap .content table tr td .loadbox a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .popup .box .wrap .content table tr td .loadbox span,
  .popup .box .wrap .content table tr td .loadbox a {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .popup .box .wrap .content table tr td .loadbox span,
  .popup .box .wrap .content table tr td .loadbox a {
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .popup .box .wrap .content table tr td .loadbox span,
  .popup .box .wrap .content table tr td .loadbox a {
    display: flex;
    font-size: 16px;
  }
}
@media (max-width: 991px) and (max-width: 1900px) {
  .popup .box .wrap .content table tr td .loadbox span,
  .popup .box .wrap .content table tr td .loadbox a {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 991px) and (max-width: 1260px) {
  .popup .box .wrap .content table tr td .loadbox span,
  .popup .box .wrap .content table tr td .loadbox a {
    font-size: 12px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .popup .box .wrap .content table tr td .loadbox span,
  .popup .box .wrap .content table tr td .loadbox a {
    font-size: 14px;
  }
}
.popup .box .wrap .content table tr td .loadbox span img,
.popup .box .wrap .content table tr td .loadbox a img {
  display: inline-block;
  max-width: 0.21rem;
  max-height: 0.18rem;
  margin-right: 0.06rem;
}
@media (max-width: 991px) {
  .popup .box .wrap .content table tr td .loadbox span img,
  .popup .box .wrap .content table tr td .loadbox a img {
    max-width: 18px;
    max-height: 15px;
    margin-right: 6px;
  }
}
.popup .box .wrap .content table tr td .loadbox span:hover,
.popup .box .wrap .content table tr td .loadbox a:hover {
  color: #CC0000;
}
.popup .box .wrap .text {
  margin-top: 0.45rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .popup .box .wrap .text {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .popup .box .wrap .text {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .popup .box .wrap .text {
    font-size: 14px;
  }
}
.popup .box .wrap .text h5 {
  font-family: "HONORSansCN-Bold";
  font-size: 20px;
  color: #000000;
  margin-bottom: 0.05rem;
}
@media (max-width: 1900px) {
  .popup .box .wrap .text h5 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .popup .box .wrap .text h5 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .popup .box .wrap .text h5 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .popup .box .wrap .text h5 {
    font-size: 0.28rem;
  }
}
.loadbtn {
  text-align: center;
  margin-top: 0.3rem;
}
.loadbtn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 0.56rem;
  background: #FFFFFF;
  color: #000000;
  font-size: 20px;
  border-radius: 0.3rem;
  padding: 0 0.3rem;
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 1900px) {
  .loadbtn a {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .loadbtn a {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .loadbtn a {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .loadbtn a {
    font-size: 0.28rem;
  }
}
@media (max-width: 480px) {
  .loadbtn a {
    height: 0.64rem;
    border-radius: 0.32rem;
  }
}
.loadbtn a:hover {
  color: #FFFFFF;
  background: #CC0000;
}
.medical-scene .box {
  margin-top: 0.5rem;
}
.medical-scene .box .item {
  width: 32.66666666666667%;
  margin-right: 1%;
  box-shadow: 0px 0px 10px rgba(4, 0, 0, 0.08);
  padding: 5.9% 3%;
  box-sizing: border-box;
  text-align: center;
}
.medical-scene .box .item:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .medical-scene .box .item {
    width: 100%;
    padding: 7%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
  .medical-scene .box .item:last-child {
    margin-bottom: 0;
  }
}
.medical-scene .box .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: #f5f5f5;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .medical-scene .box .item .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.medical-scene .box .item .icon img {
  max-width: 40%;
}
.medical-scene .box .item .text {
  margin-top: 0.7rem;
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #000000;
}
@media (max-width: 1900px) {
  .medical-scene .box .item .text {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .medical-scene .box .item .text {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .medical-scene .box .item .text {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .medical-scene .box .item .text {
    font-size: 0.35rem;
  }
}
@media (max-width: 991px) {
  .medical-scene .box .item .text {
    margin-top: 7%;
  }
}
.productsinfo44 {
  position: relative;
  min-height: 46.875vw;
}
.productsinfo44 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo44 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo44 .container {
  position: relative;
  z-index: 5;
}
.productsinfo44 .container .textbox {
  margin-top: 0.5rem;
}
.productsinfo44 .container .textbox ul {
  max-width: 4.5rem;
  width: 100%;
  padding: 0;
}
@media (max-width: 991px) {
  .productsinfo44 .container .textbox ul {
    max-width: 5rem;
  }
}
@media (max-width: 480px) {
  .productsinfo44 .container .textbox ul {
    max-width: 100%;
  }
}
.productsinfo44 .container .textbox ul li {
  width: 48%;
  margin-right: 4%;
  list-style: none;
  margin-bottom: 4.5%;
  box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.productsinfo44 .container .textbox ul li:nth-child(2n) {
  margin-right: 0;
}
.productsinfo44 .container .textbox ul li .icon {
  display: inline-block;
  margin-right: 0.15rem;
  flex-shrink: 0;
}
.productsinfo44 .container .textbox ul li .icon img {
  max-width: 0.35rem;
}
@media (max-width: 991px) {
  .productsinfo44 .container .textbox ul li .icon img {
    max-width: 0.4rem;
  }
}
.productsinfo44 .container .textbox ul li .text {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 20px;
  color: #000000;
  font-family: "HONORSansCN-Bold";
}
@media (max-width: 1900px) {
  .productsinfo44 .container .textbox ul li .text {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo44 .container .textbox ul li .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .productsinfo44 .container .textbox ul li .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .productsinfo44 .container .textbox ul li .text {
    font-size: 0.28rem;
  }
}
.productsinfo46 {
  position: relative;
  min-height: 50.52083333333333vw;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .productsinfo46 {
    min-height: 56vh;
  }
}
.productsinfo46 .img-cover {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .productsinfo46 .img-cover {
    height: 100%;
    object-fit: cover;
  }
}
.productsinfo46 .container {
  position: relative;
  z-index: 5;
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.productsinfo46 .container .i-title .txt {
  max-width: 10rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.productsinfo46 .container .box {
  position: relative;
  margin-top: 0.5rem;
}
@media (max-width: 991px) {
  .productsinfo46 .container .box {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
  }
}
.productsinfo46 .container .box .imgbox {
  width: 31.25%;
  text-align: center;
  overflow: hidden;
  margin: auto;
}
@media (max-width: 991px) {
  .productsinfo46 .container .box .imgbox {
    flex-shrink: 0;
    margin-right: 5%;
    margin: 0;
  }
}
@media (max-width: 640px) {
  .productsinfo46 .container .box .imgbox {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    margin-right: 0;
    margin-bottom: 0.5rem;
    text-align: center;
  }
}
.productsinfo46 .container .box .imgbox img {
  max-width: 38%;
}
@media (min-width: 1921px) {
  .productsinfo46 .container .box .imgbox img {
    max-width: 41.77777777777778%;
  }
}
@media (max-width: 640px) {
  .productsinfo46 .container .box .imgbox img {
    max-width: 70%;
  }
}
.productsinfo46 .container .box .textbox {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
@media (max-width: 991px) {
  .productsinfo46 .container .box .textbox {
    flex: 1;
    position: static;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    overflow: hidden;
  }
}
@media (max-width: 640px) {
  .productsinfo46 .container .box .textbox {
    flex: auto;
    width: 100%;
  }
}
.productsinfo46 .container .box .textbox ul li {
  width: 31.25%;
  margin-right: 37.5%;
  margin-bottom: 0.15rem;
  padding: 1.5% 2.4%;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
}
.productsinfo46 .container .box .textbox ul li:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo46 .container .box .textbox ul li {
    width: 100%;
    margin-right: 0;
    padding: 0.4rem;
  }
}
@media (max-width: 640px) {
  .productsinfo46 .container .box .textbox ul li {
    padding: 0.35rem;
    margin-bottom: 0.3rem;
  }
  .productsinfo46 .container .box .textbox ul li:nth-child(1) {
    width: 70%;
  }
  .productsinfo46 .container .box .textbox ul li:nth-child(2) {
    width: 70%;
  }
}
.productsinfo46 .container .box .textbox ul li .icon {
  margin-bottom: 0.15rem;
}
@media (max-width: 640px) {
  .productsinfo46 .container .box .textbox ul li .icon {
    position: absolute;
    left: 0.35rem;
    top: 0.4rem;
  }
}
.productsinfo46 .container .box .textbox ul li .icon img {
  max-width: 0.32rem;
}
.productsinfo46 .container .box .textbox ul li .text .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo46 .container .box .textbox ul li .text .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo46 .container .box .textbox ul li .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo46 .container .box .textbox ul li .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo46 .container .box .textbox ul li .text .t1 {
    font-size: 0.35rem;
  }
}
@media (max-width: 640px) {
  .productsinfo46 .container .box .textbox ul li .text .t1 {
    padding-left: 0.56rem;
    box-sizing: border-box;
  }
}
.productsinfo46 .container .box .textbox ul li .text .t2 {
  margin-top: 0.06rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo46 .container .box .textbox ul li .text .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo46 .container .box .textbox ul li .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo46 .container .box .textbox ul li .text .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo46 .container .box .textbox ul li .text .t2 {
    font-size: 0.26rem;
  }
}
.productsinfo46 .container .box .textbox ul li .text .t3 {
  margin-top: 0.06rem;
  font-size: 10px;
  color: #ffffff;
  line-height: 1.7;
}
.productsinfo47 .box {
  margin-bottom: 6.8%;
}
.productsinfo47 .box:last-child {
  margin-bottom: 0;
}
.productsinfo47 .box .wrap {
  margin-top: 0.5rem;
}
.productsinfo47 .box .wrap .item {
  position: relative;
  width: 49.5%;
  margin-right: 1%;
}
.productsinfo47 .box .wrap .item:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .productsinfo47 .box .wrap .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
}
.productsinfo47 .box .wrap .item .imgbox {
  width: 100%;
  overflow: hidden;
}
.productsinfo47 .box .wrap .item .imgbox img {
  display: block;
  width: 100%;
}
.productsinfo47 .box .wrap .item .textbox {
  position: absolute;
  left: 2.8%;
  bottom: 0.15rem;
  z-index: 10;
  width: 94.4%;
  min-height: 1.4rem;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
  padding: 3% 4.9%;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .productsinfo47 .box .wrap .item .textbox {
    left: 5%;
    bottom: 5%;
    width: 90%;
    padding: 5% 6%;
  }
}
.productsinfo47 .box .wrap .item .textbox .t1 {
  font-family: "HONORSansCN-Bold";
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1900px) {
  .productsinfo47 .box .wrap .item .textbox .t1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo47 .box .wrap .item .textbox .t1 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .productsinfo47 .box .wrap .item .textbox .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .productsinfo47 .box .wrap .item .textbox .t1 {
    font-size: 0.35rem;
  }
}
.productsinfo47 .box .wrap .item .textbox .t2 {
  margin-top: 0.06rem;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .productsinfo47 .box .wrap .item .textbox .t2 {
    font-size: 0.9375vw;
  }
}
@media (max-width: 1260px) {
  .productsinfo47 .box .wrap .item .textbox .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .productsinfo47 .box .wrap .item .textbox .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .productsinfo47 .box .wrap .item .textbox .t2 {
    font-size: 0.26rem;
  }
}
.search-result .quantity {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  color: #000000;
  font-size: 20px;
}
@media (max-width: 1900px) {
  .search-result .quantity {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .search-result .quantity {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .search-result .quantity {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .search-result .quantity {
    font-size: 0.28rem;
  }
}
.search-result .quantity span {
  font-family: "HONORSansCN-Bold";
  color: #cc0000;
}
.search-result .wrap {
  margin-top: 0.4rem;
}
.search-result .wrap .section {
  margin-bottom: 0.8rem;
}
.search-result .wrap .section:last-child {
  margin-bottom: 0;
}
.search-result .wrap .section .title {
  position: relative;
}
.search-result .wrap .section .title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #f0f0f0;
}
.search-result .wrap .section .title span {
  position: relative;
  display: inline-block;
  padding-bottom: 0.2rem;
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 40px;
}
@media (max-width: 1900px) {
  .search-result .wrap .section .title span {
    font-size: 2.083333333333333vw;
  }
}
@media (max-width: 1260px) {
  .search-result .wrap .section .title span {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .search-result .wrap .section .title span {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .search-result .wrap .section .title span {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .search-result .wrap .section .title span {
    font-size: 0.42rem;
  }
}
.search-result .wrap .section .title span::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #CC0000;
}
.search-result .wrap .section .box {
  margin-top: 0.55rem;
}
.search-result .wrap .section .box .proitem {
  position: relative;
  display: block;
  margin-bottom: 0.2rem;
}
@media (max-width: 991px) {
  .search-result .wrap .section .box .proitem {
    margin-bottom: 0.4rem;
  }
}
.search-result .wrap .section .box .proitem .img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.search-result .wrap .section .box .proitem .img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
.search-result .wrap .section .box .proitem .img img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .search-result .wrap .section .box .proitem .img img {
    min-height: 42vh;
    object-fit: cover;
  }
}
.search-result .wrap .section .box .proitem .text {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  padding: 0 6.66666666666667%;
  box-sizing: border-box;
}
.search-result .wrap .section .box .proitem .text .t1 {
  font-family: "HONORSansCN-Bold";
  color: #ffffff;
  font-size: 30px;
}
@media (max-width: 1900px) {
  .search-result .wrap .section .box .proitem .text .t1 {
    font-size: 1.5625vw;
  }
}
@media (max-width: 1260px) {
  .search-result .wrap .section .box .proitem .text .t1 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .search-result .wrap .section .box .proitem .text .t1 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .search-result .wrap .section .box .proitem .text .t1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .search-result .wrap .section .box .proitem .text .t1 {
    font-size: 0.38rem;
  }
}
.search-result .wrap .section .box .proitem .text .t2 {
  margin-top: 0.06rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.7;
}
@media (max-width: 1900px) {
  .search-result .wrap .section .box .proitem .text .t2 {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .search-result .wrap .section .box .proitem .text .t2 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .search-result .wrap .section .box .proitem .text .t2 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .search-result .wrap .section .box .proitem .text .t2 {
    font-size: 0.28rem;
  }
}
.search-result .wrap .section .box .newitem {
  width: calc((100% - 0.3rem) / 3);
  margin-right: 0.15rem;
  margin-bottom: 0.15rem;
  padding: 0.22rem;
  box-sizing: border-box;
  border: #f0f0f0 solid 2px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-result .wrap .section .box .newitem:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .search-result .wrap .section .box .newitem {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
    padding: 0.3rem;
  }
  .search-result .wrap .section .box .newitem:nth-child(3n) {
    margin-right: 4%;
  }
  .search-result .wrap .section .box .newitem:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .search-result .wrap .section .box .newitem {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.4rem;
    padding: 0.35rem;
  }
}
.search-result .wrap .section .box .newitem:hover {
  border: #CC0000 solid 2px;
}
.search-result .wrap .section .box .newitem:hover .imgbox img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.search-result .wrap .section .box .newitem:hover .textbox .date {
  color: #CC0000;
}
.search-result .wrap .section .box .newitem:hover .textbox .title {
  color: #CC0000;
}
.search-result .wrap .section .box .newitem .imgbox {
  position: relative;
  width: 100%;
  padding-bottom: 57.14285714285714%;
  overflow: hidden;
  flex-shrink: 0;
}
.search-result .wrap .section .box .newitem .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-result .wrap .section .box .newitem .textbox {
  margin-top: 0.24rem;
}
@media (max-width: 991px) {
  .search-result .wrap .section .box .newitem .textbox {
    margin-top: 0.3rem;
  }
}
.search-result .wrap .section .box .newitem .textbox .date {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 1900px) {
  .search-result .wrap .section .box .newitem .textbox .date {
    font-size: 0.8333333333333333vw;
  }
}
@media (max-width: 1260px) {
  .search-result .wrap .section .box .newitem .textbox .date {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .search-result .wrap .section .box .newitem .textbox .date {
    font-size: 14px;
  }
}
.search-result .wrap .section .box .newitem .textbox .title {
  margin-top: 0.1rem;
  font-family: "HONORSansCN-Bold";
  color: #000000;
  font-size: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 1900px) {
  .search-result .wrap .section .box .newitem .textbox .title {
    font-size: 1.041666666666667vw;
  }
}
@media (max-width: 1260px) {
  .search-result .wrap .section .box .newitem .textbox .title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .search-result .wrap .section .box .newitem .textbox .title {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .search-result .wrap .section .box .newitem .textbox .title {
    font-size: 0.28rem;
  }
}
.search-result .wrap .section .box .newitem .textbox .generalBtn {
  margin-top: 0.25rem;
  align-self: baseline;
}
@media (max-width: 991px) {
  .search-result .wrap .section .box .newitem .textbox .generalBtn {
    margin-top: 0.3rem;
  }
}
