@charset "utf-8";
@font-face {
  font-family: "HarmonyOS_Sans_SC_Light";
  src: url('../font/HarmonyOS_Sans_SC_Light.ttf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HarmonyOS_Sans_SC_Bold";
  src: url('../font/HarmonyOS_Sans_SC_Bold.ttf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HarmonyOS_Sans_SC_Medium";
  src: url('../font/HarmonyOS_Sans_SC_Medium.ttf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HarmonyOS_Sans_SC_Regular";
  src: url('../font/HarmonyOS_Sans_SC_Regular.ttf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HarmonyOS_Sans_SC_Thin";
  src: url('../font/HarmonyOS_Sans_SC_Thin.ttf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HarmonyOS_Sans_SC_Black";
  src: url('../font/HarmonyOS_Sans_SC_Black.ttf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSansCN-Bold";
  src: url('../font/SourceHanSansCN-Bold.otf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSansCN-Medium";
  src: url('../font/SOURCEHANSANSCN-MEDIUM.OTF');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CenturyGothicStd-Bold";
  src: url('../font/CenturyGothicStd-Bold.otf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CenturyGothicStd";
  src: url('../font/CenturyGothicStd.otf');
  font-style: normal;
  font-display: swap;
}
.ones-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.twos-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.clearfix:after,
.clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
.picture {
  /*position: relative;*/
  overflow: hidden;
  /*z-index: 10;*/
}
.picture img {
  transition: all 1.8s ease-in-out;
}
.each-item:hover .picture img {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  zoom: 1.1 \9;
}
/*flex 布局*/
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inline-flex {
  display: -webkit-inline-flex;
  display: inline-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: "Microsoft YaHei", "HarmonyOS_Sans_SC_Regular", "PingFang SC";
  /* COLOR */
  --active-color: #0062b1;
  --white-color: #fff;
  --88c3f5: #88c3f5;
  --e6e6e6: #e6e6e6;
  --e8e8e8: #e8e8e8;
  --e9e9e9: #e9e9e9;
  --color828: #828282;
  --act-color: #27a84b;
  --69b90f: #69b90f;
  --a6a6a6: #a6a6a6;
  --096abe: #096abe;
  --fafafa: #fafafa;
  --83b7f7: #83b7f7;
  --aaaaaa: #aaaaaa;
  --0958a6: #0958a6;
  --1758a7: #1758a7;
  --0d6cc4: #0d6cc4;
  --5b6a76: #5b6a76;
  --1580e0: #1580e0;
  --6d6d6d: #6d6d6d;
  --979797: #979797;
  --79c621: #79c621;
  --68b811: #68b811;
  --2698f3: #2698f3;
  --107bd2: #107bd2;
  --fe0000: #fe0000;
  --005bac: #005bac;
  --black-000: #000000;
  --black-222: #222222;
  --black-272: #272727;
  --black-333: #333333;
  --black-555: #555555;
  --black-666: #666666;
  --black-888: #888888;
  --black-999: #999999;
  --black-ccc: #cccccc;
  --black-cdc: #cdcdcd;
  --black-ddd: #dddddd;
  --black-111: #111111;
  --bg-f0: #f0f0f0;
  --bg-f9: #f9f9f9;
  --bg-f8: #F8F8F8;
  --bg-f7: #F7F7F7;
  --bg-f6: #F6F6F6;
  --bg-fb: #fbfbfb;
  --bg-fc: #fcfcfc;
}
@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 {
  min-height: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
  font-family: "Microsoft YaHei", "HarmonyOS_Sans_SC_Regular", "PingFang SC";
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 1580px) and (max-width: 1580px) {
  body {
    font-size: 12px;
  }
}
@media (max-width: 1580px) and (max-width: 991px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 1580px) and (max-width: 480px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: .28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
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;
}
.overflow {
  overflow: hidden;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.contain {
  width: 83.33333333333333%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .contain {
    width: 90%;
  }
}
.contain1 {
  width: 78.125%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1260px) {
  .contain1 {
    width: 83.33333333333333%;
  }
}
@media (max-width: 991px) {
  .contain1 {
    width: 90%;
  }
}
.bg-color1 {
  background-color: #fff;
}
.pt80 {
  padding-top: 0.8rem;
}
@media (max-width: 767px) {
  .pt80 {
    padding-top: 0.8rem;
  }
}
.pb80 {
  padding-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .pb80 {
    padding-bottom: 0.8rem;
  }
}
.pt90 {
  padding-top: 0.9rem;
}
@media (max-width: 767px) {
  .pt90 {
    padding-top: 0.9rem;
  }
}
.pb90 {
  padding-bottom: 0.9rem;
}
@media (max-width: 767px) {
  .pb90 {
    padding-bottom: 1rem;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .pt100 {
    padding-top: 1rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .pb100 {
    padding-bottom: 1rem;
  }
}
.pt120 {
  padding-top: 1.2rem;
}
@media (max-width: 767px) {
  .pt120 {
    padding-top: 1rem;
  }
}
.pb120 {
  padding-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .pb120 {
    padding-bottom: 1rem;
  }
}
.pt145 {
  padding-top: 1.45rem;
}
@media (max-width: 767px) {
  .pt145 {
    padding-top: 1rem;
  }
}
.pb145 {
  padding-bottom: 1.45rem;
}
@media (max-width: 767px) {
  .pb145 {
    padding-bottom: 1rem;
  }
}
.pb180 {
  padding-bottom: 1.8rem;
}
@media (max-width: 767px) {
  .pb180 {
    padding-bottom: 1.2rem;
  }
}
.font14 {
  font-size: 14px;
}
@media (max-width: 1580px) {
  .font14 {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .font14 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .font14 {
    font-size: 14px;
  }
}
.font16 {
  font-size: 16px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .font16 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .font16 {
    font-size: 14px;
  }
}
.font18 {
  font-size: 18px;
}
@media (max-width: 1580px) {
  .font18 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .font18 {
    font-size: 16px;
  }
}
.font20 {
  font-size: 20px;
}
@media (max-width: 1260px) {
  .font20 {
    font-size: .24rem;
  }
}
@media (max-width: 991px) {
  .font20 {
    font-size: .28rem;
  }
}
.font22 {
  font-size: 22px;
}
@media (max-width: 1260px) {
  .font22 {
    font-size: .26rem;
  }
}
@media (max-width: 991px) {
  .font22 {
    font-size: .3rem;
  }
}
.font24 {
  font-size: .24rem;
}
@media (max-width: 1580px) {
  .font24 {
    font-size: .32rem;
  }
}
@media (max-width: 1260px) {
  .font24 {
    font-size: .28rem;
  }
}
@media (max-width: 480px) {
  .font24 {
    font-size: .32rem;
  }
}
.font26 {
  font-size: .26rem;
}
@media (max-width: 1260px) {
  .font26 {
    font-size: .32rem;
  }
}
@media (max-width: 480px) {
  .font26 {
    font-size: .34rem;
  }
}
.font28 {
  font-size: .28rem;
}
@media (max-width: 1260px) {
  .font28 {
    font-size: .34rem;
  }
}
@media (max-width: 480px) {
  .font28 {
    font-size: .36rem;
  }
}
.font29 {
  font-size: .29rem;
}
@media (max-width: 1260px) {
  .font29 {
    font-size: .32rem;
  }
}
@media (max-width: 991px) {
  .font29 {
    font-size: .36rem;
  }
}
.font30 {
  font-size: .3rem;
}
@media (max-width: 1260px) {
  .font30 {
    font-size: .32rem;
  }
}
@media (max-width: 991px) {
  .font30 {
    font-size: .36rem;
  }
}
@media (max-width: 480px) {
  .font30 {
    font-size: .38rem;
  }
}
.font32 {
  font-size: .32rem;
}
@media (max-width: 480px) {
  .font32 {
    font-size: .4rem;
  }
}
.font36 {
  font-size: .36rem;
}
@media (max-width: 480px) {
  .font36 {
    font-size: .42rem;
  }
}
.font40 {
  font-size: .4rem;
}
@media (max-width: 1260px) {
  .font40 {
    font-size: .45rem;
  }
}
.font42 {
  font-size: .42rem;
}
@media (max-width: 480px) {
  .font42 {
    font-size: .52rem;
  }
}
.font46 {
  font-size: .46rem;
}
@media (max-width: 480px) {
  .font46 {
    font-size: .54rem;
  }
}
.font60 {
  font-size: .6rem;
}
@media (max-width: 1260px) {
  .font60 {
    font-size: .54rem;
  }
}
@media (max-width: 991px) {
  .font60 {
    font-size: .42rem;
  }
}
@media (max-width: 480px) {
  .font60 {
    font-size: .5rem;
  }
}
.public-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 .2rem;
  min-width: 1rem;
}
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}
#hi-upgrade {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
#hi-upgrade .hi-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -177px 0 0 -450px;
  width: 900px;
}
#hi-upgrade .hi-wrap .hi-title {
  font-size: 30px;
  line-height: 40px;
  color: #333;
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-close {
  margin: 10px 0;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-close:hover {
  text-decoration: underline;
}
#hi-upgrade .hi-wrap .hi-text1 {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-text1 span {
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-text1 * {
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-text2 {
  position: relative;
  margin: 60px 0;
  color: #333;
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-text2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  border-top: 1px solid #ddd;
}
#hi-upgrade .hi-wrap .hi-text2 span {
  position: relative;
  z-index: 5;
  padding: 0 30px;
  background: #fff;
}
#hi-upgrade .hi-wrap .hi-list {
  overflow: hidden;
}
#hi-upgrade .hi-wrap .hi-list li {
  display: inline-block;
  width: 16%;
}
#hi-upgrade .hi-wrap .hi-list li div {
  margin: 0 auto 5px;
  width: 50px;
  height: 50px;
}
#hi-upgrade .hi-wrap .hi-list li a {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-list li a:hover {
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
  background: url(../images/hi-llq-1.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
  background: url(../images/hi-llq-2.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
  background: url(../images/hi-llq-5.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
  background: url(../images/hi-llq-3.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
  background: url(../images/hi-llq-6.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
  background: url(../images/hi-llq-4.png) no-repeat center / 100%;
}
#c-placeholder {
  height: 1rem;
  /* height: 82px; */
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 50px;
  }
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  width: 100%;
  background: #FFFFFF;
}
.header .box {
  width: 90%;
  margin: auto;
}
.header .box .logo a {
  height: 1rem;
}
.header .box .logo a img {
  max-height: 76%;
}
@media (max-width: 991px) {
  .header .box .logo a {
    height: 60px;
  }
}
.header .box .headright .nav ul li {
  list-style: none;
  position: relative;
  padding: 0 0.48rem;
  height: 1rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 1260px) {
  .header .box .headright .nav ul li {
    padding: 0 0.3rem;
  }
}
.header .box .headright .nav ul li a {
  font-family: "HarmonyOS_Sans_SC_Regular";
  font-size: 18px;
  color: #899198;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1580px) {
  .header .box .headright .nav ul li a {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .header .box .headright .nav ul li a {
    font-size: 16px;
  }
}
.header .box .headright .nav ul li:hover a {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: var(--active-color);
}
.header .box .headright .nav ul li .navcell {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
  padding: 0.12rem 0;
  min-width: 1.6rem;
  background: var(--white-color);
  box-shadow: 10px 0px 30px rgba(0, 0, 0, 0.05);
}
.header .box .headright .nav ul li .navcell a {
  display: block;
  text-align: center;
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: #899198;
  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: 1580px) {
  .header .box .headright .nav ul li .navcell a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .header .box .headright .nav ul li .navcell a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .header .box .headright .nav ul li .navcell a {
    font-size: 14px;
  }
}
.header .box .headright .nav ul li .navcell a:hover {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: var(--active-color);
}
@media (max-width: 991px) {
  .header .box .headright .nav {
    display: none;
  }
}
.header .box .headright .searchdiv {
  position: relative;
  padding-right: 0.1rem;
  margin-right: 0.15rem;
}
@media (max-width: 991px) {
  .header .box .headright .searchdiv {
    padding-left: 6px;
    padding-right: 6px;
    margin-right: 0;
  }
}
.header .box .headright .searchdiv::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 0.18rem;
  background: rgba(255, 255, 255, 0.16);
}
.header .box .headright .searchdiv .show-search-btn {
  width: 0.24rem;
  height: 0.36rem;
  transition-duration: .3s;
  text-align: center;
  color: #fff;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 991px) {
  .header .box .headright .searchdiv .show-search-btn {
    width: 24px;
    height: 36px;
    justify-content: center;
  }
}
.header .box .headright .searchdiv .show-search-btn img {
  cursor: pointer;
  max-width: 0.2rem;
}
@media (max-width: 991px) {
  .header .box .headright .searchdiv .show-search-btn img {
    max-width: 18px;
  }
}
.header .box .headright .searchdiv .search {
  position: fixed;
  z-index: 6;
  top: 1rem;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: .5s;
  transition-delay: .5s;
}
@media (max-width: 991px) {
  .header .box .headright .searchdiv .search {
    top: 60px;
  }
}
.header .box .headright .searchdiv .search .search__container {
  position: relative;
  z-index: 2;
  background-color: #fff;
  transform: translateY(-100%) translateZ(0);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}
.header .box .headright .searchdiv .search .search__container .search-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.7rem;
}
@media (max-width: 991px) {
  .header .box .headright .searchdiv .search .search__container .search-header {
    padding-top: 25px;
    padding-bottom: 30px;
  }
}
.header .box .headright .searchdiv .search .search__container .search-header form {
	flex: 1;
  display: flex;
  max-width: 7rem;
  border-radius: 0.4rem;
  padding-left: 0.25rem;
  border: var(--black-ddd) solid 1px;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 480px) {
  .header .box .headright .searchdiv .search .search__container .search-header form {
    padding-left: 0.35rem;
  }
}
.header .box .headright .searchdiv .search .search__container .search-header form .text {
  border: none;
  outline: none;
  background: none;
  font-size: 16px;
  color: var(--black-666);
  width: calc(100% - 0.6rem);
  height: 0.56rem;
  box-sizing: border-box;
}
@media (max-width: 1580px) {
  .header .box .headright .searchdiv .search .search__container .search-header form .text {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .header .box .headright .searchdiv .search .search__container .search-header form .text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .header .box .headright .searchdiv .search .search__container .search-header form .text {
    font-size: 14px;
  }
}
.header .box .headright .searchdiv .search .search__container .search-header form .text::-webkit-input-placeholder {
  color: var(--aaaaaa);
}
.header .box .headright .searchdiv .search .search__container .search-header form .text::-moz-placeholder {
  color: var(--aaaaaa);
}
.header .box .headright .searchdiv .search .search__container .search-header form .text:-moz-placeholder {
  color: var(--aaaaaa);
}
.header .box .headright .searchdiv .search .search__container .search-header form .text:-ms-input-placeholder {
  color: var(--aaaaaa);
}
@media (max-width: 480px) {
  .header .box .headright .searchdiv .search .search__container .search-header form .text {
    width: calc(100% - 0.9rem);
    height: 0.8rem;
  }
}
.header .box .headright .searchdiv .search .search__container .search-header form .btns {
  width: 0.6rem;
  height: 0.56rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: inherit;
  background: none;
  border: none;
}
@media (max-width: 480px) {
  .header .box .headright .searchdiv .search .search__container .search-header form .btns {
    width: 0.9rem;
    height: 0.8rem;
  }
}
.header .box .headright .searchdiv .search .search__container .search-header form .btns img {
  max-width: 34%;
}
.header .box .headright .searchdiv .search .search__container .search-header .search-close {
	display: flex;
	align-items: center;
  flex-shrink: 0;
  margin-left: 0.3rem;
}
@media (max-width: 991px) {
  .header .box .headright .searchdiv .search .search__container .search-header .search-close {
    margin-left: 0.3rem;
  }
}
@media (max-width: 480px) {
  .header .box .headright .searchdiv .search .search__container .search-header .search-close {
    width: 0.5rem;
  }
}
.header .box .headright .searchdiv .search .search__container .search-header .search-close img {
  max-width: 0.28rem;
}
@media (max-width: 480px) {
  .header .box .headright .searchdiv .search .search__container .search-header .search-close img {
    max-width: 0.35rem;
  }
}
.header .box .headright .searchdiv .search.search-is-open {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.header .box .headright .searchdiv .search.search-is-open .search__container {
  transform: translateY(0) translateZ(0);
}
.header .box .headright .head-nation {
  position: relative;
}
.header .box .headright .head-nation .current {
  cursor: pointer;
  height: 1rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding-left: 0.35rem;
  background: url(../images/language.png) left center no-repeat;
  background-size: 0.2rem auto;
}
@media (max-width: 991px) {
  .header .box .headright .head-nation .current {
    height: 60px;
    padding-left: 38px;
    background: url(../images/language.png) center no-repeat;
    background-size: 18px auto;
  }
}
.header .box .headright .head-nation .current .name {
  padding-right: 0.16rem;
  background: url(../images/arrow.png) right center no-repeat;
  background-size: 0.11rem auto;
  font-size: 16px;
  color: var(--active-color);
  margin-top: 2px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  text-align: center;
}
@media (max-width: 1580px) {
  .header .box .headright .head-nation .current .name {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .header .box .headright .head-nation .current .name {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .header .box .headright .head-nation .current .name {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .header .box .headright .head-nation .current .name {
    display: none;
  }
}
.header .box .headright .head-nation ul {
  position: absolute;
  left: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0.1rem);
  transform: translate(-50%, 0.1rem);
  top: 90%;
  z-index: 100;
  background-color: var(--white-color);
  padding: 0.1rem 0px;
  text-align: left;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .header .box .headright .head-nation ul {
    top: 100%;
    padding: 10px 0px;
    min-width: 90px;
  }
}
.header .box .headright .head-nation ul li {
  list-style: none;
}
.header .box .headright .head-nation 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: 1580px) {
  .header .box .headright .head-nation ul li a {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .header .box .headright .head-nation ul li a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .header .box .headright .head-nation ul li a {
    font-size: 14px;
  }
}
.header .box .headright .head-nation ul li a:hover {
  color: var(--active-color);
}
.header .box .headright .head-nation:hover ul {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.header .menubtn {
  display: none;
  position: relative;
  width: 32px;
  height: 60px;
  cursor: pointer;
}
.header .menubtn .menu-i {
  width: 23px;
  height: 2px;
  right: 0;
  position: absolute;
  font-style: normal;
  background-color: var(--black-333);
  display: block;
  transition: all 0.5s;
  border-radius: 2px;
}
.header .menubtn .menu-i.menu-i-1 {
  top: 22px;
}
.header .menubtn .menu-i.menu-i-2 {
  top: 30px;
}
.header .menubtn .menu-i.menu-i-3 {
  top: 38px;
}
.header .menubtn.on .menu-i-1 {
  transform: translateY(8px) rotate(45deg);
}
.header .menubtn.on .menu-i-2 {
  opacity: 0;
}
.header .menubtn.on .menu-i-3 {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 991px) {
  .header .menubtn {
    display: block;
  }
}
.mbox .menubtn .menu-i-1 {
  transform: translateY(8px) rotate(45deg);
}
.mbox .menubtn .menu-i-2 {
  opacity: 0;
}
.mbox .menubtn .menu-i-3 {
  transform: translateY(-8px) rotate(-45deg);
}
.m-nav {
  position: fixed;
  top: 60px;
  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: "HarmonyOS_Sans_SC_Regular";
  line-height: 1.7;
  color: var(--black-333);
  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: "HarmonyOS_Sans_SC_Regular";
  line-height: 1.7;
  color: var(--black-333);
  font-size: 17px;
  padding: 14px 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.m-nav > ul > li .headtitle i {
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 100%;
  background: url(../images/icon51.png) center no-repeat;
  background-size: 8px auto;
  transition: all 0.4s ease;
}
.m-nav > ul > li .headtitle.on {
  color: var(--active-color);
}
.m-nav > ul > li .headtitle.on i {
  background: url(../images/icon51.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: "HarmonyOS_Sans_SC_Regular";
  font-size: 16px;
  padding: 7px 0px;
}
.m-nav > ul > li ul li:hover a {
  color: var(--active-color);
}
.m-nav > ul > li:hover > a {
  color: var(--active-color);
}
.mbox .m-nav {
  height: calc(100vh - 60px);
}
.footer {
  padding-top: 3.645833333333333%;
  background: url(../images/footerbg.png) center no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .footer {
    padding-top: 60px;
  }
}
.footer li {
  list-style: none;
}
.footer .box {
  width: 78.125%;
  margin: auto;
}
@media (max-width: 1260px) {
  .footer .box {
    width: 90%;
  }
}
.footer .box .footernav {
  width: 100%;
  margin-bottom: 5.4%;
}
@media (max-width: 991px) {
  .footer .box .footernav {
    display: none;
  }
}
.footer .box .footernav .item .title {
  font-size: 20px;
  color: var(--white-color);
  font-weight: bold;
  margin-bottom: 0.18rem;
}
@media (max-width: 1260px) {
  .footer .box .footernav .item .title {
    font-size: .24rem;
  }
}
@media (max-width: 991px) {
  .footer .box .footernav .item .title {
    font-size: .28rem;
  }
}
.footer .box .footernav .item ul li {
  margin-bottom: 8px;
}
.footer .box .footernav .item ul li a {
  font-size: 16px;
  color: var(--88c3f5);
  line-height: 1.7;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1580px) {
  .footer .box .footernav .item ul li a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .footer .box .footernav .item ul li a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .footer .box .footernav .item ul li a {
    font-size: 14px;
  }
}
.footer .box .footernav .item ul li a:hover {
  color: var(--white-color);
}
.footer .box .footernav .item .expandmore {
  color: var(--e9e9e9);
  font-size: 16px;
  line-height: 1.7;
  cursor: pointer;
}
@media (max-width: 1580px) {
  .footer .box .footernav .item .expandmore {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .footer .box .footernav .item .expandmore {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .footer .box .footernav .item .expandmore {
    font-size: 14px;
  }
}
.footer .box .footerinfor {
  padding-top: 2.4%;
  padding-bottom: 0.24rem;
  border-top: #1a7acc solid 1px;
}
@media (max-width: 991px) {
  .footer .box .footerinfor {
    flex-wrap: wrap;
    border-top: none;
    padding-top: 0;
    padding-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .footer .box .footerinfor .textbox {
    width: 100%;
  }
}
.footer .box .footerinfor .textbox .txt {
  margin-bottom: 0.15rem;
}
@media (max-width: 991px) {
  .footer .box .footerinfor .textbox .txt {
    width: 100%;
    margin-bottom: 0.25rem;
  }
}
.footer .box .footerinfor .textbox .txt .sp1 {
  font-family: "SourceHanSansCN-Bold";
  color: var(--white-color);
  font-size: .3rem;
  line-height: 1;
}
@media (max-width: 1260px) {
  .footer .box .footerinfor .textbox .txt .sp1 {
    font-size: .32rem;
  }
}
@media (max-width: 991px) {
  .footer .box .footerinfor .textbox .txt .sp1 {
    font-size: .36rem;
  }
}
@media (max-width: 480px) {
  .footer .box .footerinfor .textbox .txt .sp1 {
    font-size: .38rem;
  }
}
.footer .box .footerinfor .textbox .txt .sp2 {
  color: var(--88c3f5);
  font-size: 16px;
}
@media (max-width: 1580px) {
  .footer .box .footerinfor .textbox .txt .sp2 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .footer .box .footerinfor .textbox .txt .sp2 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .footer .box .footerinfor .textbox .txt .sp2 {
    font-size: 14px;
  }
}
.footer .box .footerinfor .textbox ul {
  column-gap: 0.48rem;
}
.footer .box .footerinfor .textbox ul li {
  font-size: 16px;
  color: var(--white-color);
  margin-bottom: 5px;
}
@media (max-width: 1580px) {
  .footer .box .footerinfor .textbox ul li {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .footer .box .footerinfor .textbox ul li {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .footer .box .footerinfor .textbox ul li {
    font-size: 14px;
  }
}
.footer .box .footerinfor .textbox ul li span {
  color: var(--88c3f5);
}
@media (max-width: 991px) {
  .footer .box .footerinfor .codebox {
    width: 100%;
    margin-top: 30px;
  }
}
.footer .box .footerinfor .codebox ul {
  column-gap: 0.28rem;
}
@media (max-width: 991px) {
  .footer .box .footerinfor .codebox ul {
    justify-content: center;
    column-gap: 20px;
  }
}
.footer .box .footerinfor .codebox ul li .img {
  max-width: 1.03rem;
  margin-bottom: 0.1rem;
}
@media (max-width: 991px) {
  .footer .box .footerinfor .codebox ul li .img {
    max-width: 96px;
    margin-bottom: 10px;
  }
}
.footer .box .footerinfor .codebox ul li .text {
  text-align: center;
  color: var(--88c3f5);
  font-size: 16px;
}
@media (max-width: 1580px) {
  .footer .box .footerinfor .codebox ul li .text {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .footer .box .footerinfor .codebox ul li .text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .footer .box .footerinfor .codebox ul li .text {
    font-size: 14px;
  }
}
.footer .box .footerbottom {
  padding: 0.24rem 0;
  border-top: #1a7acc solid 1px;
}
@media (max-width: 991px) {
  .footer .box .footerbottom {
    padding: 20px 0;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.footer .box .footerbottom .copylink {
  font-size: 14px;
  color: var(--88c3f5);
  line-height: 1.7;
}
@media (max-width: 1580px) {
  .footer .box .footerbottom .copylink {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .footer .box .footerbottom .copylink {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .footer .box .footerbottom .copylink {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .footer .box .footerbottom .copylink {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
.footer .box .footerbottom .copylink .name {
  color: var(--white-color);
  margin: 0 12px;
}
.footer .box .footerbottom .copylink a {
  color: var(--88c3f5);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .box .footerbottom .copylink a:hover {
  color: var(--white-color);
}
.footer .box .footerbottom .copylink .poweredBy {
  margin-left: 0.9rem;
  color: #2488dd;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .footer .box .footerbottom .copylink .poweredBy {
    display: block;
    margin-left: 0;
    width: 100%;
    margin-top: 5px;
  }
}
.footer .box .footerbottom .copylink .poweredBy a {
  color: #2488dd;
}
.footer .box .footerbottom .copylink .poweredBy:hover {
  color: var(--white-color);
}
.footer .box .footerbottom .copylink .poweredBy:hover a {
  color: var(--white-color);
}
@media (max-width: 991px) {
  .footer .box .footerbottom .footershare {
    margin-bottom: 20px;
  }
}
.footer .box .footerbottom .footershare ul {
  column-gap: 10px;
}
.footer .box .footerbottom .footershare ul li {
  position: relative;
}
.footer .box .footerbottom .footershare ul li a {
  display: inline-block;
  width: 0.32rem;
  text-align: center;
}
@media (max-width: 991px) {
  .footer .box .footerbottom .footershare ul li a {
    width: 30px;
  }
}
.footer .box .footerbottom .footershare ul li a img {
  width: 62.5%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  opacity: 0.5;
}
.footer .box .footerbottom .footershare ul li a:hover img {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}
.footer .box .footerbottom .footershare ul li .qrcode {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 100%;
  width: 1.03rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .footer .box .footerbottom .footershare ul li .qrcode {
    width: 96px;
  }
}
.footer .box .footerbottom .footershare ul li .qrcode .img {
  overflow: hidden;
  background-color: #FFFFFF;
}
.footer .box .footerbottom .footershare ul li .qrcode .img img {
  width: 100%;
}
.footer .box .footerbottom .footershare ul li .qrcode .sjx {
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 8px;
  border-color: #FFFFFF transparent transparent transparent;
}
.footer .box .footerbottom .footershare ul li:hover .qrcode {
  opacity: 1;
  visibility: visible;
}
/*banner*/
.lunbotu {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.lunbotu .swiper-slide a {
  position: relative;
  display: block;
  width: 100%;
}
.lunbotu .swiper-slide a > img {
  width: 100%;
}
.lunbotu .swiper-slide a .i-banner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 78.125%;
}
@media (max-width: 1260px) {
  .lunbotu .swiper-slide a .i-banner {
    width: 83.33333333333333%;
  }
}
@media (max-width: 991px) {
  .lunbotu .swiper-slide a .i-banner {
    width: 90%;
    top: 18%;
    transform: translate(-50%, 0);
  }
}
.lunbotu .swiper-slide a .i-banner .box {
  width: 48%;
  text-align: left;
}
@media (max-width: 991px) {
  .lunbotu .swiper-slide a .i-banner .box {
    width: 100%;
  }
}
.lunbotu .swiper-slide a .i-banner .box .t1 {
  font-family: "SourceHanSansCN-Bold";
  color: var(--active-color);
  font-size: .6rem;
  line-height: 1.2;
  word-break: break-word;
  text-transform: uppercase;
}
@media (max-width: 1260px) {
  .lunbotu .swiper-slide a .i-banner .box .t1 {
    font-size: .54rem;
  }
}
@media (max-width: 991px) {
  .lunbotu .swiper-slide a .i-banner .box .t1 {
    font-size: .42rem;
  }
}
@media (max-width: 480px) {
  .lunbotu .swiper-slide a .i-banner .box .t1 {
    font-size: .5rem;
  }
}
.lunbotu .swiper-slide a .i-banner .box .t2 {
  margin-top: 10px;
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: var(--color828);
  font-size: .3rem;
  word-break: break-word;
}
@media (max-width: 1260px) {
  .lunbotu .swiper-slide a .i-banner .box .t2 {
    font-size: .32rem;
  }
}
@media (max-width: 991px) {
  .lunbotu .swiper-slide a .i-banner .box .t2 {
    font-size: .36rem;
  }
}
@media (max-width: 480px) {
  .lunbotu .swiper-slide a .i-banner .box .t2 {
    font-size: .38rem;
  }
}
@media (max-width: 1260px) {
  .lunbotu .swiper-slide a .i-banner .box .t2 {
    font-size: .24rem;
  }
}
@media (max-width: 1260px) and (max-width: 1580px) {
  .lunbotu .swiper-slide a .i-banner .box .t2 {
    font-size: .32rem;
  }
}
@media (max-width: 1260px) and (max-width: 1260px) {
  .lunbotu .swiper-slide a .i-banner .box .t2 {
    font-size: .28rem;
  }
}
@media (max-width: 1260px) and (max-width: 480px) {
  .lunbotu .swiper-slide a .i-banner .box .t2 {
    font-size: .32rem;
  }
}
@media (max-width: 991px) {
  .lunbotu .swiper-slide a .i-banner .box .t2 {
    font-size: 20px;
  }
}
@media (max-width: 991px) and (max-width: 1260px) {
  .lunbotu .swiper-slide a .i-banner .box .t2 {
    font-size: .24rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .lunbotu .swiper-slide a .i-banner .box .t2 {
    font-size: .28rem;
  }
}
@media (max-width: 767px) {
  .lunbotu .swiper-slide a .i-banner .box .t2 {
    font-size: 18px;
  }
}
@media (max-width: 767px) and (max-width: 1580px) {
  .lunbotu .swiper-slide a .i-banner .box .t2 {
    font-size: 15px;
  }
}
@media (max-width: 767px) and (max-width: 480px) {
  .lunbotu .swiper-slide a .i-banner .box .t2 {
    font-size: 16px;
  }
}
.lunbotu .swiper-pagination {
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
}
@media (max-width: 1580px) {
  .lunbotu .swiper-pagination {
    bottom: 0.5rem;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }
}
@media (max-width: 1260px) {
  .lunbotu .swiper-pagination {
    bottom: 0.3rem;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
@media (max-width: 991px) {
  .lunbotu .swiper-pagination {
    bottom: 0.1rem;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
}
.lunbotu .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  margin: 0 2px;
  cursor: pointer;
  background: none;
  width: auto;
  height: auto;
  opacity: 1;
}
.lunbotu .swiper-pagination .swiper-pagination-bullet svg {
  display: block;
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 5;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
.lunbotu .swiper-pagination .swiper-pagination-bullet svg circle {
  stroke-width: 1px;
  stroke: var(--act-color);
  stroke-dasharray: 300%;
  stroke-dashoffset: 300%;
}
.lunbotu .swiper-pagination .swiper-pagination-bullet span {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid transparent;
  border-radius: 50%;
  box-sizing: border-box;
}
.lunbotu .swiper-pagination .swiper-pagination-bullet span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--active-color);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.49;
}
.lunbotu .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active svg circle {
  stroke-dashoffset: 0;
}
.lunbotu .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active span::after {
  background: var(--act-color);
  opacity: 1;
}
.mImg {
  display: none;
}
@media (max-width: 991px) {
  .mImg {
    display: block;
  }
}
@media (max-width: 991px) {
  .pImg {
    display: none;
  }
}
.relative {
  position: relative;
}
.relative .obanner .bannerTitle {
  bottom: 1.5rem;
}
@media (max-width: 991px) {
  .relative .obanner .bannerTitle {
    bottom: 0.7rem;
  }
}
.relative .obanner .bannerTitle .box {
  max-width: 9rem;
}
.obanner {
  position: relative;
  z-index: 5;
}
.obanner > img {
  width: 100%;
}
.obanner .bannerImg {
  display: none;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.obanner .bannerTitle {
  position: absolute;
  left: 0;
  bottom: 0.7rem;
  width: 100%;
}
.obanner .bannerTitle .box {
  display: inline-block;
  max-width: 7.5rem;
}
.obanner .bannerTitle .box .t1 {
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: var(--83b7f7);
  font-size: 16px;
}
@media (max-width: 1580px) {
  .obanner .bannerTitle .box .t1 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .obanner .bannerTitle .box .t1 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .obanner .bannerTitle .box .t1 {
    font-size: 14px;
  }
}
.obanner .bannerTitle .box .t1 img {
  display: inline-block;
  margin-right: 8px;
}
.obanner .bannerTitle .box .t2 {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: var(--black-000);
  font-size: .36rem;
}
@media (max-width: 480px) {
  .obanner .bannerTitle .box .t2 {
    font-size: .42rem;
  }
}
.obanner .bannerTitle .box .t3 {
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-333);
  line-height: 1.7;
  margin-top: 0.25rem;
}
@media (max-width: 1580px) {
  .obanner .bannerTitle .box .t3 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .obanner .bannerTitle .box .t3 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .obanner .bannerTitle .box .t3 {
    font-size: 14px;
  }
}
.bgcolor {
  background: var(--fafafa);
}
@media (max-width: 991px) {
  .bgcolor .classify {
    background: var(--fafafa);
  }
}
.classify {
  position: relative;
  top: -1.1rem;
  width: 100%;
  z-index: 10;
}
@media (max-width: 991px) {
  .classify {
    position: sticky;
    top: 60px;
    bottom: auto;
    margin-top: 0.8rem;
    background: #FFFFFF;
  }
}
.classify .contain ul {
  padding: 0;
}
@media (max-width: 991px) {
  .classify .contain ul {
    flex-wrap: nowrap;
    overflow: auto;
  }
}
.classify .contain ul li {
  list-style: none;
  margin-right: 0.2rem;
}
@media (max-width: 991px) {
  .classify .contain ul li {
    padding: 0.15rem 0;
  }
}
.classify .contain ul li a {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 0.5rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-555);
  white-space: nowrap;
  background: var(--white-color);
  text-align: center;
  padding: 0 0.2rem;
  border-radius: 0.25rem;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: hidden;
}
@media (max-width: 1580px) {
  .classify .contain ul li a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .classify .contain ul li a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .classify .contain ul li a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .classify .contain ul li a {
    background: var(--e9e9e9);
  }
}
@media (max-width: 767px) {
  .classify .contain ul li a {
    height: 0.65rem;
    padding: 0 0.35rem;
    border-radius: 0.5rem;
  }
}
.classify .contain ul li a:hover {
  color: var(--white-color);
  background: var(--096abe);
}
.classify .contain ul li.active a {
  color: var(--white-color);
  background: var(--096abe);
}
.o-title .t1 {
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: var(--83b7f7);
  font-size: 16px;
}
@media (max-width: 1580px) {
  .o-title .t1 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .o-title .t1 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .o-title .t1 {
    font-size: 14px;
  }
}
.o-title .t1 img {
  display: inline-block;
  margin-right: 0.08rem;
}
.o-title .t2 {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: var(--black-000);
  font-size: .36rem;
}
@media (max-width: 480px) {
  .o-title .t2 {
    font-size: .42rem;
  }
}
.viewmore {
  margin-top: 0.54rem;
}
@media (max-width: 1260px) {
  .viewmore {
    margin-top: 0.45rem;
  }
}
@media (max-width: 991px) {
  .viewmore {
    margin-top: 0.35rem;
  }
}
.viewmore span {
  color: var(--black-000);
  font-size: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1580px) {
  .viewmore span {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .viewmore span {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .viewmore span {
    font-size: 16px;
  }
}
@media (max-width: 767px) and (max-width: 1580px) {
  .viewmore span {
    font-size: 13px;
  }
}
@media (max-width: 767px) and (max-width: 991px) {
  .viewmore span {
    font-size: 14px;
  }
}
@media (max-width: 767px) and (max-width: 480px) {
  .viewmore span {
    font-size: 14px;
  }
}
.viewmore span i {
  position: relative;
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  margin-right: 0.18rem;
  background: var(--active-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.viewmore span i::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/icon6.png) center no-repeat;
  background-size: 100% auto;
}
@media (max-width: 991px) {
  .viewmore span i {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.viewmore span:hover i {
  background: var(--act-color);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.i-title.center {
  text-align: center;
}
.i-title .t1 {
  font-family: "SourceHanSansCN-Bold";
  font-size: .4rem;
  color: var(--black-333);
}
@media (max-width: 1260px) {
  .i-title .t1 {
    font-size: .45rem;
  }
}
.i-title .t2 {
  font-size: 16px;
  color: #b4b3b3;
}
@media (max-width: 1580px) {
  .i-title .t2 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .i-title .t2 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .i-title .t2 {
    font-size: 14px;
  }
}
.i-title .t3 {
  font-family: "SourceHanSansCN-Bold";
  font-size: .36rem;
  color: var(--black-333);
}
@media (max-width: 480px) {
  .i-title .t3 {
    font-size: .42rem;
  }
}
.i-title.white .t1 {
  color: var(--white-color);
}
.i-title.white .t2 {
  color: #b4b3b3;
}
.index_product .box {
  margin-top: 5%;
}
@media (max-width: 991px) {
  .index_product .box {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .index_product .box {
    margin-top: 0.5rem;
  }
}
.index_product .box .left_w {
  width: calc((100% - 0.3rem) / 2);
}
@media (max-width: 991px) {
  .index_product .box .left_w {
    width: 100%;
    margin-bottom: 25px;
  }
}
.index_product .box .left_w .item .textbox {
  padding-left: 8.6%;
  padding-right: 8.6%;
}
@media (max-width: 991px) {
  .index_product .box .left_w .item .textbox {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.index_product .box .right_w {
  width: calc((100% - 0.3rem) / 2);
  row-gap: 0.3rem;
}
@media (max-width: 991px) {
  .index_product .box .right_w {
    width: 100%;
    row-gap: 25px;
  }
}
.index_product .box .right_w .item .imgbox {
  height: 100%;
}
.index_product .box .right_w .item .imgbox img {
  height: 100%;
  object-fit: cover;
}
.index_product .box .right_w .item .textbox {
  width: 56%;
  padding-left: 4.9%;
  padding-right: 4.9%;
}
.index_product .box .right_w .item .textbox.textright {
  right: 0;
}
@media (max-width: 991px) {
  .index_product .box .right_w .item .textbox {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.index_product .box .right_w .item.item2 .textbox {
  width: 70%;
}
.index_product .box .item {
  position: relative;
  display: block;
  flex: 1;
  width: 100%;
  border-radius: 0.12rem;
  overflow: hidden;
}
.index_product .box .item .imgbox {
  display: block;
  width: 100%;
}
.index_product .box .item .imgbox img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.index_product .box .item .textbox {
  position: absolute;
  top: 0.6rem;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 540px) {
  .index_product .box .item .textbox {
    top: 0.4rem;
  }
}
.index_product .box .item .textbox .t1 {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: var(--active-color);
  font-size: .3rem;
  margin-bottom: 0.12rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1260px) {
  .index_product .box .item .textbox .t1 {
    font-size: .32rem;
  }
}
@media (max-width: 991px) {
  .index_product .box .item .textbox .t1 {
    font-size: .36rem;
  }
}
@media (max-width: 480px) {
  .index_product .box .item .textbox .t1 {
    font-size: .38rem;
  }
}
@media (max-width: 540px) {
  .index_product .box .item .textbox .t1 {
    font-size: .28rem;
  }
}
@media (max-width: 540px) and (max-width: 1260px) {
  .index_product .box .item .textbox .t1 {
    font-size: .34rem;
  }
}
@media (max-width: 540px) and (max-width: 480px) {
  .index_product .box .item .textbox .t1 {
    font-size: .36rem;
  }
}
.index_product .box .item .textbox .t2 {
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: var(--black-000);
  font-size: 20px;
  margin-bottom: 0.24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 1260px) {
  .index_product .box .item .textbox .t2 {
    font-size: .24rem;
  }
}
@media (max-width: 991px) {
  .index_product .box .item .textbox .t2 {
    font-size: .28rem;
  }
}
@media (max-width: 540px) {
  .index_product .box .item .textbox .t2 {
    font-size: 0.28rem;
  }
}
.index_product .box .item .textbox .t3 {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--black-333);
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 1580px) {
  .index_product .box .item .textbox .t3 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .index_product .box .item .textbox .t3 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .index_product .box .item .textbox .t3 {
    font-size: 14px;
  }
}
@media (max-width: 540px) {
  .index_product .box .item .textbox .t3 {
    font-size: 0.24rem;
  }
}
.index_product .box .item .textbox .more {
  margin-top: 0.3rem;
}
@media (max-width: 540px) {
  .index_product .box .item .textbox .more {
    margin-top: 0.2rem;
  }
}
.index_product .box .item .textbox .more span {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--black-000);
  font-size: 14px;
}
@media (max-width: 1580px) {
  .index_product .box .item .textbox .more span {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .index_product .box .item .textbox .more span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .index_product .box .item .textbox .more span {
    font-size: 14px;
  }
}
.index_product .box .item .textbox .more span i {
  position: relative;
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  margin-left: 0.08rem;
  border-radius: 50%;
  background: var(--e6e6e6);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.index_product .box .item .textbox .more span i::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/icon7.png) center no-repeat;
  background-size: 0.04rem auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .index_product .box .item .textbox .more span i::before {
    background: url(../images/icon7.png) center no-repeat;
    background-size: 4px auto;
  }
}
@media (max-width: 991px) {
  .index_product .box .item .textbox .more span i {
    width: 28px;
    height: 28px;
    margin-left: 8px;
  }
}
.index_product .box .item .textbox.textright {
  text-align: right;
}
.index_product .box .item:hover .textbox .t1 {
  color: var(--act-color);
}
.index_product .box .item:hover .textbox .more i {
  background: var(--act-color);
}
.index_product .box .item:hover .textbox .more i::before {
  background: url(../images/icon8.png) center no-repeat;
  background-size: 0.04rem auto;
}
@media (max-width: 991px) {
  .index_product .box .item:hover .textbox .more i::before {
    background: url(../images/icon8.png) center no-repeat;
    background-size: 4px auto;
  }
}
.index_product .box .item:hover .imgbox img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.index_solution {
  position: relative;
}
.index_solution .i-title {
  position: absolute;
  left: 0;
  top: 1rem;
  z-index: 12;
  width: 100%;
}
.index_solution .box .swiper-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.index_solution .box .swiper-container .swiper-wrapper {
  align-items: stretch;
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  height: auto;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  width: 25%;
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide.on1 {
  width: 42.96875% !important;
}
@media (max-width: 1024px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide.on1 {
    width: 100% !important;
  }
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide.on2 {
  width: 19.01041666666667% !important;
}
@media (max-width: 1024px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide.on2 {
    width: 100% !important;
  }
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  height: calc(100vh - 1rem);
}
@media (max-width: 480px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a {
    height: 75vh;
  }
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 24, 86, 0.5);
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .imgbox {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 6.66rem;
  width: 100%;
  border-radius: 0.3rem 0 0 0;
  padding: 0.3rem 0.4rem;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1024px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox {
    max-width: 80%;
    width: 80%;
    padding: 25px;
  }
}
@media (max-width: 480px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox {
    max-width: 90%;
    width: 90%;
    padding: 20px;
  }
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t1 {
  position: absolute;
  left: 0.4rem;
  top: -0.16rem;
  font-family: "SourceHanSansCN-Bold";
  font-size: 0.6rem;
  background: -webkit-linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0));
  background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1260px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t1 {
    font-size: .42rem;
  }
}
@media (max-width: 991px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t1 {
    font-size: .48rem;
  }
}
@media (max-width: 480px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t1 {
    font-size: .6rem;
  }
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t2 {
  max-width: 72%;
  color: var(--white-color);
  font-size: .24rem;
}
@media (max-width: 1580px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t2 {
    font-size: .32rem;
  }
}
@media (max-width: 1260px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t2 {
    font-size: .28rem;
  }
}
@media (max-width: 480px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t2 {
    font-size: .32rem;
  }
}
@media (max-width: 540px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t2 {
    font-size: 0.36rem;
  }
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t3 {
  max-width: 72%;
  color: var(--white-color);
  font-size: 16px;
  line-height: 1.7;
  opacity: 0;
  max-height: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1580px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t3 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t3 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t3 {
    font-size: 14px;
  }
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t4 {
  position: absolute;
  right: 0.3rem;
  bottom: -0.2rem;
  font-family: "SourceHanSansCN-Bold";
  color: var(--white-color);
  font-size: 2rem;
  opacity: 0;
  line-height: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1260px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t4 {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t4 {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .t4 {
    right: 0;
    font-size: 1.8rem;
  }
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide a .textbox .line {
  display: block;
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
  width: 0.36rem;
  height: 0.04rem;
  background: var(--white-color);
  -webkit-transform: translateY(18px);
  transform: translateY(18px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide.on1 a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/img10.png) top center no-repeat;
  background-size: 100% auto;
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide.on1 .textbox {
  background: var(--69b90f);
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide.on1 .textbox .t1 {
  opacity: 0;
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide.on1 .textbox .t3 {
  opacity: 1;
  max-height: 200px;
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide.on1 .textbox .t4 {
  opacity: 0.1;
}
.index_solution .box .swiper-container .swiper-wrapper .swiper-slide.on1 .textbox .line {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/img10.png) top center no-repeat;
    background-size: 100% auto;
  }
}
@media (max-width: 1024px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .textbox {
    background: var(--69b90f);
  }
}
@media (max-width: 1024px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .textbox .t1 {
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .textbox .t3 {
    opacity: 1;
    max-height: 200px;
  }
}
@media (max-width: 1024px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .textbox .t4 {
    opacity: 0.1;
  }
}
@media (max-width: 1024px) {
  .index_solution .box .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .textbox .line {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.index_solution .swiper-button-next,
.index_solution .swiper-button-prev {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .index_solution .swiper-button-next,
  .index_solution .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}
.index_solution .swiper-button-prev,
.index_solution .swiper-container-rtl .swiper-button-next {
  background: #5c78d2 url(../images/icon9a.png) center no-repeat;
  background-size: 20.83333333333333% auto;
  left: 6.7%;
  right: auto;
}
@media (max-width: 991px) {
  .index_solution .swiper-button-prev,
  .index_solution .swiper-container-rtl .swiper-button-next {
    left: 5%;
  }
}
.index_solution .swiper-button-next,
.index_solution .swiper-container-rtl .swiper-button-prev {
  background: #5c78d2 url(../images/icon10a.png) center no-repeat;
  background-size: 20.83333333333333% auto;
  right: 6.7%;
  left: auto;
}
@media (max-width: 991px) {
  .index_solution .swiper-button-next,
  .index_solution .swiper-container-rtl .swiper-button-prev {
    right: 5%;
  }
}
.index_solution .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background: rgba(0, 0, 0, 0.59) url(../images/icon10.png) center no-repeat;
  background-size: 20.83333333333333% auto;
}
.index_solution .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  background: rgba(0, 0, 0, 0.59) url(../images/icon9.png) center no-repeat;
  background-size: 20.83333333333333% auto;
}
.index_about {
  position: relative;
  min-height: 56.25vw;
  box-sizing: border-box;
}
@media (max-width: 1260px) {
  .index_about {
    padding-bottom: 2.4rem;
  }
}
.index_about .bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index_about .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_about .contain .box {
  margin-top: 3.75%;
}
.index_about .contain .box .subtit {
  width: 50%;
  font-size: 18px;
  color: var(--black-000);
  font-family: "HarmonyOS_Sans_SC_Bold";
  margin-bottom: 0.2rem;
}
@media (max-width: 1580px) {
  .index_about .contain .box .subtit {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .index_about .contain .box .subtit {
    font-size: 16px;
  }
}
@media (max-width: 1260px) {
  .index_about .contain .box .subtit {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .index_about .contain .box .subtit {
    width: 100%;
  }
}
.index_about .contain .box .text {
  width: 50%;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-333);
  line-height: 2;
}
@media (max-width: 1580px) {
  .index_about .contain .box .text {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .index_about .contain .box .text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .index_about .contain .box .text {
    font-size: 14px;
  }
}
@media (max-width: 1260px) {
  .index_about .contain .box .text {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .index_about .contain .box .text {
    width: 100%;
  }
}
.index_about .contain .box .more {
  margin-top: 0.35rem;
}
.index_about .contain .box .more a {
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-333);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1580px) {
  .index_about .contain .box .more a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .index_about .contain .box .more a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .index_about .contain .box .more a {
    font-size: 14px;
  }
}
.index_about .contain .box .more a i {
  display: inline-block;
  margin-left: 0.1rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--active-color) url(../images/icon14.png) center no-repeat;
  background-size: 52.38% auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 480px) {
  .index_about .contain .box .more a i {
    width: 0.45rem;
    height: 0.45rem;
  }
}
.index_about .contain .box .more a:hover {
  color: var(--act-color);
}
.index_about .contain .box .more a:hover i {
  background: var(--act-color) url(../images/icon14.png) center no-repeat;
  background-size: 52.38% auto;
}
.index_about .contain .box .index_num {
  margin-top: 0.4rem;
}
.index_about .contain .box .index_num ul {
  column-gap: 1.4rem;
  padding: 0;
}
@media (max-width: 1260px) {
  .index_about .contain .box .index_num ul {
    column-gap: 0.7rem;
  }
}
@media (max-width: 480px) {
  .index_about .contain .box .index_num ul {
    column-gap: 0.3rem;
  }
}
.index_about .contain .box .index_num ul li {
  max-width: 30%;
  list-style: none;
}
.index_about .contain .box .index_num ul li .t1 {
  color: var(--active-color);
  text-align: center;
}
.index_about .contain .box .index_num ul li .t1 .timer {
  font-family: "CenturyGothicStd-Bold";
  font-size: 0.7rem;
}
@media (max-width: 1260px) {
  .index_about .contain .box .index_num ul li .t1 .timer {
    font-size: 0.6rem;
  }
}
.index_about .contain .box .index_num ul li .t1 .sp {
  font-family: "CenturyGothicStd";
  font-size: 0.24rem;
}
.index_about .contain .box .index_num ul li .t2 {
  text-align: center;
  font-size: 18px;
  font-family: "HarmonyOS_Sans_SC_Medium";
  color: var(--black-000);
}
@media (max-width: 1580px) {
  .index_about .contain .box .index_num ul li .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .index_about .contain .box .index_num ul li .t2 {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .index_about .contain .box .index_num ul li .t2 {
    font-size: 14px;
  }
}
.index_about .contain .box .index_num ul li .t2 img {
  display: inline-block;
  max-width: 0.3rem;
  margin-right: 0.05rem;
  position: relative;
  top: 0.02rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .index_about .contain .box .index_num ul li .t2 img {
    max-width: 0.25rem;
  }
}
.about {
  position: relative;
  min-height: 56.25vw;
  box-sizing: border-box;
}
@media (max-width: 1260px) {
  .about {
    padding-bottom: 2.4rem;
  }
}
.about .bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .contain1 .box {
  margin-top: 3.75%;
}
.about .contain1 .box .subtit {
  width: 45%;
  font-size: 18px;
  color: var(--black-000);
  font-family: "HarmonyOS_Sans_SC_Bold";
  margin-bottom: 0.2rem;
}
@media (max-width: 1580px) {
  .about .contain1 .box .subtit {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .about .contain1 .box .subtit {
    font-size: 16px;
  }
}
@media (max-width: 1260px) {
  .about .contain1 .box .subtit {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .about .contain1 .box .subtit {
    width: 100%;
  }
}
.about .contain1 .box .text {
  width: 45%;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-333);
  line-height: 2;
}
@media (max-width: 1580px) {
  .about .contain1 .box .text {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .about .contain1 .box .text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .about .contain1 .box .text {
    font-size: 14px;
  }
}
@media (max-width: 1260px) {
  .about .contain1 .box .text {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .about .contain1 .box .text {
    width: 100%;
  }
}
.index_new .wrap .i-title {
  flex: 1;
}
.index_new .wrap .more a {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--black-333);
  font-size: 16px;
}
@media (max-width: 1580px) {
  .index_new .wrap .more a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .index_new .wrap .more a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .index_new .wrap .more a {
    font-size: 14px;
  }
}
.index_new .wrap .more a i {
  width: 0.36rem;
  height: 0.36rem;
  margin-right: 0.1rem;
  border-radius: 50%;
  background: var(--69b90f) url(../images/icon15.png) center no-repeat;
  background-size: 100% auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 480px) {
  .index_new .wrap .more a i {
    width: 0.45rem;
    height: 0.45rem;
  }
}
.index_new .wrap .more a:hover {
  color: var(--69b90f);
}
.index_new .wrap .more a:hover i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.index_new .box {
  margin-top: 5%;
}
@media (max-width: 991px) {
  .index_new .box {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .index_new .box {
    margin-top: 0.5rem;
  }
}
.index_new .box .t1 {
  color: var(--black-333);
  font-size: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1260px) {
  .index_new .box .t1 {
    font-size: .24rem;
  }
}
@media (max-width: 991px) {
  .index_new .box .t1 {
    font-size: .28rem;
  }
}
@media (max-width: 480px) {
  .index_new .box .t1 {
    font-size: 0.32rem;
  }
}
.index_new .box .t2 {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--black-333);
  font-size: 16px;
  margin-top: 0.12rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1580px) {
  .index_new .box .t2 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .index_new .box .t2 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .index_new .box .t2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .index_new .box .t2 {
    margin-top: 10px;
  }
}
.index_new .box .t3 {
  font-family: "CenturyGothicStd";
  color: var(--a6a6a6);
  font-size: 16px;
  margin-top: 0.1rem;
}
@media (max-width: 1580px) {
  .index_new .box .t3 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .index_new .box .t3 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .index_new .box .t3 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .index_new .box .t3 {
    margin-top: 10px;
  }
}
.index_new .box .left_w {
  width: 61.25%;
}
@media (max-width: 1024px) {
  .index_new .box .left_w {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .index_new .box .left_w {
    width: 100%;
    margin-bottom: 25px;
  }
}
.index_new .box .left_w .swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .index_new .box .left_w .swiper {
    padding-bottom: 40px;
  }
}
.index_new .box .left_w .swiper ul {
  padding: 0;
  height: 100%;
}
.index_new .box .left_w .swiper ul li {
  list-style: none;
  padding-right: 0.3rem;
  box-sizing: border-box;
  height: auto;
}
@media (max-width: 991px) {
  .index_new .box .left_w .swiper ul li {
    padding-right: 0;
  }
}
.index_new .box .left_w .swiper ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--fafafa);
}
.index_new .box .left_w .swiper ul li a .textbox {
  flex: 1;
  padding: 0.15rem 0.2rem;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1024px) {
  .index_new .box .left_w .swiper ul li a .textbox {
    padding: 25px;
  }
}
.index_new .box .left_w .swiper ul li a .imgbox {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.index_new .box .left_w .swiper ul li a .imgbox img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.index_new .box .left_w .swiper ul li a .imgbox .tag {
  position: absolute;
  left: 0.2rem;
  bottom: 0.15rem;
}
@media (max-width: 991px) {
  .index_new .box .left_w .swiper ul li a .imgbox .tag {
    left: 20px;
    bottom: 20px;
  }
}
.index_new .box .left_w .swiper ul li a:hover .textbox {
  background: var(--096abe);
}
.index_new .box .left_w .swiper ul li a:hover .textbox .t1 {
  color: var(--white-color);
}
.index_new .box .left_w .swiper ul li a:hover .textbox .t2 {
  color: var(--black-ddd);
}
.index_new .box .left_w .swiper ul li a:hover .imgbox img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.index_new .box .left_w .swiper .swiper-pagination {
  display: none;
}
@media (max-width: 991px) {
  .index_new .box .left_w .swiper .swiper-pagination {
    display: block;
  }
}
.index_new .box .right_w {
  width: 38.75%;
  background: var(--fafafa);
  padding-top: 0.2rem;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .index_new .box .right_w {
    width: 50%;
    padding: 25px 25px 10px;
  }
}
@media (max-width: 991px) {
  .index_new .box .right_w {
    width: 100%;
  }
}
.index_new .box .right_w .tag {
  margin-left: 0.2rem;
}
.index_new .box .right_w ul {
  padding: 0;
  flex: 1;
  margin-top: 0.1rem;
}
.index_new .box .right_w ul li {
  flex: 1;
  list-style: none;
  padding: 0.15rem 0.2rem;
  border-bottom: #f0f0f0 solid 1px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .index_new .box .right_w ul li {
    padding: 20px 0;
  }
}
.index_new .box .right_w ul li:hover {
  background: var(--096abe);
}
.index_new .box .right_w ul li:hover .t1 {
  color: var(--white-color);
}
.index_new .box .right_w ul li:hover .t2 {
  color: var(--black-ddd);
}
.index_new .box .right_w ul li:last-child {
  border-bottom: none;
}
.index_new .box .tag span {
  min-width: 0.86rem;
  height: 0.34rem;
  background: var(--69b90f);
  border-radius: 0.1rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 14px;
  color: var(--white-color);
  padding: 0 0.1rem;
  box-sizing: border-box;
}
@media (max-width: 1580px) {
  .index_new .box .tag span {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .index_new .box .tag span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .index_new .box .tag span {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .index_new .box .tag span {
    min-width: 80px;
    height: 28px;
    padding: 0 8px;
  }
}
.index_new .swiper-pagination {
  bottom: 0.1rem;
  text-align: center;
  width: 100%;
}
.index_new .swiper-pagination .swiper-pagination-bullet {
  margin: 0 4px;
}
.index_new .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--active-color);
}
.proitem {
  padding-bottom: 0.32rem;
  background: var(--white-color);
}
@media (max-width: 480px) {
  .proitem {
    padding-bottom: 0.6rem;
  }
}
.proitem .subtit {
  width: 90%;
  min-height: 0.8rem;
  padding: 0.15rem;
  margin: auto;
  text-align: center;
  border-bottom: #e5e5e5 solid 1px;
  font-family: "SourceHanSansCN-Medium";
  color: var(--black-111);
  font-size: 18px;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1580px) {
  .proitem .subtit {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .proitem .subtit {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .proitem .subtit {
    width: 88%;
    min-height: 1.2rem;
    padding: 0.2rem 0.15rem;
    font-size: .24rem;
  }
}
@media (max-width: 480px) and (max-width: 1580px) {
  .proitem .subtit {
    font-size: .32rem;
  }
}
@media (max-width: 480px) and (max-width: 1260px) {
  .proitem .subtit {
    font-size: .28rem;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .proitem .subtit {
    font-size: .32rem;
  }
}
.proitem .imgbox {
  flex: 1;
  padding: 0.2rem 0;
  box-sizing: border-box;
  overflow: hidden;
}
.proitem .imgbox img {
  max-width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.proitem .btns {
  text-align: center;
}
.proitem .btns span {
  font-size: 16px;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--black-333);
}
@media (max-width: 1580px) {
  .proitem .btns span {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .proitem .btns span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .proitem .btns span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .proitem .btns span {
    font-size: 18px;
  }
}
@media (max-width: 480px) and (max-width: 1580px) {
  .proitem .btns span {
    font-size: 15px;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .proitem .btns span {
    font-size: 16px;
  }
}
.proitem .btns span i {
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  margin-left: 0.08rem;
  background: var(--active-color) url(../images/icon20.png) center no-repeat;
  background-size: 50% auto;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .proitem .btns span i {
    width: 28px;
    height: 28px;
    margin-left: 8px;
  }
}
.proitem:hover .subtit {
  color: var(--69b90f);
}
.proitem:hover .imgbox img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.proitem:hover .btns span i {
  background: var(--69b90f) url(../images/icon20.png) center no-repeat;
  background-size: 50% auto;
}
.composition .box {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
}
@media (max-width: 480px) {
  .composition .box {
    margin-top: 0.5rem;
  }
}
.composition .box .proitem {
  width: 31%;
  margin-right: 3.5%;
  margin-bottom: 3.5%;
  box-shadow: 0px 0px 59px rgba(0, 0, 0, 0.04);
}
@media (max-width: 991px) {
  .composition .box .proitem {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
}
@media (max-width: 480px) {
  .composition .box .proitem {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 25px;
  }
}
.composition .box .proitem:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .composition .box .proitem:nth-child(3n) {
    margin-right: 4%;
  }
}
@media (max-width: 991px) {
  .composition .box .proitem:nth-child(2n) {
    margin-right: 0;
  }
}
.composition .box .proitem .subtit {
  font-size: 20px;
}
@media (max-width: 1260px) {
  .composition .box .proitem .subtit {
    font-size: .24rem;
  }
}
@media (max-width: 991px) {
  .composition .box .proitem .subtit {
    font-size: .28rem;
  }
}
@media (max-width: 480px) {
  .composition .box .proitem .subtit {
    font-size: .24rem;
  }
}
@media (max-width: 480px) and (max-width: 1580px) {
  .composition .box .proitem .subtit {
    font-size: .32rem;
  }
}
@media (max-width: 480px) and (max-width: 1260px) {
  .composition .box .proitem .subtit {
    font-size: .28rem;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .composition .box .proitem .subtit {
    font-size: .32rem;
  }
}
.product {
  padding-top: 0.45rem;
  background: var(--fafafa);
}
@media (max-width: 991px) {
  .product {
    padding-top: 0.8rem;
  }
}
@media (max-width: 991px) {
  .product .box {
    flex-wrap: wrap;
  }
}
.product .box .aside {
  position: sticky;
  top: 1rem;
  width: 20%;
  background: var(--white-color);
  padding: 0.2rem 0.3rem 0.5rem;
  border-radius: 0.1rem;
  box-sizing: border-box;
}
@media (max-width: 1260px) {
  .product .box .aside {
    width: 25%;
  }
}
@media (max-width: 991px) {
  .product .box .aside {
    position: relative;
    top: 0;
    width: 100%;
    padding: 25px;
  }
}
.product .box .aside .filter-search form {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}
.product .box .aside .filter-search form .text {
  border: none;
  outline: none;
  padding-right: 0.2rem;
  height: 0.6rem;
  width: calc(100% - 0.3rem);
  font-size: 14px;
  color: var(--black-333);
  box-sizing: border-box;
  border-right: none;
}
@media (max-width: 1580px) {
  .product .box .aside .filter-search form .text {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .product .box .aside .filter-search form .text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product .box .aside .filter-search form .text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .product .box .aside .filter-search form .text {
    width: calc(100% - 26px);
    height: 0.75rem;
  }
}
.product .box .aside .filter-search form .text::-webkit-input-placeholder {
  color: var(--aaaaaa);
}
.product .box .aside .filter-search form .text::-moz-placeholder {
  color: var(--aaaaaa);
}
.product .box .aside .filter-search form .text:-moz-placeholder {
  color: var(--aaaaaa);
}
.product .box .aside .filter-search form .text:-ms-input-placeholder {
  color: var(--aaaaaa);
}
.product .box .aside .filter-search form .btns {
  width: 0.3rem;
  height: 0.6rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .product .box .aside .filter-search form .btns {
    width: 26px;
    height: 0.75rem;
  }
}
.product .box .aside .filter-search form .btns img {
  max-width: 66.66666666666667%;
}
.product .box .aside .productNav {
  width: 100%;
  margin-top: 0.24rem;
  background-color: #FFFFFF;
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (min-width: 992px) {
  .product .box .aside .productNav ul {
    overflow-y: auto;
    max-height: calc(100vh - 2.5rem);
  }
}
.product .box .aside .productNav ul li {
  list-style: none;
}
.product .box .aside .productNav ul li a {
  position: relative;
  display: block;
  line-height: 1.7;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product .box .aside .productNav ul li .title {
  display: block;
  position: relative;
  padding-right: 0.24rem;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  cursor: pointer;
  font-size: 16px;
  color: var(--black-333);
  font-family: "HarmonyOS_Sans_SC_Regular";
  line-height: 1.7;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product .box .aside .productNav ul li .title>a{
  font-size: 16px;
  color: var(--black-333);
  font-family: "HarmonyOS_Sans_SC_Regular";
  line-height: 1.7;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1580px) {
  .product .box .aside .productNav ul li .title,.product .box .aside .productNav ul li .title>a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .product .box .aside .productNav ul li .title,.product .box .aside .productNav ul li .title>a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product .box .aside .productNav ul li .title,.product .box .aside .productNav ul li .title>a {
    font-size: 14px;
  }
}
.product .box .aside .productNav ul li .title:hover,.product .box .aside .productNav ul li .title:hover>a {
  color: var(--0958a6);
}
@media (max-width: 991px) {
  .product .box .aside .productNav ul li .title,.product .box .aside .productNav ul li .title>a {
    padding-right: 0.5rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    font-size: 18px;
  }
}
@media (max-width: 991px) and (max-width: 1580px) {
  .product .box .aside .productNav ul li .title,.product .box .aside .productNav ul li .title>a {
    font-size: 15px;
  }
}
@media (max-width: 991px) and (max-width: 480px) {
  .product .box .aside .productNav ul li .title,.product .box .aside .productNav ul li .title>a {
    font-size: 16px;
  }
}
.product .box .aside .productNav ul li .title i {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.24rem;
  height: 100%;
  background: url(../images/icon17.png) center no-repeat;
  background-size: 50% auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .product .box .aside .productNav ul li .title i {
    width: 0.3rem;
  }
}
@media (max-width: 480px) {
  .product .box .aside .productNav ul li .title i {
    width: 0.36rem;
  }
}
.product .box .aside .productNav ul li .title.active,.product .box .aside .productNav ul li .title.active>a{
  font-family: "SourceHanSansCN-Bold";
  color: var(--0958a6);
}
.product .box .aside .productNav ul li .title.active i {
  background: url(../images/icon18.png) center no-repeat;
  background-size: 50% auto;
}
.product .box .aside .productNav ul li ul {
  display: none;
  padding-top: 0.12rem;
  padding-bottom: 0.12rem;
  border-top: #e5e5e5 solid 1px;
}
@media (max-width: 991px) {
  .product .box .aside .productNav ul li ul {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}
.product .box .aside .productNav ul li ul li a {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: var(--black-666);
  padding: 0.1rem 0.45rem;
  border-radius: 0.3rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: hidden;
}
@media (max-width: 1580px) {
  .product .box .aside .productNav ul li ul li a {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .product .box .aside .productNav ul li ul li a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product .box .aside .productNav ul li ul li a {
    font-size: 14px;
  }
}
.product .box .aside .productNav ul li ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to right, #2b72b8, #0050a1);
  background: linear-gradient(to right, #2b72b8, #0050a1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}
.product .box .aside .productNav ul li ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to right, var(--79c621), var(--68b811));
  background: linear-gradient(to right, var(--79c621), var(--68b811));
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}
.product .box .aside .productNav ul li ul li a:hover {
  font-weight: bold;
  color: var(--79c621);
}
@media (max-width: 991px) {
  .product .box .aside .productNav ul li ul li a {
    padding: 0.1rem 0.3rem;
  }
}
.product .box .aside .productNav ul li ul li.on a {
  color: var(--white-color);
}
.product .box .aside .productNav ul li ul li.on a::before {
  opacity: 1;
}
.product .box .aside .productNav ul li ul li.on a i {
  background: url(../images/icon18.png) center no-repeat;
  background-size: 50% auto;
}
.product .box .aside .productNav > ul > li {
  border-bottom: #e5e5e5 solid 1px;
}
.product .box .aside .productNav > ul > li:last-child {
  border-bottom: none;
}
.product .box .wrap {
  width: 76.26666666666667%;
}
@media (max-width: 1260px) {
  .product .box .wrap {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .product .box .wrap {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.product .box .wrap .itembox {
  padding-bottom: 6%;
}
@media (max-width: 480px) {
  .product .box .wrap .itembox {
    padding-bottom: 7%;
  }
}
.product .box .wrap .itembox .proitem {
  width: 31.46666666666667%;
  margin-right: 2.8%;
  margin-bottom: 2.8%;
}
@media (max-width: 1260px) {
  .product .box .wrap .itembox .proitem {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
}
.product .box .wrap .itembox .proitem:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 1260px) {
  .product .box .wrap .itembox .proitem:nth-child(3n) {
    margin-right: 4%;
  }
}
@media (max-width: 1260px) {
  .product .box .wrap .itembox .proitem:nth-child(2n) {
    margin-right: 0%;
  }
}
@media (max-width: 480px) {
  .product .box .wrap .itembox .proitem {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 25px;
  }
}
.page {
  width: 100%;
  text-align: center;
}
.page .page-list {
  display: block;
  align-items: center;
  justify-content: center;
}
.page .page-list a {
  display: inline-block;
  align-items: center;
  justify-content: center;
  padding: 0 .1rem;
  min-width: .3rem;
  height: .3rem;
  line-height: .3rem;
  margin-bottom: .1rem;
  margin-right: .1rem;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  color: var(--black-cdc);
  overflow: hidden;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1580px) {
  .page .page-list a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .page .page-list a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .page .page-list a {
    font-size: 14px;
  }
}
@media (max-width: 1580px) {
  .page .page-list a {
    min-width: 0.36rem;
    height: 0.36rem;
    line-height: 0.34rem;
    margin-right: 0.1rem;
  }
}
@media (max-width: 480px) {
  .page .page-list a {
    min-width: 0.42rem;
    height: 0.42rem;
    line-height: 0.4rem;
    margin-right: 0.1rem;
  }
}
.page .page-list a:last-child {
  margin-right: 0;
}
.page .page-list a:hover {
  color: var(--white-color);
  background: var(--69b90f);
}
.page .page-list a.fyprev,
.page .page-list a.prev {
  min-width: 1.1rem;
  height: .36rem;
  line-height: .34rem;
  margin-right: .4rem;
  border-radius: .18rem;
  color: var(--white-color);
  background: var(--69b90f);
  border: var(--69b90f) solid 1px;
}
.page .page-list a.fyprev.disabled {
  border: var(--black-ddd) solid 1px;
  color: var(--black-666);
  pointer-events: none;
  background: none;
  opacity: 0.5;
}
.page .page-list a.fyprev:hover {
  background: var(--69b90f);
}
@media (max-width: 1580px) {
  .page .page-list a.fyprev {
    min-width: 1.2rem;
    height: 0.42rem;
    line-height: 0.4rem;
    margin-right: 0.3rem;
    border-radius: 0.21rem;
  }
}
@media (max-width: 480px) {
  .page .page-list a.fyprev {
    min-width: 1.3rem;
    height: 0.5rem;
    margin-right: 0.2rem;
    line-height: 0.48rem;
    border-radius: 0.25rem;
  }
}
.page .page-list a.fynext,
.page .page-list a.next {
  min-width: 1.1rem;
  height: .36rem;
  line-height: .34rem;
  margin-left: .4rem;
  border-radius: .18rem;
  color: var(--white-color);
  background: var(--69b90f);
  border: var(--69b90f) solid 1px;
}
.page .page-list a.fynext.disabled {
  border: var(--black-ddd) solid 1px;
  color: var(--black-666);
  pointer-events: none;
  background: none;
  opacity: 0.5;
}
.page .page-list a.fynext:hover {
  background: var(--69b90f);
}
@media (max-width: 1580px) {
  .page .page-list a.fynext {
    min-width: 1.2rem;
    height: 0.42rem;
    line-height: 0.4rem;
    margin-left: 0.3rem;
    border-radius: 0.21rem;
  }
}
@media (max-width: 480px) {
  .page .page-list a.fynext {
    min-width: 1.3rem;
    height: 0.5rem;
    margin-left: 0.2rem;
    line-height: 0.48rem;
    border-radius: 0.25rem;
  }
}
.page .page-list a.on {
  color: var(--white-color);
  background: var(--69b90f);
}
.product-details .particulars {
  padding-bottom: 0.75rem;
  background: var(--fafafa);
}
@media (max-width: 991px) {
  .product-details .particulars {
    padding-top: 0.8rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .product-details .particulars .box {
    flex-wrap: wrap;
  }
}
.product-details .particulars .box .textbox {
  max-width: 6.4rem;
  width: 60%;
}
@media (max-width: 991px) {
  .product-details .particulars .box .textbox {
    max-width: 100%;
    width: 100%;
    margin-top: 0.7rem;
  }
}
.product-details .particulars .box .textbox .title {
  font-size: .36rem;
  color: var(--black-000);
  font-weight: bold;
}
@media (max-width: 480px) {
  .product-details .particulars .box .textbox .title {
    font-size: .42rem;
  }
}
.product-details .particulars .box .textbox .text {
  font-size: 16px;
  color: var(--black-555);
  margin-top: 0.35rem;
  min-height: 1.2rem;
}
@media (max-width: 1580px) {
  .product-details .particulars .box .textbox .text {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .product-details .particulars .box .textbox .text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-details .particulars .box .textbox .text {
    font-size: 14px;
  }
}
.product-details .particulars .box .textbox .btns {
  margin-top: 0.3rem;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .product-details .particulars .box .textbox .btns {
    margin-top: 0.5rem;
  }
}
.product-details .particulars .box .textbox .btns .btn {
  position: relative;
  margin-right: 0.2rem;
  margin-bottom: 0.2rem;
  font-size: 0;
}
.product-details .particulars .box .textbox .btns .btn:last-child {
  margin-right: 0;
}
.product-details .particulars .box .textbox .btns .btn a {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 0.5rem;
  font-size: 16px;
  color: var(--white-color);
  background: var(--1758a7);
  text-align: center;
  padding: 0 0.2rem;
  border-radius: 0.25rem;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: hidden;
}
@media (max-width: 1580px) {
  .product-details .particulars .box .textbox .btns .btn a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .product-details .particulars .box .textbox .btns .btn a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-details .particulars .box .textbox .btns .btn a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-details .particulars .box .textbox .btns .btn a {
    padding: 0 0.3rem;
    height: 0.6rem;
    border-radius: 0.5rem;
  }
}
.product-details .particulars .box .textbox .btns .btn a img {
  display: inline-block;
  margin-right: 0.1rem;
  max-width: 0.23rem;
}
@media (max-width: 480px) {
  .product-details .particulars .box .textbox .btns .btn a img {
    max-width: 0.3rem;
    margin-right: 0.15rem;
  }
}
.product-details .particulars .box .textbox .btns .btn a:hover {
  background: var(--69b90f);
}
.product-details .particulars .box .textbox .btns .btn span {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 0.5rem;
  font-size: 16px;
  color: var(--white-color);
  background: var(--1758a7);
  text-align: center;
  padding: 0 0.2rem;
  border-radius: 0.25rem;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: hidden;
}
@media (max-width: 1580px) {
  .product-details .particulars .box .textbox .btns .btn span {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .product-details .particulars .box .textbox .btns .btn span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-details .particulars .box .textbox .btns .btn span {
    font-size: 14px;
  }
}
.product-details .particulars .box .textbox .btns .btn span img {
  display: inline-block;
  margin-right: 0.1rem;
  max-width: 0.23rem;
}
.product-details .particulars .box .textbox .btns .btn span:hover {
  background: var(--69b90f);
}
.product-details .particulars .box .textbox .btns .btn .dropbox {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 100%;
  z-index: 13;
  width: 1.03rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 0.2rem;
}
@media (max-width: 991px) {
  .product-details .particulars .box .textbox .btns .btn .dropbox {
    width: 1.2rem;
  }
}
@media (max-width: 480px) {
  .product-details .particulars .box .textbox .btns .btn .dropbox {
    width: 1.5rem;
  }
}
.product-details .particulars .box .textbox .btns .btn .dropbox .img {
  overflow: hidden;
  background-color: #FFFFFF;
}
.product-details .particulars .box .textbox .btns .btn .dropbox .img img {
  width: 100%;
}
.product-details .particulars .box .textbox .btns .btn .dropbox .sp {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: var(--1758a7);
  font-size: .24rem;
  white-space: nowrap;
}
@media (max-width: 1580px) {
  .product-details .particulars .box .textbox .btns .btn .dropbox .sp {
    font-size: .32rem;
  }
}
@media (max-width: 1260px) {
  .product-details .particulars .box .textbox .btns .btn .dropbox .sp {
    font-size: .28rem;
  }
}
@media (max-width: 480px) {
  .product-details .particulars .box .textbox .btns .btn .dropbox .sp {
    font-size: .32rem;
  }
}
.product-details .particulars .box .textbox .btns .btn:hover .dropbox {
  opacity: 1;
  visibility: visible;
}
.product-details .particulars .box .pic {
  width: 35.06666666666667%;
}
.product-details .particulars .box .pic:after{
	padding-bottom: 0;
}
@media (max-width: 991px) {
  .product-details .particulars .box .pic {
    width: 100%;
  }
}
.product-details .particulars .box .pic .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.product-details .particulars .box .pic .swiper .swiper-slide {
  background: var(--white-color);
}
.product-details .particulars .box .pic .swiper .swiper-slide img {
  display: block;
  width: 100%;
}
.product-details .particulars .box .pic .swiper.mySwiper1 {
  margin-top: 0.4rem;
}
.product-details .particulars .box .pic .swiper.mySwiper1 .swiper-wrapper {
  -webkit-align-items: stretch;
  align-items: stretch;
}
.product-details .particulars .box .pic .swiper.mySwiper1 .swiper-wrapper .swiper-slide {
  cursor: pointer;
}
.product-details .particulars .box .pic .swiper.mySwiper1 .swiper-wrapper .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  border: var(--active-color) solid 1px;
  box-sizing: border-box;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product-details .particulars .box .pic .swiper.mySwiper1 .swiper-wrapper .swiper-slide .img {
  position: relative;
  height: 0;
  padding-bottom: 61.22448979591837%;
}
.product-details .particulars .box .pic .swiper.mySwiper1 .swiper-wrapper .swiper-slide .img img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
}
.product-details .particulars .box .pic .swiper.mySwiper1 .swiper-wrapper .swiper-slide.swiper-slide-thumb-active::before {
  opacity: 1;
}
.product-details .particulars .box .pic .swiper.mySwiper2 .swiper-button-next {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.48rem;
  height: 0.48rem;
  margin-top: -0.24rem;
  z-index: 10;
  cursor: pointer;
  background: var(--1758a7) url(../images/icon10a.png) center no-repeat;
  background-size: 20.83333333333333% auto;
}
.product-details .particulars .box .pic .swiper.mySwiper2 .swiper-button-next.swiper-button-disabled {
  opacity: 0.9;
  background: rgba(0, 0, 0, 0.59) url(../images/icon10.png) center no-repeat;
  background-size: 20.83333333333333% auto;
}
@media (max-width: 480px) {
  .product-details .particulars .box .pic .swiper.mySwiper2 .swiper-button-next {
    width: 0.56rem;
    height: 0.56rem;
    margin-top: -0.28rem;
  }
}
.product-details .particulars .box .pic .swiper.mySwiper2 .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  margin-top: -0.24rem;
  z-index: 10;
  cursor: pointer;
  background-size: 42% auto;
  background-position: center;
  background: var(--1758a7) url(../images/icon9a.png) center no-repeat;
  background-size: 20.83333333333333% auto;
}
.product-details .particulars .box .pic .swiper.mySwiper2 .swiper-button-prev.swiper-button-disabled {
  opacity: 0.9;
  background: rgba(0, 0, 0, 0.59) url(../images/icon9.png) center no-repeat;
  background-size: 20.83333333333333% auto;
}
@media (max-width: 480px) {
  .product-details .particulars .box .pic .swiper.mySwiper2 .swiper-button-prev {
    width: 0.56rem;
    height: 0.56rem;
    margin-top: -0.28rem;
  }
}
.product-details .specifics .detailnav {
  position: sticky;
  top: 1rem;
  z-index: 10;
  padding-top: 0.18rem;
  padding-bottom: 0.18rem;
  background: var(--1758a7);
}
@media (max-width: 991px) {
  .product-details .specifics .detailnav {
    top: 60px;
  }
}
@media (max-width: 991px) {
  .product-details .specifics .detailnav ul {
    overflow: auto;
    white-space: nowrap;
  }
}
.product-details .specifics .detailnav ul li {
  display: inline-block;
  margin-right: 1rem;
}
.product-details .specifics .detailnav ul li:last-child {
  margin-right: 0;
}
@media (max-width: 1260px) {
  .product-details .specifics .detailnav ul li {
    margin-right: 0.6rem;
  }
}
@media (max-width: 991px) {
  .product-details .specifics .detailnav ul li {
    margin-right: 0.4rem;
  }
}
.product-details .specifics .detailnav ul li span {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 0.5rem;
  font-size: 16px;
  color: var(--white-color);
  text-align: center;
  padding: 0 0.2rem;
  border-radius: 0.25rem;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 1580px) {
  .product-details .specifics .detailnav ul li span {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .product-details .specifics .detailnav ul li span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-details .specifics .detailnav ul li span {
    font-size: 14px;
  }
}
.product-details .specifics .detailnav ul li:hover span {
  font-weight: bold;
  background: var(--69b90f);
}
.product-details .specifics .detailnav ul li.active span {
  font-weight: bold;
  background: var(--69b90f);
}
.product-details .specifics .p-title {
  text-align: center;
}
.product-details .specifics .p-title .t1 {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: var(--1758a7);
  font-size: .32rem;
}
@media (max-width: 480px) {
  .product-details .specifics .p-title .t1 {
    font-size: .4rem;
  }
}
.product-details .specifics .p-title .t2 {
  font-family: "HarmonyOS_Sans_SC_Regular";
  font-size: 16px;
  color: var(--black-ccc);
}
@media (max-width: 1580px) {
  .product-details .specifics .p-title .t2 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .product-details .specifics .p-title .t2 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-details .specifics .p-title .t2 {
    font-size: 14px;
  }
}
.product-details .specifics .item {
  padding-top: 1.2rem;
  margin-top: -1.2rem;
}
@media (max-width: 480px) {
  .product-details .specifics .item {
    padding-top: 1rem;
    margin-top: -1rem;
  }
}
.product-details .specifics .prodetails {
  background: var(--bg-f8);
}
.product-details .specifics .prodetails .text {
  max-width: 11.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.4rem;
  font-size: 16px;
  font-family: "HarmonyOS_Sans_SC_Light";
  line-height: 1.8;
}
@media (max-width: 1580px) {
  .product-details .specifics .prodetails .text {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .product-details .specifics .prodetails .text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-details .specifics .prodetails .text {
    font-size: 14px;
  }
}
.product-details .specifics .features .wrap {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.7rem;
  font-size: 16px;
  font-family: "HarmonyOS_Sans_SC_Light";
  line-height: 1.8;
}
@media (max-width: 991px) {
  .product-details .specifics .features .wrap {
    width: 100%;
    margin-top: 0.5rem;
  }
}
@media (max-width: 1580px) {
  .product-details .specifics .features .wrap {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .product-details .specifics .features .wrap {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-details .specifics .features .wrap {
    font-size: 14px;
  }
}
.product-details .specifics .features .wrap .subtit {
  color: var(--black-000);
  font-family: 'HarmonyOS_Sans_SC_Medium';
  font-size: .24rem;
  margin-bottom: 0.2rem;
}
@media (max-width: 1580px) {
  .product-details .specifics .features .wrap .subtit {
    font-size: .32rem;
  }
}
@media (max-width: 1260px) {
  .product-details .specifics .features .wrap .subtit {
    font-size: .28rem;
  }
}
@media (max-width: 480px) {
  .product-details .specifics .features .wrap .subtit {
    font-size: .32rem;
  }
}
.product-details .specifics .features .wrap img {
  display: block;
  margin: auto;
}
.product-details .specifics .recommend {
  background: var(--bg-fb);
}
.product-details .specifics .recommend .wrap {
  margin-top: 0.5rem;
}
.product-details .specifics .recommend .wrap .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 0.6rem;
}
@media (max-width: 991px) {
  .product-details .specifics .recommend .wrap .swiper {
    padding-bottom: 0.7rem;
  }
}
.product-details .specifics .recommend .swiper-pagination {
  bottom: 0;
  text-align: center;
  width: 100%;
}
.product-details .specifics .recommend .swiper-pagination .swiper-pagination-bullet {
  margin: 0 4px;
}
.product-details .specifics .recommend .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--active-color);
}
.product-details .specifics .detailtable {
  max-width: 9.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  border: var(--white-color);
  border-radius: 0.15rem 0.15rem 0 0;
  overflow: hidden;
}
.product-details .specifics .detailtable tr:nth-child(odd) {
  background: var(--bg-f0);
}
.product-details .specifics .detailtable tr:nth-child(even) {
  background: var(--bg-f9);
}
.product-details .specifics .detailtable tr th {
  width: 33.33%;
  background: var(--active-color);
  color: var(--white-color);
  font-size: 16px;
  font-family: "HarmonyOS_Sans_SC_Regular";
  height: 0.6rem;
  text-align: center;
}
@media (max-width: 1580px) {
  .product-details .specifics .detailtable tr th {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .product-details .specifics .detailtable tr th {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-details .specifics .detailtable tr th {
    font-size: 14px;
  }
}
.product-details .specifics .detailtable tr td {
  color: var(--black-555);
  font-size: 16px;
  font-family: "HarmonyOS_Sans_SC_Regular";
  text-align: center;
  height: 0.6rem;
}
@media (max-width: 1580px) {
  .product-details .specifics .detailtable tr td {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .product-details .specifics .detailtable tr td {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-details .specifics .detailtable tr td {
    font-size: 14px;
  }
}
.product-details .specifics .specs {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.product-details .specifics .specs .specsli {
  width: 45%;
  margin-right: 10%;
  text-align: center;
}
.product-details .specifics .specs .specsli:nth-child(2n) {
  margin-right: 0;
}
.product-details .specifics .specs .specsli .img img {
  max-width: 100%;
}
.product-details .specifics .specs .specsli .sp {
  color: var(--active-color);
  font-size: 18px;
  font-family: "HarmonyOS_Sans_SC_Regular";
  margin-top: 0.15rem;
}
@media (max-width: 1580px) {
  .product-details .specifics .specs .specsli .sp {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .product-details .specifics .specs .specsli .sp {
    font-size: 16px;
  }
}
.culture {
  background: var(--bg-f6);
}
.culture .box {
  margin-top: 6%;
}
.culture .box .item {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 4%;
  border-radius: 0.15rem;
  padding: 4%;
  min-height: 4.75rem;
  box-sizing: border-box;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.culture .box .item:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .culture .box .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .culture .box .item {
    padding: 22px 15px 22px 20px;
  }
}
.culture .box .item .text {
  width: 100%;
}
.culture .box .item .text .subtit {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: var(--white-color);
  font-size: .24rem;
}
@media (max-width: 1580px) {
  .culture .box .item .text .subtit {
    font-size: .32rem;
  }
}
@media (max-width: 1260px) {
  .culture .box .item .text .subtit {
    font-size: .28rem;
  }
}
@media (max-width: 480px) {
  .culture .box .item .text .subtit {
    font-size: .32rem;
  }
}
.culture .box .item .text i {
  display: block;
  margin-left: 0;
  width: 0.5rem;
  height: 0.05rem;
  margin-top: 0.15rem;
  background: var(--white-color);
}
.culture .box .item .text ul {
  padding: 0;
  margin-top: 0.4rem;
  width: 78%;
  color: var(--white-color);
  line-height: 1.7;
  font-size: 18px;
}
@media (max-width: 1580px) {
  .culture .box .item .text ul {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .culture .box .item .text ul {
    font-size: 16px;
  }
}
@media (max-width: 1580px) {
  .culture .box .item .text ul {
    width: 90%;
  }
}
@media (max-width: 1260px) {
  .culture .box .item .text ul {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .culture .box .item .text ul {
    font-size: 14px;
  }
}
.culture .box .item .text ul li {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0.15rem;
}
.culture .box .item .text ul li .sp1 {
  font-family: "HarmonyOS_Sans_SC_Medium";
}
.culture .box .item .text ul li .sp2 {
  -webkit-flex: 1;
  flex: 1;
  font-family: "HarmonyOS_Sans_SC_Light";
}
@media (max-width: 991px) {
  .services .box {
    flex-wrap: wrap;
  }
}
.services .box .textbox {
  width: 43.125%;
  padding-left: 3.125%;
  box-sizing: border-box;
}
.services .box .textbox .text {
  margin-top: 0.45rem;
  width: 81.25%;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--black-333);
  font-size: 16px;
  line-height: 2;
  min-height: 1.8rem;
}
@media (max-width: 1580px) {
  .services .box .textbox .text {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .services .box .textbox .text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .services .box .textbox .text {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .services .box .textbox .text {
    width: 100%;
    min-height: 0.1rem;
  }
}
@media (max-width: 991px) {
  .services .box .textbox {
    width: 100%;
    padding-left: 0;
  }
}
.services .box .imgbox {
  position: relative;
  width: 56.875%;
}
@media (max-width: 991px) {
  .services .box .imgbox {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.services .box .imgbox .map img {
  display: block;
  width: 100%;
}
.services .box .imgbox .distribution {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.services .box .imgbox .distribution ul {
  padding: 0;
}
.services .box .imgbox .distribution ul li {
  position: absolute;
  list-style: none;
  text-align: center;
  display: -webkit-flex;
  display: flex;
}
.services .box .imgbox .distribution ul li .icon {
  margin: 0.05rem;
}
.services .box .imgbox .distribution ul li .icon img {
  max-width: 0.32rem;
}
@media (max-width: 1260px) {
  .services .box .imgbox .distribution ul li .icon img {
    max-width: 0.2rem;
  }
}
@media (max-width: 991px) {
  .services .box .imgbox .distribution ul li .icon img {
    max-width: 0.28rem;
  }
}
@media (max-width: 767px) {
  .services .box .imgbox .distribution ul li .icon img {
    max-width: 0.16rem;
  }
}
.services .box .imgbox .distribution ul li .sp {
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: var(--5b6a76);
  font-size: 16px;
}
@media (max-width: 1580px) {
  .services .box .imgbox .distribution ul li .sp {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .services .box .imgbox .distribution ul li .sp {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .services .box .imgbox .distribution ul li .sp {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .services .box .imgbox .distribution ul li .sp {
    font-size: 0.16rem;
  }
}
.services .box .imgbox .distribution ul li.a1 {
  right: 13.73626373626374%;
  top: 51%;
  flex-direction: column-reverse;
}
.services .box .imgbox .distribution ul li.a2 {
  right: 14.5%;
  top: 61.5%;
  align-items: flex-end;
}
.services .box .imgbox .distribution ul li.a2 .icon {
  display: inline-flex;
}
@media (max-width: 767px) {
  .services .box .imgbox .distribution ul li.a2 {
    align-items: center;
  }
}
.services .box .imgbox .distribution ul li.a3 {
  right: 18.5%;
  top: 53.2%;
  flex-direction: row-reverse;
  align-items: center;
}
.services .box .imgbox .distribution ul li.a3 .icon {
  display: inline-flex;
}
.services .box .imgbox .distribution ul li.a4 {
  right: 20%;
  top: 45%;
  flex-direction: column-reverse;
}
.services .box .imgbox .distribution ul li.a5 {
  right: 19.5%;
  top: 34.5%;
  align-items: center;
}
.services .box .imgbox .distribution ul li.a5 .icon {
  display: inline-flex;
}
.services .box .imgbox .distribution ul li.a6 {
  right: 25.5%;
  top: 28%;
  flex-direction: column-reverse;
}
.services .box .imgbox .distribution ul li.a7 {
  right: 24.5%;
  top: 41%;
  align-items: flex-start;
  flex-direction: row-reverse;
}
.services .box .imgbox .distribution ul li.a8 {
  right: 31%;
  top: 45.5%;
  flex-direction: column-reverse;
}
.services .box .imgbox .distribution ul li.a9 {
  right: 28%;
  top: 55%;
  flex-direction: column-reverse;
}
.services .box .imgbox .distribution ul li.a10 {
  right: 29.6%;
  top: 75%;
  flex-direction: column-reverse;
}
.services .box .imgbox .distribution ul li.a11 {
  right: 25%;
  top: 77%;
  flex-direction: column-reverse;
}
.services .box .imgbox .distribution ul li.a12 {
  right: 39.5%;
  top: 56.8%;
  flex-direction: column-reverse;
}
.services .box .imgbox .distribution ul li.a13 {
  right: 48%;
  top: 55.5%;
  flex-direction: column-reverse;
}
.servicetext {
  margin-top: 0.4rem;
}
.servicetext ul {
  padding: 0;
}
@media (max-width: 991px) {
  .servicetext ul {
    display: inline-flex;
    min-width: 60%;
  }
}
@media (max-width: 767px) {
  .servicetext ul {
    width: 100%;
  }
}
.servicetext ul li {
  position: relative;
  width: 33.33%;
  list-style: none;
  padding-right: 0.3rem;
  box-sizing: border-box;
}
.servicetext ul li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.3rem;
  background: var(--black-cdc);
}
.servicetext ul li:last-child::before {
  display: none;
}
.servicetext ul li.center {
  text-align: center;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}
.servicetext ul li.right {
  text-align: right;
  padding-left: 0.3rem;
  padding-right: 0;
}
.servicetext ul li .txt {
  display: inline-block;
  text-align: center;
}
.servicetext ul li .txt .t1 {
  font-family: "HarmonyOS_Sans_SC_Black";
  color: var(--0d6cc4);
  font-size: .42rem;
}
@media (max-width: 480px) {
  .servicetext ul li .txt .t1 {
    font-size: .52rem;
  }
}
.servicetext ul li .txt .t2 {
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: var(--black-000);
  font-size: 16px;
}
@media (max-width: 1580px) {
  .servicetext ul li .txt .t2 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .servicetext ul li .txt .t2 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .servicetext ul li .txt .t2 {
    font-size: 14px;
  }
}
.credential {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.credential .box {
  margin-top: 3.5%;
}
@media (max-width: 480px) {
  .credential .box {
    margin-top: 0.5rem;
  }
}
.credential .box .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.2rem 0 0.4rem;
}
@media (max-width: 991px) {
  .credential .box .swiper {
    padding-bottom: 0.7rem;
  }
}
.credential .box .swiper .swiper-slide {
  height: auto;
  background: var(--white-color);
}
.credential .box .swiper .swiper-slide .img {
  width: 100%;
}
.credential .box .swiper .swiper-slide .img img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.credential .box .swiper .swiper-slide:hover .img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.credential .swiper-pagination {
  bottom: 0;
  text-align: center;
  width: 100%;
}
.credential .swiper-pagination .swiper-pagination-bullet {
  margin: 0 4px;
}
.credential .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--active-color);
}
.advantages {
  background: var(--bg-f9);
}
.advantages .box {
  margin-top: 5%;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1260px) {
  .advantages .box {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .advantages .box {
    margin-top: 0.5rem;
  }
}
.advantages .box .item {
  position: relative;
  z-index: 1;
  width: 47.619%;
  margin-right: 4.762%;
  margin-bottom: 4.762%;
  padding: 0.3rem;
  min-height: 2.8rem;
  box-sizing: border-box;
  background: var(--white-color);
  border-radius: 0.12rem;
  overflow: hidden;
}
.advantages .box .item:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .advantages .box .item {
    background: var(--white-color) url(../images/img45.png) center bottom no-repeat;
    background-size: 100% auto;
  }
}
@media (max-width: 767px) {
  .advantages .box .item {
    width: 100%;
    margin-right: 0;
    padding: 25px;
    margin-bottom: 25px;
  }
}
.advantages .box .item .particle {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.3;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.advantages .box .item .particle canvas {
  width: 100% !important;
  height: 100% !important;
}
@media (max-width: 991px) {
  .advantages .box .item .particle {
    display: none;
  }
}
.advantages .box .item .icon img {
  max-width: 0.51rem;
}
.advantages .box .item .subtit {
  text-align: right;
  color: var(--black-000);
  font-family: "HarmonyOS_Sans_SC_Bold";
  font-size: .26rem;
  margin-top: 0.2rem;
}
@media (max-width: 1260px) {
  .advantages .box .item .subtit {
    font-size: .32rem;
  }
}
@media (max-width: 480px) {
  .advantages .box .item .subtit {
    font-size: .34rem;
  }
}
.advantages .box .item i {
  display: block;
  margin-right: 0;
  margin-left: auto;
  margin-top: 0.12rem;
  width: 0.45rem;
  height: 0.05rem;
  background: var(--1580e0);
}
.advantages .box .item .text {
  margin-top: 0.25rem;
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: var(--6d6d6d);
  font-size: 18px;
  line-height: 1.7;
}
@media (max-width: 1580px) {
  .advantages .box .item .text {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .advantages .box .item .text {
    font-size: 16px;
  }
}
.service_system .box {
  margin-top: 4%;
}
@media (max-width: 480px) {
  .service_system .box {
    margin-top: 0.5rem;
  }
}
.service_system .box ul {
  width: 90%;
  margin: auto;
  padding: 0;
}
@media (max-width: 1260px) {
  .service_system .box ul {
    width: 100%;
  }
}
.service_system .box ul li {
  width: 30.37037037037037%;
  margin-right: 4.44444444444444%;
  margin-bottom: 4.44444444444444%;
  background: var(--bg-fb);
  list-style: none;
}
.service_system .box ul li:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .service_system .box ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.service_system .box ul li .imgbox {
  display: block;
  width: 100%;
  overflow: hidden;
}
.service_system .box ul li .imgbox img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.service_system .box ul li .textbox {
  text-align: center;
  padding: 0.2rem 0.36rem 0.4rem;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .service_system .box ul li .textbox {
    padding: 25px;
  }
}
.service_system .box ul li .textbox .subtit {
  font-family: "SourceHanSansCN-Medium";
  color: var(--black-000);
  font-size: .24rem;
}
@media (max-width: 1580px) {
  .service_system .box ul li .textbox .subtit {
    font-size: .32rem;
  }
}
@media (max-width: 1260px) {
  .service_system .box ul li .textbox .subtit {
    font-size: .28rem;
  }
}
@media (max-width: 480px) {
  .service_system .box ul li .textbox .subtit {
    font-size: .32rem;
  }
}
.service_system .box ul li .textbox .text {
  margin-top: 0.2rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-666);
  line-height: 2;
}
@media (max-width: 1580px) {
  .service_system .box ul li .textbox .text {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .service_system .box ul li .textbox .text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .service_system .box ul li .textbox .text {
    font-size: 14px;
  }
}
.service_system .box ul li:hover .imgbox img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.sidebar {
  position: fixed;
  right: 0.4rem;
  bottom: 0.8rem;
  z-index: 12;
}
@media (max-width: 991px) {
  .sidebar {
    right: 15px;
    bottom: 60px;
  }
}
.sidebar ul {
  padding: 0;
}
.sidebar ul li {
  list-style: none;
  position: relative;
  text-align: center;
  cursor: pointer;
  margin-bottom: 0.1rem;
}
.sidebar ul li 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: #3c85c1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .sidebar ul li a {
    width: 40px;
    height: 40px;
  }
}
.sidebar ul li a .img {
  width: 100%;
  overflow: hidden;
  text-align: center;
}
.sidebar ul li a .img img {
  display: block;
  margin: auto;
  width: 48%;
}
.sidebar ul li .secondary {
  display: none;
  position: absolute;
  right: 0.6rem;
  top: 50%;
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  min-width: 100%;
  padding: 0.06rem;
  background: #ffffff;
  box-shadow: 0px 8px 29px rgba(6, 63, 55, 0.2);
  border-radius: 0.1rem;
  box-sizing: border-box;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .sidebar ul li .secondary {
    right: 0.75rem;
  }
}
@media (max-width: 480px) {
  .sidebar ul li .secondary {
    right: 0.85rem;
  }
}
.sidebar ul li .secondary ::before {
  content: '';
  position: absolute;
  top: 0;
  right: -0.1rem;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 0.08rem solid transparent;
  border-bottom: 0.08rem solid transparent;
  border-left: 0.1rem solid #ffffff;
}
.sidebar ul li .secondary .codeimg {
  text-align: center;
  width: 1.03rem;
}
@media (max-width: 991px) {
  .sidebar ul li .secondary .codeimg {
    width: 1.2rem;
  }
}
@media (max-width: 480px) {
  .sidebar ul li .secondary .codeimg {
    width: 1.4rem;
  }
}
.sidebar ul li .secondary .codeimg img {
  display: block;
  width: 100%;
}
.sidebar ul li .secondary .txt {
  display: flex;
  justify-content: center;
  white-space: nowrap;
  font-size: 14px;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--black-333);
}
@media (max-width: 1580px) {
  .sidebar ul li .secondary .txt {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .sidebar ul li .secondary .txt {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .sidebar ul li .secondary .txt {
    font-size: 14px;
  }
}
.sidebar ul li .secondary .txtli {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.05rem 0.1rem;
  font-size: 14px;
  color: var(--black-333);
}
@media (max-width: 1580px) {
  .sidebar ul li .secondary .txtli {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .sidebar ul li .secondary .txtli {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .sidebar ul li .secondary .txtli {
    font-size: 14px;
  }
}
.sidebar ul li .secondary .txtli img {
  display: inline-block;
  max-width: 0.2rem;
  margin-right: 0.08rem;
}
.sidebar ul li .secondary .txtli.digit {
  font-family: "HarmonyOS_Sans_SC_Bold";
  font-size: 18px;
}
@media (max-width: 1580px) {
  .sidebar ul li .secondary .txtli.digit {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .sidebar ul li .secondary .txtli.digit {
    font-size: 16px;
  }
}
.sidebar ul li.istop a {
  background: var(--69b90f);
}
.sidebar ul li:hover a {
  background: var(--69b90f);
}
.fap {
  padding-top: 0.8rem;
}
.fap .title {
  text-align: center;
  font-size: .3rem;
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: var(--black-000);
}
@media (max-width: 1260px) {
  .fap .title {
    font-size: .32rem;
  }
}
@media (max-width: 991px) {
  .fap .title {
    font-size: .36rem;
  }
}
@media (max-width: 480px) {
  .fap .title {
    font-size: .38rem;
  }
}
.fap .box {
  margin-top: 3.33333333333%;
  margin-left: auto;
  margin-right: auto;
  width: 92%;
}
@media (max-width: 767px) {
  .fap .box {
    margin-top: 0.5rem;
    width: 100%;
  }
}
.fap .box .wrap {
  margin-top: 8%;
}
.fap .box .wrap ul {
  padding: 0;
}
.fap .box .wrap ul li {
  position: relative;
  list-style: none;
  padding-left: 0.4rem;
  padding-top: 0.4rem;
  padding-right: 10%;
  cursor: pointer;
}
@media (max-width: 767px) {
  .fap .box .wrap ul li {
    padding-left: 0;
    padding-top: 0.25rem;
  }
}
.fap .box .wrap ul li:nth-child(odd) {
  background: var(--bg-fc);
}
.fap .box .wrap ul li:nth-child(even) {
  background: var(--bg-f8);
}
.fap .box .wrap ul li .t1 {
  position: relative;
  width: 10%;
  margin-right: 4%;
  font-family: "HarmonyOS_Sans_SC_Bold";
  font-size: .28rem;
  color: var(--096abe);
  text-align: center;
}
@media (max-width: 1260px) {
  .fap .box .wrap ul li .t1 {
    font-size: .34rem;
  }
}
@media (max-width: 480px) {
  .fap .box .wrap ul li .t1 {
    font-size: .36rem;
  }
}
@media (max-width: 767px) {
  .fap .box .wrap ul li .t1 {
    width: 16%;
  }
}
.fap .box .wrap ul li .t2 {
  width: 86%;
}
@media (max-width: 767px) {
  .fap .box .wrap ul li .t2 {
    width: 80%;
  }
}
.fap .box .wrap ul li .subtit {
  display: -webkit-flex;
  display: flex;
  padding-bottom: 0.4rem;
}
@media (max-width: 767px) {
  .fap .box .wrap ul li .subtit {
    padding-bottom: 0.25rem;
  }
}
.fap .box .wrap ul li .subtit .t1::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background: var(--e9e9e9);
}
@media (max-width: 767px) {
  .fap .box .wrap ul li .subtit .t1::before {
    height: 80%;
  }
}
.fap .box .wrap ul li .subtit .t2 {
  font-family: "HarmonyOS_Sans_SC_Regular";
  font-size: 18px;
  color: var(--black-000);
  margin-top: 0.1rem;
}
@media (max-width: 1580px) {
  .fap .box .wrap ul li .subtit .t2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .fap .box .wrap ul li .subtit .t2 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .fap .box .wrap ul li .subtit .t2 {
    margin-top: 0.06rem;
  }
}
.fap .box .wrap ul li .text {
  display: none;
}
.fap .box .wrap ul li .text .txt {
  display: -webkit-flex;
  display: flex;
  padding-bottom: 0.4rem;
}
.fap .box .wrap ul li .text .txt .t2 {
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-666);
  line-height: 2;
  margin-top: 0.05rem;
}
@media (max-width: 1580px) {
  .fap .box .wrap ul li .text .txt .t2 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .fap .box .wrap ul li .text .txt .t2 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .fap .box .wrap ul li .text .txt .t2 {
    font-size: 14px;
  }
}
.fap .box .wrap ul li .arrow {
  position: absolute;
  right: 0.3rem;
  top: 0.4rem;
  width: 0.5rem;
  height: 0.5rem;
  background: url(../images/icon37.png) center no-repeat;
  background-size: 44% auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .fap .box .wrap ul li .arrow {
    top: 0.3rem;
    right: 0.15rem;
  }
}
.fap .box .wrap ul li.active .arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.support_layui_form {
  text-align: center;
}
.support_layui_form .layui-row {
  display: inline-flex;
  align-items: stretch;
  min-width: 7.3rem;
}
@media (max-width: 1260px) {
  .support_layui_form .layui-row {
    min-width: 70%;
  }
}
@media (max-width: 991px) {
  .support_layui_form .layui-row {
    min-width: 80%;
  }
}
.support_layui_form .layui-row .selection {
  width: 23.3%;
  border: var(--e8e8e8) solid 1px;
  border-radius: 0.28rem;
  box-sizing: border-box;
}
@media (max-width: 1580px) {
  .support_layui_form .layui-row .selection {
    width: 2rem;
  }
}
@media (max-width: 991px) {
  .support_layui_form .layui-row .selection {
    border-radius: 25px;
  }
}
@media (max-width: 480px) {
  .support_layui_form .layui-row .selection {
    width: 2.5rem;
  }
}
.support_layui_form .layui-row .selection .layui-form-select .layui-input {
  padding-left: 0.3rem;
  padding-right: 0.45rem;
  height: 0.54rem;
  color: var(--979797);
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
}
@media (max-width: 1580px) {
  .support_layui_form .layui-row .selection .layui-form-select .layui-input {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .support_layui_form .layui-row .selection .layui-form-select .layui-input {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .support_layui_form .layui-row .selection .layui-form-select .layui-input {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .support_layui_form .layui-row .selection .layui-form-select .layui-input {
    height: 40px;
  }
}
.support_layui_form .layui-row .selection .layui-form-select .layui-edge {
  border: none !important;
  right: 0.25rem;
  width: 0.13rem;
  height: 0.07rem;
  background: url(../images/icon35.png) center no-repeat;
  background-size: 100% auto;
}
@media (max-width: 480px) {
  .support_layui_form .layui-row .selection .layui-form-select .layui-edge {
    width: 0.22rem;
    height: 0.12rem;
  }
}
.support_layui_form .layui-row .selection .layui-form-select.layui-form-selected .layui-edge {
  margin-top: -0.03rem;
}
.support_layui_form .layui-row .selection .layui-form-select dl {
  top: 0.56rem;
  padding: 0;
  border-radius: 0.1rem;
}
@media (max-width: 991px) {
  .support_layui_form .layui-row .selection .layui-form-select dl {
    top: 40px;
  }
}
.support_layui_form .layui-row .selection .layui-form-select dl dt {
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-666);
  line-height: 1.5;
  padding: 0.1rem 0.15rem;
}
@media (max-width: 1580px) {
  .support_layui_form .layui-row .selection .layui-form-select dl dt {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .support_layui_form .layui-row .selection .layui-form-select dl dt {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .support_layui_form .layui-row .selection .layui-form-select dl dt {
    font-size: 14px;
  }
}
.support_layui_form .layui-row .selection .layui-form-select dl dd {
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-666);
  line-height: 1.5;
  padding: 0.1rem 0.15rem;
}
@media (max-width: 1580px) {
  .support_layui_form .layui-row .selection .layui-form-select dl dd {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .support_layui_form .layui-row .selection .layui-form-select dl dd {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .support_layui_form .layui-row .selection .layui-form-select dl dd {
    font-size: 14px;
  }
}
.support_layui_form .layui-row .selection .layui-form-select dl dd.layui-this {
  color: var(--white-color);
  background: var(--69b90f);
}
.support_layui_form .layui-row .layui-search {
  flex: 1;
  position: relative;
  display: flex;
  align-items: stretch;
  border-radius: 0.28rem;
  margin-left: 0.2rem;
  border: var(--e8e8e8) solid 1px;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 480px) {
  .support_layui_form .layui-row .layui-search {
    border-radius: 20px;
  }
}
.support_layui_form .layui-row .layui-search::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 46%;
  background: var(--colore9e);
}
.support_layui_form .layui-row .layui-search .layui-input {
  flex: 1;
  padding: 0 0 0 0.3rem;
  height: 100%;
  box-sizing: border-box;
  color: var(--black-666);
  font-size: 16px;
}
@media (max-width: 1580px) {
  .support_layui_form .layui-row .layui-search .layui-input {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .support_layui_form .layui-row .layui-search .layui-input {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .support_layui_form .layui-row .layui-search .layui-input {
    font-size: 14px;
  }
}
.support_layui_form .layui-row .layui-search .layui-input::-webkit-input-placeholder {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--979797);
}
.support_layui_form .layui-row .layui-search .layui-input:-moz-placeholder {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--979797);
}
.support_layui_form .layui-row .layui-search .layui-input::-moz-placeholder {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--979797);
}
.support_layui_form .layui-row .layui-search .layui-input:-ms-input-placeholder {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--979797);
}
.support_layui_form .layui-row .layui-search .layui-btn {
  width: 0.7rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--f6a742);
  border-radius: 0.28rem;
  padding: 0;
}
.support_layui_form .layui-row .layui-search .layui-btn img {
  width: 31.42857142857143%;
}
@media (max-width: 991px) {
  .support_layui_form .layui-row .layui-search .layui-btn {
    width: 50px;
  }
}
.support_layui_form .layui-input,
.support_layui_form .layui-input:hover,
.support_layui_form .layui-textarea:hover,
.support_layui_form .layui-form-select {
  border: none !important;
  background: none;
}
.support_layui_form .layui-input:focus,
.support_layui_form .layui-textarea:focus {
  box-shadow: none;
}
@media (max-width: 991px) {
  .contact .box {
    flex-wrap: wrap;
  }
}
.contact .box .left_w {
  position: relative;
  width: 44%;
  padding-right: 10%;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .contact .box .left_w {
    width: 100%;
    padding-right: 0;
  }
}
.contact .box .left_w::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--e9e9e9);
}
@media (max-width: 991px) {
  .contact .box .left_w::before {
    display: none;
  }
}
.contact .box .right_w {
  width: 46%;
}
@media (max-width: 991px) {
  .contact .box .right_w {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.contact .box .right_w .wrap {
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
}
.contact .box .right_w .wrap .img {
  display: block;
  width: 100%;
  overflow: hidden;
}
.contact .box .right_w .wrap .img img {
  display: block;
  width: 100%;
}
.contact .box .right_w .wrap .text {
  margin-top: 0.3rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-333);
  line-height: 2;
}
@media (max-width: 1580px) {
  .contact .box .right_w .wrap .text {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .contact .box .right_w .wrap .text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contact .box .right_w .wrap .text {
    font-size: 14px;
  }
}
.contact .box .title {
  font-family: "HarmonyOS_Sans_SC_Bold";
  font-size: .3rem;
  color: var(--black-000);
}
@media (max-width: 1260px) {
  .contact .box .title {
    font-size: .32rem;
  }
}
@media (max-width: 991px) {
  .contact .box .title {
    font-size: .36rem;
  }
}
@media (max-width: 480px) {
  .contact .box .title {
    font-size: .38rem;
  }
}
.contact .box .item {
  margin-bottom: 0.5rem;
}
.contact .box .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .contact .box .item {
    margin-bottom: 0.6rem;
  }
}
.contact .box .item .icon {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--79c621);
  margin-right: 0.1rem;
}
@media (max-width: 1920px) {
  .contact .box .item .icon {
    width: 0.56rem;
    height: 0.56rem;
  }
}
@media (max-width: 480px) {
  .contact .box .item .icon {
    width: 0.6rem;
    height: 0.6rem;
    margin-right: 0.2rem;
  }
}
.contact .box .item .icon img {
  width: 40%;
}
@media (max-width: 480px) {
  .contact .box .item .icon img {
    width: 45%;
  }
}
.contact .box .item .text1 {
  margin-top: 0.25rem;
}
@media (max-width: 480px) {
  .contact .box .item .text1 {
    margin-top: 0.35rem;
  }
}
.contact .box .item .text1 li {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
  align-items: baseline;
  list-style: none;
  margin-bottom: 0.15rem;
}
@media (max-width: 480px) {
  .contact .box .item .text1 li {
    margin-bottom: 20px;
  }
}
.contact .box .item .text1 li .txt {
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  font-family: "HarmonyOS_Sans_SC_Regular";
  font-size: 20px;
}
@media (max-width: 1260px) {
  .contact .box .item .text1 li .txt {
    font-size: .24rem;
  }
}
@media (max-width: 991px) {
  .contact .box .item .text1 li .txt {
    font-size: .28rem;
  }
}
.contact .box .item .text1 li .txt .t1 {
  color: var(--black-000);
}
.contact .box .item .text1 li .txt .t2 {
  color: var(--black-999);
}
.contact .box .item .text2 {
  margin-top: 0.15rem;
  display: inline-block;
}
@media (max-width: 480px) {
  .contact .box .item .text2 {
    margin-top: 0.25rem;
  }
}
.contact .box .item .text2 li {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  list-style: none;
  padding: 0.2rem 0;
  margin-bottom: 0.2rem;
  border-bottom: var(--e9e9e9) solid 1px;
}
@media (max-width: 480px) {
  .contact .box .item .text2 li {
    padding: 0.2rem 0 0.3rem;
  }
}
.contact .box .item .text2 li .txt {
  -webkit-flex: 1;
  flex: 1;
}
.contact .box .item .text2 li .txt .t1 {
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: var(--096abe);
  font-size: 20px;
  margin-bottom: 0.06rem;
}
@media (max-width: 1260px) {
  .contact .box .item .text2 li .txt .t1 {
    font-size: .24rem;
  }
}
@media (max-width: 991px) {
  .contact .box .item .text2 li .txt .t1 {
    font-size: .28rem;
  }
}
.contact .box .item .text2 li .txt .t2 {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--black-000);
  font-size: 16px;
}
@media (max-width: 1580px) {
  .contact .box .item .text2 li .txt .t2 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .contact .box .item .text2 li .txt .t2 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contact .box .item .text2 li .txt .t2 {
    font-size: 14px;
  }
}
.contact .message-btn {
  margin-top: 0.3rem;
}
@media (max-width: 767px) {
  .contact .message-btn {
    margin-top: 0.5rem;
  }
}
.contact .message-btn a {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 1.6rem;
  height: .48rem;
  font-size: 16px;
  color: var(--white-color);
  background: var(--096abe);
  border-radius: 0.25rem;
  padding: 0 0.25rem;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1580px) {
  .contact .message-btn a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .contact .message-btn a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contact .message-btn a {
    font-size: 14px;
  }
}
.contact .message-btn a:hover {
  background: var(--79c621);
}
@media (max-width: 767px) {
  .contact .message-btn a {
    height: 0.65rem;
    padding: 0 0.35rem;
    border-radius: 0.5rem;
  }
}
.literature {
  background: var(--fafafa);
}
.literature .box {
  margin-top: 5%;
}
@media (max-width: 767px) {
  .literature .box {
    margin-top: .5rem;
  }
}
.literature .box .wrap {
  margin-top: 3.75%;
  padding-bottom: 3.75%;
}
@media (max-width: 767px) {
  .literature .box .wrap {
    margin-top: .5rem;
    padding-bottom: .5rem;
  }
}
.literature .box .item {
  width: 47.5%;
  margin-right: 5%;
  margin-bottom: 3.33333333%;
  padding: 2% 2.66666666666667% 2.66666666666667% 2%;
  box-sizing: border-box;
  background: var(--white-color);
}
.literature .box .item:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .literature .box .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
@media (max-width: 640px) {
  .literature .box .item {
    flex-wrap: wrap;
    padding: 20px;
  }
}
.literature .box .item .img {
  position: relative;
  width: 35.9375%;
  padding-bottom: 35.9375%;
  overflow: hidden;
}
.literature .box .item .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.literature .box .item .text {
  width: 59.0625%;
}
.literature .box .item .text .t1 {
  font-size: .29rem;
  color: var(--black-000);
  line-height: 1.35;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1260px) {
  .literature .box .item .text .t1 {
    font-size: .32rem;
  }
}
@media (max-width: 991px) {
  .literature .box .item .text .t1 {
    font-size: .36rem;
  }
}
.literature .box .item .text .t2 {
  margin-top: 0.2rem;
  font-size: 16px;
  color: var(--black-999);
  line-height: 1.7;
  min-height: 0.54rem;
}
@media (max-width: 1580px) {
  .literature .box .item .text .t2 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .literature .box .item .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .literature .box .item .text .t2 {
    font-size: 14px;
  }
}
.literature .box .item .text .t3 {
  margin-top: 0.2rem;
  padding-top: 0.2rem;
  border-top: var(--e9e9e9) solid 1px;
}
.literature .box .item .text .t3 .t3-1 {
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-272);
}
@media (max-width: 1580px) {
  .literature .box .item .text .t3 .t3-1 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .literature .box .item .text .t3 .t3-1 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .literature .box .item .text .t3 .t3-1 {
    font-size: 14px;
  }
}
.literature .box .item .text .t3 .t3-1 i {
  display: inline-block;
  width: 0.18rem;
  height: 0.24rem;
  margin-left: 0.08rem;
  background: url(../images/icon43.png) center no-repeat;
  background-size: 100% auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 480px) {
  .literature .box .item .text .t3 .t3-1 i {
    width: 0.24rem;
  }
}
.literature .box .item .text .t3 .t3-2 {
  font-family: "CenturyGothicStd";
  color: var(--a6a6a6);
  font-size: 16px;
}
@media (max-width: 1580px) {
  .literature .box .item .text .t3 .t3-2 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .literature .box .item .text .t3 .t3-2 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .literature .box .item .text .t3 .t3-2 {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .literature .box .item .text .t3 {
    margin-top: 0.25rem;
    padding-top: 0.25rem;
  }
}
.literature .box .item:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.literature .box .item:hover .text .t1 {
  color: var(--69b90f);
}
.literature .box .item:hover .text .t3 .t3-1 i {
  background: url(../images/icon43a.png) center no-repeat;
  background-size: 100% auto;
}
.literature.news .box {
  padding-bottom: 4%;
}
@media (max-width: 767px) {
  .literature.news .box {
    margin-top: .5rem;
  }
}
@media (max-width: 991px) {
  .literature.news .box .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
@media (max-width: 640px) {
  .literature.news .box .item {
    padding: 20px;
  }
}
.literature.news .box .item .text .t1 {
  font-size: 22px;
  line-height: inherit;
}
@media (max-width: 1260px) {
  .literature.news .box .item .text .t1 {
    font-size: .26rem;
  }
}
@media (max-width: 991px) {
  .literature.news .box .item .text .t1 {
    font-size: .3rem;
  }
}
.literature.news .box .item .text .t2 {
  margin-top: 0.25rem;
}
@media (max-width: 480px) {
  .literature.news .box .item .text .t2 {
    margin-top: 0.2rem;
  }
}
.literature_detail .title {
  font-family: "HarmonyOS_Sans_SC_Bold";
  font-size: .3rem;
  color: var(--black-000);
  text-align: center;
}
@media (max-width: 1260px) {
  .literature_detail .title {
    font-size: .32rem;
  }
}
@media (max-width: 991px) {
  .literature_detail .title {
    font-size: .36rem;
  }
}
@media (max-width: 480px) {
  .literature_detail .title {
    font-size: .38rem;
  }
}
.literature_detail .box {
  margin-top: 3.7%;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .literature_detail .box {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .literature_detail .box {
    margin-top: .5rem;
  }
}
.literature_detail .box .item {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  padding-left: 0.15rem;
  padding-right: 0.4rem;
}
.literature_detail .box .item:nth-child(odd) {
  background: var(--bg-fc);
}
.literature_detail .box .item:nth-child(even) {
  background: var(--bg-f8);
}
@media (max-width: 767px) {
  .literature_detail .box .item {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding: 25px 15px 25px 25px;
  }
}
.literature_detail .box .item .date {
  position: relative;
  min-width: 13%;
  text-align: center;
}
@media (max-width: 1580px) {
  .literature_detail .box .item .date {
    min-width: 1.7rem;
  }
}
@media (max-width: 767px) {
  .literature_detail .box .item .date {
    width: 100%;
    margin-top: 0.15rem;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}
.literature_detail .box .item .date::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.2rem;
  width: 1px;
  height: 0.4rem;
  background: var(--e9e9e9);
}
.literature_detail .box .item .date .t1 {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: var(--096abe);
  font-size: .28rem;
}
@media (max-width: 1260px) {
  .literature_detail .box .item .date .t1 {
    font-size: .34rem;
  }
}
@media (max-width: 480px) {
  .literature_detail .box .item .date .t1 {
    font-size: .36rem;
  }
}
@media (max-width: 1580px) {
  .literature_detail .box .item .date .t1 {
    margin-left: 0.15rem;
  }
}
.literature_detail .box .item .date .t2 {
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: var(--aaaaaa);
  font-size: 16px;
}
@media (max-width: 1580px) {
  .literature_detail .box .item .date .t2 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .literature_detail .box .item .date .t2 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .literature_detail .box .item .date .t2 {
    font-size: 14px;
  }
}
.literature_detail .box .item .text {
  -webkit-flex: 1;
  flex: 1;
  padding-left: 3.8%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .literature_detail .box .item .text {
    width: 100%;
    padding-left: 0;
  }
}
.literature_detail .box .item .text .sp {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--black-000);
  font-size: 18px;
  line-height: 1.7;
}
@media (max-width: 1580px) {
  .literature_detail .box .item .text .sp {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .literature_detail .box .item .text .sp {
    font-size: 16px;
  }
}
.solution {
  background: var(--fafafa);
}
.solution .synopsis {
  position: relative;
  z-index: 1;
  padding-bottom: 13.6%;
}
@media (max-width: 767px) {
  .solution .synopsis {
    padding-bottom: 15%;
  }
}
.solution .synopsis #cas {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.solution .synopsis #cas canvas {
  position: absolute;
  left: 0;
  bottom: -45%;
  width: 100%;
  height: 150% !important;
}
.solution .synopsis .box {
  margin-top: 4%;
}
@media (max-width: 767px) {
  .solution .synopsis .box {
    margin-top: .5rem;
  }
}
.solution .synopsis .box .strength {
  -webkit-gap: 0.2rem;
  gap: 0.2rem;
}
.solution .synopsis .box .strength span {
  display: inline-block;
  min-width: 1.36rem;
  padding: 0.07rem 0.2rem;
  text-align: center;
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: var(--white-color);
  font-size: 18px;
  background: var(--active-color);
  box-sizing: border-box;
  border-radius: 0.3rem;
  overflow: hidden;
}
@media (max-width: 1580px) {
  .solution .synopsis .box .strength span {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .solution .synopsis .box .strength span {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .solution .synopsis .box .strength span {
    padding: 0.1rem 0.25rem;
    border-radius: 0.5rem;
  }
}
@media (max-width: 480px) {
  .solution .synopsis .box .strength span {
    font-size: 16px;
  }
}
@media (max-width: 480px) and (max-width: 1580px) {
  .solution .synopsis .box .strength span {
    font-size: 13px;
  }
}
@media (max-width: 480px) and (max-width: 991px) {
  .solution .synopsis .box .strength span {
    font-size: 14px;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .solution .synopsis .box .strength span {
    font-size: 14px;
  }
}
.solution .synopsis .box .text {
  max-width: 12.8rem;
  width: 100%;
  margin-top: 0.2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 18px;
  color: var(--black-333);
  line-height: 2;
}
@media (max-width: 1580px) {
  .solution .synopsis .box .text {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .solution .synopsis .box .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .solution .synopsis .box .text {
    margin-top: 0.5rem;
  }
}
.solution .solution-list .box .item {
  width: 47.4%;
  margin-right: 5.2%;
  margin-bottom: 3.33333333333333%;
  overflow: hidden;
  border-radius: 0.1rem;
  background: var(--white-color);
}
.solution .solution-list .box .item:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .solution .solution-list .box .item {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .solution .solution-list .box .item {
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
}
.solution .solution-list .box .item .img {
  position: relative;
  width: 50%;
  padding-bottom: 51.54929577464789%;
  overflow: hidden;
}
@media (max-width: 480px) {
  .solution .solution-list .box .item .img {
    width: 100%;
    padding-bottom: 100%;
  }
}
.solution .solution-list .box .item .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.solution .solution-list .box .item .text {
  width: 50%;
  padding: 7% 4.2%;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .solution .solution-list .box .item .text {
    width: 100%;
    padding: 25px;
  }
}
.solution .solution-list .box .item .text .t1 {
  font-family: "HarmonyOS_Sans_SC_Bold";
  font-size: .26rem;
  color: var(--black-000);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1260px) {
  .solution .solution-list .box .item .text .t1 {
    font-size: .32rem;
  }
}
@media (max-width: 480px) {
  .solution .solution-list .box .item .text .t1 {
    font-size: .34rem;
  }
}
.solution .solution-list .box .item .text .line {
  display: block;
  width: 0.5rem;
  height: 0.04rem;
  margin-top: 0.1rem;
  background: var(--68b811);
}
.solution .solution-list .box .item .text .t2 {
  margin-top: 0.3rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-666);
  line-height: 1.7;
  min-height: 1.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media (max-width: 1580px) {
  .solution .solution-list .box .item .text .t2 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .solution .solution-list .box .item .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .solution .solution-list .box .item .text .t2 {
    font-size: 14px;
  }
}
.solution .solution-list .box .item .text .t3 {
  margin-top: 0.25rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-272);
}
@media (max-width: 1580px) {
  .solution .solution-list .box .item .text .t3 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .solution .solution-list .box .item .text .t3 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .solution .solution-list .box .item .text .t3 {
    font-size: 14px;
  }
}
.solution .solution-list .box .item .text .t3 i {
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  margin-left: 0.1rem;
  border-radius: 50%;
  background: var(--active-color) url(../images/icon44.png) center no-repeat;
  background-size: 56.66666666666667% auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .solution .solution-list .box .item .text .t3 i {
    width: 28px;
    height: 28px;
    margin-left: 8px;
  }
}
.solution .solution-list .box .item:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.solution .solution-list .box .item:hover .text .t1 {
  color: var(--68b811);
}
.solution .solution-list .box .item:hover .text .t3 i {
  background: var(--68b811) url(../images/icon44.png) center no-repeat;
  background-size: 56.66666666666667% auto;
}
.solution .customized {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.solution .customized .box {
  max-width: 12.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.5%;
  text-align: center;
}
@media (max-width: 480px) {
  .solution .customized .box {
    margin-top: 0.4rem;
  }
}
.solution .customized .box .text {
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 18px;
  color: var(--black-333);
  line-height: 2;
  min-height: 1.2rem;
}
@media (max-width: 1580px) {
  .solution .customized .box .text {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .solution .customized .box .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .solution .customized .box .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) and (max-width: 1580px) {
  .solution .customized .box .text {
    font-size: 13px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .solution .customized .box .text {
    font-size: 14px;
  }
}
@media (max-width: 991px) and (max-width: 480px) {
  .solution .customized .box .text {
    font-size: 14px;
  }
}
.solution .customized .box .btns {
  margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .solution .customized .box .btns {
    margin-top: 0.5rem;
  }
}
.solution .customized .box .btns a {
  display: inline-block;
  min-width: 1.36rem;
  padding: 0.07rem 0.2rem;
  border-radius: 0.3rem;
  font-family: "HarmonyOS_Sans_SC_Regular";
  font-size: 18px;
  color: var(--white-color);
  background: var(--active-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1580px) {
  .solution .customized .box .btns a {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .solution .customized .box .btns a {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .solution .customized .box .btns a {
    padding: 0.1rem 0.36rem;
    border-radius: 0.5rem;
  }
}
.solution .customized .box .btns a:hover {
  background: var(--69b90f);
}
.solution_details .section .title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .36rem;
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: var(--096abe);
}
@media (max-width: 480px) {
  .solution_details .section .title {
    font-size: .42rem;
  }
}
.solution_details .section .title img {
  display: inline-block;
  margin-right: 0.1rem;
}
.solution_details .brief .box {
  margin-top: 3.4%;
  font-family: "HarmonyOS_Sans_SC_Regular";
  font-size: 16px;
  color: var(--black-666);
  line-height: 2;
  text-align: center;
}
@media (max-width: 1580px) {
  .solution_details .brief .box {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .solution_details .brief .box {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .solution_details .brief .box {
    font-size: 14px;
  }
}
.solution_details .brief .box img {
  display: block;
  margin: 0.2rem auto 0;
}
.solution_details .merit {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.solution_details .merit .box {
  margin-top: 5.4%;
  -webkit-gap: 0.6rem;
  gap: 0.6rem;
}
@media (max-width: 767px) {
  .solution_details .merit .box {
    margin-top: 12%;
  }
}
@media (max-width: 480px) {
  .solution_details .merit .box {
    margin-top: 0.5rem;
  }
}
.solution_details .merit .box .item {
  position: relative;
  z-index: 1;
  width: calc((100% - 0.6rem) / 2);
  padding: 0.2rem 0.24rem;
  box-sizing: border-box;
  min-height: 1.2rem;
  box-shadow: 0px 30px 34px rgba(0, 0, 0, 0.02);
}
@media (max-width: 767px) {
  .solution_details .merit .box .item {
    width: 100%;
    padding: 0.3rem;
    margin-bottom: 0.15rem;
  }
}
.solution_details .merit .box .item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: var(--white-color) url(../images/img64.png) center repeat-x;
  background-size: 100% 100%;
  border-radius: 0.15rem;
}
.solution_details .merit .box .item .icon {
  display: inline-block;
  width: 0.94rem;
  height: 0.94rem;
  line-height: 0.94rem;
  margin-top: -0.45rem;
  text-align: center;
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: var(--white-color);
  font-size: .4rem;
  border-radius: 50%;
  background: var(--69b90f);
}
@media (max-width: 1260px) {
  .solution_details .merit .box .item .icon {
    font-size: .45rem;
  }
}
@media (max-width: 767px) {
  .solution_details .merit .box .item .icon {
    margin-top: -0.7rem;
  }
}
.solution_details .merit .box .item .text {
  -webkit-flex: 1;
  flex: 1;
  margin-left: 0.2rem;
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: var(--black-888);
  line-height: 1.8;
}
.solution_details .merit .box .item .text .sp {
  display: inline-block;
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: var(--black-000);
}
.solution_details .contact_streamer {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.solution_details .contact_streamer .box {
  text-align: center;
}
.solution_details .contact_streamer .box .title {
  color: var(--white-color);
}
.solution_details .contact_streamer .box .text {
  margin-top: 0.2rem;
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: var(--white-color);
  font-size: 16px;
  opacity: 0.43;
}
@media (max-width: 1580px) {
  .solution_details .contact_streamer .box .text {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .solution_details .contact_streamer .box .text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .solution_details .contact_streamer .box .text {
    font-size: 14px;
  }
}
.solution_details .contact_streamer .box .btns {
  margin-top: 0.5rem;
}
.solution_details .contact_streamer .box .btns a {
  display: inline-block;
  min-width: 1.36rem;
  font-family: "HarmonyOS_Sans_SC_Regular";
  font-size: 18px;
  color: var(--white-color);
  padding: 0.07rem 0.2rem;
  box-sizing: border-box;
  border-radius: 0.3rem;
  background: var(--2698f3);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1580px) {
  .solution_details .contact_streamer .box .btns a {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .solution_details .contact_streamer .box .btns a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .solution_details .contact_streamer .box .btns a {
    padding: 0.1rem 0.36rem;
    border-radius: 0.5rem;
  }
}
.solution_details .contact_streamer .box .btns a:hover {
  background: var(--69b90f);
}
.solution_details .whysection {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.solution_details .whysection .box {
  margin-top: 6.5%;
}
.solution_details .whysection .box .item {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
  background: var(--white-color);
}
@media (max-width: 991px) {
  .solution_details .whysection .box .item {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
}
.solution_details .whysection .box .item:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .solution_details .whysection .box .item:nth-child(4n) {
    margin-right: 4%;
  }
}
@media (max-width: 991px) {
  .solution_details .whysection .box .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .solution_details .whysection .box .item {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 25px;
  }
}
.solution_details .whysection .box .item .img {
  position: relative;
  width: 100%;
  padding-bottom: 79.32011331444759%;
  overflow: hidden;
}
.solution_details .whysection .box .item .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.solution_details .whysection .box .item .text {
  padding: 0.24rem 0.2rem;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 480px) {
  .solution_details .whysection .box .item .text {
    padding: 25px;
  }
}
.solution_details .whysection .box .item .text .t1 {
  font-family: "HarmonyOS_Sans_SC_Medium";
  font-size: .24rem;
  color: var(--black-000);
}
@media (max-width: 1580px) {
  .solution_details .whysection .box .item .text .t1 {
    font-size: .32rem;
  }
}
@media (max-width: 1260px) {
  .solution_details .whysection .box .item .text .t1 {
    font-size: .28rem;
  }
}
@media (max-width: 480px) {
  .solution_details .whysection .box .item .text .t1 {
    font-size: .32rem;
  }
}
.solution_details .whysection .box .item .text .t2 {
  margin-top: 0.1rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-666);
  line-height: 1.7;
  min-height: 0.9rem;
}
@media (max-width: 1580px) {
  .solution_details .whysection .box .item .text .t2 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .solution_details .whysection .box .item .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .solution_details .whysection .box .item .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .solution_details .whysection .box .item .text .t2 {
    margin-top: 0.2rem;
  }
}
.solution_details .whysection .box .item:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.contact_information .title {
  font-family: "HarmonyOS_Sans_SC_Bold";
  font-size: .3rem;
  color: var(--black-000);
}
@media (max-width: 1260px) {
  .contact_information .title {
    font-size: .32rem;
  }
}
@media (max-width: 991px) {
  .contact_information .title {
    font-size: .36rem;
  }
}
@media (max-width: 480px) {
  .contact_information .title {
    font-size: .38rem;
  }
}
.contact_information .box {
  margin-top: 5%;
}
@media (max-width: 991px) {
  .contact_information .box .headquarters {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .contact_information .box .headquarters {
    margin-top: 0.5rem;
  }
}
.contact_information .box .headquarters .imgbox {
  width: 50%;
  overflow: hidden;
}
.contact_information .box .headquarters .imgbox img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .contact_information .box .headquarters .imgbox {
    width: 100%;
  }
}
.contact_information .box .headquarters .text {
  width: 50%;
  padding: 5.4%;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .contact_information .box .headquarters .text {
    width: 100%;
    padding: 25px;
  }
}
.contact_information .box .headquarters .text .subtit {
  font-size: .24rem;
  color: var(--black-000);
}
@media (max-width: 1580px) {
  .contact_information .box .headquarters .text .subtit {
    font-size: .32rem;
  }
}
@media (max-width: 1260px) {
  .contact_information .box .headquarters .text .subtit {
    font-size: .28rem;
  }
}
@media (max-width: 480px) {
  .contact_information .box .headquarters .text .subtit {
    font-size: .32rem;
  }
}
@media (max-width: 480px) {
  .contact_information .box .headquarters .text .subtit {
    font-size: .26rem;
  }
}
@media (max-width: 480px) and (max-width: 1260px) {
  .contact_information .box .headquarters .text .subtit {
    font-size: .32rem;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .contact_information .box .headquarters .text .subtit {
    font-size: .34rem;
  }
}
.contact_information .box .headquarters .text ul {
  margin-top: 0.45rem;
}
.contact_information .box .headquarters .text ul li {
  margin-bottom: 0.2rem;
}
.contact_information .box .headquarters .text ul li .icon {
  flex-shrink: 0;
  margin-right: 0.2rem;
}
@media (max-width: 991px) {
  .contact_information .box .headquarters .text ul li .icon {
    margin-right: 15px;
  }
}
.contact_information .box .headquarters .text ul li .icon img {
  max-width: 0.25rem;
}
@media (max-width: 991px) {
  .contact_information .box .headquarters .text ul li .icon img {
    max-width: 20px;
  }
}
.contact_information .box .headquarters .text ul li .txt {
  font-size: 18px;
}
@media (max-width: 1580px) {
  .contact_information .box .headquarters .text ul li .txt {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .contact_information .box .headquarters .text ul li .txt {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .contact_information .box .headquarters .text ul li .txt {
    font-size: 16px;
  }
}
@media (max-width: 480px) and (max-width: 1580px) {
  .contact_information .box .headquarters .text ul li .txt {
    font-size: 13px;
  }
}
@media (max-width: 480px) and (max-width: 991px) {
  .contact_information .box .headquarters .text ul li .txt {
    font-size: 14px;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .contact_information .box .headquarters .text ul li .txt {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .contact_information .box .office {
    flex-wrap: wrap;
  }
}
.contact_information .box .office .text {
  width: calc((100% - 0.2rem) / 2);
  margin-right: 0.2rem;
  margin-top: 0.2rem;
  padding: 2.5%;
  box-sizing: border-box;
}
.contact_information .box .office .text:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .contact_information .box .office .text {
    width: 100%;
    margin-top: 25px;
    margin-right: 0;
    padding: 25px;
  }
}
.contact_information .box .text {
  background: url(../images/img81.png) center right no-repeat;
  background-size: cover;
  box-shadow: 0px 30px 34px rgba(0, 0, 0, 0.02);
}
.contact_information .box .text .subtit {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: var(--107bd2);
  font-size: 20px;
}
@media (max-width: 1260px) {
  .contact_information .box .text .subtit {
    font-size: .24rem;
  }
}
@media (max-width: 991px) {
  .contact_information .box .text .subtit {
    font-size: .28rem;
  }
}
@media (max-width: 480px) {
  .contact_information .box .text .subtit {
    font-size: .24rem;
  }
}
@media (max-width: 480px) and (max-width: 1580px) {
  .contact_information .box .text .subtit {
    font-size: .32rem;
  }
}
@media (max-width: 480px) and (max-width: 1260px) {
  .contact_information .box .text .subtit {
    font-size: .28rem;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .contact_information .box .text .subtit {
    font-size: .32rem;
  }
}
.contact_information .box .text ul {
  margin-top: 0.25rem;
  padding: 0;
}
@media (max-width: 991px) {
  .contact_information .box .text ul {
    margin-right: 0.4rem;
  }
}
.contact_information .box .text ul li {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  list-style: none;
  margin-bottom: 0.15rem;
}
.contact_information .box .text ul li .icon {
  display: inline-block;
  margin-right: 0.1rem;
}
@media (max-width: 991px) {
  .contact_information .box .text ul li .icon {
    margin-right: 10px;
  }
}
.contact_information .box .text ul li .icon img {
  max-width: 0.2rem;
}
@media (max-width: 991px) {
  .contact_information .box .text ul li .icon img {
    max-width: 16px;
  }
}
.contact_information .box .text ul li .txt {
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--black-000);
  font-size: 16px;
}
@media (max-width: 1580px) {
  .contact_information .box .text ul li .txt {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .contact_information .box .text ul li .txt {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contact_information .box .text ul li .txt {
    font-size: 14px;
  }
}
.contact_information .box .text ul li .txt .sp1 {
  margin-right: 0.1rem;
}
.contact_information .box .text ul li .txt .sp2 {
  -webkit-flex: 1;
  flex: 1;
}
.contact_information .box .consult {
  margin-top: 4.666666667%;
}
@media (max-width: 991px) {
  .contact_information .box .consult {
    margin-top: 0.5rem;
  }
}
.contact_information .box .consult .item {
  width: calc((100% - 0.4rem) / 3);
  margin-right: 0.2rem;
  background: var(--fafafa);
  padding: 0.28rem;
  box-sizing: border-box;
}
.contact_information .box .consult .item:nth-child(3n) {
  margin-right: 0;
}
.contact_information .box .consult .item .subtit {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: var(--black-000);
  font-size: 22px;
}
@media (max-width: 1260px) {
  .contact_information .box .consult .item .subtit {
    font-size: .26rem;
  }
}
@media (max-width: 991px) {
  .contact_information .box .consult .item .subtit {
    font-size: .3rem;
  }
}
@media (max-width: 480px) {
  .contact_information .box .consult .item .subtit {
    font-size: .26rem;
  }
}
@media (max-width: 480px) and (max-width: 1260px) {
  .contact_information .box .consult .item .subtit {
    font-size: .32rem;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .contact_information .box .consult .item .subtit {
    font-size: .34rem;
  }
}
@media (max-width: 991px) {
  .contact_information .box .consult .item {
    width: 100%;
    padding: 25px;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.contact_information .box .consult .item ul {
  margin-top: 0.2rem;
  padding: 0;
}
@media (max-width: 991px) {
  .contact_information .box .consult .item ul {
    margin-top: 0.25rem;
  }
}
.contact_information .box .consult .item ul li {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  list-style: none;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-000);
  line-height: 1.8;
  margin-bottom: 0.06rem;
}
@media (max-width: 1580px) {
  .contact_information .box .consult .item ul li {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .contact_information .box .consult .item ul li {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contact_information .box .consult .item ul li {
    font-size: 14px;
  }
}
.contact_information .box .consult .item ul li .sp1 {
  display: inline-block;
  min-width: 0.5rem;
  margin-right: 0.1rem;
}
.contact_information .box .consult .item ul li .sp2 {
  -webkit-flex: 1;
  flex: 1;
}
.contact_information .box .consult .item dl {
  margin-top: 0.3rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact_information .box .consult .item dl dd {
  width: 48%;
  margin-right: 4%;
  text-align: center;
}
.contact_information .box .consult .item dl dd:nth-child(2n) {
  margin-right: 0;
}
.contact_information .box .consult .item dl dd .img {
  display: block;
  width: 100%;
  overflow: hidden;
}
.contact_information .box .consult .item dl dd .img img {
  max-width: 100%;
}
.contact_information .box .consult .item dl dd .txt {
  margin-top: 0.12rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-000);
}
@media (max-width: 1580px) {
  .contact_information .box .consult .item dl dd .txt {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .contact_information .box .consult .item dl dd .txt {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contact_information .box .consult .item dl dd .txt {
    font-size: 14px;
  }
}
.contact_information .box .consult .item .itemli {
  margin-bottom: 0.35rem;
}
.contact_information .box .consult .item .itemli:last-child {
  margin-bottom: 0;
}
.contact_information .box .consult .item .itemli ul li .sp1 {
  min-width: 0.3rem;
}
.contact_feedback .box {
  width: 72%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
}
@media (max-width: 1260px) {
  .contact_feedback .box {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .contact_feedback .box {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact_feedback .box {
    margin-top: 0.5rem;
  }
}
.contact_feedback .box .layui-form .layui-form-item {
  margin-bottom: 0.25rem;
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item {
    margin-bottom: 0;
  }
}
.contact_feedback .box .layui-form .layui-form-item .layui-input-block {
  margin-left: 0;
  box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.04);
  padding: 0 0.2rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item .layui-input-block {
    padding: 0;
    box-shadow: none;
    display: block;
  }
}
.contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-input,
.contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-select,
.contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-textarea {
  border: none;
  height: 0.5rem;
  padding-left: 0;
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-input,
  .contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-select,
  .contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-textarea {
    height: 40px;
  }
}
.contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-input {
  -webkit-flex: 1;
  flex: 1;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--black-333);
  font-size: 16px;
}
@media (max-width: 1580px) {
  .contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-input {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-input {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-input {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-input {
    width: 100%;
    padding: 0 15px;
    box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.04);
  }
}
.contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-textarea {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--black-333);
  font-size: 16px;
  padding: 0.15rem 0;
  min-height: 1.45rem;
  box-sizing: border-box;
}
@media (max-width: 1580px) {
  .contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-textarea {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-textarea {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-textarea {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item .layui-input-block .layui-textarea {
    min-height: 120px;
    padding: 15px 0;
  }
}
.contact_feedback .box .layui-form .layui-form-item .layui-input-block > input::-webkit-input-placeholder,
.contact_feedback .box .layui-form .layui-form-item .layui-input-block > textarea::-webkit-input-placeholder {
  font-family: "HarmonyOS_Sans_SC_Light";
  font-style: 1em;
  background: -webkit-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -moz-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -o-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -ms-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.contact_feedback .box .layui-form .layui-form-item .layui-input-block > input:-moz-placeholder,
.contact_feedback .box .layui-form .layui-form-item .layui-input-block > textarea:-moz-placeholder {
  font-family: "HarmonyOS_Sans_SC_Light";
  font-style: 1em;
  background: -webkit-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -moz-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -o-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -ms-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.contact_feedback .box .layui-form .layui-form-item .layui-input-block > input::-moz-placeholder,
.contact_feedback .box .layui-form .layui-form-item .layui-input-block > textarea::-moz-placeholder {
  font-family: "HarmonyOS_Sans_SC_Light";
  font-style: 1em;
  background: -webkit-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -moz-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -o-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -ms-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.contact_feedback .box .layui-form .layui-form-item .layui-input-block > input:-ms-input-placeholder,
.contact_feedback .box .layui-form .layui-form-item .layui-input-block > textarea:-ms-input-placeholder {
  font-family: "HarmonyOS_Sans_SC_Light";
  font-style: 1em;
  background: -webkit-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -moz-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -o-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -ms-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.contact_feedback .box .layui-form .layui-form-item .layui-input-block > input::-ms-input-placeholder,
.contact_feedback .box .layui-form .layui-form-item .layui-input-block > textarea::-ms-input-placeholder {
  font-family: "HarmonyOS_Sans_SC_Light";
  font-style: 1em;
  background: -webkit-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -moz-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -o-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -ms-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.contact_feedback .box .layui-form .layui-form-item .layui-input-block > input::placeholder,
.contact_feedback .box .layui-form .layui-form-item .layui-input-block > textarea::placeholder {
  font-family: "HarmonyOS_Sans_SC_Light";
  font-style: 1em;
  background: -webkit-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -moz-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -o-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: -ms-linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background: linear-gradient(to right, var(--fe0000) 0, var(--black-666) var(--size), var(--black-666) var(--size));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.contact_feedback .box .layui-form .layui-form-item .half {
  width: 46.3%;
  margin-right: 7.4%;
}
.contact_feedback .box .layui-form .layui-form-item .half:nth-child(2n) {
  margin-right: 0;
}
.contact_feedback .box .layui-form .layui-form-item .half.layui-input-block {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  min-height: 50px;
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item .half.layui-input-block {
    display: block;
  }
}
@media (max-width: 991px) {
  .contact_feedback .box .layui-form .layui-form-item .half {
    width: 48%;
    margin-right: 4%;
  }
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item .half {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item .half.area {
    padding: 0;
    flex-wrap: wrap;
    box-shadow: none;
  }
  .contact_feedback .box .layui-form .layui-form-item .half.area .layui-form-label {
    width: 100%;
    margin-bottom: 0.25rem;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .contact_feedback .box .layui-form .layui-form-item .half.area .selectbox {
    width: 100%;
    flex-wrap: wrap;
  }
  .contact_feedback .box .layui-form .layui-form-item .half.area .selectbox .layui-form-select {
    width: 100%;
    padding: 0 15px;
    box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    margin-right: 0;
  }
  .contact_feedback .box .layui-form .layui-form-item .half.area .selectbox .layui-form-select .layui-edge {
    right: 15px;
  }
  .contact_feedback .box .layui-form .layui-form-item .half.area .selectbox .layui-form-select:last-child {
    margin-bottom: 0;
  }
}
.contact_feedback .box .layui-form .layui-form-item .selectbox {
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item .selectbox {
    display: block;
    width: 100%;
  }
}
.contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select {
  display: inline-block;
  width: calc((100% - 0.2rem) / 3);
  margin-right: 0.1rem;
}
.contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select .layui-input {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select .layui-edge {
  border: none;
  width: 0.15rem;
  height: 0.09rem;
  background: url(../images/icon50.png) center no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select .layui-edge {
    right: 15px;
    width: 0.2rem;
    height: 0.12rem;
  }
}
.contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select dl {
  padding: 0;
  top: 0.5rem;
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select dl {
    top: 40px;
  }
}
.contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select dl dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--black-333);
  font-size: 16px;
}
@media (max-width: 1580px) {
  .contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select dl dd {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select dl dd {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select dl dd {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select dl dd {
    padding: 0 15px;
  }
}
.contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select dl dd.layui-this {
  padding: 0 15px !important;
  background: var(--69b90f);
  color: var(--white-color);
}
.contact_feedback .box .layui-form .layui-form-item .selectbox.third .layui-form-select.layui-form-selected .layui-edge {
  margin-top: -0.03rem;
}
.contact_feedback .box .layui-form .layui-form-item .layui-form-label {
  display: inline-block;
  width: auto;
  min-width: 0.4rem;
  padding: 0;
  text-align: left;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-666);
  white-space: nowrap;
}
@media (max-width: 1580px) {
  .contact_feedback .box .layui-form .layui-form-item .layui-form-label {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .contact_feedback .box .layui-form .layui-form-item .layui-form-label {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contact_feedback .box .layui-form .layui-form-item .layui-form-label {
    font-size: 14px;
  }
}
.contact_feedback .box .layui-form .layui-form-item .layui-form-label span {
  color: var(--fe0000);
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item .layui-form-label {
    width: 100%;
    margin-bottom: 15px;
  }
}
.contact_feedback .box .layui-form .layui-form-item.content {
  display: flex;
  box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.04);
  padding: 0.2rem 0.2rem 0rem 0.2rem;
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item.content {
    display: block;
    box-shadow: none;
    padding: 0;
  }
}
.contact_feedback .box .layui-form .layui-form-item.content .layui-input-block {
  flex: 1;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item.content .layui-input-block {
    width: 100%;
  }
}
.contact_feedback .box .layui-form .layui-form-item.content .layui-input-block .layui-textarea {
  padding-top: 0;
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item.content .layui-input-block .layui-textarea {
    padding: 15px;
    box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.04);
  }
}
.contact_feedback .box .layui-form .layui-form-item.btns {
  padding-top: 5.6%;
  text-align: center;
}
@media (max-width: 1260px) {
  .contact_feedback .box .layui-form .layui-form-item.btns {
    padding-top: 8%;
  }
}
@media (max-width: 767px) {
  .contact_feedback .box .layui-form .layui-form-item.btns {
    padding-top: 0.7rem;
  }
}
.contact_feedback .box .layui-form .layui-form-item.btns .layui-btn {
  display: inline-block;
  min-width: 1.9rem;
  height: 0.56rem;
  line-height: 0.56rem;
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: var(--white-color);
  font-size: .24rem;
  border-radius: 0.28rem;
  background: var(--69b90f);
}
@media (max-width: 1580px) {
  .contact_feedback .box .layui-form .layui-form-item.btns .layui-btn {
    font-size: .32rem;
  }
}
@media (max-width: 1260px) {
  .contact_feedback .box .layui-form .layui-form-item.btns .layui-btn {
    font-size: .28rem;
  }
}
@media (max-width: 480px) {
  .contact_feedback .box .layui-form .layui-form-item.btns .layui-btn {
    font-size: .32rem;
  }
}
.contact_feedback .box .layui-form .layui-form-item.btns .layui-btn:hover {
  opacity: 1;
  background: var(--096abe);
}
@media (max-width: 1260px) {
  .contact_feedback .box .layui-form .layui-form-item.btns .layui-btn {
    font-size: 18px;
    min-width: 130px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
  }
}
@media (max-width: 1260px) and (max-width: 1580px) {
  .contact_feedback .box .layui-form .layui-form-item.btns .layui-btn {
    font-size: 15px;
  }
}
@media (max-width: 1260px) and (max-width: 480px) {
  .contact_feedback .box .layui-form .layui-form-item.btns .layui-btn {
    font-size: 16px;
  }
}
.customer_case .box {
  margin-top: 4.2%;
  padding-bottom: 3%;
}
@media (max-width: 1580px) {
  .customer_case .box {
    padding-bottom: 5%;
  }
}
@media (max-width: 991px) {
  .customer_case .box {
    margin-top: 0.5rem;
    padding-bottom: 0.4rem;
  }
}
.customer_case .box .item {
  position: relative;
  width: 31.33333333333333%;
  margin-right: 3%;
  margin-bottom: 2.66666666666667%;
}
@media (max-width: 991px) {
  .customer_case .box .item {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 3.5%;
  }
}
@media (max-width: 640px) {
  .customer_case .box .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.customer_case .box .item:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .customer_case .box .item:nth-child(3n) {
    margin-right: 4%;
  }
}
@media (max-width: 640px) {
  .customer_case .box .item:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .customer_case .box .item:nth-child(2n) {
    margin-right: 0;
  }
}
.customer_case .box .item .img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.customer_case .box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.customer_case .box .item .img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 640px) {
  .customer_case .box .item .img::before {
    display: none;
  }
}
.customer_case .box .item .img::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, #000000 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, #000000 100%);
  opacity: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 640px) {
  .customer_case .box .item .img::after {
    opacity: 0.5;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
.customer_case .box .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  padding: 0.2rem 0.4rem;
  box-sizing: border-box;
  text-align: center;
  -webkit-transform: translateY(0.54rem);
  -ms-transform: translateY(0.54rem);
  transform: translateY(0.54rem);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 1260px) {
  .customer_case .box .item .text {
    padding: 0.2rem 0.25rem;
  }
}
@media (max-width: 640px) {
  .customer_case .box .item .text {
    padding: 25px;
  }
}
.customer_case .box .item .text .t1 {
  font-family: "HarmonyOS_Sans_SC_Regular";
  font-size: 22px;
  color: var(--white-color);
  margin-bottom: 0.12rem;
}
@media (max-width: 1260px) {
  .customer_case .box .item .text .t1 {
    font-size: .26rem;
  }
}
@media (max-width: 991px) {
  .customer_case .box .item .text .t1 {
    font-size: .3rem;
  }
}
@media (max-width: 640px) {
  .customer_case .box .item .text .t1 {
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .customer_case .box .item .text .t1 {
    font-size: .24rem;
  }
}
@media (max-width: 480px) and (max-width: 1580px) {
  .customer_case .box .item .text .t1 {
    font-size: .32rem;
  }
}
@media (max-width: 480px) and (max-width: 1260px) {
  .customer_case .box .item .text .t1 {
    font-size: .28rem;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .customer_case .box .item .text .t1 {
    font-size: .32rem;
  }
}
.customer_case .box .item .text .t2 {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--e6e6e6);
  font-size: 16px;
  line-height: 1.7;
  opacity: 0;
}
@media (max-width: 1580px) {
  .customer_case .box .item .text .t2 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .customer_case .box .item .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .customer_case .box .item .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .customer_case .box .item .text .t2 {
    display: none;
  }
}
.customer_case .box .item:hover .img::before {
  opacity: 0;
}
.customer_case .box .item:hover .img::after {
  opacity: 0.5;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.customer_case .box .item:hover .text {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.customer_case .box .item:hover .text .t2 {
  opacity: 1;
}
.news .box {
  margin-top: 4%;
}
.news .box .item {
  width: 48.65%;
  margin-right: 2.7%;
  margin-bottom: 2.7%;
  background: var(--white-color);
  padding: 0.3rem 0.3rem 0.4rem 0.3rem;
  box-sizing: border-box;
}
.news .box .item.nth-child(2n) {
  margin-right: 0;
}
.news .box .item .img {
  position: relative;
  width: ;
}
.newdetails .box {
  width: 85.6%;
  margin: auto;
}
@media (max-width: 1260px) {
  .newdetails .box {
    width: 100%;
  }
}
.newdetails .box .title {
  text-align: center;
  padding-bottom: 0.1rem;
  border-bottom: var(--e9e9e9) solid 1px;
}
.newdetails .box .title .sp {
  color: var(--black-000);
  font-size: .3rem;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
@media (max-width: 1260px) {
  .newdetails .box .title .sp {
    font-size: .32rem;
  }
}
@media (max-width: 991px) {
  .newdetails .box .title .sp {
    font-size: .36rem;
  }
}
@media (max-width: 480px) {
  .newdetails .box .title .sp {
    font-size: .38rem;
  }
}
.newdetails .box .title .othertxt {
  margin-top: 0.3rem;
}
.newdetails .box .title .othertxt span {
  display: inline-block;
  margin-right: 0.6rem;
  margin-bottom: 0.25rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--black-888);
  font-size: 16px;
}
@media (max-width: 1580px) {
  .newdetails .box .title .othertxt span {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .newdetails .box .title .othertxt span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .newdetails .box .title .othertxt span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .newdetails .box .title .othertxt span {
    margin-right: 0.4rem;
  }
}
.newdetails .box .title .othertxt span:last-child {
  margin-right: 0;
}
.newdetails .box .details {
  padding-top: 0.5rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: var(--black-666);
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 1580px) {
  .newdetails .box .details {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .newdetails .box .details {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .newdetails .box .details {
    font-size: 14px;
  }
}
.newdetails .box .details h4 {
  font-family: "HarmonyOS_Sans_SC_Medium";
  font-size: .24rem;
  color: var(--black-000);
}
@media (max-width: 1580px) {
  .newdetails .box .details h4 {
    font-size: .32rem;
  }
}
@media (max-width: 1260px) {
  .newdetails .box .details h4 {
    font-size: .28rem;
  }
}
@media (max-width: 480px) {
  .newdetails .box .details h4 {
    font-size: .32rem;
  }
}
.newdetails .box .details img {
  display: block;
  margin: auto;
}
.newdetails .box .article-operate {
  margin-top: 6%;
  padding-top: 4%;
  border-top: var(--e9e9e9) solid 1px;
}
@media (max-width: 480px) {
  .newdetails .box .article-operate {
    margin-top: 7%;
    padding-top: 6%;
  }
}
.newdetails .box .article-operate .prvenext {
  -webkit-flex: 1;
  flex: 1;
}
@media (max-width: 991px) {
  .newdetails .box .article-operate .prvenext {
    display: block;
    width: 100%;
  }
}
.newdetails .box .article-operate .prvenext ul {
  padding: 0;
}
.newdetails .box .article-operate .prvenext ul li {
  list-style: none;
  margin-bottom: 12px;
}
.newdetails .box .article-operate .prvenext ul li a {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  font-family: "HarmonyOS_Sans_SC_Regular";
  font-size: 16px;
}
@media (max-width: 1580px) {
  .newdetails .box .article-operate .prvenext ul li a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .newdetails .box .article-operate .prvenext ul li a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .newdetails .box .article-operate .prvenext ul li a {
    font-size: 14px;
  }
}
.newdetails .box .article-operate .prvenext ul li a .sp1 {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  color: #111111;
}
.newdetails .box .article-operate .prvenext ul li a .sp2 {
  -webkit-flex: 1;
  flex: 1;
  margin-left: 0.1rem;
  color: var(--005bac);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newdetails .box .article-operate .article-return {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .newdetails .box .article-operate .article-return {
    display: none;
  }
}
.newdetails .box .article-operate .article-return a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  color: var(--005bac);
  font-size: 18px;
}
@media (max-width: 1580px) {
  .newdetails .box .article-operate .article-return a {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .newdetails .box .article-operate .article-return a {
    font-size: 16px;
  }
}
.newdetails .box .article-operate .article-return a i {
  display: inline-block;
  width: 0.26rem;
  height: 0.24rem;
  margin-right: 0.18rem;
  background: url(../images/icon49.png) center no-repeat;
  background-size: 100% auto;
}
.practical_articles {
  background: var(--fafafa);
}
.practical_articles .box {
  margin-top: 4%;
}
@media (max-width: 640px) {
  .practical_articles .box {
    margin-top: 0.5rem;
  }
}
.practical_articles .box .content {
  margin-top: 4.333333333333%;
  padding-bottom: 2.66666666666667%;
}
@media (max-width: 640px) {
  .practical_articles .box .content {
    margin-top: 0.5rem;
    padding-bottom: 0.4rem;
  }
}
.practical_articles .box .content .item {
  width: 30.66666666666667%;
  margin-right: 4%;
  margin-bottom: 4.66666666666667%;
  background: var(--white-color);
}
@media (max-width: 991px) {
  .practical_articles .box .content .item {
    width: 48%;
  }
}
.practical_articles .box .content .item:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .practical_articles .box .content .item:nth-child(3n) {
    margin-right: 4%;
  }
}
@media (max-width: 991px) {
  .practical_articles .box .content .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 640px) {
  .practical_articles .box .content .item {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 25px;
  }
}
.practical_articles .box .content .item .img {
  position: relative;
  width: 100%;
  padding-bottom: 70.21739130434783%;
  overflow: hidden;
}
.practical_articles .box .content .item .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.practical_articles .box .content .item .text {
  padding: 0.25rem;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .practical_articles .box .content .item .text {
    padding: 25px;
  }
}
.practical_articles .box .content .item .text .t1 {
  font-size: 20px;
  color: var(--black-333);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1260px) {
  .practical_articles .box .content .item .text .t1 {
    font-size: .24rem;
  }
}
@media (max-width: 991px) {
  .practical_articles .box .content .item .text .t1 {
    font-size: .28rem;
  }
}
@media (max-width: 640px) {
  .practical_articles .box .content .item .text .t1 {
    font-size: .26rem;
  }
}
@media (max-width: 640px) and (max-width: 1260px) {
  .practical_articles .box .content .item .text .t1 {
    font-size: .32rem;
  }
}
@media (max-width: 640px) and (max-width: 480px) {
  .practical_articles .box .content .item .text .t1 {
    font-size: .34rem;
  }
}
.practical_articles .box .content .item .text .t2 {
  margin-top: 0.15rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-333);
}
@media (max-width: 1580px) {
  .practical_articles .box .content .item .text .t2 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .practical_articles .box .content .item .text .t2 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .practical_articles .box .content .item .text .t2 {
    font-size: 14px;
  }
}
.practical_articles .box .content .item .text .t3 {
  margin-top: 0.15rem;
  font-family: "CenturyGothicStd";
  font-size: 16px;
  color: var(--a6a6a6);
}
@media (max-width: 1580px) {
  .practical_articles .box .content .item .text .t3 {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .practical_articles .box .content .item .text .t3 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .practical_articles .box .content .item .text .t3 {
    font-size: 14px;
  }
}
.practical_articles .box .content .item:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.practical_articles .box .content .item:hover .text .t1 {
  color: var(--69b90f);
}
@media (max-width: 1024px) {
  .index_application .box .mySwiper2 {
    position: relative;
    height: auto;
  }
}
.index_application .box .mySwiper2 .swiper-slide .container {
  height: auto;
}
@media (max-width: 1024px) {
  .index_sustainability .container .box .right_w ul li {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .index_sustainability .container .box .right_w ul li {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .index_sustainability .container .box .right_w ul li {
    font-size: 24px;
  }
}
.search-result {
  background: var(--fafafa);
}
.search-result .total-title {
  text-align: right;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 18px;
  color: var(--black-666);
}
@media (max-width: 1580px) {
  .search-result .total-title {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .search-result .total-title {
    font-size: 16px;
  }
}
.search-result .total-title span {
  font-family: "HarmonyOS_Sans_SC_Medium";
  font-size: .24rem;
  color: var(--1758a7);
}
@media (max-width: 1580px) {
  .search-result .total-title span {
    font-size: .32rem;
  }
}
@media (max-width: 1260px) {
  .search-result .total-title span {
    font-size: .28rem;
  }
}
@media (max-width: 480px) {
  .search-result .total-title span {
    font-size: .32rem;
  }
}
.search-result .box {
  margin-top: 4.7%;
}
@media (max-width: 991px) {
  .search-result .box {
    margin-top: 0.6rem;
  }
}
.search-result .box .item {
  display: block;
  width: 100%;
  margin-bottom: 3%;
  padding-bottom: 3%;
  border-bottom: var(--e9e9e9) solid 1px;
}
@media (max-width: 991px) {
  .search-result .box .item {
    margin-bottom: 0.4rem;
    padding-bottom: 0.4rem;
  }
}
.search-result .box .item .category {
  color: var(--black-000);
  font-size: 18px;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
@media (max-width: 1580px) {
  .search-result .box .item .category {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .search-result .box .item .category {
    font-size: 16px;
  }
}
.search-result .box .item .subtit {
  position: relative;
  padding-left: 0.2rem;
  margin-top: 0.2rem;
  font-family: "HarmonyOS_Sans_SC_Regular";
  font-size: .26rem;
  color: var(--black-666);
}
@media (max-width: 1260px) {
  .search-result .box .item .subtit {
    font-size: .32rem;
  }
}
@media (max-width: 480px) {
  .search-result .box .item .subtit {
    font-size: .34rem;
  }
}
@media (max-width: 991px) {
  .search-result .box .item .subtit {
    padding-left: 0.32rem;
  }
}
.search-result .box .item .subtit::before {
  content: '';
  position: absolute;
  left: 0;
  top: .1rem;
  width: 0.2rem;
  height: 0.2rem;
  background: url(../images/icon52a.png) center no-repeat;
  background-size: 40% auto;
}
@media (max-width: 991px) {
  .search-result .box .item .subtit::before {
    width: 0.28rem;
    height: 0.28rem;
  }
}
.search-result .box .item .subtit span {
  color: var(--1758a7);
}
.search-result .box .item .text {
  margin-top: 0.2rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 16px;
  color: var(--black-888);
  line-height: 2;
}
@media (max-width: 1580px) {
  .search-result .box .item .text {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .search-result .box .item .text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .search-result .box .item .text {
    font-size: 14px;
  }
}
.search-result .box .item .text span {
  color: var(--1758a7);
}
.search-result .keyword {
  color: var(--1758a7);
}


/****导航样式****/
.container {
    margin-right: auto;
    margin-left: auto;
    width: 1440px;
}
@media (max-width: 1366px) {
    .container {
        width: 1200px;
    }
}
.middleCenter {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    display: block;
    vertical-align: middle;
    text-align: center;
    margin: auto;
}
.pic:after {
    content: '';
    display: block;
    padding-bottom: 100%;
}
.fix {

	width: 100%;
	top: 0;
	z-index: 155777;
	transition: 0.5s;
	left: 0;
}

@media (min-width:1260px){
	.fix {
		position: fixed;
	}	
}

/*
.header {
	height: 82px;
	width: 100%;
	transition: 0.7s;
	position: relative;
	z-index: 1;
}

.header .logo {
	padding: 0;
	float: left;
	transition: 0.2s;
	padding-top: 9px;
}

.header .logo a {
	display: block;
	position: relative;
}

.header .logo a img {
	display: inline-block;
	vertical-align: top;
	width: 121px;
	z-index: 5;
	transition: 0.5s;
}

.header .logo a .logo2 {
	display: none;
}

.header .header-right {
	float: right;
}

.header .header-right .search-main {
	float: right;
	width: 200px;
	height: 48px;
	margin-top: 16px;
	position: relative;
	border-radius: 30px;
	border: 1px solid #fff;
	transition: 0.5s;
}

.header .header-right .search-main .form-control {
	text-align: left;
	border: 0;
	width: 100%;
	font-size: 15px;
	color: #2e85fe;
	height: 48px;
	vertical-align: top;
	padding: 0 60px 0 50px;
	-webkit-appearance: none;
	background: none;
}

.header .header-right .search-main .btn {
	top: 0;
	border: 0;
	left: 0;
	color: #fff;
	width: 48px;
	height: 48px;
	position: absolute;
	background: url(../images/search.png) no-repeat center center;
	background-size: 18px !important;
}

@media (min-width: 1025px) {
	.header .header-right .search-main:hover {
		border: 1px solid #2e85fe;
	}

	.header .header-right .search-main:hover .btn {
		background: url(../images/search1.png) no-repeat center center;
		background-size: 18px !important;
	}
}

.nav {
	transition: 0.2s;
	float: right;
	padding-right: 12px;
}

.nav ul {
	z-index: 1;
}

.nav ul li {
	text-align: center;
	float: left;
	padding-left: 30px;
}

@media (min-width:1260px){
	.nav ul li {
		min-width:110px;
	}
}


.nav ul li a {
	display: block;
	font-size: 15px;
	color: #333333;
	line-height: 82px;
	text-align: center;
	position: relative;
	cursor: pointer;
	padding: 0 8px;
	transition: 0.5s;
	font-family: SourceHanSansSC-Normal;
}

.nav ul li a i {
	height: 24px;
	width: 12px;
	background: url(../images/more.png) no-repeat center center;
	background-size: 100%;
	margin-left: 6px;
	display: inline-block;
	vertical-align: middle;
}

.nav ul li .subnav {
	width: 100%;
	position: absolute;
	top: 82px;
	left: 0;
	display: none;
	z-index: 333;
	background: #f6f8fb;
}

.nav ul li .subnav:after {
	content: '';
	display: block;
	width: 50%;
	left: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 1;
	background: #016cbc;
}

.nav ul li .subnav .container {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 4;
	width: 100%;
}

.nav ul li .subnav .left {
	float: left;
	width: 24%;
}

.nav ul li .subnav .left ul li {
	width: 100%;
	margin: 0;
	padding: 0;
	float: none;
}

.nav ul li .subnav .left ul li a {
	font-size: 15px;
	color: #666666 !important;
	line-height: 39px;
	border-bottom: 1px solid #fff;
	padding-left: 150px;
	background: #f6f8fb !important;
	text-align: left;
	position: relative;
	font-family: SourceHanSansSC-Regular;
}

.nav ul li .subnav .left ul li .pic {
	width: 16px;
	position: absolute;
	top: 12px;
	left: 70px;
}

.nav ul li .subnav .left ul li .pic .mh {
	display: none;
}

.nav ul li .subnav .left ul li:nth-last-child(1) a {
	border: 0;
}

.nav ul li .subnav .left ul .active a {
	background: #016cbc !important;
	color: #fff !important;
}

.nav ul li .subnav .left ul .active a .pic .m {
	display: none;
}

.nav ul li .subnav .left ul .active a .pic .mh {
	display: block;
}

.nav ul li .subnav .right {
	float: right;
	width: 76%;
	background: #016cbc;
	padding-right: 50px;
}

.nav ul li .subnav .right .show {
	position: relative;
	padding-top: 98px;
	padding-left: 93px;
	padding-right: 28px;
	padding-bottom: 98px;
	overflow: hidden;
}

.nav ul li .subnav .right .show .info {
	position: relative;
	padding-left: 144px;
	text-align: left;
	display: none;
	padding-top: 20px;
}

.nav ul li .subnav .right .show .info .pic {
	width: 112px;
	height: 112px;
	border: 11px solid rgba(255, 255, 255, 0.3);
	background: #0965e2;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}

.nav ul li .subnav .right .show .info .bt {
	margin-bottom: 13px;
}
.nav ul li .subnav .right .show .info .p{
	color: #ffffff;
}
.nav ul li .subnav .right .show .info .bt a {
	font-size: 24px;
	line-height: 30px;
	color: #ffffff;
	padding: 0;
	text-overflow: ellipsis;
	white-space: nowrap !important;
	overflow: hidden;
	background: none;
	text-align: left;
	font-family: SourceHanSansSC-Bold;
}

.nav ul li .subnav .right .show .info .p p {
	width: 25%;
	float: left;
	margin-bottom: 10px;
}

.nav ul li .subnav .right .show .info .p p a {
	font-size: 15px;
	color: #ffffff;
	line-height: 24px;
	text-align: left;
	background: none;
	padding: 0;
	text-overflow: ellipsis;
	white-space: nowrap !important;
	overflow: hidden;
	padding-left: 16px;
	font-family: SourceHanSansSC-Regular;
}

.nav ul li .subnav .right .show .info .p p a:after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	position: absolute;
	top: 8px;
	left: 0;
}
@media (max-width: 1300px){
	.nav ul li .subnav .left ul li a{
		padding-left: 120px;
	}
}
@media (min-width: 1025px) {
	.nav ul li .subnav .right .show .info .p p a:hover {
		text-decoration: underline;
	}
}

.nav ul li .subnav1 {
	width: 154px;
	position: absolute;
	top: 82px;
	left: 50%;
	display: none;
	margin-left: -65px;
	z-index: 333;
	background: #f6f8fb !important;
}

.nav ul li .subnav1 ul li {
	width: 100%;
	margin: 0;
	padding: 0;
	float: none;
	border-bottom: 1px solid #fff;
}

.nav ul li .subnav1 ul li a {
	font-size: 15px;
	color: #666666 !important;
	line-height: 39px;
	padding-left: 0;
	background: #f6f8fb !important;
	text-align: center;
	position: relative;
	font-family: SourceHanSansSC-Regular;
}

.nav ul li .subnav1 ul li a .pic {
	width: 16px;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
.nav ul li .subnav1 ul li a .pic .m{
	display: block;
}
.nav ul li .subnav1 ul li a .pic .mh {
	display: none;
}

.nav ul li .subnav1 ul li:hover a {
	background: #016cbc !important;
	color: #fff !important;
}

.nav ul li .subnav1 ul li:hover a .pic .m {
	display: none;
}

.nav ul li .subnav1 ul li:hover a .pic .mh {
	display: block;
}

.nav ul li .subnav1 ul li:nth-last-child(1) {
	border-bottom: 0;
}

.nav ul li:hover a {
	background: #016cbc;
	color: #fff;
}

.nav ul li:hover a i {
	background: url(../images/more1.png) no-repeat center center;
	background-size: 100%;
}

.nav ul .pos {
	position: relative;
}

.nav ul .active a {
	background: #016cbc;
	color: #fff;
}

.nav ul .active a i {
	background: url(../images/more1.png) no-repeat center center;
	background-size: 100%;
}

.header1 {
	background: rgba(0, 0, 0, 0.2);
}

.header1 .logo a .logo1 {
	display: none;
}

.header1 .logo a .logo2 {
	display: block;
}

.header1 .header-right .search-main .form-control {
	color: #fff;
}

.header1 .header-right .search-main .btn {
	background: url(../images/search2.png) no-repeat center center;
	background-size: 18px !important;
}

@media (min-width: 1025px) {
	.header1 .header-right .search-main:hover {
		border: 1px solid #fff;
	}

	.header1 .header-right .search-main:hover .btn {
		background: url(../images/search2.png) no-repeat center center;
		background-size: 18px !important;
	}
}

.header1 .nav ul li a {
	color: #fff;
}

.header1 .nav ul li a i {
	background: url(../images/more1.png) no-repeat center center;
	background-size: 100%;
}

.header:hover {
	background: #fff !important;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.header:hover .logo a .logo1 {
	display: block;
}

.header:hover .logo a .logo2 {
	display: none;
}

.header:hover .header-right .search-main .form-control {
	color: #2e85fe;
}

.header:hover .header-right .search-main .btn {
	background: url(../images/search.png) no-repeat center center;
	background-size: 18px !important;
}

@media (min-width: 1025px) {
	.header:hover .header-right .search-main:hover {
		border: 1px solid #2e85fe;
	}

	.header:hover .header-right .search-main:hover .btn {
		background: url(../images/search1.png) no-repeat center center;
		background-size: 18px !important;
	}
}

.header:hover .nav ul li a {
	color: #333;
}

.header:hover .nav ul li a i {
	background: url(../images/more.png) no-repeat center center;
	background-size: 100%;
}

.header:hover .nav ul li:hover a {
	background: #016cbc;
	color: #fff;
}

.header:hover .nav ul li:hover a i {
	background: url(../images/more1.png) no-repeat center center;
	background-size: 100%;
}

.header:hover .nav ul .active a {
	background: #016cbc;
	color: #fff;
}

.header:hover .nav ul .active a i {
	background: url(../images/more1.png) no-repeat center center;
	background-size: 100%;
}

.header:hover .nav ul .active1 a {
	background: #016cbc;
	color: #fff;
}

.header:hover .nav ul .active1 a i {
	background: url(../images/more1.png) no-repeat center center;
	background-size: 100%;
}

.header:hover .nav ul .active2 a {
	background: none;
	color: #333;
}

.header:hover .nav ul .active2 a i {
	background: url(../images/more.png) no-repeat center center;
	background-size: 100%;
}

.headerfix {
	background: #fff !important;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.headerfix .logo a .logo1 {
	display: block;
}

.headerfix .logo a .logo2 {
	display: none;
}

.headerfix .header-right .search-main {
	border-color: #2e85fe;
}

.headerfix .header-right .search-main .form-control {
	color: #2e85fe;
}

.headerfix .header-right .search-main .btn {
	background: url(../images/search.png) no-repeat center center;
	background-size: 18px !important;
}

@media (min-width: 1025px) {
	.headerfix .header-right .search-main:hover {
		border: 1px solid #2e85fe;
	}

	.headerfix .header-right .search-main:hover .btn {
		background: url(../images/search1.png) no-repeat center center;
		background-size: 18px !important;
	}
}

.headerfix .nav ul li a {
	color: #333;
}

.headerfix .nav ul li a i {
	background: url(../images/more.png) no-repeat center center;
	background-size: 100%;
}

.headerfix .nav ul li:hover a {
	background: #016cbc;
	color: #fff;
}

.headerfix .nav ul li:hover a i {
	background: url(../images/more1.png) no-repeat center center;
	background-size: 100%;
}

.headerfix .nav ul .active a {
	background: #016cbc;
	color: #fff;
}

.headerfix .nav ul .active a i {
	background: url(../images/more1.png) no-repeat center center;
	background-size: 100%;
}*/
/*
.footer{
	padding-top: 0;
	background: none;
}

.footer .footer-top {
	padding-top: 60px;
	padding-bottom: 26px;
	background: #333333;
}

.footer .footer-left {
	float: left;
	width: 79%;
}

.footer .footer-left ul li {
	float: left;
	width: 12%;
}

.footer .footer-left ul li a {
	display: block;
	font-family: SourceHanSansSC-Bold;
	font-size: 15px;
	margin-bottom: 25px;
	color: #fafbfc;
}

@media (min-width: 1025px) {
	.footer .footer-left ul li a:hover {
		color: #fff;
		text-decoration: underline;
	}
}

.footer .footer-left ul li ul li {
	float: none;
	width: 100% !important;
	margin-bottom: 8px;
}

.footer .footer-left ul li ul li a {
	font-size: 15px;
	margin-bottom: 0;
	font-family: SourceHanSansSC-Normal;
	color: #ffffff;
	line-height: 24px;
}

.footer .footer-left ul .fpro {
	width: 37%;
}

.footer .footer-left ul .fpro ul {
	display: flex;
	flex-wrap: wrap;
}

.footer .footer-left ul .fpro ul li {
	width: 50% !important;
	float: left;
}

.footer .footer-left ul .fsol {
	width: 18%;
}

.footer .footer-left ul li.last {
	width: 7%;
	float: right;
}

.footer .footer-right {
	float: right;
	width: 20%;
	padding-top: 10px;
}

.footer .footer-right .ewm {
	margin-bottom: 27px;
	overflow: hidden;
}

.footer .footer-right .ewm img {
	float: right;
	display: block;
	width: 108px;
}

.footer .footer-right .bt {
	font-size: 20px;
	color: #ffffff;
	text-align: right;
	font-family: SourceHanSansSC-Bold;
}

.footer .footer-right .p {
	font-size: 15px;
	color: #ffffff;
	font-family: SourceHanSansSC-Normal;
	line-height: 24px;
	text-align: right;
	margin-bottom: 20px;
}

.footer .footer-right .p a {
	color: #ffffff;
}

@media (min-width: 1025px) {
	.footer .footer-right .p a:hover {
		color: #fff;
		text-decoration: underline;
	}
}

.footer .footer-right .jsh {
	font-size: 15px;
	color: #666666;
	font-family: SourceHanSansSC-Normal;
	line-height: 24px;
	padding: 12px 5px;
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid #eaecee;
	text-align: center;
}

.footer .footer-bottom {
	text-align: center;
	background: #000000;
	color: #fff;
	padding: 23px 0;
	font-family: SourceHanSansSC-Normal;
}

.footer .footer-bottom a {
	color: #fff;
	margin: 0 0 0 5px;
}

@media (min-width: 1025px) {
	.footer .footer-bottom a:hover {
		color: #fff;
		text-decoration: underline;
	}
}
*/
.transparent {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, 0.6);
    top: 0;
    left: 0;
    z-index: 888;
    backdrop-filter: blur(5px);
}

.transparent.active {
	display: block;
}

#Privacy {
	z-index: 10000;
	position: fixed;
	width: 800px;
	background: #fff;
	border: 4px solid rgba(0, 0, 0, 0.15);
	top: 50%;
	left: 50%;
	margin-top: -264px;
	margin-left: -400px;
	border-radius: 5px;
	font-size: 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: none;
}

#Privacy .dialog_header {
	width: 100%;
	position: relative;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #f3f3f3;
}

#Privacy .dialog_header .title {
	width: 100%;
	color: #000;
	font-weight: 700;
	font-size: 15px;
	line-height: 40px;
}

#Privacy .dialog_header .close {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 0;
	right: 0;
	text-align: center;
	line-height: 40px;
	font-size: 22px;
	color: #c5c5c5;
	cursor: pointer;
}

#Privacy .privacy_policy_title {
	font-size: 24px;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 20px;
}

#Privacy .p-1 {
	font-size: 20px;
}

#Privacy .p-2 {
	font-size: 15px;
}

#Privacy .privacy_content {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 400px;
	padding: 20px 30px;
	overflow: auto;
}

#Privacy .privacy_footer {
	width: 100%;
	padding: 20px 0;
	text-align: center;
}

#Privacy .close_btn {
	display: inline-block;
	margin: 0 auto;
	width: auto;
	min-width: 200px;
	height: 40px;
	background: #3a8cfc;
	color: #fff;
	font-size: 15px;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
}

.header .box .headright .nav ul li.active>a{
	color: var(--active-color);
	font-family: "HarmonyOS_Sans_SC_Bold";
}