@charset "utf-8";
@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_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_Black";
  src: url('../font/HarmonyOS_Sans_SC_Black.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;
}
.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: "HarmonyOS_Sans_SC_Regular", "Microsoft YaHei", "PingFang SC";
}
@media screen and (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media screen and (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media screen and (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: "HarmonyOS_Sans_SC_Regular", "Microsoft YaHei", "PingFang SC";
}
@media screen and (max-width: 1580px) {
  body {
    font-size: 0.7291666666666667vw;
  }
}
@media screen and (max-width: 1580px) and screen and (max-width: 991px) {
  body {
    font-size: 14px;
  }
}
@media screen and (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: 78.125%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1580px) {
  .contain {
    width: 80%;
  }
}
@media screen and (max-width: 1260px) {
  .contain {
    width: 90%;
  }
}
.bg-color {
  background-color: #fff;
}
.pt60 {
  padding-top: 3.125vw;
}
@media screen and (max-width: 991px) {
  .pt60 {
    padding-top: 1rem;
  }
}
.pt70 {
  padding-top: 3.645833333333333vw;
}
@media screen and (max-width: 991px) {
  .pt70 {
    padding-top: 1rem;
  }
}
.pt80 {
  padding-top: 4.1667vw;
}
@media screen and (max-width: 991px) {
  .pt80 {
    padding-top: 1rem;
  }
}
.pb80 {
  padding-bottom: 4.1667vw;
}
@media screen and (max-width: 991px) {
  .pb80 {
    padding-bottom: 1rem;
  }
}
.pt90 {
  padding-top: 4.6875vw;
}
@media screen and (max-width: 991px) {
  .pt90 {
    padding-top: 1rem;
  }
}
.pb90 {
  padding-bottom: 4.6875vw;
}
@media screen and (max-width: 991px) {
  .pb90 {
    padding-bottom: 1rem;
  }
}
.pt100 {
  padding-top: 5.208333333333333vw;
}
@media screen and (max-width: 991px) {
  .pt100 {
    padding-top: 1rem;
  }
}
.pb100 {
  padding-bottom: 5.208333333333333vw;
}
@media screen and (max-width: 991px) {
  .pb100 {
    padding-bottom: 1rem;
  }
}
.pt120 {
  padding-top: 6.25vw;
}
@media screen and (max-width: 991px) {
  .pt120 {
    padding-top: 1rem;
  }
}
.pb120 {
  padding-bottom: 6.25vw;
}
@media screen and (max-width: 991px) {
  .pb120 {
    padding-bottom: 1rem;
  }
}
.pb140 {
  padding-bottom: 7.291666666666667vw;
}
@media screen and (max-width: 991px) {
  .pb140 {
    padding-bottom: 1.2rem;
  }
}
.font12 {
  font-size: 0.625vw;
}
@media screen and (max-width: 991px) {
  .font12 {
    font-size: 12px;
  }
}
.font14 {
  font-size: 0.7291666666666667vw;
}
@media screen and (max-width: 991px) {
  .font14 {
    font-size: 14px;
  }
}
.font16 {
  font-size: 0.8333333333333333vw;
}
@media screen and (max-width: 991px) {
  .font16 {
    font-size: 14px;
  }
}
.font18 {
  font-size: 0.9375vw;
}
@media screen and (max-width: 991px) {
  .font18 {
    font-size: 15px;
  }
}
.font20 {
  font-size: 1.0416667vw;
}
@media screen and (max-width: 991px) {
  .font20 {
    font-size: 17px;
  }
}
.font22 {
  font-size: 1.145833333333333vw;
}
@media screen and (max-width: 991px) {
  .font22 {
    font-size: 18px;
  }
}
.font24 {
  font-size: 1.25vw;
}
@media screen and (max-width: 991px) {
  .font24 {
    font-size: .26rem;
  }
}
@media screen and (max-width: 480px) {
  .font24 {
    font-size: 0.3rem;
  }
}
.font28 {
  font-size: 1.458333333333333vw;
}
@media screen and (max-width: 991px) {
  .font28 {
    font-size: .28rem;
  }
}
@media screen and (max-width: 480px) {
  .font28 {
    font-size: .32rem;
  }
}
.font30 {
  font-size: 1.5625vw;
}
@media screen and (max-width: 991px) {
  .font30 {
    font-size: .3rem;
  }
}
@media screen and (max-width: 480px) {
  .font30 {
    font-size: .36rem;
  }
}
.font36 {
  font-size: 1.875vw;
}
@media screen and (max-width: 991px) {
  .font36 {
    font-size: 0.36rem;
  }
}
@media screen and (max-width: 480px) {
  .font36 {
    font-size: 0.4rem;
  }
}
.font38 {
  font-size: 1.979166666666667vw;
}
@media screen and (max-width: 991px) {
  .font38 {
    font-size: .38rem;
  }
}
@media screen and (max-width: 480px) {
  .font38 {
    font-size: .4rem;
  }
}
.font40 {
  font-size: 2.083333333333333vw;
}
@media screen and (max-width: 991px) {
  .font40 {
    font-size: .4rem;
  }
}
@media screen and (max-width: 480px) {
  .font40 {
    font-size: .42rem;
  }
}
.font48 {
  font-size: 2.5vw;
}
@media screen and (max-width: 991px) {
  .font48 {
    font-size: .48rem;
  }
}
@media screen and (max-width: 767px) {
  .font48 {
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 480px) {
  .font48 {
    font-size: 5.4vw;
  }
}
.font50 {
  font-size: 2.604166666666667vw;
}
@media screen and (max-width: 991px) {
  .font50 {
    font-size: .45rem;
  }
}
@media screen and (max-width: 767px) {
  .font50 {
    font-size: 5vw;
  }
}
@media screen and (max-width: 480px) {
  .font50 {
    font-size: 5.6vw;
  }
}
.font54 {
  font-size: 2.8125vw;
}
@media screen and (max-width: 991px) {
  .font54 {
    font-size: .5rem;
  }
}
@media screen and (max-width: 767px) {
  .font54 {
    font-size: 5.4vw;
  }
}
@media screen and (max-width: 480px) {
  .font54 {
    font-size: 6vw;
  }
}
.font60 {
  font-size: 3.125vw;
}
@media screen and (max-width: 991px) {
  .font60 {
    font-size: .56rem;
  }
}
@media screen and (max-width: 767px) {
  .font60 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 480px) {
  .font60 {
    font-size: 6.6vw;
  }
}
.font63 {
  font-size: 3.28125vw;
}
@media screen and (max-width: 991px) {
  .font63 {
    font-size: .6rem;
  }
}
@media screen and (max-width: 767px) {
  .font63 {
    font-size: 6.4vw;
  }
}
@media screen and (max-width: 480px) {
  .font63 {
    font-size: 7vw;
  }
}
#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%;
}
/* 占位标签，设置导航样式 */
#interval {
  height: 0.9rem;
}
@media screen and (min-width: 992px) {
  #interval {
    height: 4.167vw;
  }
}
@media screen and (max-width: 991px) {
  #interval {
    height: 60px;
  }
}
.public-btn {
  position: relative;
  display: -webkit-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 .24rem;
  min-width: 1.5rem;
  height: 0.42rem;
  border-radius: 0.21rem;
  box-sizing: border-box;
  color: #ffffff;
  font-family: "Roboto-Medium";
  font-size: 0.625vw;
  text-transform: uppercase;
  background: linear-gradient(to right, #43b9d4, #184a9e);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 991px) {
  .public-btn {
    font-size: 12px;
  }
}
@media screen and (min-width: 992px) {
  .public-btn {
    padding: 0 1.25vw;
    min-width: 7.8125vw;
    height: 2.1875vw;
    border-radius: 1.09375vw;
  }
}
@media screen and (max-width: 991px) {
  .public-btn {
    padding: 0 .3rem;
    min-width: 2.4rem;
    height: 0.64rem;
    border-radius: 0.32rem;
  }
}
@media screen and (max-width: 480px) {
  .public-btn {
    height: 0.7rem;
    border-radius: 0.35rem;
  }
}
.public-btn:hover {
  color: #ffffff;
}
.public-btn:hover:before {
  background: #FFFFFF;
  left: 125%;
}
.public-btn:hover:after {
  background: #FFFFFF;
  left: 128%;
}
.public-btn:before {
  content: '';
  position: absolute;
  top: 50%;
  min-width: calc(480px);
  min-height: calc(480px);
  background-color: transparent;
  animation-name: wave-animation;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transition: all 1s linear;
  opacity: .3;
  left: -35px;
  border-radius: 35%;
  animation-duration: 10s;
}
.public-btn:after {
  content: '';
  position: absolute;
  top: 50%;
  min-width: calc(480px);
  min-height: calc(480px);
  background-color: transparent;
  animation-name: wave-animation;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transition: all 1s linear;
  left: -10px;
  opacity: .5;
  border-radius: 37%;
  animation-duration: 10s;
}
.public-btn:after:after {
  background: #FFFFFF;
  left: 128%;
}
.public-btn.nobg {
  color: #999999;
  background: none;
  transition: all 0.5s ease;
}
.public-btn.nobg:before,
.public-btn.nobg::after {
  opacity: 0;
}
.public-btn.nobg i img {
  transition: all 0.5s ease;
}
.public-btn.nobg:hover {
  color: #ffffff;
  background: linear-gradient(to right, #43b9d4, #184a9e);
}
.public-btn.nobg:hover:before,
.public-btn.nobg:hover::after {
  opacity: 1;
}
.public-btn.nobg:hover i img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.public-btn i {
  display: inline-flex;
  align-items: flex-start;
  margin-left: 0.1rem;
  min-height: 0.1rem;
}
@media screen and (min-width: 992px) {
  .public-btn i {
    margin-left: 0.5208333333333333vw;
    min-height: 0.5vw;
  }
}
@media screen and (max-width: 991px) {
  .public-btn i {
    margin-left: 10px;
    min-height: 10px;
  }
}
.public-btn i img {
  width: 0.04rem;
}
@media screen and (min-width: 992px) {
  .public-btn i img {
    width: 0.2083333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .public-btn i img {
    width: 4px;
  }
}
@keyframes wave-animation {
  0% {
    transform: translate(0, -50%) rotateZ(0deg);
  }
  50% {
    transform: translate(-2%, -50%) rotateZ(180deg);
  }
  100% {
    transform: translate(0, -50%) rotateZ(360deg);
  }
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  width: 100%;
}
.header .box {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 992px) {
  .header .box {
    padding-left: 5.208333333333333%;
    padding-right: 5.208333333333333%;
  }
}
@media screen and (max-width: 991px) {
  .header .box {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.header .box .logo {
  position: relative;
  z-index: 5;
}
.header .box .logo a {
  display: inline-flex;
  align-items: center;
  height: 1rem;
}
@media screen and (min-width: 992px) {
  .header .box .logo a {
    height: 5.208333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .header .box .logo a {
    height: 60px;
  }
}
.header .box .logo a img {
  width: 2.26rem;
}
@media screen and (min-width: 992px) {
  .header .box .logo a img {
    width: 11.77083333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .header .box .logo a img {
    width: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .header .box .logo a img {
    width: 2.26rem;
  }
}
.header .box .nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header .box .nav {
    display: none;
  }
}
.header .box .nav ul {
  padding: 0;
}
.header .box .nav ul li {
  position: relative;
  padding: 0 0.5rem;
  list-style: none;
}
@media screen and (min-width: 992px) {
  .header .box .nav ul li {
    padding: 0 2.604166666666667vw;
  }
}
.header .box .nav ul li.productcolumn {
  position: static;
}
.header .box .nav ul li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1rem;
  /*color: #bbbbbb;*/
 	color: #666666;
  font-size: 0.9375vw;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .header .box .nav ul li > a {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .header .box .nav ul li > a {
    height: 5.20833333333333vw;
  }
}
.header .box .nav ul li > a::before {
  content: '';
  position: absolute;
  bottom: 0.15rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0296f6;
  transition: all 0.5s ease;
  opacity: 0;
}
@media screen and (min-width: 992px) {
  .header .box .nav ul li > a::before {
    bottom: 0.78125vw;
    width: 0.3125vw;
    height: 0.3125vw;
  }
}
.header .box .nav ul li:hover > a {
  color: #0296f6 !important;
}
.header .box .nav ul li:hover > a::before {
  opacity: 1;
}
.header .box .nav ul li.on > a {
  color: #0296f6 !important;
}
.header .box .nav ul li.on > a::before {
  opacity: 1;
}
.header .box .nav ul li .navcell {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0.12rem 0;
  min-width: 1.6rem;
  background: #ffffff;
  box-shadow: 10px 0px 30px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 992px) {
  .header .box .nav ul li .navcell {
    padding: 0.625vw 0;
    min-width: 8.333vw;
  }
}
.header .box .nav ul li .navcell a {
  display: block;
  text-align: center;
  color: #333333;
  font-size: 0.8333333333333333vw;
  line-height: 1.7;
  white-space: nowrap;
  padding: 0.05rem 0.25rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .header .box .nav ul li .navcell a {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .header .box .nav ul li .navcell a {
    padding: 0.260416vw 1.3020833vw;
  }
}
.header .box .nav ul li .navcell a:hover {
  color: #0296f6;
}
.header .box .headright {
  position: relative;
  z-index: 5;
}
.header .box .headright .head_search {
  margin-left: 0.32rem;
  margin-right: 0.1rem;
}
@media screen and (min-width: 992px) {
  .header .box .headright .head_search {
    margin-left: 1.666666666666667vw;
    margin-right: 0.5208333333333333vw;
  }
}
.header .box .headright .head_search .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .header .box .headright .head_search .icon {
    width: 2.5vw;
    height: 2.5vw;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head_search .icon {
    width: 36px;
    height: 36px;
  }
}
.header .box .headright .head_search .icon img {
  width: 37.5%;
}
@media screen and (max-width: 991px) {
  .header .box .headright .head_search .icon img {
    width: 45%;
  }
}
.header .box .headright .head-nation {
  position: relative;
}
.header .box .headright .head-nation .title {
  display: inline-flex;
  align-items: center;
  min-width: 0.72rem;
  height: 0.32rem;
  padding-left: 0.16rem;
  padding-right: 0.3rem;
  border-radius: 0.3rem;
  background: url(../images/arrow-down.png) center right 0.12rem no-repeat;
  background-size: 8px auto;
  box-sizing: border-box;
  border: #0d5488 solid 1px;
}
@media screen and (min-width: 992px) {
  .header .box .headright .head-nation .title {
    min-width: 3.75vw;
    height: 1.666666666666667vw;
    padding-left: 0.8333333333333333vw;
    padding-right: 1.5625vw;
    border-radius: 1.5625vw;
    background: url(../images/arrow-down.png) center right 0.625vw no-repeat;
    background-size: 0.46875vw auto;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .title {
    padding-left: 0.3rem;
    padding-right: 0.45rem;
    min-width: 1.1rem;
    height: 32px;
    background: url(../images/arrow-down.png) center right 0.2rem no-repeat;
    background-size: 8px auto;
  }
}
.header .box .headright .head-nation .title img {
  display: inline-block;
  margin-right: 0.06rem;
  width: 0.16rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 992px) {
  .header .box .headright .head-nation .title img {
    width: 0.8333333333333333vw;
    margin-right: 0.3125vw;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .title img {
    width: 16px;
    margin-right: 6px;
  }
}
.header .box .headright .head-nation .title span {
  color: #4692ca;
  font-size: 0.8333333333333333vw;
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .title span {
    font-size: 14px;
  }
}
.header .box .headright .head-nation .dropdown {
  position: absolute;
  left: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0.1rem);
  transform: translate(-50%, 0.1rem);
  top: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .header .box .headright .head-nation .dropdown {
    top: 100%;
    padding: 10px 0px;
    min-width: 90px;
  }
}
.header .box .headright .head-nation .dropdown ul {
  margin-top: 0.2rem;
  background: #FFFFFF;
  padding: 0.1rem 0px;
  text-align: left;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 992px) {
  .header .box .headright .head-nation .dropdown ul {
    margin-top: 1.04167vw;
    padding: 0.52083vw 0;
  }
}
.header .box .headright .head-nation .dropdown ul li {
  list-style: none;
}
.header .box .headright .head-nation .dropdown ul li a {
  display: block;
  font-size: 0.7291666666666667vw;
  color: #333333;
  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 screen and (max-width: 991px) {
  .header .box .headright .head-nation .dropdown ul li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .header .box .headright .head-nation .dropdown ul li a {
    min-width: 4.6875vw;
    padding: 0 1.04167vw;
  }
}
.header .box .headright .head-nation .dropdown ul li a:hover {
  color: #0296f6;
}
.header .box .headright .head-nation:hover .dropdown {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.header .search-form {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #f8f8f8;
  text-align: center;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 10px -13px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .header .search-form {
    padding-top: 1.04167vw;
    padding-bottom: 1.04167vw;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
}
.header .search-form.active {
  opacity: 1;
  visibility: visible;
}
.header .search-form .form-body {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  border: 1px solid #eee;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  border-radius: 0.6rem;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .header .search-form .form-body {
    padding-left: 1.5625vw;
    padding-right: 1.5625vw;
    border-radius: 3.125vw;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
}
@media screen and (max-width: 767px) {
  .header .search-form .form-body {
    width: 90%;
  }
}
.header .search-form .form-body input {
  width: 6rem;
  height: 0.54rem;
  font-size: 0.8333333333333333vw;
  color: #000000;
  text-align: left;
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body input {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .header .search-form .form-body input {
    width: 31.25vw;
    height: 2.8125vw;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body input {
    height: 0.64rem;
  }
}
@media screen and (max-width: 767px) {
  .header .search-form .form-body input {
    width: auto;
    flex: 1;
  }
}
@media screen and (max-width: 480px) {
  .header .search-form .form-body input {
    height: 0.7rem;
  }
}
.header .search-form .form-body .icon {
  line-height: 1;
  margin-right: 0.2rem;
  flex-shrink: 0;
  width: 0.2rem;
}
@media screen and (min-width: 992px) {
  .header .search-form .form-body .icon {
    width: 1.04167vw;
    margin-right: 1.04167vw;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body .icon {
    width: 0.24rem;
  }
}
@media screen and (max-width: 480px) {
  .header .search-form .form-body .icon {
    width: 0.28rem;
  }
}
.header .search-form .form-body .icon img {
  max-width: 100%;
}
.header .search-form .form-body .close {
  width: 0.2rem;
  cursor: pointer;
  margin-left: 0.2rem;
  flex-shrink: 0;
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .header .search-form .form-body .close {
    width: 1.04167vw;
    margin-left: 1.04167vw;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body .close {
    width: 0.24rem;
  }
}
@media screen and (max-width: 480px) {
  .header .search-form .form-body .close {
    width: 0.28rem;
  }
}
.header .search-form .form-body .close img {
  max-width: 100%;
}
.header .phone-toggle {
  margin-left: 20px;
  user-select: none;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 991px) {
  .header .phone-toggle {
    display: block;
  }
}
.header .phone-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  margin-bottom: 5px;
  transition: all 0.45s ease;
}
.header .phone-toggle span:last-of-type {
  margin-bottom: 0;
}
.header.white {
  background: #FFFFFF;
}
.header.white::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ebebeb;
}
.header.white .box .nav ul li a {
  color: #333333;
}
.header.white .phone-toggle span {
  background-color: #333333;
}
.header.whitebg {
  background: #FFFFFF;
}
.header.whitebg::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ebebeb;
}
.header.whitebg .box .nav ul li a {
  color: #333333;
}
.header.whitebg .phone-toggle span {
  background-color: #333333;
}
.header.blacktext {
  background: #FFFFFF;
}
.header.blacktext::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ebebeb;
}
.header.blacktext .box .nav ul li a {
  color: #333333;
}
.header.blacktext .phone-toggle span {
  background-color: #000000;
}
.mbox .header {
  background: #ffffff;
}
@media screen and (max-width: 991px) {
  .mbox .header .phone-toggle {
    margin-top: -6px;
  }
}
.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;
  line-height: 1.7;
  color: #000000;
  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;
  line-height: 1.7;
  color: #000000;
  font-size: 17px;
  padding: 14px 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.m-nav > ul > li .headtitle a {
  display: inline-block;
  padding: 0;
}
.m-nav > ul > li .headtitle i {
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 100%;
  background: url(../images/icon11.png) center no-repeat;
  background-size: 8px auto;
  transition: all 0.4s ease;
}
.m-nav > ul > li .headtitle.on {
  color: #174696;
}
.m-nav > ul > li .headtitle.on i {
  background: url(../images/icon11.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-size: 16px;
  padding: 7px 0px;
}
.m-nav > ul > li ul li:hover > a {
  color: #174696;
}
.m-nav > ul > li ul li ul li ul li a {
  font-size: 14px;
}
.m-nav > ul > li:hover > a {
  color: #174696;
}
.mbox .header .box .logo a img.ic1 {
  display: none;
}
.mbox .header .box .logo a img.ic2 {
  display: inline-block;
}
.mbox .header .box .headright .btns {
  background: #333333;
}
.mbox .m-nav {
  height: calc(100vh - 60px);
}
.mbox .phone-toggle span {
  background-color: #000000;
}
.mbox .phone-toggle span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.mbox .phone-toggle span:nth-child(2) {
  display: none;
}
.mbox .phone-toggle span:nth-child(3) {
  transform: rotate(45deg);
}
@media screen and (min-width: 992px) {
  .phone-toggle {
    display: none !important;
  }
}
.sidebar {
  position: fixed;
  bottom: 6vw;
  right: 0.6rem;
  z-index: 12;
}
@media screen and (min-width: 992px) {
  .sidebar {
    right: 3.125vw;
  }
}
@media screen and (max-width: 991px) {
  .sidebar {
    right: 0.2rem;
  }
}
.sidebar ul {
  padding-left: 0;
}
.sidebar ul li {
  position: relative;
  text-align: center;
  cursor: pointer;
  margin-bottom: 0.1rem;
  list-style: none;
}
@media screen and (min-width: 992px) {
  .sidebar ul li {
    margin-bottom: 0.5208333vw;
  }
}
@media screen and (max-width: 991px) {
  .sidebar ul li {
    margin-bottom: 6px;
  }
}
.sidebar ul li.istop span .img,
.sidebar ul li.istop a .img {
  background: #0075c1;
}
.sidebar ul li span,
.sidebar ul li a {
  display: block;
}
.sidebar ul li span .img,
.sidebar ul li a .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: #c8c8c8;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 992px) {
  .sidebar ul li span .img,
  .sidebar ul li a .img {
    width: 2.60416667vw;
    height: 2.60416667vw;
  }
}
@media screen and (max-width: 991px) {
  .sidebar ul li span .img,
  .sidebar ul li a .img {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.sidebar ul li span .img img,
.sidebar ul li a .img img {
  display: block;
  margin: auto;
  width: 48%;
}
.sidebar ul li:hover span .img,
.sidebar ul li:hover a .img {
  background: #0075c1;
}
.sidebar ul li .secondary {
  display: none;
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 12;
  min-width: 100%;
  white-space: nowrap;
  text-align: center;
  padding-right: 10px;
}
.sidebar ul li .secondary .box {
  position: relative;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-sizing: border-box;
}
.sidebar ul li .secondary .box::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #ffffff;
}
.sidebar ul li .secondary .box .codeimg {
  text-align: center;
}
.sidebar ul li .secondary .box .codeimg img {
  display: block;
  margin: auto;
  max-width: inherit;
  width: 120px;
}
.sidebar ul li .secondary .txt {
  margin-top: 5px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
}
.sidebar ul li .secondary .txtli {
  font-family: "HarmonyOS_Sans_SC_Bold";
  font-size: 1.25vw;
  color: #000000;
  padding: 0 0.15rem;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .sidebar ul li .secondary .txtli {
    font-size: .26rem;
  }
}
@media screen and (max-width: 480px) {
  .sidebar ul li .secondary .txtli {
    font-size: 0.3rem;
  }
}
.footer {
  padding-top: 0.6rem;
  background: url(../images/footer-bg.jpg) center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 992px) {
  .footer {
    padding-top: 3.125vw;
  }
}
@media screen and (max-width: 991px) {
  .footer {
    padding-top: 0.8rem;
  }
}
@media screen and (max-width: 991px) {
  .footer .box {
    flex-wrap: wrap;
  }
}
.footer .box .footer-nav {
  width: 69%;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav {
    width: 100%;
    flex-wrap: wrap;
  }
}
.footer .box .footer-nav .item.on .title i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -8px;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item {
    width: 100%;
    margin-bottom: 18px;
  }
}
.footer .box .footer-nav .item .title {
  position: relative;
  color: #ffffff;
  font-size: 1.0416667vw;
  font-weight: bold;
  padding-bottom: 0.2rem;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item .title {
    font-size: 17px;
  }
}
@media screen and (min-width: 992px) {
  .footer .box .footer-nav .item .title {
    padding-bottom: 1.04167vw;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item .title {
    display: flex;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: rgba(255, 255, 255, 0.1) solid 1px;
  }
}
.footer .box .footer-nav .item .title i {
  position: absolute;
  right: 0px;
  top: -5px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: all 0.5s;
  display: none;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item .title i {
    display: block;
  }
}
.footer .box .footer-nav .item .title i::before {
  content: '';
  width: 12px;
  position: absolute;
  height: 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #FFFFFF;
}
.footer .box .footer-nav .item .title i::after {
  content: '';
  height: 12px;
  position: absolute;
  width: 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #FFFFFF;
}
.footer .box .footer-nav .item ul {
  padding-left: 0;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item ul {
    display: none;
    padding-top: 0.3rem;
    margin-top: 0;
    margin-bottom: 0.2rem;
  }
}
.footer .box .footer-nav .item ul li {
  list-style: none;
  margin-bottom: 0.1rem;
}
@media screen and (min-width: 992px) {
  .footer .box .footer-nav .item ul li {
    margin-bottom: 0.5208333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item ul li {
    margin-bottom: 0.15rem;
  }
}
.footer .box .footer-nav .item ul li a {
  font-size: 0.8333333333333333vw;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item ul li a {
    font-size: 14px;
  }
}
.footer .box .footer-nav .item ul li a:hover {
  color: #0075c1;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 15px;
  }
}
.footer .box .footer-infor .text {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #adadad;
  font-size: 0.8333333333333333vw;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .text {
    font-size: 14px;
  }
}
.footer .box .footer-infor .text .item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.1rem;
}
@media screen and (min-width: 992px) {
  .footer .box .footer-infor .text .item {
    margin-bottom: 0.5208333vw;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .text .item {
    margin-bottom: 0.15rem;
  }
}
.footer .box .footer-infor .text .item.hotline {
  display: block;
}
.footer .box .footer-infor .text .item .t1 span {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #ffffff;
  font-size: 1.5625vw;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .text .item .t1 span {
    font-size: .3rem;
  }
}
@media screen and (max-width: 480px) {
  .footer .box .footer-infor .text .item .t1 span {
    font-size: .36rem;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .btn {
    margin-top: 0.25rem;
  }
}
.footer .box .footer-infor .btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.95rem;
  height: 0.32rem;
  padding: 0.1rem 0.16rem;
  border-radius: 0.16rem;
  background: #0075c1;
  color: #ffffff;
  font-size: 0.8333333333333333vw;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .btn a {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .footer .box .footer-infor .btn a {
    min-width: 4.947916667vw;
    height: 1.6666667vw;
    border-radius: 0.83333335vw;
    padding: 0.5208333vw 0.83333335vw;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .btn a {
    min-width: 1.2rem;
    height: 0.54rem;
    padding: 0.1rem 0.3rem;
    border-radius: 0.27rem;
  }
}
.footer .box .footer-infor .qrcode {
  margin-top: 0.15rem;
}
@media screen and (min-width: 992px) {
  .footer .box .footer-infor .qrcode {
    margin-top: 0.78125vw;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .qrcode {
    margin-top: 0.5rem;
  }
}
.footer .box .footer-infor .qrcode ul {
  padding-left: 0;
}
.footer .box .footer-infor .qrcode ul li {
  display: inline-block;
  list-style: none;
  text-align: center;
}
.footer .box .footer-infor .qrcode ul li .img {
  max-width: 96px;
}
.footer .box .footer-infor .qrcode ul li .img img {
  display: block;
  width: 100%;
}
.footer .box .footer-infor .qrcode ul li .txt {
  color: #0075c1;
  font-size: 0.8333333333333333vw;
  margin-top: 0.1rem;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .qrcode ul li .txt {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .footer .box .footer-infor .qrcode ul li .txt {
    margin-top: 0.5208333vw;
  }
}
.footer .footerbottom {
  margin-top: 0.3rem;
  padding: 0.3rem 0;
  border-top: rgba(204, 204, 204, 0.1) solid 1px;
}
@media screen and (min-width: 992px) {
  .footer .footerbottom {
    padding: 1.5625vw 0;
    margin-top: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .footer .footerbottom {
    margin-top: 0.4rem;
    padding: 20px 0;
  }
}
.footer .footerbottom .copylink {
  width: 100%;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 0.8333333333333333vw;
  color: #81807e;
  line-height: 1.7;
}
@media screen and (max-width: 991px) {
  .footer .footerbottom .copylink {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .footer .footerbottom .copylink {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
.footer .footerbottom .copylink a {
  color: #81807e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .footerbottom .copylink a.name {
  color: #ffffff;
  margin: 0 0.1rem;
}
@media screen and (min-width: 992px) {
  .footer .footerbottom .copylink a.name {
    margin: 0 0.5208333vw;
  }
}
.footer .footerbottom .copylink a:hover {
  color: #0075c1;
}
.footer .footerbottom .copylink .poweredBy {
  margin-left: 0.4rem;
  color: #20354b;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .footer .footerbottom .copylink .poweredBy {
    display: block;
    margin-left: 0;
    width: 100%;
    margin-top: 5px;
  }
}
.footer .footerbottom .copylink .poweredBy a {
  color: #20354b;
}
.footer .footerbottom .copylink .poweredBy:hover {
  color: #0075c1;
}
.footer .footerbottom .copylink .poweredBy:hover a {
  color: #0075c1;
}
.lunbotu {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.lunbotu .swiper-wrapper .swiper-slide {
  position: relative;
}
.lunbotu .swiper-wrapper .swiper-slide a {
  position: relative;
  display: block;
  width: 100%;
}
.lunbotu .swiper-wrapper .swiper-slide a > img {
  width: 100%;
}
.lunbotu .swiper-wrapper .swiper-slide .video-box {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.lunbotu .swiper-wrapper .swiper-slide .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  margin-top: -0.5rem;
}
@media screen and (min-width: 992px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner {
    margin-top: -2.6vw;
  }
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .box {
  width: 100%%;
  box-sizing: border-box;
  text-align: center;
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .box .title {
  /*font-family: "HarmonyOS_Sans_SC_Black";*/
 	/*font-family: "HarmonyOS_Sans_SC_Medium";*/
  color: #FFFFFF;
  /*font-size: 2.8125vw;*/
 	font-size: 2.5vw;
  line-height: 1.2;
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .box .title {
    /*font-size: .5rem;*/
   	font-size: .48rem;
  }
}
@media screen and (max-width: 767px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .box .title {
    /*font-size: 5.4vw;*/
   	font-size: 5vw;
  }
}
@media screen and (max-width: 480px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .box .title {
    /*font-size: 6vw;*/
   	font-size: 5.6vw;
  }
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .box .title span {
  /*background: -webkit-linear-gradient(300deg, #87a6d8, #b1c1e7, #789ce4);
  background: linear-gradient(300deg, #87a6d8, #b1c1e7, #789ce4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;*/
 	color: #0071bf;
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .box .text {
  margin-top: 0.24rem;
  font-family: "HarmonyOS_Sans_SC_Medium";
  /*color: rgba(255, 255, 255, 0.3);*/
 	color: rgba(0,108,189,0.5);
  font-size: 1.145833333333333vw;
  line-height: 1.4;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .box .text {
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .box .text {
    margin-top: 1.25vw;
  }
}
.lunbotu .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0.78rem;
}
@media screen and (min-width: 992px) {
  .lunbotu .swiper-pagination {
    bottom: 4.0625vw;
  }
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-pagination {
    bottom: 0.5rem;
  }
}
.lunbotu .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 0.34rem;
  height: 0.34rem;
  border: transparent solid 1px;
  box-sizing: border-box;
  background: transparent;
  opacity: 1;
  margin: 0 0.05rem;
}
@media screen and (min-width: 992px) {
  .lunbotu .swiper-pagination .swiper-pagination-bullet {
    width: 1.770833333333333vw;
    height: 1.770833333333333vw;
    margin: 0 0.26041667vw;
  }
}
.lunbotu .swiper-pagination .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.05rem;
  margin-top: -0.05rem;
  width: 0.1rem;
  height: 0.1rem;
  background: rgba(185, 185, 185, 0.9);
  border-radius: 50%;
}
@media screen and (min-width: 992px) {
  .lunbotu .swiper-pagination .swiper-pagination-bullet::before {
    width: 0.5208333333333333vw;
    height: 0.5208333333333333vw;
    margin-left: -0.26041667vw;
    margin-top: -0.26041667vw;
  }
}
.lunbotu .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: #69b7ef;
}
.lunbotu .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background: #69b7ef;
}
.lunbotu .swiper-button-next,
.lunbotu .swiper-button-prev {
  position: absolute;
  width: 0.56rem;
  height: 0.56rem;
  margin-top: -0.28rem;
  border-radius: 50%;
  transition: all 0.5s ease;
}
@media screen and (min-width: 992px) {
  .lunbotu .swiper-button-next,
  .lunbotu .swiper-button-prev {
    width: 2.9167vw;
    height: 2.9167vw;
  }
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-button-next,
  .lunbotu .swiper-button-prev {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.lunbotu .swiper-button-prev {
  background: url(../images/icon12.png) center no-repeat;
  background-size: 30% auto;
  opacity: 0.3;
  right: auto;
  left: 2%;
  transition: opacity 0.5s ease;
}
.lunbotu .swiper-button-prev:hover {
  opacity: 1;
}
.lunbotu .swiper-button-next {
  background: url(../images/icon13.png) center no-repeat;
  background-size: 30% auto;
  opacity: 0.3;
  right: 2%;
  left: auto;
  transition: opacity 0.5s ease;
}
.lunbotu .swiper-button-next:hover {
  opacity: 1;
}
.mImg {
  display: none;
}
@media screen and (max-width: 991px) {
  .mImg {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .pImg {
    display: none;
  }
}
.obanner {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}
.obanner > img {
  width: 100%;
  object-fit: cover;
}
/*@media screen and (max-width: 991px) {
  .obanner > img {
    height: 50vh;
  }
}
@media screen and (max-width: 767px) {
  .obanner > img {
    height: 60vh;
  }
}*/
.obanner .bannerImg {
  display: none;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.obanner .bannerTitle {
  position: absolute;
  bottom: 1.64rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .obanner .bannerTitle {
    bottom: 8.541666666666667vw;
  }
}
@media screen and (max-width: 991px) {
  .obanner .bannerTitle {
    /*bottom: 2rem;*/
   	bottom: auto;
   	top: 1.5rem;
  }
}
@media screen and (max-width: 767px){
	.obanner .bannerTitle {
   	top: 1.1rem;
  }
}
@media screen and (max-width: 480px){
	.obanner .bannerTitle {
   	top: 0.9rem;
  }
}
.obanner .bannerTitle .box {
  position: relative;
}
.obanner .bannerTitle .box .headline {
  font-family: "HarmonyOS_Sans_SC_Bold";
  line-height: 1.2;
  font-size: 1.875vw;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .obanner .bannerTitle .box .headline {
    font-size: 0.36rem;
  }
}

@media screen and (max-width: 480px) {
  .obanner .bannerTitle .box .headline {
    font-size: 0.4rem;
  }
}
.obanner .bannerTitle .box .text {
  margin-top: 0.15rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8333333333333333vw;
}
@media screen and (max-width: 991px) {
  .obanner .bannerTitle .box .text {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .obanner .bannerTitle .box .text {
    margin-top: 0.78125vw;
  }
}
.obanner .product-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  margin-top: 3%;
}
.obanner .product-img img {
  width: 47.53333333333333%;
}
@media screen and (max-width: 991px) {
  .obanner .product-img img {
    width: 60%;
  }
}
.relative {
  position: relative;
}
.relative .common-nav {
  position: absolute;
  left: 0;
  bottom: 0.65rem;
  z-index: 10;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .relative .common-nav {
    bottom: 3.385416666666667vw;
  }
}
.common-nav .contain ul {
  padding-left: 0;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .common-nav .contain ul {
    flex-wrap: nowrap;
    padding-bottom: 0.3rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
.common-nav .contain ul li {
  margin-right: 0.2rem;
}
@media screen and (min-width: 992px) {
  .common-nav .contain ul li {
    margin-right: 1.041666666666667vw;
  }
}
.common-nav .contain ul li:hover span,
.common-nav .contain ul li:hover a {
  color: #ffffff;
  background: url(../images/img6.jpg) center no-repeat;
  background-size: cover;
}
.common-nav .contain ul li:hover span::before,
.common-nav .contain ul li:hover a::before {
  background-image: linear-gradient(#3296f3 0%, rgba(5, 87, 163, 0) 36%, rgba(5, 87, 163, 0) 100%);
}
.common-nav .contain ul li.active span,
.common-nav .contain ul li.active a {
  color: #ffffff;
  background: url(../images/img6.jpg) center no-repeat;
  background-size: cover;
}
.common-nav .contain ul li.active span::before,
.common-nav .contain ul li.active a::before {
  background-image: linear-gradient(#3296f3 0%, rgba(5, 87, 163, 0) 36%, rgba(5, 87, 163, 0) 100%);
}
.common-nav .contain ul li span,
.common-nav .contain ul li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4rem;
  height: 0.56rem;
  border-radius: 0.15rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #555555;
  font-size: 0.9375vw;
  background: url(../images/img5.jpg) center no-repeat;
  background-size: cover;
  transition: all 0.5s ease;
  padding: 0 0.2rem;
  box-sizing: border-box;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .common-nav .contain ul li span,
  .common-nav .contain ul li a {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .common-nav .contain ul li span,
  .common-nav .contain ul li a {
    min-width: 7.291666666666667vw;
    height: 2.916666666666667vw;
    border-radius: 0.78125vw;
    padding: 0 1.0416667vw;
  }
}
@media screen and (max-width: 991px) {
  .common-nav .contain ul li span,
  .common-nav .contain ul li a {
    min-width: 1.7rem;
    height: 0.64rem;
  }
}
.common-nav .contain ul li span::before,
.common-nav .contain ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -105%;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, 0) 100%);
  border-radius: 0.15rem;
  opacity: 0.3;
  transition: all 0.5s ease;
}
@media screen and (min-width: 992px) {
  .common-nav .contain ul li span::before,
  .common-nav .contain ul li a::before {
    border-radius: 0.78125vw;
  }
}
.i-title.center {
  text-align: center;
}
.i-title.center .line {
  margin-left: auto;
  margin-right: auto;
}
.i-title.white .headline {
  color: #FFFFFF;
}
.i-title.white .desc {
  color: #FFFFFF;
}
.i-title .headline {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #000000;
  font-size: 2.083333333333333vw;
  line-height: 1.1;
}
@media screen and (max-width: 991px) {
  .i-title .headline {
    font-size: .4rem;
  }
}
@media screen and (max-width: 480px) {
  .i-title .headline {
    font-size: .42rem;
  }
}
.i-title .title {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #2c4497;
  font-size: 2.5vw;
  line-height: 1.1;
}
@media screen and (max-width: 991px) {
  .i-title .title {
    font-size: .48rem;
  }
}
@media screen and (max-width: 767px) {
  .i-title .title {
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 480px) {
  .i-title .title {
    font-size: 5.4vw;
  }
}
.i-title .line {
  margin-top: 0.1rem;
  display: block;
  width: 0.3rem;
  height: 2px;
  background: #333333;
}
@media screen and (min-width: 992px) {
  .i-title .line {
    width: 1.5625vw;
    margin-top: 0.5208333vw;
  }
}
@media screen and (max-width: 991px) {
  .i-title .line {
    margin-top: 10px;
    width: 20px;
  }
}
.i-title .desc {
  margin-top: 0.12rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #666666;
  font-size: 0.9375vw;
}
@media screen and (max-width: 991px) {
  .i-title .desc {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .i-title .desc {
    margin-top: 0.625vw;
    font-size: 1.0416667vw;
  }
}
@media screen and (min-width: 992px) and screen and (max-width: 991px) {
  .i-title .desc {
    font-size: 17px;
  }
}
@media screen and (max-width: 991px) {
  .i-title .desc {
    margin-top: 12px;
  }
}
@media screen and (max-width: 991px) {
  .index-section .box {
    flex-wrap: wrap;
  }
}
.index-section .box .content {
  display: flex;
  flex-direction: column;
  width: 48.66666666666667%;
}
@media screen and (max-width: 991px) {
  .index-section .box .content {
    width: 100%;
  }
}
.index-section .box .content.index-business .wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: url(../images/img1.jpg) center no-repeat;
  background-size: cover;
  padding: 0.48rem;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-business .wrap {
    padding: 2.5vw;
  }
}
.index-section .box .content.index-business .wrap .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item {
  display: block;
  width: 100%;
  overflow: hidden;
}
.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .subtit {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #196cd2;
  font-size: 1.5625vw;
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .subtit {
    font-size: .3rem;
  }
}
@media screen and (max-width: 480px) {
  .index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .subtit {
    font-size: .36rem;
  }
}
.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox {
  margin-top: 0.3rem;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox {
    margin-top: 1.5625vw;
  }
}
.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .img {
  width: 56.06060606060606%;
  text-align: center;
}
.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .img img {
  max-width: 100%;
}
.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text {
  display: inline-block;
  min-width: 36%;
}
.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul {
  padding-left: 0;
}
.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li {
  list-style: none;
  margin-bottom: 0.6rem;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li {
    margin-bottom: 3.125vw;
  }
}
.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t1 {
  color: #666666;
  font-size: 0.8333333333333333vw;
  margin-bottom: 0.18rem;
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t1 {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t1 {
    margin-bottom: 0.9375vw;
  }
}
.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t2 {
  display: flex;
  align-items: center;
}
.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t2 .icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.25rem;
  border-radius: 50%;
  box-sizing: border-box;
  border: #2e84ee solid 2px;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t2 .icon {
    width: 2.604166666666667vw;
    height: 2.604166666666667vw;
    margin-right: 1.302083333333333vw;
  }
}
.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t2 .icon img {
  width: 50%;
}
.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t2 .txt {
  display: flex;
  align-items: baseline;
  overflow: hidden;
}
.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t2 .txt .s1 {
  /*font-family: "HarmonyOS_Sans_SC_Bold";*/
 	/*font-family: "HarmonyOS_Sans_SC_Medium";*/
  color: #196cd2;
  /*font-size: 3.28125vw;*/
 	font-size: 1.5625vw;
  line-height: 1.25;
  margin-right: 0.12rem;
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t2 .txt .s1 {
    /*font-size: .6rem;*/
   	font-size: 0.4rem;
  }
}
@media screen and (max-width: 767px) {
  .index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t2 .txt .s1 {
    /*font-size: 6.4vw;*/
   	font-size: 4vw;
  }
}
@media screen and (max-width: 480px) {
	.index-section .box .content.index-business .wrap{
		padding-right: 0.25rem;
	}
	.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text{
		display: block;
		width: 43.939393%;
	}
	.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t2 .icon{
		margin-right: 0.1rem;
	}
  .index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t2 .txt .s1 {
    /*font-size: 7vw;*/
  }
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t2 .txt .s1 {
    margin-right: 0.625vw;
  }
}
.index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t2 .txt .s2 {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #196cd2;
  font-size: 0.9375vw;
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-business .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .text ul li .t2 .txt .s2 {
    font-size: 15px;
  }
}
.index-section .box .content.index-business .wrap .swiper-button-next,
.index-section .box .content.index-business .wrap .swiper-button-prev {
  position: absolute;
  top: auto;
  margin-top: 0;
  bottom: 0.75rem;
  z-index: 10;
  width: 0.48rem;
  height: 0.48rem;
  border: #7ba8e0 solid 1px;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-business .wrap .swiper-button-next,
  .index-section .box .content.index-business .wrap .swiper-button-prev {
    bottom: 3.90625vw;
    width: 2.5vw;
    height: 2.5vw;
  }
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-business .wrap .swiper-button-next,
  .index-section .box .content.index-business .wrap .swiper-button-prev {
    width: 0.64rem;
    height: 0.64rem;
    bottom: 0.6rem;
  }
}
.index-section .box .content.index-business .wrap .swiper-button-next {
  right: 0;
  left: 0.89rem;
  background: url(../images/icon7.png) center no-repeat;
  background-size: 19.57% auto;
}
.index-section .box .content.index-business .wrap .swiper-button-next.swiper-button-disabled {
  z-index: 3;
  opacity: 1;
  border: #bfc4ca solid 1px;
  background: url(../images/icon7a.png) center no-repeat;
  background-size: 19.57% auto;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-business .wrap .swiper-button-next {
    left: 4.635416666666667vw;
  }
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-business .wrap .swiper-button-next {
    left: 1.12rem;
  }
}
.index-section .box .content.index-business .wrap .swiper-button-prev {
  right: auto;
  left: 0.42rem;
  background: url(../images/icon6.png) center no-repeat;
  background-size: 19.57% auto;
}
.index-section .box .content.index-business .wrap .swiper-button-prev.swiper-button-disabled {
  z-index: 3;
  opacity: 1;
  border: #bfc4ca solid 1px;
  background: url(../images/icon6a.png) center no-repeat;
  background-size: 19.57% auto;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-business .wrap .swiper-button-prev {
    left: 2.1875vw;
  }
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-business .wrap .swiper-button-prev {
    left: 0.5rem;
  }
}
.index-section .box .content.index-business .wrap .tab {
  margin-top: 0.4rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-business .wrap .tab {
    margin-top: 2.083333333333333vw;
  }
}
.index-section .box .content.index-business .wrap .tab ul {
  display: inline-block;
  text-align: right;
  padding-left: 0;
}
.index-section .box .content.index-business .wrap .tab ul li {
  list-style: none;
  margin-bottom: 0.06rem;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-business .wrap .tab ul li {
    margin-bottom: 0.3125vw;
  }
}
.index-section .box .content.index-business .wrap .tab ul li span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 0.36rem;
  padding-left: 0.2rem;
  color: #aaaaaa;
  font-size: 0.9375vw;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-business .wrap .tab ul li span {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-business .wrap .tab ul li span {
    min-height: 1.875vw;
    padding-left: 1.0416667vw;
  }
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-business .wrap .tab ul li span {
    min-height: 0.5rem;
    padding-left: 0.3rem;
  }
}
.index-section .box .content.index-business .wrap .tab ul li span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.04rem;
  height: 0;
  background: #196cd2;
  transition: all 0.5s ease;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-business .wrap .tab ul li span::before {
    width: 0.2083333333333333vw;
  }
}
.index-section .box .content.index-business .wrap .tab ul li.active span {
  font-family: "HarmonyOS_Sans_SC_Medium";
  font-size: 1.145833333333333vw;
  color: #196cd2;
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-business .wrap .tab ul li.active span {
    font-size: 18px;
  }
}
.index-section .box .content.index-business .wrap .tab ul li.active span::before {
  height: 0.24rem;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-business .wrap .tab ul li.active span::before {
    height: 1.25vw;
  }
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-business .wrap .tab ul li.active span::before {
    height: 0.36rem;
  }
}
.index-section .box .content.index-business .wrap .tab ul li:hover span {
  font-family: "HarmonyOS_Sans_SC_Medium";
  font-size: 1.145833333333333vw;
  color: #196cd2;
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-business .wrap .tab ul li:hover span {
    font-size: 18px;
  }
}
.index-section .box .content.index-business .wrap .tab ul li:hover span::before {
  height: 0.24rem;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-business .wrap .tab ul li:hover span::before {
    height: 1.25vw;
  }
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-business .wrap .tab ul li:hover span::before {
    height: 0.36rem;
  }
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-research {
    margin-top: 0.8rem;
  }
}
.index-section .box .content.index-research .wrap .swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index-section .box .content.index-research .wrap .swiper .swiper-wrapper {
  align-items: stretch;
}
.index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item {
  position: relative;
  width: 100%;
  height: 100%;
}
.index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .imgbox {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .imgbox {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 7.1rem;
  padding: 0.48rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox {
    min-height: 36.97916666666667vw;
    padding: 2.5vw;
  }
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox {
    position: relative;
    padding-bottom: 150px;
  }
}
.index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .part .subtit {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #FFFFFF;
  font-size: 1.5625vw;
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .part .subtit {
    font-size: .3rem;
  }
}
@media screen and (max-width: 480px) {
  .index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .part .subtit {
    font-size: .36rem;
  }
}
.index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .part i {
  display: block;
  width: 0.5rem;
  height: 0.04rem;
  background: #FFFFFF;
  margin-top: 0.12rem;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .part i {
    width: 2.604166666666667vw;
    height: 0.2083333333333333vw;
    margin-top: 0.625vw;
  }
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .part i {
    margin-top: 10px;
    width: 20px;
    height: 2px;
  }
}
.index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .part .text {
  margin-top: 0.3rem;
  font-size: 0.9375vw;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .part .text {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .part .text {
    margin-top: 1.5625vw;
  }
}
.index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .btn {
  margin-top: 0.3rem;
  margin-bottom: 0.24rem;
  width: 30%;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .btn {
    margin-top: 1.5625vw;
    margin-bottom: 1.25vw;
  }
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .btn {
    position: absolute;
    left: 0.5rem;
    bottom: 0.4rem;
  }
}
.index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6rem;
  height: 0.5rem;
  padding: 0 0.24rem;
  border: #ffffff solid 1px;
  box-sizing: border-box;
  color: #FFFFFF;
  font-size: 0.8333333333333333vw;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .btn a {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .btn a {
    min-width: 8.333333333333333vw;
    height: 2.604166666666667vw;
    padding: 0 1.25vw;
  }
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .btn a {
    height: 0.7rem;
  }
}
.index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .btn a:hover {
  background: #196cd2;
  border-color: #196cd2;
}
.index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .btn a i {
  display: inline-block;
  width: 0.25rem;
  height: 0.14rem;
  margin-left: 0.15rem;
  background: url(../images/icon8.png) center no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-research .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .btn a i {
    width: 1.302083333333333vw;
    height: 0.7291666666666667vw;
    margin-left: 0.78125vw;
  }
}
.index-section .box .content.index-research .wrap .tab {
  position: absolute;
  right: 0.36rem;
  bottom: 0.54rem;
  z-index: 5;
  width: 60%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-research .wrap .tab {
    right: 1.875vw;
    bottom: 2.8125vw;
  }
}
.index-section .box .content.index-research .wrap .tab ul {
  display: inline-block;
  text-align: right;
  padding-left: 0;
}
.index-section .box .content.index-research .wrap .tab ul li {
  list-style: none;
  margin-bottom: 0.06rem;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-research .wrap .tab ul li {
    margin-bottom: 0.3125vw;
  }
}
.index-section .box .content.index-research .wrap .tab ul li span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 0.36rem;
  padding-left: 0.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375vw;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-research .wrap .tab ul li span {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-research .wrap .tab ul li span {
    min-height: 1.875vw;
    padding-left: 1.0416667vw;
  }
}
.index-section .box .content.index-research .wrap .tab ul li span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.04rem;
  height: 0;
  background: #FFFFFF;
  transition: all 0.5s ease;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-research .wrap .tab ul li span::before {
    width: 0.2083333333333333vw;
  }
}
.index-section .box .content.index-research .wrap .tab ul li.active span {
  font-family: "HarmonyOS_Sans_SC_Medium";
  font-size: 1.145833333333333vw;
  color: #FFFFFF;
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-research .wrap .tab ul li.active span {
    font-size: 18px;
  }
}
.index-section .box .content.index-research .wrap .tab ul li.active span::before {
  height: 0.24rem;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-research .wrap .tab ul li.active span::before {
    height: 1.25vw;
  }
}
.index-section .box .content.index-research .wrap .tab ul li:hover span {
  font-family: "HarmonyOS_Sans_SC_Medium";
  font-size: 1.145833333333333vw;
  color: #FFFFFF;
}
@media screen and (max-width: 991px) {
  .index-section .box .content.index-research .wrap .tab ul li:hover span {
    font-size: 18px;
  }
}
.index-section .box .content.index-research .wrap .tab ul li:hover span::before {
  height: 0.24rem;
}
@media screen and (min-width: 992px) {
  .index-section .box .content.index-research .wrap .tab ul li:hover span::before {
    height: 1.25vw;
  }
}
.index-section .box .content .i-title {
  flex-shrink: 0;
  margin-bottom: 0.6rem;
}
@media screen and (min-width: 992px) {
  .index-section .box .content .i-title {
    margin-bottom: 3.125vw;
  }
}
.index-section .box .content .wrap {
  flex: 1;
  overflow: hidden;
}
.index-news {
  background: #fafafa;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .index-news .wrap {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 991px) {
  .index-news .wrap .column-tab {
    margin-top: 0.4rem;
  }
}
.index-news .wrap .column-tab ul {
  display: flex;
  align-items: center;
  padding-left: 0;
}
.index-news .wrap .column-tab ul li {
  position: relative;
  padding-right: 0.36rem;
  margin-right: 0.24rem;
  list-style: none;
}
@media screen and (min-width: 992px) {
  .index-news .wrap .column-tab ul li {
    padding-right: 1.875vw;
    margin-right: 1.25vw;
  }
}
.index-news .wrap .column-tab ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.index-news .wrap .column-tab ul li::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 0.15rem;
  height: 1px;
  background: #acacac;
  transform: rotate(-45deg);
}
.index-news .wrap .column-tab ul li:last-child::before{
	display: none;
}
@media screen and (min-width: 992px) {
  .index-news .wrap .column-tab ul li::before {
    width: 0.78125vw;
  }
}
.index-news .wrap .column-tab ul li.active span,
.index-news .wrap .column-tab ul li.active a {
  color: #14669c;
}
.index-news .wrap .column-tab ul li:hover span,
.index-news .wrap .column-tab ul li:hover a {
  color: #14669c;
}
.index-news .wrap .column-tab ul li span,
.index-news .wrap .column-tab ul li a {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #888888;
  font-size: 0.8333333333333333vw;
  transition: all 0.5s ease;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .index-news .wrap .column-tab ul li span,
  .index-news .wrap .column-tab ul li a {
    font-size: 14px;
  }
}
.index-news .box {
  position: relative;
  margin-top: 4.66666666666667%;
}
@media screen and (max-width: 991px) {
  .index-news .box {
    margin-top: 0.5rem;
  }
}
.index-news .box .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: -99;
  transform: translateY(50%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.index-news .box .content.active {
  position: relative;
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0);
}
.index-news .box .content .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.index-news .box .content .swiper .swiper-wrapper {
  align-items: stretch;
}
.index-news .box .content .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.index-news .box .content .swiper .swiper-wrapper .swiper-slide .item {
  background: #FFFFFF;
}
@media screen and (max-width: 991px) {
  .index-news .box .content .swiper .swiper-wrapper .swiper-slide .item {
    flex-wrap: wrap;
  }
}
.index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .imgbox {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .imgbox {
    width: 100%;
  }
}
.index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .textbox {
  width: 50%;
  min-height: 3.5rem;
  box-sizing: border-box;
  padding: 0 5%;
}
@media screen and (min-width: 992px) {
  .index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .textbox {
    min-height: 18.22916666666667vw;
  }
}
@media screen and (max-width: 991px) {
  .index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .textbox {
    width: 100%;
    padding: 0.4rem;
  }
}
.index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .textbox .text {
  flex: 1;
  overflow: hidden;
}
.index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .textbox .text .title {
  font-family: "HarmonyOS_Sans_SC_Medium";
  color: #333333;
  font-size: 1.25vw;
}
@media screen and (max-width: 991px) {
  .index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .textbox .text .title {
    font-size: .26rem;
  }
}
@media screen and (max-width: 480px) {
  .index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .textbox .text .title {
    font-size: 0.3rem;
  }
}
.index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .textbox .text .desc {
  margin-top: 0.2rem;
  color: #888888;
  font-size: 0.8333333333333333vw;
  line-height: 1.7;
}
@media screen and (max-width: 991px) {
  .index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .textbox .text .desc {
    font-size: 14px;
  }
}
.index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .textbox .text .viewmore {
  margin-top: 0.45rem;
}
@media screen and (min-width: 992px) {
  .index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .textbox .text .viewmore {
    margin-top: 2.34375vw;
  }
}
.index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .textbox .text .viewmore span {
  display: inline-flex;
  align-items: center;
  color: #0075c1;
  font-size: 0.8333333333333333vw;
}
@media screen and (max-width: 991px) {
  .index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .textbox .text .viewmore span {
    font-size: 14px;
  }
}
.index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .textbox .text .viewmore span i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.26rem;
  height: 0.26rem;
  margin-left: 0.12rem;
  border-radius: 50%;
  background: #0075c1 url(../images/icon9.png) center no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 992px) {
  .index-news .box .content .swiper .swiper-wrapper .swiper-slide .item .textbox .text .viewmore span i {
    width: 1.354166666666667vw;
    height: 1.354166666666667vw;
    margin-left: 0.625vw;
  }
}
.index-news .box .content .swiper .swiper-pagination {
  left: auto;
  right: 0.4rem;
  bottom: 0.7rem;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (min-width: 992px) {
  .index-news .box .content .swiper .swiper-pagination {
    right: 2.083333333333333vw;
    bottom: 3.645833333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .index-news .box .content .swiper .swiper-pagination {
    width: 50%;
    bottom: 0.5rem;
  }
}
.index-news .box .content .swiper .swiper-pagination .swiper-pagination-bullet {
  background: #c7c7c7;
  opacity: 1;
}
.index-news .box .content .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0075c1;
}
.index-news .box .content .date {
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  color: #9d9c9c;
  font-size: 0.8333333333333333vw;
}
@media screen and (max-width: 991px) {
  .index-news .box .content .date {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .index-news .box .content .date {
    margin-top: 1.5625vw;
  }
}
.index-news .box .content .date img {
  display: inline-block;
  margin-right: 0.1rem;
  width: 0.17rem;
}
@media screen and (min-width: 992px) {
  .index-news .box .content .date img {
    margin-right: 0.5208333vw;
    width: 0.8854166666666667vw;
  }
}
@media screen and (max-width: 991px) {
  .index-news .box .content .date img {
    margin-right: 10px;
    width: 17px;
  }
}
.index-news .box .content .newlist .item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32.4%;
  margin-right: 1.4%;
  margin-top: 1.4%;
  padding: 0.32rem 0.4rem;
  background: #ffffff;
  box-sizing: border-box;
}
.index-news .box .content .newlist .item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .index-news .box .content .newlist .item {
    padding: 1.666666666666667vw 2.083333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .index-news .box .content .newlist .item {
    width: 100%;
    margin-right: 0;
    margin-top: 0.4rem;
  }
}
.index-news .box .content .newlist .item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0.04rem;
  background: #0075c1;
  transition: all 0.5s ease;
}
@media screen and (min-width: 992px) {
  .index-news .box .content .newlist .item::before {
    height: 0.2083333333333333vw;
  }
}
.index-news .box .content .newlist .item:hover {
  background: #f2f2f2;
}
.index-news .box .content .newlist .item:hover::before {
  width: 100%;
}
.index-news .box .content .newlist .item .subtit {
  color: #555555;
  font-size: 0.9375vw;
}
@media screen and (max-width: 991px) {
  .index-news .box .content .newlist .item .subtit {
    font-size: 15px;
  }
}
.about .development {
  width: 100%;
  overflow: hidden;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about .development .box {
  position: relative;
  padding-top: 11%;
}
.about .development .box .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.about .development .box .swiper.mySwiper2 {
  position: absolute;
  left: 0;
  top: 0;
}
.about .development .box .swiper.mySwiper2 .swiper-wrapper .swiper-slide .item {
  font-family: "HarmonyOS_Sans_SC_Medium";
  font-size: 5rem;
  line-height: 1.2;
  text-align: center;
  background: -webkit-linear-gradient(to bottom, rgba(136, 136, 136, 0.04) 0%, rgba(136, 136, 136, 0.04) 50%, rgba(136, 136, 136, 0) 100%);
  background: linear-gradient(to bottom, rgba(136, 136, 136, 0.04) 0%, rgba(136, 136, 136, 0.04) 50%, rgba(136, 136, 136, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media screen and (min-width: 992px) {
  .about .development .box .swiper.mySwiper2 .swiper-wrapper .swiper-slide .item {
    font-size: 26.04166666666667vw;
  }
}
@media screen and (max-width: 991px) {
  .about .development .box .swiper.mySwiper2 .swiper-wrapper .swiper-slide .item {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .about .development .box .swiper.mySwiper2 .swiper-wrapper .swiper-slide .item {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1260px) {
  .about .development .box .swiper.mySwiper1 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 991px) {
  .about .development .box .swiper.mySwiper1 {
    width: 85%;
  }
}
.about .development .box .swiper.mySwiper1 .swiper-wrapper {
  align-content: stretch;
}
.about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide {
  height: auto;
  min-height: 6rem;
}
.about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide:nth-child(odd) {
  padding-top: 1.6rem;
}
@media screen and (min-width: 992px) {
  .about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide:nth-child(odd) {
    padding-top: 8.333333333333333vw;
  }
}
@media screen and (min-width: 992px) {
  .about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide {
    min-height: 31.25vw;
  }
}
.about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide.active .item .year {
  color: #006ebe;
}
.about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide.active .item .text {
  color: #222222;
}
.about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 0.44rem;
  box-sizing: border-box;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide .item {
    padding: 0 2.291666666666667vw;
  }
}
@media screen and (max-width: 991px) {
  .about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide .item {
    /*padding: 0 0.15rem;*/
   	padding-left: 0.1rem;
    padding-right: 0;
  }
}
.about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide .item .year {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #888888;
  font-size: 1.2vw;
  word-break: break-word;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide .item .year {
    /*font-size: .45rem;*/
   	font-size: .3rem;
  }
}
@media screen and (max-width: 767px) {
  .about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide .item .year {
    /*font-size: 5vw;*/
   	font-size: 4vw;
  }
}
@media screen and (max-width: 480px) {
  .about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide .item .year {
    /*font-size: 5.6vw;*/
   	font-size: 4.5vw;
  }
}
.about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide .item .text {
  color: #888888;
  font-size: 0.9375vw;
  line-height: 1.7;
  word-break: break-word;
  margin-bottom: 0.2rem;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide .item .text {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide .item .text {
    margin-bottom: 1.041666666666667vw;
  }
}
.about .development .box .swiper.mySwiper1 .swiper-wrapper .swiper-slide .item::after {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  flex: 1;
  overflow: hidden;
  background: linear-gradient(to bottom, #e8e8e8 0%, #e8e8e8 80%, rgba(232, 232, 232, 0) 100%);
}
.about .development .box .swiper-button-next,
.about .development .box .swiper-button-prev {
  top: 50%;
  margin-top: -0.23rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
}
@media screen and (min-width: 992px) {
  .about .development .box .swiper-button-next,
  .about .development .box .swiper-button-prev {
    width: 2.395833333333333vw;
    height: 2.395833333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .about .development .box .swiper-button-next,
  .about .development .box .swiper-button-prev {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.about .development .box .swiper-button-next.swiper-button-next,
.about .development .box .swiper-button-prev.swiper-button-next {
  left: auto;
  right: -1.3rem;
  background: #006ebe url(../images/icon12.png) center no-repeat;
  background-size: 21.74% auto;
}
.about .development .box .swiper-button-next.swiper-button-next.swiper-button-disabled,
.about .development .box .swiper-button-prev.swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background: #e1e1e1 url(../images/icon12a.png) center no-repeat;
  background-size: 21.74% auto;
}
@media screen and (min-width: 992px) {
  .about .development .box .swiper-button-next.swiper-button-next,
  .about .development .box .swiper-button-prev.swiper-button-next {
    right: -6.77083333vw;
  }
}
@media screen and (max-width: 1260px) {
  .about .development .box .swiper-button-next.swiper-button-next,
  .about .development .box .swiper-button-prev.swiper-button-next {
    right: -2.5%;
  }
}
.about .development .box .swiper-button-next.swiper-button-prev,
.about .development .box .swiper-button-prev.swiper-button-prev {
  left: -1.3rem;
  right: auto;
  background: #006ebe url(../images/icon11.png) center no-repeat;
  background-size: 21.74% auto;
}
.about .development .box .swiper-button-next.swiper-button-prev.swiper-button-disabled,
.about .development .box .swiper-button-prev.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  background: #e1e1e1 url(../images/icon11a.png) center no-repeat;
  background-size: 21.74% auto;
}
@media screen and (min-width: 992px) {
  .about .development .box .swiper-button-next.swiper-button-prev,
  .about .development .box .swiper-button-prev.swiper-button-prev {
    left: -6.77083333vw;
  }
}
@media screen and (max-width: 1260px) {
  .about .development .box .swiper-button-next.swiper-button-prev,
  .about .development .box .swiper-button-prev.swiper-button-prev {
    left: -2.5%;
  }
}
.profile .box {
  margin-top: 5%;
}
@media screen and (max-width: 991px) {
  .profile .box {
    margin-top: 0.5rem;
  }
}
.profile .box .text {
  max-width: 9.8rem;
  width: 100%;
  margin: auto;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #666666;
  line-height: 2;
  font-size: 0.9375vw;
  /*text-align: center;*/
}
@media screen and (max-width: 991px) {
  .profile .box .text {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .profile .box .text {
    max-width: 51vw;
    font-size: 1.0416667vw;
  }
}
@media screen and (min-width: 992px) and screen and (max-width: 991px) {
  .profile .box .text {
    font-size: 17px;
  }
}
.profile .box .content {
  display: flex;
  justify-content: center;
  margin-top: 5%;
}
.profile .box .content .imgbox {
  position: relative;
  display: inline-block;
  max-width: 100%;
  min-width: 75.4%;
  text-align: center;
}
.profile .box .content .imgbox > img {
  width: 100%;
}
.profile .box .content .imgbox ul {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.24rem;
}
@media screen and (min-width: 992px) {
  .profile .box .content .imgbox ul {
    gap: 1.25vw;
  }
}
.profile .box .content .imgbox ul li {
  min-width: 25%;
  min-height: 2.2rem;
}
@media screen and (min-width: 992px) {
  .profile .box .content .imgbox ul li {
    min-height: 11.45833333333333vw;
  }
}
.profile .box .content .imgbox ul li .t1 {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #0076c2;
  font-size: 3.125vw;
}
@media screen and (max-width: 991px) {
  .profile .box .content .imgbox ul li .t1 {
    font-size: .56rem;
  }
}
@media screen and (max-width: 767px) {
  .profile .box .content .imgbox ul li .t1 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 480px) {
  .profile .box .content .imgbox ul li .t1 {
    font-size: 6.6vw;
  }
}
.profile .box .content .imgbox ul li .t2 {
  color: #333333;
  font-size: 1.145833333333333vw;
}
@media screen and (max-width: 991px) {
  .profile .box .content .imgbox ul li .t2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .profile .box .content .imgbox ul li .t2 {
    font-size: 14px;
  }
}
.partner {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 991px) {
  .partner .contain {
    width: 100%;
  }
}
.partner .contain .box {
  margin-top: 4%;
  padding: 0px 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .partner .contain .box {
    margin-top: 0.5rem;
    padding: 0;
  }
}
.partner .contain .box .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 20px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .partner .contain .box .swiper {
    padding: 15px 15px 0;
  }
}
@media screen and (max-width: 640px) {
  .partner .contain .box .swiper {
    padding: 10px 10px 0;
  }
}
.partner .contain .box .swiper .swiper-wrapper .swiper-slide {
  padding: 0 0.1rem;
}
@media screen and (min-width: 992px) {
  .partner .contain .box .swiper .swiper-wrapper .swiper-slide {
    padding: 0 0.5208333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .partner .contain .box .swiper .swiper-wrapper .swiper-slide {
    padding: 0 0.05rem;
  }
}
.partner .contain .box .swiper .swiper-wrapper .swiper-slide .item {
  display: block;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-radius: 0.15rem;
}
@media screen and (min-width: 992px) {
  .partner .contain .box .swiper .swiper-wrapper .swiper-slide .item {
    border-radius: 0.78125vw;
  }
}
@media screen and (max-width: 991px) {
  .partner .contain .box .swiper .swiper-wrapper .swiper-slide .item {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 640px) {
  .partner .contain .box .swiper .swiper-wrapper .swiper-slide .item {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
}
.partner .contain .box .swiper .swiper-wrapper .swiper-slide .item img {
  display: block;
  width: 100%;
  border-radius: 0.15rem;
}
@media screen and (min-width: 992px) {
  .partner .contain .box .swiper .swiper-wrapper .swiper-slide .item img {
    border-radius: 0.78125vw;
  }
}
.swiper-operate {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.6rem;
}
@media screen and (min-width: 992px) {
  .swiper-operate {
    margin-top: 3.125vw;
  }
}
@media screen and (max-width: 991px) {
  .swiper-operate {
    margin-top: 0.5rem;
  }
}
.swiper-operate .swiper-button-prev,
.swiper-operate .swiper-button-next {
  position: static;
  width: 0.36rem;
  height: 0.36rem;
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .swiper-operate .swiper-button-prev,
  .swiper-operate .swiper-button-next {
    width: 1.875vw;
    height: 1.875vw;
  }
}
@media screen and (max-width: 991px) {
  .swiper-operate .swiper-button-prev,
  .swiper-operate .swiper-button-next {
    width: 0.54rem;
    height: 0.54rem;
  }
}
.swiper-operate .swiper-button-prev {
  margin-right: 0.3rem;
  background: url(../images/icon13.png) center no-repeat;
  background-size: 25% auto;
}
@media screen and (min-width: 992px) {
  .swiper-operate .swiper-button-prev {
    margin-right: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .swiper-operate .swiper-button-prev {
    margin-right: 0.2rem;
  }
}
.swiper-operate .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  background: url(../images/icon13a.png) center no-repeat;
  background-size: 25% auto;
}
.swiper-operate .swiper-button-next {
  margin-left: 0.3rem;
  background: url(../images/icon14.png) center no-repeat;
  background-size: 25% auto;
}
@media screen and (min-width: 992px) {
  .swiper-operate .swiper-button-next {
    margin-left: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .swiper-operate .swiper-button-next {
    margin-left: 0.2rem;
  }
}
.swiper-operate .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background: url(../images/icon14a.png) center no-repeat;
  background-size: 25% auto;
}
.swiper-operate .swiper-pagination {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.swiper-operate .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: #cccccc;
  width: 0.1rem;
  height: 0.1rem;
  margin: 0 0.1rem;
  border-radius: 50%;
}
@media screen and (min-width: 992px) {
  .swiper-operate .swiper-pagination .swiper-pagination-bullet {
    width: 0.5208333333333333vw;
    height: 0.5208333333333333vw;
    margin: 0 0.5208333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .swiper-operate .swiper-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 5px;
  }
}
.swiper-operate .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #326af1;
}
.culture {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.culture .box {
  margin-top: 0.6rem;
}
@media screen and (min-width: 992px) {
  .culture .box {
    margin-top: 3.125vw;
  }
}
.culture .box .text {
  max-width: 9.6rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #666666;
  font-size: 0.9375vw;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .culture .box .text {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .culture .box .text {
    max-width: 50vw;
    font-size: 1.0416667vw;
  }
}
@media screen and (min-width: 992px) and screen and (max-width: 991px) {
  .culture .box .text {
    font-size: 17px;
  }
}
.culture .box .wrap {
  margin-top: 0.6rem;
}
@media screen and (min-width: 992px) {
  .culture .box .wrap {
    margin-top: 3.125vw;
  }
}
.culture .box .wrap .item {
  position: relative;
  width: 31.2%;
  margin-right: 3.2%;
  margin-bottom: 3.2%;
}
.culture .box .wrap .item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .culture .box .wrap .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
}
.culture .box .wrap .item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}
.culture .box .wrap .item .imgbox {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.06rem;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .culture .box .wrap .item .imgbox {
    border-radius: 0.3125vw;
  }
}
.culture .box .wrap .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.culture .box .wrap .item .textbox {
  position: absolute;
  left: 0;
  top: 0.7rem;
  z-index: 10;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .culture .box .wrap .item .textbox {
    top: 3.645833333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .culture .box .wrap .item .textbox {
    top: 50%;
    transform: translateY(-50%);
  }
}
.culture .box .wrap .item .textbox .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  margin: auto;
  border-radius: 50%;
  background: #0076c2;
}
@media screen and (min-width: 992px) {
  .culture .box .wrap .item .textbox .icon {
    width: 8.854166666666667vw;
    height: 8.854166666666667vw;
  }
}
.culture .box .wrap .item .textbox .icon img {
  width: 40.589%;
}
.culture .box .wrap .item .textbox .t1 {
  margin-top: 0.2rem;
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #ffffff;
  font-size: 1.5625vw;
}
@media screen and (max-width: 991px) {
  .culture .box .wrap .item .textbox .t1 {
    font-size: .3rem;
  }
}
@media screen and (max-width: 480px) {
  .culture .box .wrap .item .textbox .t1 {
    font-size: .36rem;
  }
}
@media screen and (min-width: 992px) {
  .culture .box .wrap .item .textbox .t1 {
    margin-top: 1.041666666666667vw;
  }
}
@media screen and (max-width: 991px) {
  .culture .box .wrap .item .textbox .t1 {
    margin-top: 0.3rem;
  }
}
.culture .box .wrap .item .textbox .t2 {
  margin-top: 0.24rem;
  font-size: 1.0416667vw;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 991px) {
  .culture .box .wrap .item .textbox .t2 {
    font-size: 17px;
  }
}
@media screen and (min-width: 992px) {
  .culture .box .wrap .item .textbox .t2 {
    margin-top: 1.25vw;
  }
}
@media screen and (max-width: 991px) {
  .culture .box .wrap .item .textbox .t2 {
    margin-top: 0.36rem;
  }
}
.qualifications {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.qualifications .box {
  width: 82.29166666666667%;
  margin: 3.75% auto 0;
  background: url(../images/img32.png) center top 23vw no-repeat;
  background-size: 100% auto;
  overflow: hidden;
}
@media screen and (max-width: 1580px) {
  .qualifications .box {
    background: url(../images/img32.png) center top 22vw no-repeat;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 991px) {
  .qualifications .box {
    background: url(../images/img32.png) center top 38vmin no-repeat;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 640px) {
  .qualifications .box {
    background: url(../images/img32.png) center top 59vmin no-repeat;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 991px) {
  .qualifications .box {
    width: 100%;
    margin: 0.3rem auto 0;
  }
}
.qualifications .box .swiper {
  position: relative;
  width: 93.67088607594937%;
  margin: auto;
  overflow: hidden;
  padding: 0.3rem;
}
@media screen and (min-width: 992px) {
  .qualifications .box .swiper {
    padding: 1.5625vw;
  }
}
.qualifications .box .swiper .swiper-wrapper .swiper-slide {
  opacity: 0;
}
.qualifications .box .swiper .swiper-wrapper .swiper-slide.on {
  opacity: 1;
}
.qualifications .box .swiper .swiper-wrapper .swiper-slide .item .img {
  position: relative;
  width: 100%;
  padding-bottom: 133.8192419825073%;
  background: url(../images/img31.png) center no-repeat;
  background-size: 100% 100%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 991px) {
  .qualifications .box .swiper .swiper-wrapper .swiper-slide .item .img {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 767px) {
  .qualifications .box .swiper .swiper-wrapper .swiper-slide .item .img {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
}
.qualifications .box .swiper .swiper-wrapper .swiper-slide .item .img::before {
  content: '';
  position: absolute;
  left: -5%;
  bottom: -6%;
  z-index: -1;
  width: 105%;
  height: 0.59rem;
  background: url(../images/img34.png) center bottom no-repeat;
  background-size: 100% auto;
}
.qualifications .box .swiper .swiper-wrapper .swiper-slide .item .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  max-width: 86%;
  max-height: 89.54%;
}
.qualifications .box .swiper .swiper-wrapper .swiper-slide .item .text {
  margin-top: 0.7rem;
  text-align: center;
  color: #333333;
  font-size: 0.9375vw;
}
@media screen and (max-width: 991px) {
  .qualifications .box .swiper .swiper-wrapper .swiper-slide .item .text {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .qualifications .box .swiper .swiper-wrapper .swiper-slide .item .text {
    margin-top: 3.645833333333333vw;
  }
}
.employee-style {
  background: #f9f9f9;
}
.employee-style .box {
  margin-top: 5%;
}
@media screen and (max-width: 991px) {
  .employee-style .box {
    margin-top: 0.5rem;
  }
}
.employee-style .box .wrap {
  padding-bottom: 4%;
}
@media screen and (max-width: 991px) {
  .employee-style .box .wrap {
    padding-bottom: 0.5rem;
  }
}
.employee-style .box .wrap li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31.73333333333333%;
  margin-right: 2.4%;
  margin-bottom: 2.4%;
  padding: 0.2rem 0.2rem 0.56rem;
  background: #ffffff;
  box-sizing: border-box;
}
.employee-style .box .wrap li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .employee-style .box .wrap li {
    padding: 1.0416667vw 1.0416667vw 2.916667vw;
  }
}
@media screen and (max-width: 991px) {
  .employee-style .box .wrap li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
  .employee-style .box .wrap li:nth-child(3n) {
    margin-right: 4%;
  }
  .employee-style .box .wrap li:nth-child(2n) {
    margin-right: 0;
  }
}
.employee-style .box .wrap li .item {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 56.32183908045977%;
  overflow: hidden;
}
.employee-style .box .wrap li .item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page {
  width: 100%;
  text-align: center;
}
.page .page-list {
  display: block;
  align-items: center;
  justify-content: center;
}
.page .page-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 .1rem;
  min-width: .3rem;
  height: .3rem;
  margin-bottom: .1rem;
  margin-right: .1rem;
  border-radius: 50%;
  text-align: center;
  font-size: 0.8333333333333333vw;
  color: #cdcdcd;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 991px) {
  .page .page-list a {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .page .page-list a {
    padding: 0 0.520833334vw;
    min-width: 1.5625vw;
    height: 1.5625vw;
    margin-bottom: 0.520833334vw;
    margin-right: 0.520833334vw;
  }
}
@media screen and (max-width: 991px) {
  .page .page-list a {
    min-width: 0.42rem;
    height: 0.42rem;
    margin-right: 0.1rem;
  }
}
.page .page-list a:last-child {
  margin-right: 0;
}
.page .page-list a:hover {
  color: #FFFFFF;
  background: #4fb3fc;
}
.page .page-list a.fyprev {
  min-width: 1.1rem;
  height: .36rem;
  margin-right: .4rem;
  border-radius: .18rem;
  color: #ffffff;
  background: #0070bf;
  border: #0070bf solid 1px;
}
.page .page-list a.fyprev:hover {
  background: #4fb3fc;
  border: #4fb3fc solid 1px;
}
.page .page-list a.fyprev.disabled {
  border: #dddddd solid 1px;
  color: #666666;
  pointer-events: none;
  background: none;
  opacity: 0.5;
}
@media screen and (min-width: 992px) {
  .page .page-list a.fyprev {
    min-width: 5.729166666666667vw;
    height: 1.875vw;
    margin-right: 2.0833333vw;
    border-radius: 0.9375vw;
  }
}
@media screen and (max-width: 991px) {
  .page .page-list a.fyprev {
    min-width: 1.3rem;
    height: .5rem;
    border-radius: .25rem;
  }
}
@media screen and (max-width: 480px) {
  .page .page-list a.fyprev {
    margin-right: .2rem;
  }
}
.page .page-list a.fynext {
  min-width: 1.1rem;
  height: .36rem;
  margin-left: .3rem;
  border-radius: .18rem;
  color: #ffffff;
  background: #0070bf;
  border: #0070bf solid 1px;
}
.page .page-list a.fynext:hover {
  background: #4fb3fc;
  border: #4fb3fc solid 1px;
}
.page .page-list a.fynext.disabled {
  border: #dddddd solid 1px;
  color: #666666;
  pointer-events: none;
  background: none;
  opacity: 0.5;
}
@media screen and (min-width: 992px) {
  .page .page-list a.fynext {
    min-width: 5.729166666666667vw;
    height: 1.875vw;
    margin-left: 1.5625vw;
    border-radius: 0.9375vw;
  }
}
@media screen and (max-width: 991px) {
  .page .page-list a.fynext {
    min-width: 1.3rem;
    height: .5rem;
    border-radius: .25rem;
  }
}
@media screen and (max-width: 480px) {
  .page .page-list a.fynext {
    margin-left: 0;
  }
}
.page .page-list a.on {
  color: #FFFFFF;
  background: #4fb3fc;
}
.contact .content {
  background: #f9f9f9 url(../images/img44.png) top 6.25vw center no-repeat;
}
.contact-Infor .i-title .desc {
  margin-top: 0.3rem;
  line-height: 2;
  color: #333333;
  font-family: "HarmonyOS_Sans_SC_Light";
}
@media screen and (min-width: 992px) {
  .contact-Infor .i-title .desc {
    margin-top: 1.5625vw;
  }
}
.contact-Infor .collection{
	margin-top: 6%;
	position: relative;
}
.contact-Infor .box {
  position: absolute;
  width: 100%;
  padding-bottom: 40%;
  visibility: hidden;
  opacity: 0;
  z-index: -10;
}
.contact-Infor .box.active{
	position: relative;
	visibility: visible;
	opacity: 1;
	z-index: 1;
}
.contact-Infor .box img,
.contact-Infor .box iframe {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-Infor .address{
	margin-top: 6%;
}
.contact-Infor .wrap {
  column-gap: 4vw;
  justify-content: flex-start;
}
@media screen and (max-width: 991px) {
  .contact-Infor .wrap {
    column-gap: 0;
    /*row-gap: 0.4rem;*/
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .contact-Infor .address {
    margin-top: 8%;
  }
}
.contact-Infor .wrap .item {
  width: calc((100% - 12vw) / 4);
  text-align: center;
  margin-bottom: 4vw;
}
@media screen and (min-width: 992px){
	.contact-Infor .wrap .item{
		flex: 1;
  	overflow: hidden;
	}
}
@media screen and (max-width: 991px) {
  .contact-Infor .wrap .item {
    width: 47%;
    margin-right: 6%;
    margin-bottom: 6%;
  }
  .contact-Infor .wrap .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .contact-Infor .wrap .item {
    position: relative;
    padding-left: 0.75rem;
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
    box-sizing: border-box;
    text-align: left;
  }
}
@media screen and (max-width: 540px) {
  .contact-Infor .wrap .item {
    padding-left:1.05rem;
  }
}
.contact-Infor .wrap .item:hover .icon {
  border: #0071bf dashed 1px;
  background: #0071bf;
}
.contact-Infor .wrap .item:hover .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.contact-Infor .wrap .item.active .icon {
  border: #0071bf dashed 1px;
  background: #0071bf;
}
.contact-Infor .wrap .item.active .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.contact-Infor .wrap .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 0.8rem;
  height: 0.8rem;
  border: #c5c5c5 dashed 1px;
  box-sizing: border-box;
  border-radius: 50%;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .contact-Infor .wrap .item .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 0.6rem;
  	height: 0.6rem;
  }
}
@media screen and (max-width: 540px) {
  .contact-Infor .wrap .item .icon {
    width: 0.8rem;
  	height: 0.8rem;
  }
}
.contact-Infor .wrap .item .icon img {
  width: 44.9%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.contact-Infor .wrap .item .t1 {
  margin-top: 0.15rem;
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #000000;
  font-size: 0.9375vw;
}
@media screen and (max-width: 991px) {
  .contact-Infor .wrap .item .t1 {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .contact-Infor .wrap .item .t1 {
    margin-top: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  .contact-Infor .wrap .item .t1 {
    margin-top: 0;
  }
}
.contact-Infor .wrap .item .t2 {
  margin-top: 0.12rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #333333;
  font-size: 0.8333333333333333vw;
}
@media screen and (max-width: 991px) {
  .contact-Infor .wrap .item .t2 {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .contact-Infor .wrap .item .t2 {
    margin-top: 0.625vw;
  }
}
.recruitment .box {
  max-width: 12.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .recruitment .box {
    max-width: 65.10416667vw;
  }
}
.recruitment .box .i-title .desc {
  margin-top: 0;
  line-height: 2;
  color: #333333;
  font-family: "HarmonyOS_Sans_SC_Light";
}
.recruitment .box .wrap {
  margin-top: 5%;
}
@media screen and (max-width: 991px) {
  .recruitment .box .wrap {
    overflow-x: auto;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  .recruitment .box .wrap .recruitlist {
    min-width: 800px;
  }
}
.recruitment .box .wrap .recruitlist .s1 {
  width: 19.6%;
}
.recruitment .box .wrap .recruitlist .s2 {
  width: 34.4%;
}
.recruitment .box .wrap .recruitlist .s3 {
  width: 27.2%;
}
.recruitment .box .wrap .recruitlist .s4 {
  flex: 1;
  overflow: hidden;
}
.recruitment .box .wrap .recruitlist .s5 {
  width: 0.9rem;
}
@media screen and (max-width: 991px) {
  .recruitment .box .wrap .recruitlist .s5 {
    width: 1.2rem;
  }
}
.recruitment .box .wrap .recruitlist .recruit-title {
  position: relative;
  width: 100%;
  background: -webkit-linear-gradient(0deg, #0c5da9, #3095f2);
  background: linear-gradient(0deg, #0c5da9, #3095f2);
  border-radius: 0.12rem;
}
@media screen and (min-width: 992px) {
  .recruitment .box .wrap .recruitlist .recruit-title {
    border-radius: 0.625vw;
  }
}
.recruitment .box .wrap .recruitlist .recruit-title > div {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0.65rem;
  font-family: "HarmonyOS_Sans_SC_Bold";
  font-size: 0.9375vw;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .recruitment .box .wrap .recruitlist .recruit-title > div {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .recruitment .box .wrap .recruitlist .recruit-title > div {
    min-height: 3.385416666666667vw;
  }
}
@media screen and (max-width: 991px) {
  .recruitment .box .wrap .recruitlist .recruit-title > div {
    min-height: 0.7rem;
  }
}
.recruitment .box .wrap .recruitlist ul {
  width: 100%;
  padding-left: 0;
  margin-bottom: 5%;
}
.recruitment .box .wrap .recruitlist ul li {
  list-style: none;
  width: 100%;
  border-bottom: #f0f0f0 solid 1px;
}
.recruitment .box .wrap .recruitlist ul li.active {
  border-color: transparent;
}
.recruitment .box .wrap .recruitlist ul li.active .title {
  color: #FFFFFF;
}
.recruitment .box .wrap .recruitlist ul li.active .title::before {
  opacity: 1;
  visibility: visible;
}
.recruitment .box .wrap .recruitlist ul li:hover .title {
  color: #FFFFFF;
}
.recruitment .box .wrap .recruitlist ul li:hover .title::before {
  opacity: 1;
  visibility: visible;
}
.recruitment .box .wrap .recruitlist ul li .item:hover .btn {
  color: #FFFFFF;
  background: #2584dc;
}
.recruitment .box .wrap .recruitlist ul li .item > div {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0.8rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  font-size: 0.8333333333333333vw;
  color: #2a2c2d;
}
@media screen and (max-width: 991px) {
  .recruitment .box .wrap .recruitlist ul li .item > div {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .recruitment .box .wrap .recruitlist ul li .item > div {
    min-height: 4.166666666666667vw;
  }
}
.recruitment .box .wrap .recruitlist ul li .item .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.65rem;
  height: 0.36rem;
  border-radius: 0.18rem;
  padding: 0 0.12rem;
  box-sizing: border-box;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #8b8b8b;
  font-size: 0.8333333333333333vw;
  background: #e7e7e7;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .recruitment .box .wrap .recruitlist ul li .item .btn {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .recruitment .box .wrap .recruitlist ul li .item .btn {
    min-width: 3.385416666666667vw;
    height: 1.875vw;
    border-radius: 0.9375vw;
    padding: 0 0.625vw;
  }
}
@media screen and (max-width: 991px) {
  .recruitment .box .wrap .recruitlist ul li .item .btn {
    min-width: 0.9rem;
    height: 0.48rem;
    border-radius: 0.24rem;
  }
}
@media screen and (max-width: 480px) {
  .recruitment .box .wrap .recruitlist ul li .item .btn {
    min-width: 1rem;
    height: 0.54rem;
    border-radius: 0.27rem;
  }
}
.recruitment .box .wrap .recruitlist ul li .item .btn:hover {
  color: #FFFFFF;
  background: #2584dc;
}
.recruitment-details .box {
  max-width: 11rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .recruitment-details .box {
    max-width: 57.29166666666667vw;
  }
}
.recruitment-details .box .title .position {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #0070bf;
  font-size: 1.458333333333333vw;
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .title .position {
    font-size: .28rem;
  }
}
@media screen and (max-width: 480px) {
  .recruitment-details .box .title .position {
    font-size: .32rem;
  }
}
.recruitment-details .box .title .text {
  margin-top: 0.18rem;
  color: #666666;
  font-size: 0.8333333333333333vw;
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .title .text {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .recruitment-details .box .title .text {
    margin-top: 0.9375vw;
  }
}
.recruitment-details .box .info {
  margin-top: 0.24rem;
  padding-top: 0.24rem;
  border-top: #e9e9e9 solid 1px;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #0070bf;
  color: #666666;
  font-size: 0.8333333333333333vw;
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .info {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .recruitment-details .box .info {
    margin-top: 1.25vw;
    padding-top: 1.25vw;
  }
}
.recruitment-details .box .info ul {
  padding-left: 0;
  row-gap: 0.15rem;
}
@media screen and (min-width: 992px) {
  .recruitment-details .box .info ul {
    row-gap: 0.78125vw;
  }
}
.recruitment-details .box .info ul li {
  display: flex;
  align-items: flex-start;
  list-style: none;
  width: 43%;
  margin-right: 14%;
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .info ul li {
    width: 47%;
    margin-right: 6%;
  }
}
@media screen and (max-width: 767px) {
  .recruitment-details .box .info ul li {
    width: 100%;
    margin-right: 0;
  }
}
.recruitment-details .box .info ul li:nth-child(2n) {
  margin-right: 0;
}
.recruitment-details .box .info ul li .sp1 {
  flex-shrink: 0;
}
.recruitment-details .box .wrap {
  margin-top: 5.5%;
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .wrap {
    margin-top: 8%;
  }
}
.recruitment-details .box .wrap .subtitle {
  font-family: "HarmonyOS_Sans_SC_Medium";
  color: #000000;
  font-size: 1.25vw;
  padding-bottom: 0.2rem;
  border-bottom: #e9e9e9 solid 1px;
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .wrap .subtitle {
    font-size: .26rem;
  }
}
@media screen and (max-width: 480px) {
  .recruitment-details .box .wrap .subtitle {
    font-size: 0.3rem;
  }
}
@media screen and (min-width: 992px) {
  .recruitment-details .box .wrap .subtitle {
    padding-bottom: 1.041666666666667vw;
    margin-bottom: 1.875vw;
  }
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .wrap .subtitle {
    padding-bottom: 0.25rem;
    margin-bottom: 0.2rem;
  }
}
.recruitment-details .box .wrap .desc .item {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #666666;
  font-size: 0.8333333333333333vw;
  line-height: 2;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .wrap .desc .item {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .recruitment-details .box .wrap .desc .item {
    margin-bottom: 1.5625vw;
  }
}
.recruitment-details .box .wrap .desc .item .tit {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #000000;
  font-size: 0.9375vw;
  margin-bottom: 0.12rem;
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .wrap .desc .item .tit {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .recruitment-details .box .wrap .desc .item .tit {
    margin-bottom: 0.625vw;
  }
}
.recruitment-details .box .wrap .desc .item ul {
  padding-left: revert;
}
.recruitment-details .box .wrap .desc .item ul li {
  list-style: inherit;
}
.recruitment-details .box .wrap .desc .hotline {
  color: #0070bf;
  font-size: 0.9375vw;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .wrap .desc .hotline {
    font-size: 15px;
  }
}
.feedback .box {
  max-width: 11rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .feedback .box {
    max-width: 57.29166666666667vw;
  }
}
.feedback .box .i-title .desc {
  margin-top: 0.18rem;
  line-height: 2;
  color: #6b6b6b;
  font-family: "HarmonyOS_Sans_SC_Light";
}
@media screen and (min-width: 992px) {
  .feedback .box .i-title .desc {
    margin-top: 0.9375vw;
  }
}
.feedback .box .wrap {
  margin-top: 9%;
}
.feedback .box .wrap .layui-form .layui-form-item {
  position: relative;
  margin-bottom: 0.24rem;
}
@media screen and (min-width: 992px) {
  .feedback .box .wrap .layui-form .layui-form-item {
    margin-bottom: 1.25vw;
  }
}
@media screen and (max-width: 991px) {
  .feedback .box .wrap .layui-form .layui-form-item {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 480px) {
  .feedback .box .wrap .layui-form .layui-form-item {
    margin-bottom: 15px;
  }
}
.feedback .box .wrap .layui-form .layui-form-item:last-child {
  margin-bottom: 0;
}
.feedback .box .wrap .layui-form .layui-form-item.half {
  width: 45.5%;
  margin-right: 9%;
}
.feedback .box .wrap .layui-form .layui-form-item.half:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .feedback .box .wrap .layui-form .layui-form-item.half {
    width: 48%;
    margin-right: 4%;
  }
  .feedback .box .wrap .layui-form .layui-form-item.half:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .feedback .box .wrap .layui-form .layui-form-item.half {
    width: 100%;
    margin-right: 0;
  }
}
.feedback .box .wrap .layui-form .layui-form-item.textareabox {
  width: 100%;
}
.feedback .box .wrap .layui-form .layui-form-item.buttonbox {
  width: 100%;
  text-align: center;
}
.feedback .box .wrap .layui-form .layui-form-item .layui-input {
  width: 100%;
  height: 0.52rem;
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: #666666;
  font-size: 0.8333333333333333vw;
  padding: 0 0.18rem;
  background: #FFFFFF;
  border: none;
  box-sizing: border-box;
  box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 991px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-input {
    font-size: 14px;
  }
}
.feedback .box .wrap .layui-form .layui-form-item .layui-input::-webkit-input-placeholder {
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: #666666;
}
.feedback .box .wrap .layui-form .layui-form-item .layui-input::-moz-placeholder {
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: #666666;
}
.feedback .box .wrap .layui-form .layui-form-item .layui-input:-moz-placeholder {
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: #666666;
}
.feedback .box .wrap .layui-form .layui-form-item .layui-input:-ms-input-placeholder {
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: #666666;
}
@media screen and (min-width: 992px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-input {
    height: 2.708333333333333vw;
    padding: 0 0.9375vw;
  }
}
@media screen and (max-width: 991px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-input {
    padding: 0 0.25rem;
    height: 0.62rem;
  }
}
@media screen and (max-width: 480px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-input {
    height: 0.72rem;
    padding: 0 0.3rem;
  }
}
.feedback .box .wrap .layui-form .layui-form-item .layui-form-label {
  position: absolute;
  top: 0.18rem;
  left: 0.18rem;
  z-index: 1;
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: #666666;
  font-size: 0.8333333333333333vw;
  padding: 0;
  width: auto;
  min-width: 1px;
  text-align: left;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-form-label {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-form-label {
    top: 0.9375vw;
    left: 0.9375vw;
  }
}
.feedback .box .wrap .layui-form .layui-form-item .layui-form-label span {
  display: inline-block;
  margin-left: 0.03rem;
  color: #ff0101;
}
@media screen and (min-width: 992px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-form-label span {
    margin-left: 0.15625vw;
  }
}
.feedback .box .wrap .layui-form .layui-form-item .layui-form-label.hidden {
  display: none;
}
.feedback .box .wrap .layui-form .layui-form-item .layui-textarea {
  width: 100%;
  height: 1.45rem;
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: #666666;
  font-size: 0.8333333333333333vw;
  padding: 0.15rem 0.18rem;
  background: #FFFFFF;
  border: none;
  resize: none;
  box-sizing: border-box;
  box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 991px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-textarea {
    font-size: 14px;
  }
}
.feedback .box .wrap .layui-form .layui-form-item .layui-textarea::-webkit-input-placeholder {
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: #666666;
}
.feedback .box .wrap .layui-form .layui-form-item .layui-textarea::-moz-placeholder {
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: #666666;
}
.feedback .box .wrap .layui-form .layui-form-item .layui-textarea:-moz-placeholder {
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: #666666;
}
.feedback .box .wrap .layui-form .layui-form-item .layui-textarea:-ms-input-placeholder {
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: #666666;
}
@media screen and (min-width: 992px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-textarea {
    height: 7.4vw;
    padding: 0.78125vw 0.9375vw;
  }
}
@media screen and (max-width: 991px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-textarea {
    height: 1.72rem;
    padding: 0.18rem 0.25rem;
  }
}
@media screen and (max-width: 480px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-textarea {
    height: 2.2rem;
    padding: 0.2rem 0.3rem;
  }
}
.feedback .box .wrap .layui-form .layui-form-item .layui-btn {
  margin-top: 0.4rem;
  min-width: 1.9rem;
  height: 0.58rem;
  border-radius: 0.29rem;
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: #FFFFFF;
  font-size: 1.25vw;
  border: none;
  background: #0070bf;
}
@media screen and (max-width: 991px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-btn {
    font-size: .26rem;
  }
}
@media screen and (max-width: 480px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-btn {
    font-size: 0.3rem;
  }
}
@media screen and (min-width: 992px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-btn {
    margin-top: 2.083333333333333vw;
    min-width: 9.895833333333333vw;
    height: 3.020833333333333vw;
    border-radius: 1.6vw;
  }
}
@media screen and (max-width: 991px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-btn {
    margin-top: 0.4rem;
    min-width: 1.7rem;
    height: 0.56rem;
    border-radius: 0.28rem;
  }
}
@media screen and (max-width: 480px) {
  .feedback .box .wrap .layui-form .layui-form-item .layui-btn {
    min-width: 1.8rem;
    height: 0.7rem;
    border-radius: 0.35rem;
  }
}
.news .list ul {
  padding-left: 0;
  padding-bottom: 3.3%;
}
@media screen and (max-width: 991px) {
  .news .list ul {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
.news .list ul li {
  list-style: none;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: #eeeeee solid 1px;
}
@media screen and (max-width: 991px) {
  .news .list ul li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 0.4rem;
    padding-bottom: 0.4rem;
  }
  .news .list ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .news .list ul li {
    width: 100%;
    margin-right: 0;
  }
}
.news .list ul li .item {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .news .list ul li .item {
    flex-wrap: wrap;
  }
}
.news .list ul li .item:hover .img img {
  transform: scale(1.1);
}
.news .list ul li .item:hover .text .title {
  color: #0070bf;
}
.news .list ul li .item .date {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column-reverse;
  width: 12%;
  padding-left: 2.2%;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .news .list ul li .item .date {
    order: 2;
    width: 100%;
    padding-left: 0;
    flex-direction: row;
    align-items: center;
    margin-top: 0.3rem;
  }
}
.news .list ul li .item .date .s1 {
  color: #aaaaaa;
  font-size: 0.9375vw;
}
@media screen and (max-width: 991px) {
  .news .list ul li .item .date .s1 {
    font-size: 15px;
  }
}
.news .list ul li .item .date i {
  display: block;
  width: 0.2rem;
  height: 2px;
  background: #000000;
  margin-top: 0.12rem;
  margin-bottom: 0.12rem;
}
@media screen and (min-width: 992px) {
  .news .list ul li .item .date i {
    width: 1.0416667vw;
    margin-top: 0.625vw;
    margin-bottom: 0.625vw;
  }
}
@media screen and (max-width: 991px) {
  .news .list ul li .item .date i {
    width: 0.25rem;
    margin-left: 0.06rem;
    margin-right: 0.06rem;
  }
}
.news .list ul li .item .date .s2 {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #222222;
  font-size: 1.25vw;
}
@media screen and (max-width: 991px) {
  .news .list ul li .item .date .s2 {
    font-size: .26rem;
  }
}
@media screen and (max-width: 480px) {
  .news .list ul li .item .date .s2 {
    font-size: 0.3rem;
  }
}
.news .list ul li .item .img {
  position: relative;
  flex-shrink: 0;
  margin-right: 3.3%;
  width: 22%;
  padding-bottom: 12.66666666666667%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .news .list ul li .item .img {
    order: 1;
    width: 100%;
    padding-bottom: 57.57575757575758%;
  }
}
.news .list ul li .item .img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.news .list ul li .item .text {
  flex: 1;
  overflow: hidden;
  padding-top: 0.1rem;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .news .list ul li .item .text {
    padding-top: 0.5208333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .news .list ul li .item .text {
    flex: none;
    width: 100%;
    order: 3;
  }
}
.news .list ul li .item .text .title {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #000000;
  font-size: 0.9375vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .news .list ul li .item .text .title {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .news .list ul li .item .text .title {
    font-size: 18px;
  }
}
.news .list ul li .item .text .desc {
  margin-top: 0.24rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #666666;
  font-size: 0.8333333333333333vw;
  line-height: 1.7;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 991px) {
  .news .list ul li .item .text .desc {
    font-size: 14px;
  }
}
.news .list ul li .item .text .viewmore {
  margin-top: 0.24rem;
}
@media screen and (min-width: 992px) {
  .news .list ul li .item .text .viewmore {
    margin-top: 1.25vw;
  }
}
.news .list ul li .item .text .viewmore span {
  display: inline-flex;
  align-items: center;
  color: #0075c1;
  font-size: 0.8333333333333333vw;
}
@media screen and (max-width: 991px) {
  .news .list ul li .item .text .viewmore span {
    font-size: 14px;
  }
}
.news .list ul li .item .text .viewmore span i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.26rem;
  height: 0.26rem;
  margin-left: 0.12rem;
  border-radius: 50%;
  background: #0075c1 url(../images/icon9.png) center no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 992px) {
  .news .list ul li .item .text .viewmore span i {
    width: 1.354166666666667vw;
    height: 1.354166666666667vw;
    margin-left: 0.625vw;
  }
}
.common-details .box {
  max-width: 13rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .common-details .box {
    max-width: 67.70833333333333%;
  }
}
.common-details .box .title {
  text-align: center;
}
.common-details .box .title .headline {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #000000;
  font-size: 1.875vw;
}
@media screen and (max-width: 991px) {
  .common-details .box .title .headline {
    font-size: 0.36rem;
  }
}
@media screen and (max-width: 480px) {
  .common-details .box .title .headline {
    font-size: 0.4rem;
  }
}
.common-details .box .title .text {
  margin-top: 0.3rem;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #888888;
  font-size: 0.9375vw;
  line-height: 2;
  column-gap: 0.4rem;
  row-gap: 0.2rem;
}
@media screen and (max-width: 991px) {
  .common-details .box .title .text {
    font-size: 15px;
  }
}
.common-details .box .wrap {
  border-top: #efefef solid 1px;
  border-bottom: #efefef solid 1px;
  margin-top: 0.18rem;
  padding-top: 3.5%;
  padding-bottom: 7%;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #666666;
  font-size: 0.9375vw;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .common-details .box .wrap {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .common-details .box .wrap {
    margin-top: 0.9375vw;
  }
}
@media screen and (max-width: 991px) {
  .common-details .box .wrap {
    margin-top: 0.4rem;
    padding-top: 0.4rem;
    padding-bottom: 0.6rem;
  }
}
.common-details .box .wrap img {
  max-width: 100%;
}
.article-operate {
  margin-top: 4.8%;
}
@media screen and (max-width: 991px) {
  .article-operate {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .article-operate {
    flex-wrap: wrap;
  }
}
.article-operate .newlink {
  flex: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .article-operate .newlink {
    flex: none;
    width: 100%;
  }
}
.article-operate .newlink a {
  display: inline-flex;
  align-items: flex-start;
  margin-bottom: 0.1rem;
  font-size: 0.8333333333333333vw;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .article-operate .newlink a {
    font-size: 14px;
  }
}
.article-operate .newlink a:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .article-operate .newlink a {
    margin-bottom: 0.5208333333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .article-operate .newlink a {
    margin-bottom: 0.15rem;
  }
}
.article-operate .newlink a:hover .sp1,
.article-operate .newlink a:hover .sp2 {
  color: #0a57a6;
}
.article-operate .newlink a .sp1 {
  color: #111111;
}
.article-operate .newlink a .sp2 {
  flex: 1;
  color: #888888;
  overflow: hidden;
}
.article-operate .backbtn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin-left: 0.3rem;
  color: #0a57a6;
  font-size: 0.9375vw;
}
@media screen and (max-width: 991px) {
  .article-operate .backbtn {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .article-operate .backbtn {
    margin-left: 1.5625vw;
  }
}
@media screen and (max-width: 767px) {
  .article-operate .backbtn {
    width: 100%;
    margin-top: 0.4rem;
    margin-left: 0;
  }
}
.article-operate .backbtn img {
  display: inline-block;
  margin-right: 0.15rem;
  width: 0.26rem;
}
@media screen and (min-width: 992px) {
  .article-operate .backbtn img {
    margin-right: 0.78125vw;
    width: 1.354166666666667vw;
  }
}
.commonlist {
  background: #f9f9f9;
}
.commonlist .box .item {
  width: 48.75%;
  padding: 2%;
  margin-right: 2.5%;
  margin-bottom: 2%;
  box-sizing: border-box;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.5s ease;
}
.commonlist .box .item:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .commonlist .box .item {
    flex-wrap: wrap;
    padding: 0.35rem;
  }
}
@media screen and (max-width: 767px) {
  .commonlist .box .item {
    width: 100%;
    padding: 0.35rem;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
}
.commonlist .box .item:hover {
  /*background: #0573c1;*/
  box-shadow: 0px 5px 38px rgba(0,0,0,0.15);
 	transform: translateY(-2px);
}
/*.commonlist .box .item:hover .text .subtit {
  color: #FFFFFF;
}
.commonlist .box .item:hover .text .desc {
  color: #FFFFFF;
}
.commonlist .box .item:hover .text .other .btn {
  color: #2685de;
  background: linear-gradient(to right, #f7f7f9, #d8d8d8);
}
.commonlist .box .item:hover .text .other .date {
  color: #ffffff;
}*/
.commonlist .box .item .img {
  position: relative;
  width: 42.32%;
  padding-bottom: 33.33333333%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .commonlist .box .item .img {
    width: 100%;
    padding-bottom: 71.875%;
  }
}
.commonlist .box .item .img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.commonlist .box .item .text {
  width: 49.27%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .commonlist .box .item .text {
    width: 100%;
    margin-top: 0.35rem;
  }
}
.commonlist .box .item .text .subtit {
  color: #000000;
  font-size: 1.25vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .commonlist .box .item .text .subtit {
    font-size: .26rem;
  }
}
@media screen and (max-width: 480px) {
  .commonlist .box .item .text .subtit {
    font-size: 0.3rem;
  }
}
.commonlist .box .item .text .desc {
  margin-top: 0.24rem;
  color: #999999;
  font-size: 0.8333333333333333vw;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .commonlist .box .item .text .desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .commonlist .box .item .text .desc {
    margin-top: 1.25vw;
  }
}
.commonlist .box .item .text .other {
  border-top: #e9e9e9 solid 1px;
  padding-top: 0.2rem;
  margin-top: 0.36rem;
}
@media screen and (min-width: 992px) {
  .commonlist .box .item .text .other {
    padding-top: 1.0416667vw;
    margin-top: 1.875vw;
  }
}
@media screen and (max-width: 991px) {
  .commonlist .box .item .text .other {
    padding-top: 0.36rem;
  }
}
.commonlist .box .item .text .other .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.1rem;
  height: 0.36rem;
  padding: 0 0.2rem;
  box-sizing: border-box;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #FFFFFF;
  font-size: 0.8333333333333333vw;
  background: linear-gradient(to right, #3594d7, #0070bf);
  border-radius: 0.18rem;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .commonlist .box .item .text .other .btn {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .commonlist .box .item .text .other .btn {
    min-width: 5.72916667vw;
    height: 1.875vw;
    padding: 0 1.0416667vw;
    border-radius: 0.9375vw;
  }
}
@media screen and (max-width: 991px) {
  .commonlist .box .item .text .other .btn {
    min-width: 1.3rem;
    height: 0.56rem;
    padding: 0 0.3rem;
    border-radius: 0.28rem;
  }
}
.commonlist .box .item .text .other .date {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #a6a6a6;
  font-size: 0.8333333333333333vw;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .commonlist .box .item .text .other .date {
    font-size: 14px;
  }
}
.laboratory-intro-details .box {
  max-width: 13rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .laboratory-intro-details .box {
    max-width: 67.70833333333333%;
  }
}
.laboratory-intro-details .box .title {
  text-align: center;
}
.laboratory-intro-details .box .title .headline {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #000000;
  font-size: 1.875vw;
}
@media screen and (max-width: 991px) {
  .laboratory-intro-details .box .title .headline {
    font-size: 0.36rem;
  }
}
@media screen and (max-width: 480px) {
  .laboratory-intro-details .box .title .headline {
    font-size: 0.4rem;
  }
}
.laboratory-intro-details .box .wrap {
  margin-top: 0.18rem;
  padding-top: 3.5%;
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #666666;
  font-size: 0.8333333333333333vw;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .laboratory-intro-details .box .wrap {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .laboratory-intro-details .box .wrap {
    margin-top: 0.9375vw;
    font-size: 0.9375vw;
  }
}
@media screen and (min-width: 992px) and screen and (max-width: 991px) {
  .laboratory-intro-details .box .wrap {
    font-size: 15px;
  }
}
.laboratory-intro-details .box .wrap img {
  max-width: 100%;
}
.system-integration .title {
  text-align: center;
}
.system-integration .title .headline {
  font-family: "HarmonyOS_Sans_SC_Bold";
  font-size: 2.604166666666667vw;
  color: #000000;
}
@media screen and (max-width: 991px) {
  .system-integration .title .headline {
    font-size: .45rem;
  }
}
@media screen and (max-width: 767px) {
  .system-integration .title .headline {
    font-size: 5vw;
  }
}
@media screen and (max-width: 480px) {
  .system-integration .title .headline {
    font-size: 5.6vw;
  }
}
.system-integration .title i {
  display: block;
  margin: auto;
  width: 0.6rem;
  height: 0.04rem;
  background: #0d63b3;
}
@media screen and (min-width: 992px) {
  .system-integration .title i {
    width: 3.125vw;
    height: 0.2083333vw;
  }
}
.system-integration .box {
  margin-top: 0.2rem;
}
@media screen and (min-width: 992px) {
  .system-integration .box {
    margin-top: 1.0416667vw;
  }
}
.system-integration .box .item {
  padding-top: 3.645833333333333%;
  padding-bottom: 7.5%;
  background: #ffffff;
}
@media screen and (max-width: 991px) {
  .system-integration .box .item {
    padding-top: 0.7rem;
    padding-bottom: 1rem;
  }
}
.system-integration .box .item:nth-child(even) {
  background: #fafafa;
}
.system-integration .box .item:nth-child(even) .subtitle {
  display: flex;
  justify-content: flex-end;
}
.system-integration .box .item:nth-child(even) .wrap {
  display: flex;
  flex-direction: row-reverse;
}
.system-integration .box .item .subtitle span {
  position: relative;
  display: block;
  width: 50%;
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #0068bb;
  font-size: 1.979166666666667vw;
  padding-bottom: 0.24rem;
  border-bottom: #0d63b3 solid 1px;
}
@media screen and (max-width: 991px) {
  .system-integration .box .item .subtitle span {
    font-size: .38rem;
  }
}
@media screen and (max-width: 480px) {
  .system-integration .box .item .subtitle span {
    font-size: .4rem;
  }
}
@media screen and (min-width: 992px) {
  .system-integration .box .item .subtitle span {
    padding-bottom: 1.25vw;
  }
}
@media screen and (max-width: 991px) {
  .system-integration .box .item .subtitle span {
    width: 100%;
  }
}
.system-integration .box .item .subtitle span::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.4rem;
  height: 0.06rem;
  background: #0d63b3;
}
@media screen and (min-width: 992px) {
  .system-integration .box .item .subtitle span::before {
    width: 2.083333333333333vw;
    height: 0.3125vw;
  }
}
.system-integration .box .item .wrap {
  margin-top: 3.6%;
}
@media screen and (max-width: 991px) {
  .system-integration .box .item .wrap {
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }
}
.system-integration .box .item .wrap .textbox {
  width: 50%;
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
  overflow: hidden;
  border-bottom: #f0f0f0 solid 1px;
}
@media screen and (min-width: 992px) {
  .system-integration .box .item .wrap .textbox {
    padding-top: 1.25vw;
    padding-bottom: 1.25vw;
  }
}
@media screen and (max-width: 991px) {
  .system-integration .box .item .wrap .textbox {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.system-integration .box .item .wrap .textbox ul li {
  margin-bottom: 0.3rem;
}
@media screen and (min-width: 992px) {
  .system-integration .box .item .wrap .textbox ul li {
    margin-bottom: 1.5625vw;
  }
}
.system-integration .box .item .wrap .textbox ul li:last-child {
  margin-bottom: 0;
}
.system-integration .box .item .wrap .textbox ul li .t1 {
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #000000;
  font-size: 1.0416667vw;
  margin-bottom: 0.18rem;
}
@media screen and (max-width: 991px) {
  .system-integration .box .item .wrap .textbox ul li .t1 {
    font-size: 17px;
  }
}
@media screen and (min-width: 992px) {
  .system-integration .box .item .wrap .textbox ul li .t1 {
    margin-bottom: 0.9375vw;
  }
}
.system-integration .box .item .wrap .textbox ul li .t2 {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #666666;
  font-size: 0.9375vw;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .system-integration .box .item .wrap .textbox ul li .t2 {
    font-size: 15px;
  }
}
.system-integration .box .item .wrap .textbox ul li .t3 {
  font-family: "HarmonyOS_Sans_SC_Light";
  color: #0068bb;
  font-size: 0.9375vw;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .system-integration .box .item .wrap .textbox ul li .t3 {
    font-size: 15px;
  }
}
.system-integration .box .item .wrap .imgbox {
  width: 42%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .system-integration .box .item .wrap .imgbox {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.system-integration .box .item .wrap .imgbox .img {
  position: relative;
  width: 100%;
  padding-bottom: 61.11111111111111%;
  border-radius: 0.1rem;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .system-integration .box .item .wrap .imgbox .img {
    border-radius: 0.5208333333333333vw;
  }
}
.system-integration .box .item .wrap .imgbox .img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.system-integration .box .item .wrap .imgbox::after {
  content: '';
  display: block;
  margin: auto;
  width: 90%;
  height: 0.32rem;
  border-radius: 0 0 0.1rem 0.1rem;
  background: #f4f4f4;
  display: none;
}
@media screen and (min-width: 992px) {
  .system-integration .box .item .wrap .imgbox::after {
    border-radius: 0 0 0.5208333333333333vw 0.5208333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .system-integration .box .item .wrap .imgbox::after {
    height: 0.42rem;
  }
}
.business-center {
  width: 100%;
  overflow: hidden;
}
.business-center .box {
  margin-bottom: 5.6%;
}
@media screen and (max-width: 991px) {
  .business-center .box {
    overflow-x: auto;
    margin-bottom: 9%;
  }
}
.business-center .box table,
.business-center .box .product-table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 991px) {
  .business-center .box table,
  .business-center .box .product-table {
    min-width: 800px;
  }
}
.business-center .box table tr:nth-child(odd),
.business-center .box .product-table tr:nth-child(odd) {
  background: #f9f9f9;
}
.business-center .box table tr:nth-child(even),
.business-center .box .product-table tr:nth-child(even) {
  background: #fcfcfc;
}
.business-center .box table th,
.business-center .box .product-table th {
  background: #ededed;
  height: 0.8rem;
  color: #000000;
  font-size: 0.9375vw;
  text-align: center;
  white-space: nowrap;
  padding: 0 0.15rem;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .business-center .box table th,
  .business-center .box .product-table th {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .business-center .box table th,
  .business-center .box .product-table th {
    height: 4.166666666666667vw;
    padding: 0 0.78125vw;
  }
}
.business-center .box table td,
.business-center .box .product-table td {
  min-width: 1.3rem;
  height: 1rem;
  color: #666666;
  font-size: 0.8333333333333333vw;
  text-align: center;
  padding: 0 0.15rem;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .business-center .box table td,
  .business-center .box .product-table td {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .business-center .box table td,
  .business-center .box .product-table td {
    min-width: 6.770833333333333vw;
    height: 5.20833333333333vw;
    padding: 0 0.78125vw;
  }
}
.business-center .box table td .certification,
.business-center .box .product-table td .certification {
  background: #f6f6f6;
}
.business-center .box table td .proImg img,
.business-center .box .product-table td .proImg img {
  display: block;
  width: 100%;
}
.application {
  background: #fbfbfb;
}
.application .box {
  max-width: 11.45rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .application .box {
    max-width: 59.63541666666667vw;
  }
}
.application .box .i-title .desc {
  margin-top: 0.25rem;
  line-height: 2;
}
.application .box .wrap {
  margin-top: 6%;
}
@media screen and (max-width: 991px) {
  .application .box .wrap {
    margin-top: 0.5rem;
  }
}
.application .box .wrap .item {
  position: relative;
  width: 48.25%;
  padding-bottom: 26.2%;
  margin-right: 3.5%;
  margin-bottom: 3.5%;
  overflow: hidden;
}
.application .box .wrap .item:nth-child(2n) {
  margin-right: 0;
}
.application .box .wrap .item img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*搜索*/
.search-banner .bannerTitle .box .text {
  font-size: 1.25vw;
}
@media screen and (max-width: 991px) {
  .search-banner .bannerTitle .box .text {
    font-size: .26rem;
  }
}
@media screen and (max-width: 480px) {
  .search-banner .bannerTitle .box .text {
    font-size: 0.3rem;
  }
}
.search-banner .bannerTitle .box .text span {
  display: inline-block;
  font-family: "HarmonyOS_Sans_SC_Bold";
  color: #0075c1;
}
.search-results {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 1900px) and (min-width: 992px) {
  .search-results {
    padding-top: 3.645833333333333vw;
    padding-bottom: 3.645833333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .search-results {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .search-results {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
.search-results .searchlist {
  margin-top: 50px;
}
@media screen and (max-width: 1900px) and (min-width: 992px) {
  .search-results .searchlist .searchlist {
    margin-top: 2.604166666666667vw;
  }
}
@media screen and (max-width: 991px) {
  .search-results .searchlist {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .search-results .searchlist {
    margin-top: 25px;
  }
}
.search-results .searchlist ul {
  padding-left: 0;
}
.search-results .searchlist ul li {
  list-style: none;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: #e9e9e9 solid 1px;
}
@media screen and (max-width: 1900px) and (min-width: 992px) {
  .search-results .searchlist ul li {
    padding-bottom: 2.083333333333333vw;
    margin-bottom: 2.083333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .search-results .searchlist ul li {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .search-results .searchlist ul li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.search-results .searchlist ul li:hover .t2 {
  color: #0075c1;
}
.search-results .searchlist ul li .t1 {
  color: #949494;
  font-size: 0.8333333333333333vw;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .search-results .searchlist ul li .t1 {
    font-size: 14px;
  }
}
.search-results .searchlist ul li .t2 {
  position: relative;
  padding-left: 15px;
  margin-top: 12px;
  color: #000000;
  font-size: 1.145833333333333vw;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .search-results .searchlist ul li .t2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1900px) and (min-width: 992px) {
  .search-results .searchlist ul li .t2 {
    padding-left: 0.78125vw;
    margin-top: 0.625vw;
  }
}
@media screen and (max-width: 767px) {
  .search-results .searchlist ul li .t2 {
    margin-top: 8px;
    padding-left: 12px;
  }
}
.search-results .searchlist ul li .t2 i {
  position: absolute;
  left: 0;
  top: 9px;
  display: inline-block;
  width: 8px;
  height: 14px;
  background: url("../images/icon7.png") left center no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1900px) and (min-width: 992px) {
  .search-results .searchlist ul li .t2 i {
    top: 0.46875vw;
    width: 0.4166666666666667vw;
    height: 0.7291666666666667vw;
  }
}
@media screen and (max-width: 991px) {
  .search-results .searchlist ul li .t2 i {
    width: 7px;
  }
}
@media screen and (max-width: 767px) {
  .search-results .searchlist ul li .t2 i {
    top: 6px;
  }
}
.search-results .searchlist ul li .t3 {
  font-family: "SourceHanSansCN-Light";
  color: #666666;
  font-size: 0.8333333333333333vw;
  line-height: 1.7;
  margin-top: 18px;
}
@media screen and (max-width: 991px) {
  .search-results .searchlist ul li .t3 {
    font-size: 14px;
  }
}
@media screen and (max-width: 1900px) and (min-width: 992px) {
  .search-results .searchlist ul li .t3 {
    margin-top: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .search-results .searchlist ul li .t3 {
    margin-top: 12px;
  }
}
