@charset "utf-8";
.color-blue0b0 {
  color: #0b03b1;
}
:root {
  --color: #0a01b1;
  --vh: 100vh;
  /* COLOR */
  --color-active: #0a01b1;
  --color-white: #fff;
  --color-black: #282828;
  --color-gray-f6: #f6f6f6;
  --color-gray-f4: #f4f4f4;
  --color-gray-eee: #eee;
  --color-gray-ddd: #ddd;
  --color-gray-bbb: #bbb;
  --color-gray-999: #999;
  --color-gray-666: #666;
  --color-gray-444: #444;
  --color-gray-333: #333;
  /* 字体大小 */
  --font12: 12px;
  --font14: 14px;
  --font16: clamp(14px, 0.16rem, 16px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: 0.36rem;
  --font38: 0.38rem;
  --font40: 0.4rem;
  --font42: 0.42rem;
  --font44: 0.44rem;
  --font46: 0.46rem;
  --font48: 0.48rem;
  --font50: 0.5rem;
  --font52: 0.52rem;
  --font54: 0.54rem;
  --font56: 0.56rem;
  --font58: 0.58rem;
  --font60: 0.6rem;
  --font66: 0.66rem;
  --font70: 0.7rem;
  --font72: 0.72rem;
  --font80: 0.8rem;
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font200: 2rem;
}
/*字体*/
@font-face {
  font-family: "sanslight";
  src: url("../font/HARMONYOS_SANS_LIGHT.TTF") format("truetype");
}
@font-face {
  font-family: "sansregular";
  src: url("../font/HARMONYOS_SANS_REGULAR.TTF") format("truetype");
}
@font-face {
  font-family: "sansmedium";
  src: url("../font/HARMONYOS_SANS_MEDIUM.TTF") format("truetype");
}
.font-light {
  font-family: sanslight;
}
.font-regular {
  font-family: sansregular;
}
.font-bold {
  font-family: sansmedium;
}
.font_800 {
  font-family: sansmedium;
}
@font-face {
  font-family: 'Douyin-Sans-B';
  src: url('../font/DOUYINSANSBOLD-GB-pc-EUC-h.eot');
  src: url('../font/DOUYINSANSBOLD-GB-pc-EUC-h.eot?#iefix') format('embedded-opentype'), url('../font/DOUYINSANSBOLD-GB-pc-EUC-h.woff2') format('woff2'), url('../font/DOUYINSANSBOLD-GB-pc-EUC-h.woff') format('woff'), url('../font/DOUYINSANSBOLD-GB-pc-EUC-h.ttf') format('truetype'), url('../font/DOUYINSANSBOLD-GB-pc-EUC-h.otf') format('truetype'), url('../font/DOUYINSANSBOLD-GB-pc-EUC-h.svg#EuclidSquare-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.Douyin-Sans-B {
  font-family: 'Douyin-Sans-B';
}
* {
  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;
  scrollbar-width: thin;
}
html ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
html ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #0a01b1;
}
html ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #222222;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
li {
  list-style: none;
}
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 {
  resize: none;
  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;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  margin: 0 auto;
  width: 85%;
  max-width: 1600px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.w1440 {
  width: 85%;
  max-width: 1440px;
}
@media (max-width: 1260px) {
  .w1440 {
    width: 90%;
  }
}
.w1200 {
  width: 85%;
  max-width: 1200px;
}
@media (max-width: 1260px) {
  .w1200 {
    width: 90%;
  }
}
.public-scrollbar {
  scrollbar-width: thin;
}
.public-scrollbar ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.public-scrollbar ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #0a01b1;
}
.public-scrollbar ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.public-content {
  color: #666;
  line-height: 1.8;
}
.public-content a {
  color: #666;
}
.public-content table {
  max-width: 100%;
}
.public-content table td,
.public-content table th {
  padding: 10px 15px;
  border: 1px solid #dbf1ed;
}
.public-content li {
  margin-left: 15px;
  list-style: disc;
}
.public-content ol {
  margin-left: 15px;
  list-style: decimal;
}
.public-content img,
.public-content video {
  max-width: 100%;
  height: auto !important;
}
#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;
}
#hi-upgrade .hi-wrap .hi-close {
  margin: 10px 0;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: #0a01b1;
}
#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: #0a01b1;
}
#hi-upgrade .hi-wrap .hi-text2 {
  position: relative;
  margin: 60px 0;
  color: #333;
}
#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: #0a01b1;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
  background: url(..../images/hi-llq-1.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
  background: url(..../images/hi-llq-2.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
  background: url(..../images/hi-llq-3.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
  background: url(..../images/hi-llq-4.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
  background: url(..../images/hi-llq-5.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
  background: url(..../images/hi-llq-6.jpg) no-repeat center / 100%;
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 1rem;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 1.2rem;
  }
}
/*顶部*/
#c-header {
  display: flex;
  align-items: center;
  height: 0.9rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  line-height: 0.9rem;
  text-align: center;
  color: #373737;
  transition: 0.3s;
  padding: 0 0.5rem;
}
@media (max-width: 991px) {
  #c-header {
    line-height: 1.2rem;
    height: 1.2rem;
  }
}
#c-header a {
  color: #fff;
  transition: 0.3s;
}
#c-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  #c-header .container {
    height: 1.2rem;
  }
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
}
#c-header.c-head-move {
  top: -0.9rem;
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -1.2rem;
  }
}
#c-header.c-style2,
#c-header.c-style2on,
#c-header.c-style2on2 {
  color: #333;
  background: #ffffff;
}
#c-header.c-style2 a,
#c-header.c-style2on a,
#c-header.c-style2on2 a {
  color: #333;
}
/*顶部logo*/
#c-header .c-logo {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box img {
  width: 1.71rem;
  height: 0.27rem;
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img {
    width: 1.71rem;
    height: 0.27rem;
  }
}
#c-header .c-logo .c-img-box img.logo1 {
  display: block;
}
#c-header .c-logo .c-img-box img.logo2 {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img.logo1,
#c-header.c-style2on .c-logo .c-img-box img.logo1,
#c-header.c-style2on2 .c-logo .c-img-box img.logo1 {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img.logo2,
#c-header.c-style2on .c-logo .c-img-box img.logo2,
#c-header.c-style2on2 .c-logo .c-img-box img.logo2 {
  display: block;
}
/*顶部pc导航*/
#c-header .c-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav > li {
  position: relative;
  margin-right: 1.2rem;
}
#c-header .c-nav > li:last-child {
  margin-right: 0;
}
#c-header .c-nav > li > .c-title-box {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#c-header .c-nav > li > .c-title-box > a {
  display: flex;
  align-items: center;
}
#c-header .c-nav > li > .c-title-box img,
#c-header .c-nav > li > .c-title-box svg {
  margin-left: 0.05rem;
  width: 10px;
  height: 6px;
}
#c-header .c-nav > li > .c-title-box img path,
#c-header .c-nav > li > .c-title-box svg path {
  fill: #333;
  transition: all 0.3s;
}
#c-header .c-nav > li > .c-title-box + .cn100 {
  width: 300vw;
  box-shadow: none;
  background-color: transparent;
}
#c-header .c-nav > li > .c-title-box + .cn100 em {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 300vw;
  height: 1.24rem;
  background-color: rgba(255, 255, 255, 0.9);
}
#c-header .c-nav > li > .c-title-box + .cn100 .cn101 {
  border-bottom: 0;
  display: inline-block;
}
#c-header .c-nav > li > .c-title-box + .cn100 .cn101 .cn102 {
  line-height: 1.24rem;
  color: #666666;
  padding: 0 0.4rem;
  position: relative;
}
#c-header .c-nav > li > .c-title-box + .cn100 .cn101 .cn102:hover {
  color: #0a01b1;
}
#c-header .c-nav > li > .c-title-box + .cn100 .cn101 .cn102::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0.68rem;
  background-color: #d4d4d4;
}
#c-header .c-nav > li > .c-title-box + .cn100 .cn101:last-child .cn102::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0.68rem;
  background-color: #d4d4d4;
}
#c-header .c-nav > li a:before {
  display: none;
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0a01b1;
  transition: 0.3s;
}
#c-header .c-nav li a {
  position: relative;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#c-header .c-nav ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
}
#c-header.c-style2 .c-nav li.on > .c-title-box > a,
#c-header.c-style2on .c-nav li.on,
#c-header.c-style2on2 .c-nav li.on,
#c-header .c-nav li:hover > .c-title-box > a,
#c-header .c-nav li.on > a,
#c-header .c-nav li:hover > a {
  color: #0a01b1;
}
#c-header.c-style2 .c-nav li.on > .c-title-box > a:before,
#c-header.c-style2on .c-nav li.on:before,
#c-header.c-style2on2 .c-nav li.on:before,
#c-header .c-nav li:hover > .c-title-box > a:before,
#c-header .c-nav li.on > a:before,
#c-header .c-nav li:hover > a:before {
  width: 100%;
}
#c-header.c-style2 .c-nav li.on > .c-title-box svg path,
#c-header .c-nav li:hover > .c-title-box svg path {
  fill: #0a01b1 !important;
}
#c-header.c-style2 .c-nav li .c-title-box svg path,
#c-header.c-style2on .c-nav li .c-title-box svg path,
#c-header.c-style2on2 .c-nav li .c-title-box svg path {
  fill: #333;
}
#c-header .container .c-nav .productxiala {
  position: initial;
}
#c-header .container .c-nav .productxiala:first-child .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main {
  background-color: #f3f5fa;
}
#c-header .container .c-nav .productxiala .pxiala1 {
  width: 100vw;
  background: url(../images/header-bg.jpg) no-repeat center;
  background-size: cover;
  text-align: left;
  padding: 0.34rem 0 0.44rem;
  z-index: -99;
}
#c-header .container .c-nav .productxiala .pxiala1::before {
  content: '';
  width: 24.6%;
  max-width: 474px;
  height: 100%;
  background: url(../images/header-bg2.jpg) no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container {
  width: 85%;
  max-width: 1600px;
  margin: auto;
  height: auto;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 {
  width: 76.8%;
  max-width: 1229px;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b {
  width: 26.2%;
  max-width: 314px;
  padding-right: 0.3rem;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1 {
  display: none;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1.on {
  display: block;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1 .box3b2 {
  position: relative;
  padding: 0.28rem 0.3rem 0.38rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-bottom: 0.2rem;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1 .box3b2 span {
  display: block;
  line-height: 1.4;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1 .box3b2 .box3b3 {
  color: #161823;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1 .box3b2 .box3b4 {
  color: #666666;
  margin-top: 0.1rem;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1 .box3b2 .text-body {
  color: #0a01b1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.08rem;
  margin-top: 0.38rem;
  line-height: 1.4;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1 .box3b2 .text-body img,
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1 .box3b2 .text-body svg {
  width: 0.08rem;
  min-width: 6px;
  height: auto;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1 .box3b2 .text-body svg path {
  fill: #0a01b1;
  opacity: 1;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1 .box3b2.on {
  background: url(../images/header-bg3.jpg) no-repeat center #0a01b1;
  background-size: cover;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1 .box3b2.on .box3b3,
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1 .box3b2.on .box3b4 {
  color: #fff;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c {
  width: 73.8%;
  max-width: 915px;
  line-height: 1.4;
  padding: 0 0.4rem;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 {
  display: none;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1.on {
  display: block;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 {
  display: none;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2.on {
  display: block;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.27rem 0.26rem;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main .box3c3 {
  padding: 0.24rem 0.26rem 0.26rem;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main .box3c3:hover {
  background-color: #f3f5fa;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main .box3c3 .box3c4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.1rem;
  color: #222222;
  margin-bottom: 0.08rem;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main .box3c3 .box3c4 .icon {
  width: 0.22rem;
  height: 0.22rem;
  min-width: 18px;
  min-height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main .box3c3 .box3c4 span:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main .box3c3 .box3c5 {
  color: #9ea1a6;
  line-height: 1.42857143em;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .btn-container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.34rem;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .swiper-main {
  width: 15.6%;
  max-width: 250px;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .swiper-main .swiper-pagination {
  opacity: 1;
  line-height: 1;
  bottom: 0;
  text-align: right;
  padding: 0 0.22rem 0.24rem;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .swiper-main .item-box {
  background-color: #fff;
  box-shadow: 0px 1px 0.27rem 0px rgba(225, 225, 225, 0.52);
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .swiper-main .item-box .public-img::before {
  padding-top: 58.4%;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .swiper-main .item-box .text-box {
  padding: 0.15rem 0.36rem 0.2rem 0.2rem;
  line-height: 1.4;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .swiper-main .item-box .text-box .title {
  color: #222222;
  line-height: 1.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .swiper-main .item-box .text-box .text-body {
  color: #0a01b1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.08rem;
  margin-top: 0.54rem;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .swiper-main .item-box .text-box .text-body img,
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .swiper-main .item-box .text-box .text-body svg {
  width: 0.08rem;
  min-width: 6px;
  height: auto;
}
#c-header .container .c-nav .productxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .swiper-main .item-box .text-box .text-body svg path {
  fill: #0a01b1;
  opacity: 1;
}
#c-header .container .c-nav .aboutxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1.on .box3b2.on {
  background: transparent;
}
#c-header .container .c-nav .aboutxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1.on .box3b2.on .box3b3 {
  color: #161823;
}
#c-header .container .c-nav .aboutxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3b .box3b1.on .box3b2.on .box3b4 {
  color: #666666;
}
#c-header .container .c-nav .aboutxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main .box3c3 .box3c4 {
  grid-gap: 0.04rem;
}
#c-header .container .c-nav .aboutxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main .box3c3 .box3c4 .icon {
  order: 2;
  width: auto;
  height: auto;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#c-header .container .c-nav .aboutxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main .box3c3 .box3c4 .icon img,
#c-header .container .c-nav .aboutxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main .box3c3 .box3c4 .icon svg {
  width: 0.08rem;
  min-width: 6px;
  height: auto;
}
#c-header .container .c-nav .aboutxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main .box3c3 .box3c4 .icon svg path {
  fill: #0a01b1;
  opacity: 1;
}
#c-header .container .c-nav .aboutxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main .box3c3 .box3c4 span:last-child {
  -webkit-box-flex: initial;
  -ms-flex: initial;
  -webkit-flex: initial;
  flex: initial;
}
#c-header .container .c-nav .aboutxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main .box3c3:hover .box3c4 {
  color: #0a01b1;
}
#c-header .container .c-nav .aboutxiala .pxiala1 .pxiala2 .pxiala3 .container .box1 .box2 .box3 .box3c .box3c1 .box3c2 .box3c2-main .box3c3:hover .box3c4 .icon {
  opacity: 1;
}
/*顶部移动端导航*/
#c-header .c-nav2 {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 1rem;
  color: #333;
  background: #fff;
  overflow-y: auto;
  transition: 0.3s;
  text-align: left;
}
#c-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#c-header .c-nav2 li {
  padding: 0 0.5rem;
  border-top: 1px solid #f1f1f1;
}
@media (max-width: 767px) {
  #c-header .c-nav2 li {
    padding: 0 0.5rem;
  }
}
#c-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#c-header .c-nav2 li .c-title-box img,
#c-header .c-nav2 li .c-title-box svg {
  width: 0.3rem;
  height: 0.3rem;
  transition: all 0.3s;
}
#c-header .c-nav2 li .c-title-box img path,
#c-header .c-nav2 li .c-title-box svg path {
  fill: #333;
}
#c-header .c-nav2 li .c-title-box.on img,
#c-header .c-nav2 li .c-title-box.on svg {
  transform: rotate(90deg);
}
#c-header .c-nav2 li a {
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
  color: #0a01b1;
}
#c-header .c-nav2 li ul {
  display: none;
}
.c-open #c-header .c-nav2 {
  height: calc(100vh - 1.2rem);
}
/*顶部导航开关*/
#c-header .c-switch {
  position: relative;
  display: none;
  width: 0.48rem;
  height: 0.4rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  #c-header .c-switch {
    display: block;
  }
}
#c-header .c-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.3s;
}
#c-header .c-switch i:nth-child(1) {
  top: 0;
}
#c-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#c-header .c-switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
#c-header.c-style2 .c-switch i,
#c-header.c-style2on .c-switch i,
#c-header.c-style2on2 .c-switch i {
  background: #333;
}
body.c-open #c-header .c-switch i:nth-child(2) {
  opacity: 0;
}
body.c-open #c-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.c-open #c-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 顶部功能区 */
#c-header .c-gn {
  display: flex;
  align-items: center;
}
@media (max-width: 1260px) {
  #c-header .c-gn {
    display: none;
  }
}
#c-header .c-gn .ztop-search {
  line-height: 0.9rem;
}
#c-header .c-gn .ztop-search .cn1 {
  display: flex;
  align-items: center;
  position: relative;
}
#c-header .c-gn .ztop-search .cn1 svg {
  width: 0.17rem;
  height: 0.17rem;
  cursor: pointer;
}
#c-header .c-gn .ztop-search .cn1 svg path {
  fill: #fff;
  opacity: 1;
}
#c-header .c-gn .ztop-contact {
  margin-left: 0.3rem;
}
#c-header .c-gn .ztop-contact .zcb1 {
  min-width: 1.2rem;
  line-height: 0.4rem;
  background-color: #0a01b1;
  color: #Fff;
  border-radius: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#c-header.c-style2 .c-gn .ztop-search .cn1 svg path,
#c-header.c-style2on .c-gn .ztop-search .cn1 svg path,
#c-header.c-style2on2 .c-gn .ztop-search .cn1 svg path {
  fill: #333;
}
#c-go-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0a01b1;
  cursor: pointer;
}
@media (max-width: 767px) {
  #c-go-top {
    display: none !important;
  }
}
#c-go-top img,
#c-go-top svg {
  width: 50%;
  height: 50%;
  transform: rotate(-90deg);
}
#c-go-top img path,
#c-go-top svg path {
  fill: #ffff;
}
#c-code-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 910;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#c-code-pop .c-img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20px;
  width: 200px;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#c-code-pop .c-img-box .c-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  bottom: -60px;
  left: 50%;
  margin-left: -20px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.5s;
}
#c-code-pop .c-img-box .c-close img,
#c-code-pop .c-img-box .c-close svg {
  margin: 4px;
  width: 18px;
  height: 18px;
}
#c-code-pop .c-img-box .c-close img path,
#c-code-pop .c-img-box .c-close svg path {
  fill: #333;
  transition: all 0.5s;
}
#c-code-pop .c-img-box .c-close:hover {
  background-color: #0a01b1;
}
#c-code-pop .c-img-box .c-close:hover svg path {
  fill: #fff;
}
#c-code-pop .c-img-box > img {
  width: 100%;
}
#c-code-pop .c-img-box .c-text {
  padding-top: 10px;
  line-height: 1;
  text-align: center;
  color: #333;
}
.textflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.textflow2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.textflow3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.textflow4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.textflow10 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
}
/* 公共字体 */
.font12 {
  font-size: 12px;
}
.font14 {
  font-size: 14px;
}
.font16 {
  font-size: 16px;
  font-size: clamp(14px, 0.16rem, 16px);
}
.font18 {
  font-size: 18px;
  font-size: clamp(14px, 0.18rem, 18px);
}
.font20 {
  font-size: 20px;
  font-size: clamp(15px, 0.2rem, 20px);
}
.font22 {
  font-size: 22px;
  font-size: clamp(16px, 0.22rem, 22px);
}
.font24 {
  font-size: 24px;
  font-size: clamp(18px, 0.24rem, 24px);
}
.font26 {
  font-size: 26px;
  font-size: clamp(18px, 0.26rem, 26px);
}
.font28 {
  font-size: 28px;
  font-size: clamp(18px, 0.28rem, 28px);
}
.font30 {
  font-size: 30px;
  font-size: clamp(20px, 0.3rem, 30px);
}
.font32 {
  font-size: 32px;
  font-size: clamp(20px, 0.32rem, 32px);
}
.font34 {
  font-size: 34px;
  font-size: clamp(22px, 0.34rem, 34px);
}
.font36 {
  font-size: 0.36rem;
}
.font38 {
  font-size: 0.38rem;
}
.font40 {
  font-size: 0.4rem;
}
.font42 {
  font-size: 0.42rem;
}
.font44 {
  font-size: 0.44rem;
}
.font46 {
  font-size: 0.46rem;
}
.font48 {
  font-size: 0.48rem;
}
.font50 {
  font-size: 0.5rem;
}
.font52 {
  font-size: 0.52rem;
}
.font54 {
  font-size: 0.54rem;
}
.font56 {
  font-size: 0.56rem;
}
.font58 {
  font-size: 0.58rem;
}
.font60 {
  font-size: 0.6rem;
}
.font66 {
  font-size: 0.66rem;
}
.font70 {
  font-size: 0.7rem;
}
.font72 {
  font-size: 0.72rem;
}
.font80 {
  font-size: 0.8rem;
}
.font100 {
  font-size: 1rem;
}
.font120 {
  font-size: 1.2rem;
}
.font160 {
  font-size: 1.6rem;
}
.font200 {
  font-size: 2rem;
}
@media (max-width: 767px) {
  :root {
    /* 字体大小 */
    --font12: 0.24rem;
    --font14: 0.26rem;
    --font16: 0.26rem;
    --font18: 0.26rem;
    --font20: 0.26rem;
    --font22: 0.32rem;
    --font24: 0.32rem;
    --font26: 0.32rem;
    --font28: 0.34rem;
    --font30: 0.36rem;
    --font32: 0.36rem;
    --font34: 0.38rem;
    --font36: 0.38rem;
    --font38: 0.4rem;
    --font40: 0.4rem;
    --font42: 0.42rem;
    --font44: 0.42rem;
    --font46: 0.42rem;
    --font48: 0.44rem;
    --font50: 0.44rem;
    --font52: 0.46rem;
    --font54: 0.46rem;
    --font56: 0.46rem;
    --font58: 0.48rem;
    --font60: 0.48rem;
    --font66: 0.5rem;
    --font70: 0.5rem;
    --font72: 0.5rem;
    --font80: 0.5rem;
    --font100: 0.5rem;
    --font120: 0.5rem;
    --font160: 0.5rem;
    --font200: 0.66rem;
  }
  .font12 {
    font-size: 0.24rem;
  }
  .font14 {
    font-size: 0.26rem;
  }
  .font16 {
    font-size: 0.26rem;
  }
  .font18 {
    font-size: 0.26rem;
  }
  .font20 {
    font-size: 0.26rem;
  }
  .font22 {
    font-size: 0.32rem;
  }
  .font24 {
    font-size: 0.32rem;
  }
  .font26 {
    font-size: 0.32rem;
  }
  .font28 {
    font-size: 0.34rem;
  }
  .font30 {
    font-size: 0.36rem;
  }
  .font32 {
    font-size: 0.36rem;
  }
  .font34 {
    font-size: 0.38rem;
  }
  .font36 {
    font-size: 0.38rem;
  }
  .font38 {
    font-size: 0.4rem;
  }
  .font40 {
    font-size: 0.4rem;
  }
  .font42 {
    font-size: 0.42rem;
  }
  .font44 {
    font-size: 0.42rem;
  }
  .font46 {
    font-size: 0.42rem;
  }
  .font48 {
    font-size: 0.44rem;
  }
  .font50 {
    font-size: 0.44rem;
  }
  .font52 {
    font-size: 0.46rem;
  }
  .font54 {
    font-size: 0.46rem;
  }
  .font56 {
    font-size: 0.46rem;
  }
  .font58 {
    font-size: 0.48rem;
  }
  .font60 {
    font-size: 0.48rem;
  }
  .font66 {
    font-size: 0.5rem;
  }
  .font70 {
    font-size: 0.5rem;
  }
  .font72 {
    font-size: 0.5rem;
  }
  .font80 {
    font-size: 0.5rem;
  }
  .font100 {
    font-size: 0.5rem;
  }
  .font120 {
    font-size: 0.5rem;
  }
  .font160 {
    font-size: 0.5rem;
  }
  .font200 {
    font-size: 0.66rem;
  }
}
.font-b {
  font-weight: bold;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.flex_auto {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
}
.flex_1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.order_2 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
.order_3 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.dh {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
/* 动画延迟 */
.white-space {
  white-space: pre-line;
}
@media (max-width: 1260px) {
  .white-space {
    white-space: inherit;
  }
}
.font-weight-b {
  font-weight: bold;
}
/* 布局 */
.pc,
.c-pc {
  display: block;
}
@media (max-width: 767px) {
  .pc,
  .c-pc {
    display: none;
  }
}
.wap,
.mobile,
.c-mb {
  display: none;
}
@media (max-width: 767px) {
  .wap,
  .mobile,
  .c-mb {
    display: block;
  }
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper {
  position: relative;
  overflow: hidden;
}
.swiper .swiper-slide .ani {
  display: none;
}
.swiper .swiper-slide.swiper-slide-active .ani {
  display: block;
}
.swiper-pagination {
  bottom: 0;
  opacity: 0;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background-color: #808080;
  border-radius: 0;
  opacity: 0.2;
  margin: 0 3px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0a01b1;
  opacity: 1;
}
.slide-btn {
  width: 0.6rem;
  height: 0.6rem;
  background: no-repeat center var(--color-gray-666);
  border-radius: 50%;
  margin-top: -0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.slide-btn img,
.slide-btn svg {
  width: 0.22rem;
  height: auto;
}
@media (max-width:1024px) {
  .slide-btn {
    display: none;
  }
}
.wrapper {
  overflow: hidden;
  margin-top: var(--header-height);
}
.wrapper.plandetails {
  overflow: visible;
}
.H-box {
  width: 100%;
  height: 0;
  position: relative;
  top: -0.8rem;
}
@media (max-width: 1580px) {
  .H-box {
    top: -50px;
  }
}
@media (max-width: 991px) {
  .H-box {
    top: -50px;
  }
}
.btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.btn-container .more-primary {
  position: relative;
  overflow: hidden;
  color: #0a01b1 !important;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.btn-container .more-primary.active .more-primary-circle,
.btn-container .more-primary:hover .more-primary-circle {
  margin-left: 0.12rem;
}
.btn-container .more-primary .more-primary-str {
  z-index: 3;
  position: relative;
}
.btn-container .more-primary .more-primary-circle {
  position: relative;
  margin-left: 0.18rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-container .more-primary .more-primary-circle img,
.btn-container .more-primary .more-primary-circle svg {
  z-index: 2;
  width: 0.08rem;
  min-width: 6px;
  height: auto;
}
.btn-container .more-primary .more-primary-circle svg path {
  fill: #0a01b1;
  opacity: 1;
}
.btn-container .more-primary2 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 0.47rem;
  height: 0.47rem;
  border: 0.02rem solid rgba(0, 102, 255, 0.2);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.btn-container .more-primary2 .more-primary-circle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-container .more-primary2 .more-primary-circle img,
.btn-container .more-primary2 .more-primary-circle svg {
  z-index: 2;
  width: 0.16rem;
  height: auto;
}
.page-img-box {
  position: relative;
}
.page-img-box .page-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.page-img-box .page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-ban {
  position: relative;
}
.page-ban .img {
  overflow: hidden;
  position: relative;
}
.page-ban .img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}
.page-ban .container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.page-ban .container .slogan .subtitle {
  color: #fff;
  margin-bottom: 0.42rem;
}
.page-ban .container .slogan .subtitle img {
  margin-right: 0.18rem;
  max-width: 0.4rem;
}
.page-ban .container .slogan .title {
  color: var(--color-white);
  line-height: 1;
  text-transform: capitalize;
}
.page-ban .container .slogan .title span {
  line-height: 1.25em;
  display: block;
}
.page-ban .container .slogan .text-body {
  color: var(--color-white);
  text-transform: capitalize;
  font-weight: 300;
  margin-top: 0.4rem;
  line-height: 1.6em;
}
.page-ban .container .slogan .public-btn3 {
  margin-top: 0.74rem;
}
@media (max-width:1024px) {
  .page-ban .container .slogan .public-btn3 {
    margin-top: 0.2rem;
  }
}
.page-ban .container .slogan .public-btn3 .public-btn0 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.12rem;
  min-width: 2.14rem;
  line-height: 0.6rem;
  background-color: #0a01b1;
}
.page-ban .container .slogan .public-btn3 .public-btn0 .icon {
  line-height: 1;
}
.page-top-menu {
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
}
@media (max-width:1024px) {
  .page-top-menu {
    display: none;
  }
}
.page-top-menu .list-nav {
  position: relative;
  overflow: hidden;
}
.page-top-menu .list-nav a {
  font-size: 16px;
  color: #666666;
  line-height: 0.8rem;
  margin-right: 1.1rem;
  float: left;
}
.page-top-menu .list-nav a:last-child {
  margin-right: 0;
}
.page-top-menu .list-nav a.active {
  color: #222222;
}
.page-top-menu .list-nav .inner-bor {
  background: #0a01b1;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page-title .title {
  color: var(--color-black);
}
.page-title .text-body {
  color: var(--color-gray-999);
}
.page-center {
  text-align: center;
}
.page-center * {
  text-align: center;
}
.tab-ul li:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.tab-ul li .top {
  cursor: pointer;
  padding: 0.21rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tab-ul li .top .tab-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.tab-ul li .top .tab-box .tab-title {
  font-size: var(--font18);
  color: var(--color-black);
  line-height: 1.4;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.tab-ul li .top .tab-box .btn .addBox {
  width: 30px;
  height: 30px;
  background-color: var(--color-black);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tab-ul li .top .tab-box .btn .addBox i {
  width: 2px;
  height: 10px;
  background-color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tab-ul li .top .tab-box .btn .addBox i:last-child {
  transform: rotate(90deg);
  position: absolute;
}
.tab-ul li .bom {
  display: none;
  padding-bottom: 0.5rem;
}
.tab-ul li .bom .text-body h6 {
  font-size: var(--font18);
  color: var(--color-black);
  line-height: 1.4;
  margin-bottom: 0.22rem;
  font-weight: bold;
}
.tab-ul li.active .top {
  border-top-color: rgba(0, 0, 0, 0.9);
}
.tab-ul li.active .top .tab-box .btn .addBox {
  background-color: var(--color-active);
}
.tab-ul li.active .top .tab-box .btn .addBox i:first-child {
  transform: rotate(90deg);
}
.forms {
  /* 验证码 */
  /* 文件上传 */
  /* 单选-多选 */
  /* 隐私条款 */
  /* 按钮-提交 */
}
.forms input {
  width: 100%;
  height: 0.6rem;
  min-height: 45px;
  background-color: var(--color-white);
  padding: 0 20px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 6px;
  color: var(--color-gray-444);
}
.forms textarea {
  width: 100%;
  height: 1.5rem;
  min-height: 60px;
  background-color: var(--color-white);
  padding: 10px 20px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 6px;
  color: var(--color-gray-444);
  font-size: var(--font16);
}
.forms select {
  width: 100%;
  height: 0.6rem;
  min-height: 45px;
  background-color: var(--color-white);
  padding: 0 20px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 6px;
  color: var(--color-gray-444);
  font-size: var(--font16);
}
.forms .widget-label {
  margin-bottom: 0.06rem;
}
.forms .widget-label label {
  color: var(--color-gray-444);
}
.forms .widget-label label i,
.forms .widget-label label span {
  color: #f41a26;
}
.forms .info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
@media (max-width: 767px) {
  .forms .info-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.forms .forms-box {
  position: relative;
}
.forms .text-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 30px;
}
.forms .widget-input-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.forms .verification-img {
  width: 170px;
  height: 100%;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-left: 0.12rem;
  cursor: pointer;
}
.forms .file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.forms .layui-input-block {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.forms .layui-input-block .layui-form-radio:hover > *,
.forms .layui-input-block .layui-form-radioed,
.forms .layui-input-block .layui-form-radioed > i {
  color: var(--color-active);
}
.forms .layui-form-item {
  padding-left: 20px;
  font-size: var(--font14);
  color: #c0c0c0;
  margin: 0;
}
.forms .layui-form-item a {
  position: relative;
  z-index: 9;
  color: var(--color-active);
  text-decoration: revert;
}
.forms .layui-form-item .layui-form-checkbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  margin: 0;
}
.forms .layui-form-item .layui-form-checkbox i,
.forms .layui-form-item .layui-form-checkbox span {
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  bottom: 0;
  margin: auto;
  font-weight: bold;
}
.forms .layui-form-item .layui-form-checked[lay-skin=primary] > i {
  color: var(--color-active);
}
.forms .layui-form-item .layui-form-checkbox[lay-skin=primary]:hover > i,
.forms .layui-form-item .layui-form-checked[lay-skin=primary] > i {
  border-color: var(--color-active) !important;
}
.forms .layui-form-item .layui-icon-ok:before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--color-active);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 0;
}
.forms .layui-form-item .layui-form-checkbox[lay-skin=primary]:hover > i::before,
.forms .layui-form-item .layui-form-checked .layui-icon-ok:before {
  opacity: 1;
}
.forms .btn-container {
  margin-top: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.layui-form-select.layui-form-selected .layui-edge {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.layui-form-select .layui-input:hover,
.layui-form-select .layui-input:focus,
.layui-form-select .layui-textarea:focus {
  border-color: #adadad !important;
  box-shadow: none;
}
.layui-form-select .layui-edge {
  width: 46px;
  height: 100%;
  background: url(..../images/select-icon.svg) no-repeat center;
  background-size: 12px 12px;
  border: none;
  right: 0;
  top: 0;
  margin-top: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.layui-form-select dl {
  top: 100% !important;
  padding: 10px 0;
  margin-top: 8px;
  border: 1px solid #adadad;
  border-radius: 10px;
  box-shadow: none;
}
.layui-form-select dl dd:first-child {
  display: none;
}
.layui-form-select dl dt,
.layui-form-select dl dd {
  font-size: var(--font16);
  padding: 0 0.24rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.layui-form-select dl .layui-this {
  color: var(--color-active) !important;
  background-color: transparent !important;
}
.layui-form-select dl dd:hover {
  background: var(--color-gray-eee);
}
.searchform {
  position: relative;
}
.searchform .input {
  font-size: var(--font14);
  color: var(--color-black);
  font-style: normal;
  width: 100%;
  height: 36px;
  padding-left: 20px;
  padding-right: 45px;
  border: 1px solid var(--color-gray-ddd);
  border-radius: 99px;
  background-color: transparent;
}
.searchform .iconfont {
  height: 100%;
  position: absolute;
  right: 0.2rem;
  top: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-black);
}
/**********************************00-01 首页**********************************/
.public-btn {
  display: flex;
}
.public-btn .public-btn0 {
  min-width: 2.2rem;
  line-height: 0.6rem;
  background-color: #0a01b1;
  padding: 0 0.2rem;
  text-align: center;
  color: #Fff;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .public-btn .public-btn0 {
    line-height: 0.76rem;
  }
}
.public-btn .public-btn0:hover {
  opacity: 0.8;
}
.public-btn3 {
  display: flex;
}
.public-btn3 .public-btn0 {
  min-width: 1.8rem;
  line-height: 0.52rem;
  background-color: #0a01b1;
  padding: 0 0.2rem;
  text-align: center;
  color: #Fff;
  transition: all 0.5s;
}
.public-btn3 .public-btn0::after {
  content: '';
  transition: all 0.4s ease;
  width: 0;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  background: url(../images/img38.svg) no-repeat;
  background-position: center;
  background-size: 100%;
  transform: translateY(-1px) rotate(180deg);
}
@media (max-width: 991px) {
  .public-btn3 .public-btn0 {
    line-height: 0.76rem;
  }
}
.public-btn3 .public-btn0.active {
  background-color: #0a01b1;
}
.public-btn3 .public-btn0:hover {
  opacity: 0.8;
}
.public-btn3 .public-btn0:hover::after {
  width: 0.1rem;
  margin-left: 0.05rem;
}
.public-btn2 {
  display: flex;
}
.public-btn2 .public-btn0 {
  min-width: 2rem;
  line-height: 0.56rem;
  background-color: #Fff;
  padding: 0 0.2rem;
  text-align: center;
  color: #0a01b1;
  transition: all 0.5s;
}
.public-btn2 .public-btn0::after {
  content: '';
  transition: all 0.4s ease;
  width: 0;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  background: url(../images/development/ico3.png) no-repeat;
  background-position: center;
  background-size: 100%;
  transform: translateY(-1px);
}
@media (max-width: 991px) {
  .public-btn2 .public-btn0 {
    line-height: 0.76rem;
  }
}
.public-btn2 .public-btn0:hover {
  opacity: 0.8;
}
.public-btn2 .public-btn0:hover::after {
  width: 0.1rem;
  margin-left: 0.05rem;
}
.public-btn4 {
  display: flex;
}
.public-btn4 .public-btn0 {
  min-width: 1.8rem;
  line-height: 0.52rem;
  background-color: #Fff;
  padding: 0 0.2rem;
  text-align: center;
  color: #222;
  transition: all 0.5s;
}
.public-btn4 .public-btn0::after {
  content: '';
  transition: all 0.4s ease;
  width: 0;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  background: url(../images/img38.svg) no-repeat;
  background-position: center;
  background-size: 100%;
  transform: translateY(-1px) rotate(180deg);
}
@media (max-width: 991px) {
  .public-btn4 .public-btn0 {
    line-height: 0.76rem;
  }
}
.public-btn4 .public-btn0:hover {
  background-color: #0a01b1;
  color: #fff;
}
.public-btn4 .public-btn0:hover::after {
  width: 0.1rem;
  margin-left: 0.05rem;
}
.publicswiperprev {
  position: absolute;
  left: 0.2rem;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  z-index: 2;
  transition: all 0.5s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.publicswiperprev svg {
  width: 0.15rem;
  height: auto;
}
.publicswiperprev svg path {
  fill: #dcdcdc;
  opacity: 1;
  stroke: none;
}
.publicswiperprev:hover svg path {
  fill: #0a01b1;
}
.publicswipernext {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.5s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.publicswipernext svg {
  width: 0.15rem;
  height: auto;
}
.publicswipernext svg path {
  fill: #dcdcdc;
  opacity: 1;
  stroke: none;
}
.publicswipernext:hover svg path {
  fill: #0a01b1;
}
.publicswiperprev2 {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 204, 219, 0.2);
  z-index: 5;
  cursor: pointer;
  transition: all 0.5s;
}
.publicswiperprev2:hover {
  border: 1px solid #0a01b1;
  background-color: #0a01b1;
}
.publicswipernext2 {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 204, 219, 0.2);
  z-index: 5;
  cursor: pointer;
  transition: all 0.5s;
}
.publicswipernext2:hover {
  border: 1px solid #0a01b1;
  background-color: #0a01b1;
}
.publicswiperprev3 {
  position: absolute;
  left: -0.9rem;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  z-index: 2;
  transition: all 0.5s;
  cursor: pointer;
}
.publicswiperprev3 svg {
  width: 0.3rem;
  height: auto;
}
.publicswiperprev3 svg path {
  fill: #b2b2b2;
  opacity: 1;
  stroke: none;
}
.publicswiperprev3:hover svg path {
  fill: #0a01b1;
}
.publicswipernext3 {
  position: absolute;
  right: -0.9rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.5s;
  cursor: pointer;
}
.publicswipernext3 svg {
  width: 0.3rem;
  height: auto;
}
.publicswipernext3 svg path {
  fill: #b2b2b2;
  opacity: 1;
  stroke: none;
}
.publicswipernext3:hover svg path {
  fill: #0a01b1;
}
.publicswiperpage {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
  z-index: 4;
}
.publicswiperpage .swiper-pagination-bullet {
  width: 0.86rem;
  height: 0.5rem;
  background-color: transparent;
  position: relative;
  opacity: 1;
  cursor: pointer;
  margin: 0 0.06rem;
}
.publicswiperpage .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 3px;
  background-color: #Fff;
  opacity: 0.21;
}
.publicswiperpage .swiper-pagination-bullet em {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 3px;
  background-color: #fff;
  opacity: 1;
}
.publicswiperpage .swiper-pagination-bullet.swiper-pagination-bullet-active em {
  animation-name: swiperpage;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.publicswiperpage2 {
  position: absolute;
  bottom: 0;
  left: 50% !important;
  top: initial !important;
  transform: translateX(-50%);
  width: 86px !important;
  height: 3px !important;
  background-color: #e4e4e4;
  opacity: 1;
  margin: 0 auto;
  text-align: center;
}
@keyframes swiperpage {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.index-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 991px) {
  .index-banner .indexbanner1prev {
    display: none;
  }
}
@media (max-width: 991px) {
  .index-banner .indexbanner1next {
    display: none;
  }
}
.index-banner .img {
  position: relative;
  width: 100%;
  height: 100%;
  animation: bannerscale 20s infinite linear ;
}
.index-banner .img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 39, 0.5);
  z-index: 2;
}
.index-banner .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .index-banner .img img.pc-img {
    display: none;
  }
}
.index-banner .img img.mb-img {
  display: none;
}
@media (max-width: 991px) {
  .index-banner .img img.mb-img {
    display: block;
  }
}
.index-banner .img video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.index-banner .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.index-banner .container .cn1 {
  text-align: center;
  color: #fff;
  line-height: 1.2em;
  transition: all 0.5s;
  opacity: 0;
  transform: translateY(0.6rem);
}
.index-banner .container .cn2 {
  transition: all 0.5s 0.25s;
  opacity: 0;
  transform: translateY(0.6rem);
  margin-top: 0.1rem;
  line-height: 1.625em;
  color: #Fff;
  text-align: center;
  position: relative;
}
.index-banner .container .cn2 span {
  position: relative;
  letter-spacing: 0.22rem;
  text-indent: 0.22rem;
  display: inline-block;
}
.index-banner .container .cn2 span::before {
  content: "";
  position: absolute;
  left: calc(100% + 0.1rem);
  top: 50%;
  transform: translateY(-50%);
  width: 0.64rem;
  height: 0.05rem;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 991px) {
  .index-banner .container .cn2 span::before {
    display: none;
  }
}
.index-banner .container .cn2 span::after {
  content: "";
  position: absolute;
  right: calc(100% + 0.1rem);
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 0.64rem;
  height: 0.05rem;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 991px) {
  .index-banner .container .cn2 span::after {
    display: none;
  }
}
.index-banner .container .cn3 {
  display: flex;
  justify-content: center;
  transition: all 0.5s 0.5s;
  opacity: 0;
  transform: translateY(0.6rem);
}
.index-banner .container .cn3 .public-btn4 {
  margin: 0.55rem 0.13rem 0;
}
.index-banner .swiper-slide.ani-slide .img {
  position: relative;
  z-index: 2;
}
.index-banner .swiper-slide.ani-slide .cn1 {
  transform: translateY(0);
  opacity: 1;
}
.index-banner .swiper-slide.ani-slide .cn2 {
  transform: translateY(0);
  opacity: 1;
}
.index-banner .swiper-slide.ani-slide .cn3 {
  transform: translateY(0);
  opacity: 1;
}
@keyframes bannerscale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.index-about {
  position: relative;
  min-height: 5rem;
  padding-top: 1.53rem;
  padding-bottom: 0.9rem;
  overflow: hidden;
}
.index-about .bgimg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% - 3.22rem);
  width: 98.38541667%;
  margin: 0 auto;
  text-align: center;
}
.index-about .bgimg img {
  width: 100%;
}
.index-about .container {
  position: relative;
}
.index-about .container .box1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index-about .container .left {
  margin-left: 0.4rem;
  width: 19.375%;
}
@media (max-width: 991px) {
  .index-about .container .left {
    margin-left: 0;
    width: 100%;
  }
}
.index-about .container .left .box1a .cn1 {
  color: #222222;
  line-height: 1.20833333em;
}
.index-about .container .left .box1a .cn2 {
  margin-top: 0.13rem;
  color: #9ea1a6;
  line-height: 1.27777778em;
}
.index-about .container .left .box1b .cn3 {
  color: #182132;
  line-height: 1.5em;
  margin: 0.55rem 0 0.25rem;
}
.index-about .container .left .box1b .cn4 {
  display: flex;
  align-items: center;
  color: #182132;
  transition: all 0.4s;
}
.index-about .container .left .box1b .cn4:hover {
  color: #0a01b1;
}
.index-about .container .left .box1b .cn4 img {
  margin-left: 0.1rem;
}
.index-about .container .right {
  margin-right: 0.8rem;
  display: flex;
  justify-content: space-between;
  width: calc(10/16*100%);
}
@media (max-width: 991px) {
  .index-about .container .right {
    width: 100%;
    margin-top: 0.8rem;
    margin-right: 0;
  }
}
.index-about .container .right .rightbox1 {
  width: 45%;
  position: relative;
}
@media (max-width: 767px) {
  .index-about .container .right .rightbox1 {
    display: none;
  }
}
.index-about .container .right .rightbox1 .bgimg2 {
  position: absolute;
  left: -0.35rem;
  top: -0.35rem;
}
.index-about .container .right .rightbox1 .rightbox1a {
  position: relative;
  display: none;
}
.index-about .container .right .rightbox1 .rightbox1a.on {
  display: block;
}
.index-about .container .right .rightbox1 .rightbox1a .img::before {
  padding-top: 143.33333333%;
}
.index-about .container .right .rightbox1 .rightbox1a .cn5 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0.45rem;
  z-index: 2;
}
.index-about .container .right .rightbox1 .rightbox1a .cn5 span {
  color: #fff;
  display: block;
  line-height: 1.33333333em;
}
.index-about .container .right .rightbox1 .rightbox1a .cn5 span::first-letter {
  color: #0a01b1;
}
.index-about .container .right .rightbox2 {
  width: 53%;
}
@media (max-width: 767px) {
  .index-about .container .right .rightbox2 {
    width: 100%;
  }
}
.index-about .container .right .rightbox2 .rightbox2a {
  align-items: center;
  display: flex;
  height: 1.6rem;
  padding: 0 0.4rem;
  justify-content: space-between;
  border-bottom: 1px solid rgba(81, 94, 119, 0.15);
  position: relative;
  cursor: pointer;
}
.index-about .container .right .rightbox2 .rightbox2a .bgimg3 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  opacity: 0;
}
.index-about .container .right .rightbox2 .rightbox2a .bgimg3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-about .container .right .rightbox2 .rightbox2a .cn6 {
  position: relative;
  color: #515e77;
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-right: 0.3rem;
  transition: all 0.5s;
}
.index-about .container .right .rightbox2 .rightbox2a .cn7 {
  position: relative;
  color: #515e77;
  opacity: 0.7;
  transition: all 0.5s;
  text-align: right;
  line-height: 1.5em;
}
.index-about .container .right .rightbox2 .rightbox2a.on .bgimg3 {
  opacity: 1;
}
.index-about .container .right .rightbox2 .rightbox2a.on .cn6 {
  color: #fff;
  font-size: 0.86rem;
}
.index-about .container .right .rightbox2 .rightbox2a.on .cn7 {
  color: #Fff;
  opacity: 1;
}
.index-about .container .box2 {
  margin-top: 1.45rem;
}
.index-about .container .box2 .cn10 {
  text-align: center;
  color: #000;
  line-height: 1.20833333em;
}
.index-case {
  position: relative;
  min-height: 8.5rem;
  width: 100%;
  overflow: hidden;
}
.index-case .imgbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.index-case .imgbox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0f1727;
  opacity: 0.6;
  z-index: 2;
}
.index-case .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.5s;
}
.index-case .imgbox img.on {
  opacity: 1;
}
.index-case .container {
  position: relative;
  padding: 0.9rem 0;
  display: flex;
  flex-wrap: wrap;
  z-index: 5;
}
.index-case .container .left {
  margin-right: 8.125%;
  width: 27.5%;
  min-height: 6.7rem;
  background-color: #182132;
  padding: 0.5rem 3.75%;
}
@media (max-width: 991px) {
  .index-case .container .left {
    width: 35%;
    margin-right: 5%;
    padding: 0.5rem 0.3rem;
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .index-case .container .left {
    width: 100%;
    margin-right: 0;
  }
}
.index-case .container .left .cn1 {
  padding-left: 0.34rem;
  position: relative;
}
@media (max-width: 767px) {
  .index-case .container .left .cn1 {
    padding-left: 0;
    display: flex;
    white-space: nowrap;
    overflow: auto;
  }
}
.index-case .container .left .cn1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #a1a6ac;
  opacity: 0.2;
}
@media (max-width: 767px) {
  .index-case .container .left .cn1::before {
    display: none;
  }
}
.index-case .container .left .cn1 .line {
  position: absolute;
  left: 0;
  width: 0.06rem;
  height: 0.72rem;
  top: 0;
  background-color: #0a01b1;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .index-case .container .left .cn1 .line {
    height: 0.9rem;
  }
}
@media (max-width: 767px) {
  .index-case .container .left .cn1 .line {
    display: none;
  }
}
.index-case .container .left .cn1 .cn2 {
  display: flex;
  align-items: center;
  height: 0.72rem;
  line-height: 0.72rem;
  margin-bottom: 0.276rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .index-case .container .left .cn1 .cn2 {
    line-height: 0.9rem;
    height: 0.9rem;
  }
}
@media (max-width: 767px) {
  .index-case .container .left .cn1 .cn2 {
    width: auto;
    padding: 0 0.5rem;
  }
}
.index-case .container .left .cn1 .cn2:last-child {
  margin-bottom: 0;
}
.index-case .container .left .cn1 .cn2 .cn3 {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 0.6rem;
}
.index-case .container .left .cn1 .cn2 .cn3 svg {
  max-width: 50%;
  height: auto;
}
@media (max-width: 767px) {
  .index-case .container .left .cn1 .cn2 .cn3 svg {
    max-width: 75%;
  }
}
.index-case .container .left .cn1 .cn2 .cn3 svg path {
  fill: #a1a6ac;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.index-case .container .left .cn1 .cn2 .cn4 {
  line-height: 1.5em;
  color: #a1a6ac;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .index-case .container .left .cn1 .cn2 .cn4 {
    font-size: 0.26rem;
  }
}
.index-case .container .left .cn1 .cn2.on .cn3 svg path {
  fill: #Fff;
}
.index-case .container .left .cn1 .cn2.on .cn4 {
  color: #FFf;
}
.index-case .container .right {
  width: 50%;
}
@media (max-width: 991px) {
  .index-case .container .right {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .index-case .container .right {
    width: 100%;
  }
}
.index-case .container .right .rightbox1 {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.index-case .container .right .rightbox1 .rightbox2 {
  padding-top: 0.6rem;
}
.index-case .container .right .rightbox1 .rightbox2 .cn5 {
  display: flex;
  align-items: center;
  color: #ffffff;
}
.index-case .container .right .rightbox1 .rightbox2 .cn5 img {
  margin-right: 0.1rem;
  height: 0.25rem;
}
@media (max-width: 991px) {
  .index-case .container .right .rightbox1 .rightbox2 .cn5 img {
    height: 0.5rem;
  }
}
.index-case .container .right .rightbox1 .rightbox2 .cn6 {
  color: #ffffff;
  line-height: 1.33333333em;
  margin: 0.2rem 0 0.45rem;
}
.index-case .container .right .rightbox1 .rightbox3 {
  line-height: 1.2rem;
  background-color: rgba(161, 166, 172, 0.2);
  height: 1.2rem;
  display: flex;
  align-items: center;
  backdrop-filter: blur(10px);
  margin-top: 0.5rem;
}
.index-case .container .right .rightbox1 .rightbox3 .img {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-case .container .right .rightbox1 .rightbox3 .img img {
  max-width: 100%;
  max-height: 100%;
}
.index-case .container .right .rightbox1.on {
  display: flex;
  animation: casaeopacity 0.5s 1 linear forwards;
}
@keyframes casaeopacity {
  from {
    transform: translateY(0.6rem);
  }
  to {
    transform: translateY(0);
  }
}
.index-news {
  margin-top: 1.2rem;
  padding-bottom: 1rem;
  background-color: #Fff;
}
.index-news .container .box1 {
  flex-wrap: wrap;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.index-news .container .box1 .box1a .cn1 {
  color: #222222;
  line-height: 1.20833333em;
}
.index-news .container .box1 .box1a .cn2 {
  margin-top: 0.13rem;
  color: #9ea1a6;
  line-height: 1.27777778em;
}
.index-news .container .box1 .box1b .cn3 {
  display: flex;
  align-items: center;
  color: #182132;
  transition: all 0.5s;
  padding-right: 0.36rem;
  background: url(../images/img25.svg) no-repeat;
  background-size: 0.31rem;
  background-position: center right;
}
.index-news .container .box1 .box1b .cn3 img {
  margin-left: 0.05rem;
  width: 0.31rem;
  height: 0.31rem;
  display: none;
}
@media (max-width: 991px) {
  .index-news .container .box1 .box1b .cn3 img {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.index-news .container .box1 .box1b .cn3:hover {
  color: #0a01b1;
  background: url(../images/img25on.svg) no-repeat;
  background-size: 0.31rem;
  background-position: center right;
}
.index-news .container .box2 {
  position: relative;
}
@media (max-width: 991px) {
  .index-news .container .box2 .indexnews1next {
    display: none;
  }
}
@media (max-width: 991px) {
  .index-news .container .box2 .indexnews1prev {
    display: none;
  }
}
.index-news .container .box2 .box3 .indexnewsa1 {
  padding: 0.8rem 0;
  position: relative;
  overflow: hidden;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide {
  height: initial;
  display: flex;
  flex-direction: column;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide .img {
  width: 100%;
  flex-shrink: 0;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide .img::before {
  padding-top: 53.53535354%;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide .text-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.45rem;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide .text-box .text1 .cn4 {
  color: #222222;
  line-height: 1.45454545em;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide .text-box .text1 .cn5 {
  color: #666666;
  line-height: 1.5em;
  margin: 0.2rem 0 0.4rem;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide .text-box .text2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide .text-box .text2 .cn6 {
  display: flex;
  align-items: center;
  color: #222222;
  transition: all 0.5s;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide .text-box .text2 .cn6 svg {
  margin-right: 0.15rem;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide .text-box .text2 .cn6 svg path {
  fill: #0a01b1;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide .text-box .text2 .cn7 {
  display: flex;
  align-items: center;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide .text-box .text2 .cn7 svg path {
  fill: #0a01b1;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide:nth-child(3n-2) {
  background-color: #0a01b1;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide:nth-child(3n-2) .text-box .text1 .cn4 {
  color: #Fff;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide:nth-child(3n-2) .text-box .text1 .cn5 {
  color: #Fff;
  opacity: 0.5;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide:nth-child(3n-2) .text-box .cn6 {
  color: #Fff;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide:nth-child(3n-2) .text-box .cn6 svg path {
  fill: #fff;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide:nth-child(3n-2) .text-box .cn7 svg path {
  fill: #Fff;
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide:nth-child(3n-1) {
  background-color: #ffffff;
  box-shadow: 0px 1px 27px 0px rgba(225, 225, 225, 0.52);
}
.index-news .container .box2 .box3 .indexnewsa1 .swiper-slide:nth-child(3n) {
  background-color: #eef0f4;
}
.index-deve {
  overflow: hidden;
  background-color: #ffffff;
  padding: 1.64rem 0 2.8rem;
  position: relative;
}
.index-deve .bgimg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.index-deve .bgimg img {
  width: 100%;
}
.index-deve .bgimg2 {
  position: absolute;
  left: 0;
  bottom: 0.33rem;
  width: 100%;
}
.index-deve .bgimg2 img {
  width: 100%;
}
.index-deve .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.index-deve .container .left {
  position: relative;
  z-index: 5;
  padding-right: 0.5rem;
  width: 35.9375%;
}
@media (max-width: 991px) {
  .index-deve .container .left {
    padding-right: 0;
    width: 100%;
  }
}
.index-deve .container .left .box1a .cn1 {
  color: #222222;
  line-height: 1.20833333em;
}
.index-deve .container .left .box1a .cn2 {
  margin-top: 0.13rem;
  color: #9ea1a6;
  line-height: 1.27777778em;
}
@media (max-width: 991px) {
  .index-deve .container .left .box2a {
    display: flex;
    flex-wrap: wrap;
  }
}
.index-deve .container .left .box2a .box3 {
  margin-top: 1rem;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .index-deve .container .left .box2a .box3 {
    width: 50%;
    padding-right: 0.3rem;
  }
}
.index-deve .container .left .box2a .box3 .cn3 {
  color: #0a01b1;
  font-size: 0.96rem;
  line-height: 1em;
  margin-right: 0.3rem;
  min-width: 0.68rem;
}
.index-deve .container .left .box2a .box3 .cn4 .cn5 {
  display: block;
  color: #222222;
  line-height: 1.41666667em;
}
.index-deve .container .left .box2a .box3 .cn4 .cn6 {
  margin-top: 0.1rem;
  display: block;
  color: #666666;
  line-height: 1.55555556em;
}
.index-deve .container .right {
  width: 64.0625%;
  position: relative;
}
@media (max-width: 991px) {
  .index-deve .container .right {
    width: 100%;
    margin-top: 1rem;
  }
}
.index-deve .container .right .zuoleft {
  position: absolute;
  left: -1.43rem;
  bottom: 0;
}
.index-deve .container .right .zuoleft img {
  width: 2.04rem;
}
.index-deve .container .right::before {
  content: "";
  position: absolute;
  right: -0.35rem;
  top: -0.35rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #0a01b1;
}
.index-deve .container .right .img {
  width: 100%;
  position: relative;
}
.index-deve .container .right .img::before {
  padding-top: 65.17073171%;
}
.index-course {
  background-color: #fff;
  padding-top: 0.4rem;
  position: relative;
}
.index-course .container {
  position: relative;
}
.index-course .container .box1 {
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.index-course .container .box1 .box1a .cn1 {
  color: #222222;
  line-height: 1.20833333em;
}
.index-course .container .box1 .box1a .cn2 {
  margin-top: 0.13rem;
  color: #9ea1a6;
  line-height: 1.27777778em;
}
.index-course .container .box1 .box1b .cn3 {
  display: flex;
  align-items: center;
  color: #182132;
  transition: all 0.5s;
}
.index-course .container .box1 .box1b .cn3 img {
  margin-left: 0.05rem;
  width: 0.08rem;
  height: 0.13rem;
}
@media (max-width: 991px) {
  .index-course .container .box1 .box1b .cn3 img {
    width: 0.16rem;
    height: 0.26rem;
  }
}
.index-course .container .box1 .box1b .cn3:hover {
  color: #0a01b1;
}
.index-course .container .box2 {
  margin: 0 -0.1rem;
  padding: 0 0.1rem;
  overflow: hidden;
}
.index-course .container .box2 .indexcoursea1 {
  position: relative;
  width: calc((100% - 100px) / 3);
  padding: 1px;
}
@media (max-width: 991px) {
  .index-course .container .box2 .indexcoursea1 {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 767px) {
  .index-course .container .box2 .indexcoursea1 {
    width: 100%;
  }
}
.index-course .container .box2 .indexcoursea1 .swiper-slide {
  height: auto;
  box-shadow: 0px 0px 10px #ddd;
  padding: 0.75rem 0.45rem 0.65rem;
  background-color: #Fff;
}
.index-course .container .box2 .indexcoursea1 .swiper-slide:last-child {
  margin-right: 0;
}
.index-course .container .box2 .indexcoursea1 .swiper-slide .cn0 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  opacity: 0;
}
.index-course .container .box2 .indexcoursea1 .swiper-slide .cn0 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-course .container .box2 .indexcoursea1 .swiper-slide .cn1 {
  color: #222;
  transition: all 0.5s;
  line-height: 1.20833333em;
  position: relative;
}
.index-course .container .box2 .indexcoursea1 .swiper-slide .line {
  width: 0.33rem;
  height: 0.08rem;
  background-color: #0a01b1;
  margin: 0.3rem 0;
  position: relative;
}
.index-course .container .box2 .indexcoursea1 .swiper-slide .cn2 {
  line-height: 1.5em;
  color: #666;
  transition: all 0.5s;
  position: relative;
  display: block;
}
.index-course .container .box2 .indexcoursea1 .swiper-slide:hover .cn0 {
  opacity: 1;
}
.index-course .container .box2 .indexcoursea1 .swiper-slide:hover .cn1 {
  color: #Fff;
}
.index-course .container .box2 .indexcoursea1 .swiper-slide:hover .cn2 {
  color: #fff;
}
.index-course .container .box2 .box3 {
  margin-top: 0.35rem;
  padding: 0 0.85rem;
  position: relative;
}
.index-course .container .box2 .box3 .indexcoursea2 {
  overflow: hidden;
  position: relative;
  padding: 0.95rem 0;
}
.index-course .container .box2 .box3 .indexcoursea2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
}
.index-course .container .box2 .box3 .indexcoursea2 .swiper-slide {
  position: relative;
  cursor: pointer;
}
.index-course .container .box2 .box3 .indexcoursea2 .swiper-slide .dian {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #e5e5e5;
  margin: 0 auto;
  transition: all 0.5s;
  position: relative;
}
.index-course .container .box2 .box3 .indexcoursea2 .swiper-slide .dian::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background-color: #Fff;
  opacity: 0;
  transition: all 0.5s;
}
.index-course .container .box2 .box3 .indexcoursea2 .swiper-slide .year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #999;
  bottom: calc(100% + 0.3rem);
  transition: all 0.5s;
}
.index-course .container .box2 .box3 .indexcoursea2 .swiper-slide.swiper-slide-thumb-active .dian {
  background-color: #0a01b1;
}
.index-course .container .box2 .box3 .indexcoursea2 .swiper-slide.swiper-slide-thumb-active .dian::before {
  opacity: 1;
}
.index-course .container .box2 .box3 .indexcoursea2 .swiper-slide.swiper-slide-thumb-active .year {
  color: #0a01b1;
}
.index-partner {
  background-color: #ecf4ff;
  padding-top: 0.95rem;
  position: relative;
}
.index-partner .bgimg {
  position: absolute;
  left: 0;
  bottom: -1.8rem;
}
.index-partner .bgimg img {
  width: 3.6rem;
}
.index-partner .container {
  position: relative;
}
.index-partner .container .box1 {
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.index-partner .container .box1 .box1a .cn1 {
  color: #222222;
  line-height: 1.20833333em;
}
.index-partner .container .box1 .box1a .cn2 {
  margin-top: 0.13rem;
  color: #9ea1a6;
  line-height: 1.27777778em;
}
.index-partner .container .box1 .box1b .cn3 {
  line-height: 1.41666667em;
  color: #666666;
}
.index-partner .container .box1 .box1b .cn3 span {
  color: #0a01b1;
  margin-right: 0.05rem;
}
.index-partner .container .box2 {
  display: flex;
  flex-wrap: wrap;
}
.index-partner .container .box2 .img {
  width: calc(100% / 6);
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 991px) {
  .index-partner .container .box2 .img {
    display: none;
    width: calc(100% / 3);
  }
}
@media (max-width: 991px) {
  .index-partner .container .box2 .img:nth-child(-n+12) {
    display: block;
  }
}
.index-partner .container .box2 .img span {
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.index-partner .container .box2 .img span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #ecf4ff;
}
.index-partner .container .box2 .img span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #ecf4ff;
}
.index-partner .container .box2 .img::before {
  padding-top: 56.60377358%;
}
.index-book {
  background-color: #ecf4ff;
  padding-top: 0.6rem;
}
.index-book .container {
  position: relative;
}
.index-book .container .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.index-book .container .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-book .container .box {
  justify-content: center;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.2rem 0;
}
@media (max-width: 991px) {
  .index-book .container .box {
    padding: 0.5rem 0.3rem;
  }
}
@media (max-width: 767px) {
  .index-book .container .box {
    flex-wrap: wrap;
  }
}
.index-book .container .box .cn1 {
  width: 17.625%;
}
.index-book .container .box .cn1 img {
  width: 100%;
}
@media (max-width: 991px) {
  .index-book .container .box .cn1 {
    display: none;
  }
}
.index-book .container .box .cn2 {
  margin: 0 2.5% 0 4.6875%;
  width: 4.25%;
}
.index-book .container .box .cn2 img {
  width: 100%;
}
@media (max-width: 991px) {
  .index-book .container .box .cn2 {
    display: none;
  }
}
.index-book .container .box .cn3 {
  width: 38.5625%;
  margin-right: 4.6875%;
}
@media (max-width: 991px) {
  .index-book .container .box .cn3 {
    width: 100%;
  }
}
.index-book .container .box .cn3 .cn3a {
  color: #ffffff;
  line-height: 1.33333333em;
  display: block;
  text-align: left;
}
@media (max-width: 1260px) {
  .index-book .container .box .cn3 .cn3a {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .index-book .container .box .cn3 .cn3a {
    font-size: 0.3rem;
  }
}
@media (max-width: 767px) {
  .index-book .container .box .cn3 .cn3a {
    text-align: center;
  }
}
.index-book .container .box .cn3 .cn3b {
  text-align: left;
  display: block;
  margin-top: 0.05rem;
  color: #fff;
  line-height: 1.625em;
}
@media (max-width: 767px) {
  .index-book .container .box .cn3 .cn3b {
    text-align: center;
    font-size: 0.26rem;
    line-height: 1.2em;
    margin-top: 0.15rem;
  }
}
@media (max-width: 767px) {
  .index-book .container .box .public-btn2 {
    margin-top: 0.3rem;
  }
}
.index-contact {
  overflow: hidden;
  background-color: #ecf4ff;
  position: relative;
  padding-top: 1.1rem;
}
.index-contact .bgimg {
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 100%;
  height: 5.15rem;
}
@media (max-width: 991px) {
  .index-contact .bgimg {
    top: 0.5rem;
  }
}
.index-contact .bgimg img {
  width: 100%;
}
.index-contact .line {
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 100%;
}
.index-contact .line img {
  width: 100%;
}
.index-contact .container {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.index-contact .container .left {
  width: 47.25%;
  transform: translateY(0.4rem);
}
@media (max-width: 991px) {
  .index-contact .container .left {
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .index-contact .container .left {
    width: 100%;
    text-align: center;
  }
}
.index-contact .container .left .cn1 {
  color: #161823;
  line-height: 1.20833333em;
}
.index-contact .container .left .cn2 {
  color: #7f838b;
  line-height: 1.41666667em;
  margin: 0.15rem 0 0.5rem;
}
@media (max-width: 767px) {
  .index-contact .container .left .public-btn0 {
    justify-content: center;
    margin: 0 auto;
  }
}
.index-contact .container .right {
  width: 52.75%;
}
@media (max-width: 767px) {
  .index-contact .container .right {
    margin-top: 0.5rem;
    width: 100%;
  }
}
.index-contact .container .right .cn3 {
  width: 100%;
}
.index-contact .container .right .cn3::before {
  padding-top: 65.52132701%;
}
.footer {
  position: relative;
  background-color: #161823;
  overflow: hidden;
}
.footer .container .box1 {
  padding: 0.9rem 0;
  display: flex;
  justify-content: space-between;
}
.footer .container .box1 .box1a {
  width: 25%;
}
@media (max-width: 1260px) {
  .footer .container .box1 .box1a {
    width: 35%;
  }
}
@media (max-width: 991px) {
  .footer .container .box1 .box1a {
    width: 100%;
  }
}
.footer .container .box1 .box1a .cn1 img {
  width: 2.24rem;
}
.footer .container .box1 .box1a .cn2 {
  margin: 0.4rem 0 0.55rem;
  line-height: 1.66666667em;
  color: rgba(255, 255, 255, 0.5);
}
.footer .container .box1 .box1a .cn3 {
  flex-wrap: wrap;
  display: flex;
}
.footer .container .box1 .box1a .cn3 .cn4 {
  margin-top: 0.15rem;
  margin-right: 0.15rem;
  position: relative;
}
.footer .container .box1 .box1a .cn3 .cn4:first-child {
  order: 1;
}
@media (max-width: 991px) {
  .footer .container .box1 .box1a .cn3 .cn4 {
    margin-top: 0.2rem;
    margin-right: 0.2rem;
  }
}
.footer .container .box1 .box1a .cn3 .cn4 .cn4a {
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2e3039;
  border-radius: 50%;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .footer .container .box1 .box1a .cn3 .cn4 .cn4a {
    width: 0.76rem;
    height: 0.76rem;
  }
}
.footer .container .box1 .box1a .cn3 .cn4 .cn4a svg {
  width: auto;
  max-height: 0.2rem;
}
@media (max-width: 991px) {
  .footer .container .box1 .box1a .cn3 .cn4 .cn4a svg {
    max-height: 0.4rem;
  }
}
.footer .container .box1 .box1a .cn3 .cn4 .cn4a svg path {
  fill: #Fff;
  opacity: 0.32;
  stroke: none;
  transition: all 0.5s;
}
.footer .container .box1 .box1a .cn3 .cn4 .cn4b {
  position: absolute;
  left: 0;
  top: calc(100% + 0.2rem);
  width: 100px;
  height: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.footer .container .box1 .box1a .cn3 .cn4 .cn4b em {
  height: 100px;
  width: 100px;
  background-color: #Fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .container .box1 .box1a .cn3 .cn4 .cn4b img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}
.footer .container .box1 .box1a .cn3 .cn4.on .cn4b {
  opacity: 1;
}
.footer .container .box1 .box1a .cn3 .cn4:hover .cn4a {
  background-color: #0a01b1;
}
.footer .container .box1 .box1a .cn3 .cn4:hover .cn4a svg path {
  opacity: 1;
}
.footer .container .box1 .box1a .cn3 .cn4:hover .cn4b {
  opacity: 1;
  visibility: visible;
}
.footer .container .box1 .box1b {
  padding-right: 0.8rem;
  width: 53.75%;
}
@media (max-width: 991px) {
  .footer .container .box1 .box1b {
    display: none;
  }
}
.footer .container .box1 .box1b .cn5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer .container .box1 .box1b .cn5 .cn6 {
  max-width: 30%;
}
.footer .container .box1 .box1b .cn5 .cn6 .cn7 {
  color: #ffffff;
  line-height: 1.5em;
}
.footer .container .box1 .box1b .cn5 .cn6 .cn8 {
  margin-top: 0.4rem;
}
.footer .container .box1 .box1b .cn5 .cn6 .cn8 .cn9 {
  margin-bottom: 0.1rem;
}
.footer .container .box1 .box1b .cn5 .cn6 .cn8 .cn9 .cn10 {
  line-height: 1.55555556em;
  color: #bbbbbb;
  position: relative;
}
.footer .container .box1 .box1b .cn5 .cn6 .cn8 .cn9 .cn10 img {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 0.08rem;
  height: 0.13rem;
  opacity: 0;
  transition: all 0.5s;
}
.footer .container .box1 .box1b .cn5 .cn6 .cn8 .cn9 .cn10:hover {
  color: #fff;
}
.footer .container .box1 .box1b .cn5 .cn6 .cn8 .cn9 .cn10:hover img {
  opacity: 1;
  left: calc(100% + 0.1rem);
}
.footer .container .box2 {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
.footer .container .box2 .left {
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .footer .container .box2 .left {
    justify-content: center;
  }
}
.footer .container .box2 .left .cn5 {
  margin-right: 0.35rem;
}
@media (max-width: 991px) {
  .footer .container .box2 .left .cn5 {
    margin: 0 0.3rem;
  }
}
.footer .container .box2 .left .cn5 img,
.footer .container .box2 .left .cn5 svg {
  height: 25px;
}
.footer .container .box2 .left .cn3 {
  line-height: 1.625em;
  color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 991px) {
  .footer .container .box2 .left .cn3 {
    margin-top: 0.3rem;
  }
}
.footer .container .box2 .left .cn3 a {
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
}
.footer .container .box2 .left .cn3 a:hover {
  color: #0a01b1;
}
.footer .container .box2 .right {
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .footer .container .box2 .right {
    width: 100%;
    justify-content: center;
  }
}
.footer .container .box2 .right .cn1 {
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.625em;
  transition: all 0.5s;
}
.footer .container .box2 .right .cn1:hover {
  color: #Fff;
}
.footer .container .box2 .right .cn2 {
  width: 1px;
  height: 0.16rem;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 0.15rem;
}
.public-aside {
  position: fixed;
  right: 0.3rem;
  bottom: 0.7rem;
  z-index: 99;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.public-aside.active {
  right: -1rem;
}
@media (max-width: 991px) {
  .public-aside {
    display: none;
  }
}
.public-aside .box1 {
  width: 69px;
  height: 73px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: block;
}
.public-aside .box1 .cn1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  text-align: center;
  color: #Fff;
}
.public-aside .box2 {
  margin-top: 0.13rem;
  width: 66px;
  border-radius: 0.1rem;
  background-color: #Fff;
  box-shadow: 0px 0px 10px #eee;
}
.public-aside .box2 .box3 {
  display: block;
  position: relative;
}
.public-aside .box2 .box3:last-child::before {
  display: none;
}
.public-aside .box2 .box3::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 21px;
  height: 1px;
  background-color: #051233;
  opacity: 0.05;
}
.public-aside .box2 .box3 .img {
  width: 100%;
  padding: 0.15rem 0 0;
  position: relative;
  text-align: center;
  background-color: #fff;
  overflow: hidden;
}
.public-aside .box2 .box3 .cn2 {
  padding: 0 0 0.15rem;
  background-color: #Fff;
  position: relative;
  text-align: center;
  color: #051233;
  opacity: 0.7;
  width: 100%;
  margin-top: 0.1rem;
  display: block;
}
.public-aside .box2 .box3 .cn3 {
  position: absolute;
  right: 0;
  top: 0;
  width: 170px;
  padding: 0.2rem;
  background-color: #fff;
  white-space: nowrap;
  box-shadow: 0px 0px 10px #eee;
  color: #475570;
  opacity: 0;
  transition: all 0.5s;
  visibility: hidden;
}
.public-aside .box2 .box3 .cn3 .cn4 {
  white-space: break-spaces;
}
.public-aside .box2 .box3:hover .img img {
  -webkit-filter: drop-shadow(-80px 0 var(--color-active));
  filter: drop-shadow(-80px 0 var(--color-active));
  -webkit-transform: translate(80px);
  transform: translate(80px);
}
.public-aside .box2 .box3:hover .cn2 {
  color: var(--color-active);
  opacity: 1;
}
.public-aside .box2 .box3:hover .cn3 {
  opacity: 1;
  right: 100%;
  visibility: visible;
}
.public-windows {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.public-windows .box {
  background-color: #Fff;
  width: 12.8rem;
  min-height: 7rem;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 1260px) {
  .public-windows .box {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .public-windows .box {
    display: block;
  }
}
.public-windows .box .c-close {
  position: absolute;
  right: 0.33rem;
  top: 0.31rem;
  width: 13px;
  z-index: 2;
  cursor: pointer;
}
.public-windows .box .left {
  width: 35.15625%;
  position: relative;
}
@media (max-width: 767px) {
  .public-windows .box .left {
    width: 100%;
    display: none;
  }
}
.public-windows .box .left .bgimg {
  width: 100%;
  height: 100%;
}
.public-windows .box .left .bgimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public-windows .box .left .leftbox {
  position: absolute;
  left: 0;
  width: 100%;
  top: 38%;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 0.4rem;
}
.public-windows .box .left .leftbox .cn0 img {
  width: 1.71rem;
  height: 0.27rem;
}
.public-windows .box .left .leftbox .cn1 {
  color: #ffffff;
  line-height: 1.27777778em;
  margin: 0.6rem 0 0.25rem;
}
.public-windows .box .left .leftbox .cn2 {
  color: #Fff;
  line-height: 1.55555556em;
}
.public-windows .box .left .left-d-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  padding: 0 0.42rem 0.54rem;
}
.public-windows .box .left .left-d-box dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.1rem;
  margin-top: 0.4rem;
}
.public-windows .box .left .left-d-box dl dt {
  width: 0.45rem;
  height: 0.45rem;
  background-color: rgba(225, 225, 225, 0.2);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.public-windows .box .left .left-d-box dl dt img {
  max-width: 40%;
  max-height: 40%;
}
.public-windows .box .left .left-d-box dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.public-windows .box .left .left-d-box dl dd .title {
  opacity: 0.5;
}
.public-windows .box .right {
  width: 64.84375%;
  padding: 0.5rem 0.74rem 0.49rem 0.8rem;
}
@media (max-width: 767px) {
  .public-windows .box .right {
    width: 100%;
    padding: 0.6rem 0.4rem;
  }
}
.public-windows .box .contact1 .cont-npm1 {
  padding: 0;
}
.public-windows .box .contact1 .cont-npm1 .fr {
  width: 100%;
  max-width: 100%;
  float: none;
}
.public-windows .box .contact1 .cont-npm1 .fr .inp {
  margin-bottom: 0.24rem;
}
.public-windows .box .contact1 .cont-npm1 .fr .inp textarea {
  height: 0.6rem;
}
.public-windows .box .contact1 .cont-npm1 .text-body {
  line-height: 1.33333333em;
  color: #999999;
}
.public-windows .box .contact1 .cont-npm1 .text-body a {
  color: #666666;
}
.public-windows .box .contact1 .cont-npm1 .title-main {
  margin-bottom: 0.4rem;
}
.public-windows .box .contact1 .cont-npm1 .title-main .subtitle {
  color: #666666;
  line-height: 1.5em;
}
.public-windows .box .contact1 .cont-npm1 .submit {
  margin-top: 0.4rem;
}
.public-windows2 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.public-windows2 .box {
  background: url(../images/public-windows2-bg.jpg) no-repeat center #Fff;
  background-size: cover;
  width: 90%;
  max-width: 460px;
  min-height: 3.04rem;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0.3rem 0.44rem 0.22rem 0.4rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.public-windows2 .box .c-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.3rem;
  min-width: 26px;
  z-index: 2;
  cursor: pointer;
}
.public-windows2 .box .page-up {
  color: #fff;
}
.public-windows2 .box .page-up .wrap-box {
  position: relative;
  margin-top: 0.1rem;
}
.public-windows2 .box .page-up .wrap-box .wrap-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 50.79365079%;
}
.public-windows2 .box .page-up .wrap-box .wrap-left .subtitle {
  line-height: initial;
  padding-top: 0.1rem;
}
.public-windows2 .box .page-up .wrap-box .wrap-right {
  text-align: right;
}
.public-windows2 .box .page-up .wrap-box .wrap-right img {
  width: 64.89361702%;
}
.public-windows2 .box .page-down {
  margin-top: -0.35rem;
}
.public-windows2 .box .page-down .public-btn3 .public-btn0 {
  min-width: 1.2rem;
  line-height: 0.4rem;
  background-color: #0a01b1;
  border-radius: 99px;
}
.public-windows2 .box .page-down .text-body {
  color: #666666;
  line-height: initial;
  margin-top: 0.18rem;
}
.public-windows2 .box .page-down .text-body span {
  color: #0a01b1;
}
.public-windows3 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.public-windows3 .box {
  width: 90%;
  max-width: 1080px;
  min-height: 0.97rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.public-windows3 .box .c-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.3rem;
  min-width: 26px;
  z-index: 2;
  cursor: pointer;
}
.public-windows3 .box .index-book {
  padding: 0 0.56rem 0 2.36rem;
  min-height: 0.97rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .public-windows3 .box .index-book {
    padding: 0.2rem 0.4rem 0.2rem 2rem;
  }
}
.public-windows3 .box .index-book .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.public-windows3 .box .index-book .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public-windows3 .box .index-book .cn1 {
  position: absolute;
  left: 0.2rem;
  bottom: 0.2rem;
}
.public-windows3 .box .index-book .cn1 img {
  height: 1.15rem;
}
.public-windows3 .box .index-book .box2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  grid-gap: 0.6rem;
  position: relative;
}
.public-windows3 .box .index-book .box2 .cn3 {
  color: #fff;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .public-windows3 .box .index-book .box2 {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    grid-gap: 0.2rem;
  }
  .public-windows3 .box .index-book .box2 .cn3 span {
    font-size: var(--font18);
  }
}
.public-windows3 .box .index-book .public-btn2 .public-btn0 {
  min-width: 1.4rem;
  line-height: 0.44rem;
  border-radius: 0.99rem;
}
.public-windows4 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.public-windows4 .box {
  background: url(../images/public-windows4-bg.jpg) no-repeat center #Fff;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  min-height: 0.6rem;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.public-windows4 .box .c-close {
  position: absolute;
  right: 0.3rem;
  top: 50%;
  width: 0.29rem;
  height: 0.29rem;
  min-width: 20px;
  min-height: 20px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.public-windows4 .box .c-close img {
  width: 0.09rem;
  width: 9px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.public-windows4 .box .page-up {
  padding: 0 1rem;
  min-height: 0.6rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.42rem;
}
@media (max-width: 767px) {
  .public-windows4 .box .page-up {
    padding: 0.2rem 0.8rem;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    grid-gap: 0.2rem;
  }
}
.public-windows4 .box .page-up .title {
  max-width: 8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.public-windows4 .box .page-up .btn {
  color: #fff;
}
.about-npm1 {
  background: url(../images/about/bg1.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 1.2rem 0 1.3rem;
}
@media (max-width:1024px) {
  .about-npm1 .box .fl {
    float: none;
  }
}
.about-npm1 .box .fr {
  width: 60%;
}
@media (max-width:1024px) {
  .about-npm1 .box .fr {
    float: none;
    width: 100%;
    margin-top: 0.6rem;
  }
}
.about-npm1 .box .fr .textli {
  padding-bottom: 0.6rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid #dddddd;
}
.about-npm1 .box .fr .textli .p {
  color: #555555;
  line-height: 2;
  margin-top: 0.2rem;
}
.about-npm1 .box .fr .listarr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 25px;
}
@media (max-width:1024px) {
  .about-npm1 .box .fr .listarr {
    grid-gap: 0.2rem;
  }
}
.about-npm1 .box .fr .listarr .list {
  box-shadow: 0 0 0.29rem 0 rgba(185, 200, 213, 0.51);
}
.about-npm1 .box .fr .listarr .list:hover .txt {
  background: #0a01b1;
  color: #fff;
}
.about-npm1 .box .fr .listarr .list:hover .ol {
  transform: scale(1.1);
}
.about-npm1 .box .fr .listarr .list .img {
  position: relative;
  overflow: hidden;
}
.about-npm1 .box .fr .listarr .list .img .i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about-npm1 .box .fr .listarr .list .img .ol {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.about-npm1 .box .fr .listarr .txt {
  background: #fff;
  padding: 0.35rem 0;
  text-align: center;
  letter-spacing: 0.05rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .about-npm1 .box .fr .listarr .txt {
    letter-spacing: 0;
  }
}
.about-npm2 {
  background: #f3f5fa;
  padding-bottom: 1.75rem;
}
.about-npm2 .above {
  background: url(../images/about/bg2.jpg) no-repeat;
  background-position: center !important;
  background-size: cover !important;
  padding: 1rem 0 2.3rem;
}
.about-npm2 .above .pagetit {
  text-align: center;
  color: #fff;
}
.about-npm2 .above .ul {
  display: -webkit-box;
  margin: 0.7rem 0 0 0.4rem;
  padding-left: 0.4rem;
  overflow-x: scroll;
  overflow-y: hidden;
}
@media (max-width: 767px) {
  .about-npm2 .above .ul {
    margin-left: 0;
  }
}
.about-npm2 .above .ul::-webkit-scrollbar {
  display: none;
}
.about-npm2 .above .ul .li {
  margin-right: 1.88rem;
  cursor: pointer;
  position: relative;
  width: 0.3rem;
}
.about-npm2 .above .ul .li:last-child .i::before {
  display: none;
}
.about-npm2 .above .ul .li span {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.2rem;
  display: block;
  text-align: center;
  line-height: 1;
  font-family: "sansmedium";
  margin-left: -39%;
}
.about-npm2 .above .ul .li .i {
  position: relative;
  width: 0.3rem;
  height: 0.3rem;
  border: 1px solid rgba(255, 255, 225, 0.4);
  border-radius: 50%;
  margin: auto;
  transition: all 0.4s;
}
.about-npm2 .above .ul .li .i::after {
  content: '';
  width: 0.19rem;
  height: 0.19rem;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: #0a01b1;
  transition: all 0.4s;
  opacity: 0;
}
.about-npm2 .above .ul .li .i::before {
  content: '';
  width: 1.88rem;
  height: 1px;
  background: rgba(225, 225, 225, 0.4);
  position: absolute;
  left: 0.3rem;
  bottom: calc(0.15rem - 1px);
}
.about-npm2 .above .ul .li.on span {
  color: #fff;
}
.about-npm2 .above .ul .li.on .i {
  background: #fff;
  border: 1px solid #fff;
}
.about-npm2 .above .ul .li.on .i::after {
  opacity: 1;
}
.about-npm2 .below {
  margin-top: -1.2rem;
  width: 27.44%;
}
@media (max-width: 1260px) {
  .about-npm2 .below {
    width: 36%;
  }
}
@media (max-width: 767px) {
  .about-npm2 .below {
    width: 86%;
  }
}
.about-npm2 .below .swiper {
  overflow: visible;
}
.about-npm2 .below .swiper-slide {
  background: #fff;
  width: 400px;
  height: auto;
}
.about-npm2 .below .list {
  padding: 0.2rem 0.4rem;
  max-height: 7rem;
  overflow: auto;
}
.about-npm2 .below .list .time {
  position: relative;
  color: #000;
  line-height: 1;
  padding: 0.35rem 0;
  border-bottom: 1px solid #e9e9e9;
}
.about-npm2 .below .list .time em {
  position: relative;
  padding: 0 0.25rem;
  font-style: normal;
  line-height: 1;
  display: block;
  font-family: "sansmedium";
}
.about-npm2 .below .list .time em::after {
  content: '';
  width: 0.06rem;
  height: 0.28rem;
  background: #0a01b1;
  position: absolute;
  left: 0;
  top: 0.05rem;
}
.about-npm2 .below .list .ul {
  margin-top: 0.3rem;
}
.about-npm2 .below .list .ul .li {
  overflow: hidden;
  color: #666666;
  line-height: 1.875em;
  display: flex;
  margin-bottom: 0.2rem;
}
.about-npm2 .below .list .ul .li .fl {
  width: 13%;
  float: none;
}
.about-npm2 .below .list .ul .li .fr {
  width: 87%;
  float: none;
}
.about-npm3 {
  background: #f3f5fa;
}
.about-npm3 .box {
  height: 8rem;
  margin-top: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media (max-width:1024px) {
  .about-npm3 .box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: auto;
  }
}
.about-npm3 .container {
  position: relative;
}
.about-npm3 .container .pagetit {
  text-align: center;
}
.about-npm3 .fl {
  margin-left: -10vw;
  width: 76.09375vw;
  background-image: url(../images/about/bg3.jpg);
  background-position: center !important;
  background-size: cover !important;
}
@media (max-width:1024px) {
  .about-npm3 .fl {
    margin-left: 0;
    width: 100%;
    float: none;
    height: 6rem;
    position: relative;
    background-position: center top;
  }
}
.about-npm3 .fl .listarr {
  background: rgba(225, 225, 225, 0.9);
  height: 1.62rem;
  position: absolute;
  bottom: 0.75rem;
  width: calc(100% - 33.90625vw);
  left: -0.2rem;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
@media (max-width:1024px) {
  .about-npm3 .fl .listarr {
    bottom: 0;
    left: 0;
  }
}
@media (max-width: 767px) {
  .about-npm3 .fl .listarr {
    width: 100%;
    padding: 0.5rem 0.4rem;
  }
}
.about-npm3 .fl .listarr .cn {
  line-height: 1;
  color: #666666;
  text-align: center;
}
.about-npm3 .fl .listarr .en {
  margin-top: 0.05rem;
  color: #666666;
}
.about-npm3 .fl .listarr .list {
  cursor: pointer;
}
.about-npm3 .fl .listarr .list.active .cn,
.about-npm3 .fl .listarr .list.active .en {
  color: #0a01b1;
}
.about-npm3 .fl .inner-bor {
  position: absolute;
  height: 0.08rem;
  background: #0a01b1;
  top: 0;
}
.about-npm3 .fr {
  width: 43.90625vw;
  margin-right: -10vw;
  padding: 0 10vw 0 1.1rem;
  background-image: url(../images/about/bg4.jpg);
  background-position: center;
  background-size: cover;
}
@media (max-width: 1260px) {
  .about-npm3 .fr {
    margin-right: -0.8rem;
    padding: 0.8rem;
  }
}
@media (max-width:1024px) {
  .about-npm3 .fr {
    padding: 0.6rem 0.4rem;
    margin-right: 0;
    width: 100%;
    float: none;
  }
}
.about-npm3 .fr .item {
  display: none;
  height: 100%;
}
.about-npm3 .fr .item:nth-child(1) {
  display: block;
}
.about-npm3 .fr .item h5 {
  position: relative;
  text-align: center;
  color: #fff;
}
.about-npm3 .fr .item h5::after {
  content: '';
  width: 0.4rem;
  height: 0.03rem;
  background: #0096ff;
  display: block;
  margin: 0.1rem auto;
}
.about-npm3 .fr .item h6 {
  text-align: center;
  color: #fff;
  margin: 0.3rem 0 0.35rem;
}
.about-npm3 .fr .item p {
  font-family: "sanslight";
  color: rgba(225, 225, 225, 0.5);
  text-align: center;
}
.about-npm3 .fr .item .txt {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.about-npm4 {
  padding-top: 1.3rem;
}
.about-npm4 .pagetit {
  text-align: center;
}
.about-npm4 .box {
  background: url(../images//about/bgpng1.png) no-repeat;
  background-size: 100% 92%;
  background-position: left bottom;
  margin-top: 0.5rem;
}
@media (max-width:1024px) {
  .about-npm4 .box {
    background: none #f3f5fa;
  }
}
.about-npm4 .fl {
  padding-top: 1.85rem;
  width: 35.34%;
}
@media (max-width:1024px) {
  .about-npm4 .fl {
    width: 100%;
    float: none;
    padding-top: 1rem;
  }
}
.about-npm4 .fl .txt {
  position: relative;
  background: url(../images/about/ico2.png) no-repeat;
  background-size: 1.82rem;
  background-position: top left;
  padding-top: 1rem;
  display: table;
}
.about-npm4 .fl .p {
  margin-top: 0.4rem;
  color: #666666;
  font-family: "sanslight";
}
.about-npm4 .fl .p p {
  margin-bottom: 0.25rem;
}
.about-npm4 .fr {
  width: 58%;
  margin-right: -0.5rem;
}
@media (max-width:1024px) {
  .about-npm4 .fr {
    width: 100%;
    max-width: 520px;
    margin: auto;
    margin-top: 0.6rem;
    float: none;
    text-align: center;
  }
  .about-npm4 .fr img {
    vertical-align: middle;
  }
}
.about-npm5 {
  padding-top: 1.95rem;
}
.about-npm5 .fl {
  width: 37.66%;
}
@media (max-width: 1260px) {
  .about-npm5 .fl {
    width: 44%;
  }
}
@media (max-width:1024px) {
  .about-npm5 .fl {
    width: 100%;
    float: none;
  }
}
.about-npm5 .fl .tabul {
  display: flex;
  position: relative;
  margin-top: 0.65rem;
  padding-bottom: 0.15rem;
}
.about-npm5 .fl .tabul .inner-bor {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.04rem;
  background: #0a01b1;
}
.about-npm5 .fl .tabul .tabli {
  margin-right: 0.85rem;
  color: #666666;
  cursor: pointer;
}
.about-npm5 .fl .tabul .tabli:last-child {
  margin-right: 0;
}
.about-npm5 .fl .tabul .tabli.active {
  color: #222222;
}
.about-npm5 .fl .below .item {
  display: none;
}
.about-npm5 .fl .below .item:nth-child(1) {
  display: block;
}
.about-npm5 .fl .below .item .txt {
  padding: 0.35rem 0 0.5rem;
  border-bottom: 1px solid #eaeaeb;
  color: #666666;
  font-family: "sanslight";
  line-height: 1.6;
}
.about-npm5 .fl .below .item .cust {
  margin-top: 0.35rem;
  font-family: "sanslight";
}
.about-npm5 .fl .below .item .cust .cleara {
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:1024px) {
  .about-npm5 .fl .below .item .cust .cleara {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    grid-gap: 0.4rem;
  }
}
.about-npm5 .fl .below .item .cust .cleara:first-child .list img {
  max-height: 0.26rem;
  min-height: 18px;
}
.about-npm5 .fl .below .item .cust .cleara:last-child .list img {
  max-height: 0.39rem;
  min-height: 28px;
}
.about-npm5 .fl .below .item .cust .dd {
  min-width: 1rem;
  color: #666;
  padding-top: 0.1rem;
}
.about-npm5 .fl .below .item .cust .dt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.3rem;
  text-align: center;
}
@media (max-width:1024px) {
  .about-npm5 .fl .below .item .cust .dt {
    grid-gap: 0.4rem;
  }
}
.about-npm5 .fl .below .item .cust .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.about-npm5 .fl .below .item .cust .list span {
  margin-left: 0.07rem;
}
.about-npm5 .fr {
  width: 55.58%;
  position: relative;
}
@media (max-width: 1260px) {
  .about-npm5 .fr {
    width: 50%;
  }
}
@media (max-width:1024px) {
  .about-npm5 .fr {
    width: 100%;
    max-width: 850px;
    float: none;
  }
}
.about-npm5 .fr .map .li {
  width: 0.57rem;
  height: 0.64rem;
  background: url(../images/about/map1.png) no-repeat;
  background-size: 100% !important;
  position: absolute;
  transition: all 0.4s;
}
.about-npm5 .fr .map .li.on {
  background: url(../images/about/map1on.png) no-repeat;
  background-size: 100%;
}
.about-npm5 .fr .map .li.shagnhai {
  right: 22%;
  top: 41%;
}
.about-npm5 .fr .map .li.beijing {
  right: 28.5%;
  top: 26%;
}
.about-npm5 .fr .map .li.hangzhou {
  right: 28%;
  top: 40%;
}
.about-npm5 .fr .map .li.shenzhen {
  right: 35%;
  top: 57.8%;
}
.about-npm6 {
  background: #f3f5fa;
  padding-top: 1.25rem;
}
.about-npm6 .pagetit {
  text-align: center;
}
.about-npm6 .above {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 0 1rem;
  margin-top: 1.15rem;
}
@media (max-width:1024px) {
  .about-npm6 .above {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .about-npm6 .above {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    grid-gap: 0.4rem;
  }
}
.about-npm6 .above .item {
  max-width: 33%;
}
@media (max-width: 767px) {
  .about-npm6 .above .item {
    max-width: initial;
    margin: auto;
  }
}
.about-npm6 .above .item .txt {
  position: relative;
  text-align: center;
  padding: 0.1rem 0.65rem;
  color: #0a01b1;
  font-family: "sansmedium";
  font-weight: bold;
  margin: 0 auto 0.35rem;
}
.about-npm6 .above .item .txt::after,
.about-npm6 .above .item .txt::before {
  content: '';
  background: url(../images/about/ico5.png) no-repeat;
  position: absolute;
  left: 0;
  width: 0.31rem;
  height: 0.56rem;
  background-size: 100%;
}
.about-npm6 .above .item .txt::before {
  background: url(../images/about/ico6.png) no-repeat;
  background-size: 100%;
  right: 0;
  left: auto;
}
.about-npm6 .above .item p {
  text-align: center;
  color: #666;
  font-family: "sanslight";
}
.about-npm6 .below {
  margin-top: 0.95rem;
}
.about-npm6 .below li {
  overflow: hidden;
  padding-left: 0.1rem;
  position: relative;
}
.about-npm6 .below li::after {
  content: '';
  width: 0.03rem;
  height: calc(100% - 0.3rem);
  position: absolute;
  left: 0.15rem;
  top: 0.3rem;
  background: #c3d9fc;
}
@media (max-width:1024px) {
  .about-npm6 .below li::after {
    display: none;
  }
}
.about-npm6 .below li:last-child::after {
  height: calc(100% - 0.6rem);
}
.about-npm6 .below li .fl {
  color: #0a01b1;
  position: relative;
  padding-left: 0.23rem;
}
.about-npm6 .below li .fl::after {
  content: '';
  border-radius: 50%;
  width: 0.12rem;
  height: 0.12rem;
  background: #0a01b1;
  left: 0;
  position: absolute;
  top: 0.08rem;
}
@media (max-width:1024px) {
  .about-npm6 .below li .fl {
    display: none;
  }
}
.about-npm6 .below li .fr {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.4rem;
  margin-bottom: 0.4rem;
}
@media (max-width:1024px) {
  .about-npm6 .below li .fr {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .about-npm6 .below li .fr {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-npm6 .below li .fr .dd {
  min-height: 1.7rem;
  position: relative;
  background: #f6f9ff url(../images/about/ico7.png) no-repeat right 0.2rem center;
  background-size: contain;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0.2rem 1.6rem 0.2rem 0.4rem;
}
@media (max-width: 767px) {
  .about-npm6 .below li .fr .dd {
    padding: 0.2rem 0.4rem;
    background: #f6f9ff url(../images/about/ico7.png) no-repeat right bottom;
    background-size: 30%;
  }
}
.about1-contact {
  background: #f3f5fa;
  padding-top: 0.85rem;
}
.join1 .join-npm1 {
  padding-top: 1.25rem;
}
.join1 .join-npm1 p {
  color: #666666;
  font-family: "sanslight";
}
.join1 .join-npm1 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 1.6rem;
}
@media (max-width:1024px) {
  .join1 .join-npm1 .item {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
}
.join1 .join-npm1 .item:nth-child(1) .fr .txt em {
  left: -0.6rem;
}
@media (max-width:1024px) {
  .join1 .join-npm1 .item:nth-child(1) .fr .txt em {
    left: 0;
  }
}
.join1 .join-npm1 .item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media (max-width:1024px) {
  .join1 .join-npm1 .item:nth-child(2n) {
    flex-direction: column;
  }
}
.join1 .join-npm1 .item:nth-child(2n) .fl {
  float: right;
}
@media (max-width:1024px) {
  .join1 .join-npm1 .item:nth-child(2n) .fl {
    float: none;
  }
}
.join1 .join-npm1 .item:nth-child(2n) .fr {
  float: left;
}
@media (max-width:1024px) {
  .join1 .join-npm1 .item:nth-child(2n) .fr {
    float: none;
  }
}
.join1 .join-npm1 .item .fl {
  width: 56.15%;
  max-width: 876px;
}
.join1 .join-npm1 .item .fl::before {
  padding-top: 71.68949772%;
}
@media (max-width:1024px) {
  .join1 .join-npm1 .item .fl {
    width: 100%;
    float: none;
  }
}
.join1 .join-npm1 .item .fr {
  width: 39.3%;
  max-width: 628px;
}
@media (max-width:1024px) {
  .join1 .join-npm1 .item .fr {
    width: 100%;
    max-width: 100%;
    float: none;
    margin-top: 0.6rem;
  }
}
.join1 .join-npm1 .item .fr .txt {
  position: relative;
  display: flex;
  align-items: flex-end;
}
.join1 .join-npm1 .item .fr .txt em {
  color: #666666;
  opacity: 0.08;
  position: absolute;
  left: 0;
  font-size: 2rem;
  bottom: 0;
  font-style: normal;
  font-family: "sansmedium";
  line-height: 1;
}
@media (max-width:1024px) {
  .join1 .join-npm1 .item .fr .txt em {
    font-size: 0.8rem;
    opacity: 0.4;
  }
}
.join1 .join-npm1 .item .fr .txt .cn {
  display: inline-block;
  position: relative;
  z-index: 3;
  background: url(../images/join/ico1.png) no-repeat;
  background-position: left bottom;
  padding-left: 0.15rem;
  background-size: 100%;
  line-height: 1.4;
}
@media (max-width:1024px) {
  .join1 .join-npm1 .item .fr .txt .cn {
    padding-left: 0.5rem;
  }
}
.join1 .join-npm1 .item .fr .txt .en {
  display: inline-block;
  opacity: 0.2;
  color: #666666;
  text-transform: uppercase;
  margin-left: 0.2rem;
  line-height: 1;
}
.join1 .join-npm1 .item .fr .p {
  margin-top: 0.6rem;
  color: #666666;
}
@media (max-width:1024px) {
  .join1 .join-npm1 .item .fr .p {
    margin-top: 0.4rem;
  }
}
.join1 .join-npm1 .item .fr .p p {
  line-height: 1.5;
}
.join1 .join-npm2 {
  margin-top: 0.35rem;
  padding-top: 1rem;
  background: #f5f7f9;
}
.join1 .join-npm2 p {
  color: #666666;
  font-family: "sanslight";
}
.join1 .join-npm2 .pagetit {
  text-align: center;
  margin-bottom: 0.3rem;
}
.join1 .join-npm2 .container p {
  text-align: center;
}
.join1 .join-npm2 .box {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width:1024px) {
  .join1 .join-npm2 .box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .join1 .join-npm2 .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.join1 .join-npm2 .box .item {
  position: relative;
}
.join1 .join-npm2 .box .item:nth-child(1) {
  grid-column: span 2;
}
@media (max-width:480px) {
  .join1 .join-npm2 .box .item:nth-child(1) {
    grid-column: span 1;
  }
}
.join1 .join-npm2 .box .item:nth-child(1) .public-img {
  height: 100%;
}
.join1 .join-npm2 .box .item:nth-child(1) .public-img::before {
  padding: 0;
}
@media (max-width:1024px) {
  .join1 .join-npm2 .box .item:nth-child(1) .public-img::before {
    padding-top: 50.78125%;
  }
}
.join1 .join-npm2 .box .item:hover::after {
  opacity: 1;
  background: #0a01b1;
}
.join1 .join-npm2 .box .item:hover .txt p {
  opacity: 1;
}
.join1 .join-npm2 .box .item::after {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: #1e3b6f;
  opacity: 0.35;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.join1 .join-npm2 .box .item .public-img::before {
  padding-top: 50.78125%;
}
.join1 .join-npm2 .box .item .txt {
  position: absolute;
  z-index: 3;
  top: 0.45rem;
  left: 0.45rem;
  width: calc(100% - 0.9rem);
}
.join1 .join-npm2 .box .item .txt h5 {
  color: #fff;
  margin-bottom: 0.25rem;
}
.join1 .join-npm2 .box .item .txt p {
  opacity: 0;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 767px) {
  .join1 .join-npm2 .box .item::after {
    opacity: 0.4;
    background: #000;
  }
  .join1 .join-npm2 .box .item .txt p {
    opacity: 1;
  }
}
.join1 .join-npm3 {
  padding-top: 1.4rem;
}
.join1 .join-npm3 p {
  color: #666666;
  font-family: "sanslight";
}
.join1 .join-npm3 .pagetit {
  text-align: center;
  position: relative;
  display: table;
  margin: auto;
}
.join1 .join-npm3 .pagetit::after {
  content: '';
  width: 0.33rem;
  height: 0.28rem;
  background: url(../images/join/ico2.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  margin: auto;
  left: -0.55rem;
  bottom: 0;
}
.join1 .join-npm3 .mySwiper {
  margin-top: 0.5rem;
  padding: 0.5rem 0 0.55rem;
}
@media (max-width:480px) {
  .join1 .join-npm3 .mySwiper {
    overflow: visible;
  }
}
.join1 .join-npm3 .mySwiper .swiper-button-prev,
.join1 .join-npm3 .mySwiper .swiper-button-next {
  background-image: none;
  margin: 0;
  top: 58%;
}
.join1 .join-npm3 .mySwiper .swiper-button-prev img,
.join1 .join-npm3 .mySwiper .swiper-button-next img,
.join1 .join-npm3 .mySwiper .swiper-button-prev svg,
.join1 .join-npm3 .mySwiper .swiper-button-next svg {
  width: 0.15rem;
  height: auto;
}
.join1 .join-npm3 .mySwiper .swiper-slide {
  font-family: "sanslight";
  color: #161823;
  border: 1px solid #e6e9ec;
  padding: 0.65rem;
  transition: all 0.4s;
}
.join1 .join-npm3 .mySwiper .swiper-slide::after {
  content: '';
  background: url(../images/join/ico3.png) no-repeat;
  background-size: 100%;
  position: absolute;
  right: 0.6rem;
  top: 0.55rem;
  width: 1.04rem;
  height: 0.86rem;
}
.join1 .join-npm3 .mySwiper .swiper-slide:hover {
  border: 1px solid #fff;
  box-shadow: 0 0 32px 0 rgba(170, 175, 190, 0.19);
}
.join1 .join-npm3 .mySwiper .swiper-pagination {
  opacity: 1;
  right: auto;
}
.join1 .join-npm3 .mySwiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #666666;
}
.join1 .join-npm3 .mySwiper .above {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.join1 .join-npm3 .mySwiper .above .img-main {
  width: 0.66rem;
}
.join1 .join-npm3 .mySwiper .above .public-img {
  background-color: #fff;
  border: 2px solid #0a01b1;
  border-radius: 50%;
}
.join1 .join-npm3 .mySwiper .above .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  margin-left: 0.35rem;
}
.join1 .join-npm3 .mySwiper .above .txt .en {
  position: relative;
  margin: 0.05rem 0 0.1rem 0;
}
.join1 .join-npm3 .mySwiper .above .txt .en::after {
  content: '';
  background: url(../images/join/ico4.png) no-repeat;
  width: 0.06rem;
  height: 0.07rem;
  background-size: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.13rem;
  margin: auto;
}
.join1 .join-npm3 .mySwiper .below {
  margin-top: 0.5rem;
}
.join1 .join-npm3 .mySwiper .below p {
  line-height: 1.5;
}
.join1 .join-npm4 {
  margin: 1.15rem 0 0.6rem;
}
.join1 .join-npm4 .public-img::before {
  padding-top: 31.25%;
}
@media (max-width: 767px) {
  .join1 .join-npm4 .public-img::before {
    padding-top: 70%;
  }
}
.join1 .join-npm4 p {
  color: #666666;
  font-family: "sanslight";
}
.join1 .join-npm4 .container {
  position: relative;
}
.join1 .join-npm4 .box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  padding-top: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.join1 .join-npm4 .box .txt {
  font-family: "sanslight";
}
.join1 .join-npm4 .box .txt h5 {
  text-align: center;
  color: #fff;
  margin-bottom: 0.25rem;
}
.join1 .join-npm4 .box .txt .en {
  position: relative;
  color: #fff;
  opacity: 0.5;
  letter-spacing: 0.25rem;
  display: table;
  margin: auto;
  padding: 0 0.8rem;
}
.join1 .join-npm4 .box .txt .en::after,
.join1 .join-npm4 .box .txt .en::before {
  content: '';
  width: 0.63rem;
  height: 0.05rem;
  background: url(../images/join/ico5.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}
.join1 .join-npm4 .box .txt .en::before {
  left: auto;
  right: 0;
  transform: rotate(-180deg);
}
.join1 .join-npm4 .box .txt a {
  background: #0a01b1;
  text-align: center;
  padding: 0.2rem 0.6rem;
  line-height: 1;
  transition: all 0.4s;
  color: #fff;
  margin: 0.45rem auto 0;
  display: table;
}
.join1 .join-npm4 .box .txt a:hover {
  opacity: 0.8;
}
.join1 .index-contact {
  background: #fff;
}
.contact1 .cont-npm1 {
  padding: 1.4rem 0 1.2rem;
}
.contact1 .cont-npm1 .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:1024px) {
  .contact1 .cont-npm1 .box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    grid-gap: 0.6rem;
  }
}
@media (max-width:1024px) {
  .contact1 .cont-npm1 .fl {
    width: 100%;
    max-width: 100%;
    float: none;
  }
}
.contact1 .cont-npm1 .fl h5 {
  padding-bottom: 0.4rem;
  margin-bottom: 0.45rem;
  border-bottom: 1px solid #dddddd;
}
.contact1 .cont-npm1 .fl h6 {
  line-height: 1.5;
}
.contact1 .cont-npm1 .fl .telephone {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.contact1 .cont-npm1 .fl .telephone .i {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.53rem;
  height: 0.53rem;
  background: #0a01b1;
}
.contact1 .cont-npm1 .fl .telephone .txt {
  font-family: "sanslight";
  margin-left: 0.1rem;
}
.contact1 .cont-npm1 .fl .telephone .txt span {
  color: #666666;
}
.contact1 .cont-npm1 .fl .telephone .txt p {
  color: #000000;
  line-height: 1;
  font-family: "sansmedium";
  letter-spacing: -1px;
}
.contact1 .cont-npm1 .fr {
  width: 50%;
  max-width: 800px;
}
@media (max-width:1024px) {
  .contact1 .cont-npm1 .fr {
    width: 100%;
    float: none;
  }
}
.contact1 .cont-npm1 .fr .submit {
  background: #0a01b1;
  text-align: center;
  padding: 0.2rem 0.6rem;
  line-height: 1;
  transition: all 0.4s;
  color: #fff;
  margin-top: 0.55rem;
  display: table;
  cursor: pointer;
}
.contact1 .cont-npm1 .fr .submit:hover {
  opacity: 0.8;
}
.contact1 .cont-npm1 .fr .c_down {
  position: relative;
  cursor: pointer;
}
.contact1 .cont-npm1 .fr .c_down span {
  color: #666;
  font-size: clamp(14px, 0.16rem, 16px);
  font-family: "sanslight";
  width: 100%;
  display: block;
  position: relative;
}
.contact1 .cont-npm1 .fr .c_down span::after {
  content: '';
  width: 0.12rem;
  height: 0.08rem;
  background: url(../images/contact/dow.png) no-repeat;
  background-size: 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.contact1 .cont-npm1 .fr .c_down ul {
  position: absolute;
  width: 100%;
  top: calc(100% + 0.2rem);
  max-height: 2.5rem;
  overflow-y: auto;
  background-color: #fff;
  display: none;
  box-shadow: 0 0 32px 0 rgba(170, 175, 190, 0.19);
}
.contact1 .cont-npm1 .fr .c_down ul li {
  padding: 0 0.24rem;
  color: #666;
  font-family: "sanslight";
  font-size: var(--font16);
  line-height: 0.56rem;
}
.contact1 .cont-npm1 .fr .c_down ul li:hover {
  color: #222222;
  background-color: #f8f8f8;
}
.contact1 .cont-npm1 .fr .formflex {
  display: flex;
  justify-content: space-between;
}
.contact1 .cont-npm1 .fr .formflex .inp {
  width: 48%;
}
.contact1 .cont-npm1 .fr .inp {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 0.2rem;
  margin-bottom: 0.3rem;
}
.contact1 .cont-npm1 .fr .inp:hover,
.contact1 .cont-npm1 .fr .inp.hasValue,
.contact1 .cont-npm1 .fr .inp:focus {
  outline: none;
  border-color: var(--color-active);
}
.contact1 .cont-npm1 .fr .inp textarea {
  width: 100%;
  height: 1.15rem;
  padding-top: 0.2rem;
}
.contact1 .cont-npm1 .fr .inp textarea::placeholder {
  color: #666;
  font-size: clamp(14px, 0.16rem, 16px);
  font-family: "sanslight";
}
.contact1 .cont-npm1 .fr .inp input {
  width: 100%;
  color: #6666;
  font-family: "sanslight";
}
.contact1 .cont-npm1 .fr .inp input::placeholder {
  color: #666;
  font-size: clamp(14px, 0.16rem, 16px);
  font-family: "sanslight";
}
.contact1 .cont-npm1 .fr .inp .h5 {
  margin-bottom: 0.15rem;
}
.contact1 .cont-npm1 .fr .inp .h5 span {
  color: #0a01b1;
}
.contact1 .about-npm2 {
  background: #f3f5fa;
  padding-bottom: 1.3rem;
}
.contact1 .about-npm2 .above {
  background: url(../images/contact/bg1.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 1.6rem 0 2.7rem;
}
.contact1 .about-npm2 .above .pagetit {
  text-align: center;
  color: #fff;
}
.contact1 .about-npm2 .above .container {
  position: relative;
}
.contact1 .about-npm2 .above .sildprv {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contact1 .about-npm2 .above .sildprv {
    display: none;
  }
}
.contact1 .about-npm2 .above .sildprv .swiper-button-next,
.contact1 .about-npm2 .above .sildprv .swiper-button-prev {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  margin: auto;
  bottom: auto;
  border-radius: 50%;
  border: 1px solid rgba(225, 225, 225, 0.2);
  width: 0.48rem;
  height: 0.48rem;
  transition: all 0.4s;
}
.contact1 .about-npm2 .above .sildprv .swiper-button-next {
  background: url(../images/contact/next.png) no-repeat;
  background-position: center;
  background-size: 0.09rem;
}
.contact1 .about-npm2 .above .sildprv .swiper-button-next:hover {
  background: #fff url(../images/contact/nexton.png) no-repeat;
  background-position: center;
  background-size: 0.09rem;
}
.contact1 .about-npm2 .above .sildprv .swiper-button-prev {
  background: url(../images/contact/prev.png) no-repeat;
  background-position: center;
  background-size: 0.09rem;
  margin-right: 0.25rem;
}
.contact1 .about-npm2 .above .sildprv .swiper-button-prev:hover {
  background: #fff url(../images/contact/prevon.png) no-repeat;
  background-position: center;
  background-size: 0.09rem;
}
.contact1 .about-npm2 .below {
  margin-top: -1.2rem;
  width: 100%;
  max-width: 1600px;
}
.contact1 .about-npm2 .below .swiper {
  overflow: initial;
}
.contact1 .about-npm2 .below .swiper-slide {
  background: #fff;
  width: 4.4rem;
  height: auto;
}
@media (max-width: 767px) {
  .contact1 .about-npm2 .below .swiper-slide {
    width: 86%;
  }
}
.contact1 .about-npm2 .below .list {
  padding: 0.2rem 0.4rem 0.4rem;
}
.contact1 .about-npm2 .below .list .time {
  position: relative;
  color: #000;
  line-height: 1;
  padding: 0.35rem 0;
  border-bottom: 1px solid #e9e9e9;
}
.contact1 .about-npm2 .below .list .time em {
  position: relative;
  padding: 0 0.25rem;
  font-style: normal;
  line-height: 1;
  display: block;
  font-family: "sansmedium";
}
.contact1 .about-npm2 .below .list .time em::after {
  content: '';
  width: 0.06rem;
  height: 0.28rem;
  background: #0a01b1;
  position: absolute;
  left: 0;
  top: 0.05rem;
}
.contact1 .about-npm2 .below .list .ul {
  margin-top: 1.1rem;
}
.contact1 .about-npm2 .below .list .ul .li {
  overflow: hidden;
  color: #666666;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.contact1 .about-npm2 .below .list .ul .li .fl {
  width: 100%;
  float: none;
  color: #000000;
}
.contact1 .about-npm2 .below .list .ul .li .fr {
  width: 100%;
  float: none;
  margin-top: 0.3rem;
}
.contact1 .about-npm2 .below .list .ul .li .fr p {
  line-height: 1.5;
  font-family: "sanslight";
}
.contact1 .cont-npm2 {
  padding: 1.35rem 0 0.4rem;
}
.contact1 .cont-npm2 .pagetit {
  text-align: center;
}
.contact1 .cont-npm2 .more {
  display: table;
  margin: 0.3rem auto 0;
  color: #182132;
  padding-right: 0.25rem;
  background: url(../images/contact/dow1.png) no-repeat;
  background-position: right center;
  background-size: 0.13rem;
  cursor: pointer;
}
.contact1 .cont-npm2 .ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.44rem;
  margin-top: 0.85rem;
}
@media (max-width: 991px) {
  .contact1 .cont-npm2 .ul {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.4rem;
  }
}
.contact1 .cont-npm2 .ul .li {
  background: #f3f5fa;
  height: 2rem;
  padding: 0 0.75rem 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width:1024px) {
  .contact1 .cont-npm2 .ul .li {
    padding: 0 0.4rem;
  }
}
@media (max-width: 767px) {
  .contact1 .cont-npm2 .ul .li {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: initial;
    padding: 0.4rem;
    grid-gap: 0.4rem;
  }
}
.contact1 .cont-npm2 .ul .li:hover {
  background: #fff;
  box-shadow: 0 0 32px 0 rgba(170, 175, 190, 0.19);
}
.contact1 .cont-npm2 .ul .li:hover .code {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}
.contact1 .cont-npm2 .ul .li:hover .fr {
  opacity: 0;
}
.contact1 .cont-npm2 .ul .li .fl {
  width: 60%;
}
@media (max-width: 767px) {
  .contact1 .cont-npm2 .ul .li .fl {
    width: 100%;
  }
}
.contact1 .cont-npm2 .ul .li .fr img,
.contact1 .cont-npm2 .ul .li .fr svg {
  width: auto;
  height: 0.63rem;
}
.contact1 .cont-npm2 .ul .li .code {
  position: absolute;
  right: 0.25rem;
  transition: all 0.4s;
  transform: scale(0.8);
  opacity: 0;
  pointer-events: none;
  width: 1.63rem;
}
@media (max-width: 767px) {
  .contact1 .cont-npm2 .ul .li .code {
    position: relative;
  }
}
.contact1 .cont-npm2 .ul .li h6 {
  background: url(../images/contact/ico2.png) no-repeat;
  font-family: "sanslight";
  color: #666;
  padding-right: 0.26rem;
  background-size: 0.16rem;
  background-position: right center;
  display: table;
  margin-top: 0.1rem;
}
@media (max-width:1024px) {
  .contact1 .cont-npm2 .ul .li {
    background: #f3f5fa !important;
  }
  .contact1 .cont-npm2 .ul .li .code {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
  }
  .contact1 .cont-npm2 .ul .li .fr {
    opacity: 0;
  }
}
@media (max-width:1024px) and (max-width: 767px) {
  .contact1 .cont-npm2 .ul .li .fr {
    display: none;
  }
}
.contact1 .index-contact {
  background: #fff;
}
.development1 .page-top-menu,
.development1 .page-content {
  background: #f8f8f8;
}
.development1 .devel-npm1 {
  padding: 1.1rem 0 1.25rem;
}
.development1 .devel-npm1 .h5 {
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
  display: table;
  margin: auto;
}
.development1 .devel-npm1 .h5::after,
.development1 .devel-npm1 .h5::before {
  content: '';
  width: 0.21rem;
  height: 0.18rem;
  background: url(../images/development/ico1.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 0.05rem;
}
.development1 .devel-npm1 .h5::before {
  left: auto;
  right: 0;
  background: url(../images/development/ico2.png) no-repeat;
  background-size: 100%;
  bottom: 0;
  top: auto;
}
.development1 .devel-npm1 .above {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.development1 .devel-npm1 .above .text-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.development1 .devel-npm1 .h6 {
  font-family: "sansmedium";
  color: #161823;
  margin-top: 0.45rem;
  line-height: 1;
  padding-right: 0.7rem;
  grid-gap: 0.17rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.development1 .devel-npm1 .h6 .img-main {
  width: 0.66rem;
}
.development1 .devel-npm1 .h6 .public-img {
  background-color: #fff;
  border: 2px solid #0a01b1;
  border-radius: 50%;
}
.development1 .devel-npm2 {
  padding-bottom: 1rem;
}
.development1 .devel-npm2 .above {
  position: relative;
}
.development1 .devel-npm2 .above .page-img::after {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(16, 16, 45, 0.5);
}
.development1 .devel-npm2 .above .container {
  position: relative;
  z-index: 2;
}
.development1 .devel-npm2 .above .txt {
  width: 100%;
  padding: 1.8rem 0 1.3rem;
  border-bottom: 1px solid rgba(225, 225, 225, 0.2);
}
@media (max-width:990px) {
  .development1 .devel-npm2 .above .txt {
    padding: 1rem 0;
  }
}
.development1 .devel-npm2 .above .txt .img {
  text-align: center;
  max-width: 3.51rem;
  margin: auto;
}
.development1 .devel-npm2 .above .txt .p {
  max-width: 960px;
  margin: 0.7rem auto 0;
}
.development1 .devel-npm2 .above .txt p {
  color: #fff;
  line-height: 2;
  text-align: center;
  margin-bottom: 0.2rem;
}
.development1 .devel-npm2 .above .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  color: #fff;
  padding: 0.9rem 0 1.06rem;
}
@media (max-width:990px) {
  .development1 .devel-npm2 .above .list {
    padding: 0.8rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.4rem;
  }
}
.development1 .devel-npm2 .above .list .item .item-box .text-box .title {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.1rem;
}
@media (max-width:990px) {
  .development1 .devel-npm2 .above .list .item .item-box .text-box .title {
    grid-gap: 0.2rem;
  }
}
.development1 .devel-npm2 .above .list .item .item-box .text-box .title .font72 {
  font-family: 'Douyin-Sans-B';
}
.development1 .devel-npm2 .above .list .item .item-box .text-box .title .font18 span {
  display: block;
}
.development1 .devel-npm2 .above .list .item .item-box .text-box .title .font18 span:first-child {
  display: inline-block;
  position: relative;
  padding-bottom: 0.08rem;
  margin-bottom: 0.1rem;
}
.development1 .devel-npm2 .above .list .item .item-box .text-box .title .font18 span:first-child::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.2;
}
.development1 .devel-npm2 .below {
  padding-top: 0.74rem;
  position: relative;
  z-index: 5;
}
.development1 .devel-npm2 .below .pagetit {
  text-align: center;
}
.development1 .devel-npm2 .below .box {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 0.4rem;
  padding-top: 0.4rem;
}
@media (max-width:1024px) {
  .development1 .devel-npm2 .below .box {
    padding-bottom: 40px;
  }
}
.development1 .devel-npm2 .below .box > .swiper-pagination {
  display: none;
}
.development1 .devel-npm2 .below .box .swiper-pagination {
  position: absolute;
  right: -0.35rem;
  opacity: 1;
  top: 0.4rem;
  bottom: 0;
  height: calc(100% - 0.4rem);
  width: 0.03rem;
  background: rgba(128, 128, 128, 0.2);
}
.development1 .devel-npm2 .below .box .swiper-pagination span {
  background: #0a01b1;
}
@media (max-width:1024px) {
  .development1 .devel-npm2 .below .box .swiper-pagination {
    width: 100%;
    height: 3px;
    top: auto;
    right: auto;
  }
}
.development1 .devel-npm2 .below .box .lang {
  margin-top: 0.6rem;
  font-family: "sanslight";
}
.development1 .devel-npm2 .below .box .lang em {
  display: inline-block;
  background: rgba(2, 101, 255, 0.1);
  font-style: normal;
  color: #0a01b1;
  line-height: 1;
  padding: 0.08rem 0.1rem;
  margin-right: 0.15rem;
}
.development1 .devel-npm2 .below .box .lang span {
  color: #666;
}
.development1 .devel-npm2 .below .box .fl {
  width: 67.2%;
  max-width: 968px;
  background: #f4f4f4;
}
@media (max-width:1024px) {
  .development1 .devel-npm2 .below .box .fl {
    width: 100%;
    overflow: visible;
  }
}
.development1 .devel-npm2 .below .box .fl .public-img::before {
  padding-top: 45.04132231%;
}
.development1 .devel-npm2 .below .box .fl .txt {
  padding: 0.35rem 0.45rem 0.4rem;
}
.development1 .devel-npm2 .below .box .fl .txt h3 {
  color: #222222;
  line-height: 1;
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.development1 .devel-npm2 .below .box .fl .txt p {
  color: #666666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.development1 .devel-npm2 .below .box .fl .txt .lang {
  background: url(../images/development/ico3.png) no-repeat;
  background-position: right center;
  background-size: 0.1rem;
}
.development1 .devel-npm2 .below .box .fr {
  width: 32.8%;
  max-width: 470px;
  overflow: hidden;
  overflow: auto;
  padding: 0 0.35rem 0 0.3rem;
  margin-right: -0.35rem;
}
@media (max-width:1024px) {
  .development1 .devel-npm2 .below .box .fr {
    display: none;
  }
}
.development1 .devel-npm2 .below .box .fr .mySwiper {
  overflow: visible;
}
.development1 .devel-npm2 .below .box .fr .swiper-slide {
  transition: all 0.4s;
  cursor: pointer;
}
.development1 .devel-npm2 .below .box .fr .swiper-slide .list {
  box-shadow: 0px 1px 0.27rem 0px rgba(225, 225, 225, 0.52);
  padding: 0.25rem 0.35rem;
  background: #fff;
  height: 100%;
}
.development1 .devel-npm2 .below .box .fr .swiper-slide-thumb-active .list {
  background: #0a01b1;
  box-shadow: none;
}
.development1 .devel-npm2 .below .box .fr .swiper-slide-thumb-active h5 {
  color: #fff;
}
.development1 .devel-npm2 .below .box .fr .swiper-slide-thumb-active .lang em {
  background: rgba(255, 255, 225, 0.1);
  color: #fff;
}
.development1 .devel-npm2 .below .box .fr .swiper-slide-thumb-active .lang span {
  color: rgba(255, 255, 225, 0.5);
}
.development1 .devel-npm2 .below .box .fr h5 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.development1 .devel-npm3 .pagetit {
  text-align: center;
}
.development1 .devel-npm3 .box {
  margin-top: 0.75rem;
}
.development1 .devel-npm3 .box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 0.5rem;
}
.development1 .devel-npm3 .box .item:hover {
  background: #0a01b1;
}
.development1 .devel-npm3 .box .item:hover .fr .above em,
.development1 .devel-npm3 .box .item:hover .fr .above span,
.development1 .devel-npm3 .box .item:hover .fr .below h3,
.development1 .devel-npm3 .box .item:hover .fr .below p {
  color: #fff;
}
@media (max-width:480px) {
  .development1 .devel-npm3 .box .item {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.development1 .devel-npm3 .box .item .public-img {
  width: 31.5%;
  max-width: 454px;
}
.development1 .devel-npm3 .box .item .public-img::before {
  padding-top: 55.0660793%;
}
@media (max-width:480px) {
  .development1 .devel-npm3 .box .item .public-img {
    width: 100%;
    max-width: 100%;
  }
}
.development1 .devel-npm3 .box .item .fr {
  width: 68.5%;
  box-shadow: 0 0 0.27rem 0 rgba(225, 225, 225, 0.52);
  padding: 0.35rem 0.55rem 0.35rem 0.4rem;
}
@media (max-width:480px) {
  .development1 .devel-npm3 .box .item .fr {
    width: 100%;
  }
}
.development1 .devel-npm3 .box .item .fr .above {
  display: flex;
  justify-content: space-between;
  font-family: "sanslight";
}
.development1 .devel-npm3 .box .item .fr .above em {
  font-style: normal;
  color: #0a01b1;
  background: rgba(2, 101, 255, 0.1);
  padding: 0.07rem;
  line-height: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.development1 .devel-npm3 .box .item .fr .above span {
  color: #666;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.development1 .devel-npm3 .box .item .fr .below {
  margin-top: 0.35rem;
}
.development1 .devel-npm3 .box .item .fr .below h3 {
  color: #222222;
  margin-bottom: 0.15rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.development1 .devel-npm3 .box .item .fr .below p {
  color: #666;
  font-family: "sanslight";
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.development1 .devel-npm4 {
  background: #f5f7f9;
  margin-top: 1rem;
  padding: 1.05rem 0;
}
.development1 .devel-npm4 .pagetit {
  text-align: center;
}
.development1 .devel-npm4 .mySwiper3 {
  margin-top: 0.85rem;
  padding-bottom: 0.55rem;
}
.development1 .devel-npm4 .mySwiper3 .swiper-slide {
  height: auto;
  background: #fff;
  box-shadow: 0 0 0.27rem 0 rgba(225, 225, 225, 0.52);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.development1 .devel-npm4 .mySwiper3 .swiper-slide:hover {
  background-color: var(--color-active);
}
.development1 .devel-npm4 .mySwiper3 .swiper-pagination {
  opacity: 1;
  right: auto;
}
.development1 .devel-npm4 .mySwiper3 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #0a01b1;
}
.development1 .devel-npm4 .mySwiper3 .item:hover .txt h3,
.development1 .devel-npm4 .mySwiper3 .item:hover .txt .time {
  color: #fff;
}
.development1 .devel-npm4 .mySwiper3 .item .public-img::before {
  padding-top: 52.5%;
}
.development1 .devel-npm4 .mySwiper3 .item .txt {
  padding: 0.35rem;
}
.development1 .devel-npm4 .mySwiper3 .item .txt h3 {
  font-style: normal;
  color: #222222;
}
.development1 .devel-npm4 .mySwiper3 .item .txt .time {
  color: #666;
  margin-top: 0.75rem;
  font-family: "sanslight";
  line-height: 1;
  background: url(../images/development/ico4.png) no-repeat;
  background-size: 0.08rem;
  background-position: right center;
}
.news1 .page-top-menu,
.news1 .page-content {
  background: #f8f8f8;
}
.news1 .news-npm1 {
  padding: 0.5rem 0 0.95rem;
}
.news1 .news-npm1 #demo {
  margin-top: 0.7rem;
}
.news1 .news-npm1 #demo .layui-box {
  display: flex;
  justify-content: center;
}
.news1 .news-npm1 #demo .layui-laypage-prev {
  background: url(../images/news/ico2.png) no-repeat;
  background-position: center;
  background-size: 0.18rem;
}
.news1 .news-npm1 #demo .layui-laypage-next {
  background: url(../images/news/ico3.png) no-repeat;
  background-position: center;
  background-size: 0.18rem;
}
.news1 .news-npm1 #demo em {
  font-style: normal;
}
.news1 .news-npm1 #demo .layui-laypage-curr {
  background: #1e73f9;
}
.news1 .news-npm1 #demo .layui-laypage-curr em {
  color: #fff;
}
.news1 .news-npm1 #demo a,
.news1 .news-npm1 #demo .layui-laypage-spr,
.news1 .news-npm1 #demo span {
  margin: 0 0.15rem;
  width: 0.48rem;
  height: 0.48rem;
  border: 1px solid #e3e3e3;
  display: block;
  text-align: center;
  line-height: 0.48rem;
  font-style: normal;
  justify-content: space-between;
  color: #343434;
}
.news1 .news-npm1 .above .seac {
  float: right;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  width: 4.4rem;
}
@media (max-width: 767px) {
  .news1 .news-npm1 .above .seac {
    width: 100%;
  }
}
.news1 .news-npm1 .above .seac .ico {
  position: absolute;
  right: 0;
  top: 0.1rem;
  padding: 0.1rem;
  cursor: pointer;
}
.news1 .news-npm1 .above .seac input {
  padding: 0.2rem 0;
  width: 100%;
}
.news1 .news-npm1 .above .seac input::placeholder {
  color: #666;
  font-size: clamp(14px, 0.16rem, 16px);
  font-family: "sanslight";
}
.news1 .news-npm1 .below {
  margin-top: 0.65rem;
}
.news1 .news-npm1 .below .ul {
  border-bottom: 1px solid #e5e7eb;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.52rem 0.58rem;
  padding-bottom: 0.64rem;
}
@media (max-width:1024px) {
  .news1 .news-npm1 .below .ul {
    grid-gap: 0.4rem;
  }
}
@media (max-width: 767px) {
  .news1 .news-npm1 .below .ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .news1 .news-npm1 .below .ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news1 .news-npm1 .below .ul .li {
  display: block;
  height: 100%;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.news1 .news-npm1 .below .ul .li .public-img::before {
  padding-top: 52.72727273%;
}
.news1 .news-npm1 .below .ul .li:hover {
  box-shadow: 0 0 0.27rem 0 rgba(225, 225, 225, 0.51);
}
.news1 .news-npm1 .below .ul .li:hover .img img {
  transform: scale(1.1);
}
.news1 .news-npm1 .below .ul .li:hover .txt .lang .more {
  opacity: 1;
}
.news1 .news-npm1 .below .ul .li:hover .txt h3 {
  color: #0a01b1;
}
.news1 .news-npm1 .below .ul .li:nth-child(3n) {
  margin: 0 0 4.16% 0;
}
.news1 .news-npm1 .below .ul .li .txt {
  padding: 0.3rem;
}
.news1 .news-npm1 .below .ul .li .txt h3 {
  color: #222222;
  margin-bottom: 0.1rem;
  transition: all 0.4s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news1 .news-npm1 .below .ul .li .txt p {
  color: #666;
  font-family: "sanslight";
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news1 .news-npm1 .below .ul .li .txt .lang {
  font-family: "sanslight";
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.news1 .news-npm1 .below .ul .li .txt .lang .time {
  color: #666;
}
.news1 .news-npm1 .below .ul .li .txt .lang .more {
  color: #0c0695;
  padding-right: 0.15rem;
  background: url(../images/news/ico1.png) no-repeat;
  background-size: 0.08rem;
  background-position: center right;
  transition: all 0.4s;
  opacity: 0;
}
.breadcrumbs {
  background: #f5f7f9;
  padding: 0.2rem 0;
  margin-top: 0.9rem;
}
@media (max-width: 991px) {
  .breadcrumbs {
    margin-top: 1.2rem;
  }
}
.breadcrumbs .boxrum {
  width: 100%;
  margin: auto;
  overflow: hidden;
}
.breadcrumbs .boxrum a {
  float: left;
  color: #999999;
  margin-right: 0.1rem;
  padding-right: 0.2rem;
  background: url(../images/news/ico4.png) no-repeat;
  background-position: right center;
  background-size: 0.07rem;
}
.breadcrumbs .boxrum a:last-child {
  background: none;
}
.jsmodern-share {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 210px;
  height: 240px;
  z-index: 999999;
  background: #fff;
  border: #ddd solid 1px;
  border-radius: 10px;
  box-shadow: #ddd 0 0 20px;
  overflow: hidden;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.jsmodern-share b {
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(data:img/jpg;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAA/UlEQVQ4T8WU7ZEBQRCGHxFciQARIBJEcGRABFYEZIAIEAkyIAMhqFdtV7WpabuOqptfM9Pdz0x/NvjyalTwesAg0TkAp8guAg6BJdAODC/ADNin8hxwA/zWjIR0J143Bb4DM84T1APl5s69dga6wU9T2cjc90DFpVUCbkATGAPrBCoX9Svp/JQy2Xa0N6CyeQwMPdRguYf6yr4BC2Cecc8DJNbPcjDJFkBRBZSiQbWPYP8H/LPLX0+KYvBJ2VytTV8Vth6IelnDQV7Zyha2lUXdPjbYtsz+4/zpcHiCRUDdq69XrhXTmlfMpnXHlzdWnAT3SzPw7QEbDJnq6ztc3EQVa6MIgAAAAABJRU5ErkJggg==);
  right: 4px;
  top: 4px;
  cursor: pointer;
  color: #ccc;
  opacity: 0.1;
  transition: 0.1s;
}
.jsmodern-share p {
  display: block;
  height: 20px;
  text-align: center;
  font-size: 18px;
  margin: 15px 0 20px 0;
}
.jsmodern-share div {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.newsdata .news-npm1 {
  padding: 0.6rem 0 1.4rem;
}
.newsdata .news-npm1 .container {
  position: relative;
}
.newsdata .news-npm1 .container .share-qrcode {
  position: absolute;
  right: 0;
  color: #161823;
  top: 0.25rem;
  z-index: 3;
  text-align: right;
}
@media (max-width: 1580px) {
  .newsdata .news-npm1 .container .share-qrcode {
    display: none;
  }
}
.newsdata .news-npm1 .container .share-qrcode .cn3 {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.newsdata .news-npm1 .container .share-qrcode .cn3 .cn4 {
  margin-top: 0.27rem;
  position: relative;
}
@media (max-width: 991px) {
  .newsdata .news-npm1 .container .share-qrcode .cn3 .cn4 {
    margin-top: 0.2rem;
    margin-right: 0.2rem;
  }
}
.newsdata .news-npm1 .container .share-qrcode .cn3 .cn4 .cn4a {
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #e7eaed;
  border-radius: 50%;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .newsdata .news-npm1 .container .share-qrcode .cn3 .cn4 .cn4a {
    width: 0.76rem;
    height: 0.76rem;
  }
}
.newsdata .news-npm1 .container .share-qrcode .cn3 .cn4 .cn4a svg {
  width: auto;
  max-height: 0.2rem;
}
@media (max-width: 991px) {
  .newsdata .news-npm1 .container .share-qrcode .cn3 .cn4 .cn4a svg {
    max-height: 0.4rem;
  }
}
.newsdata .news-npm1 .container .share-qrcode .cn3 .cn4 .cn4a svg path {
  fill: #999999;
  stroke: none;
  transition: all 0.5s;
}
.newsdata .news-npm1 .container .share-qrcode .cn3 .cn4 .cn4b {
  position: absolute;
  left: 0;
  top: calc(100% + 0.2rem);
  width: 100px;
  height: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  z-index: 1;
}
.newsdata .news-npm1 .container .share-qrcode .cn3 .cn4 .cn4b em {
  height: 100px;
  width: 100px;
  background-color: #Fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsdata .news-npm1 .container .share-qrcode .cn3 .cn4 .cn4b img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}
.newsdata .news-npm1 .container .share-qrcode .cn3 .cn4.on .cn4b {
  opacity: 1;
}
.newsdata .news-npm1 .container .share-qrcode .cn3 .cn4:hover .cn4a {
  background-color: #0a01b1;
}
.newsdata .news-npm1 .container .share-qrcode .cn3 .cn4:hover .cn4a img,
.newsdata .news-npm1 .container .share-qrcode .cn3 .cn4:hover .cn4a svg {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.newsdata .news-npm1 .container .share-qrcode .cn3 .cn4:hover .cn4a svg path {
  fill: #fff;
  opacity: 1;
}
.newsdata .news-npm1 .container .share-qrcode .cn3 .cn4:hover .cn4b {
  opacity: 1;
  visibility: visible;
}
.newsdata .news-npm1 .maxwidth {
  max-width: 960px;
  margin: auto;
}
.newsdata .news-npm1 .return {
  color: #161823;
  padding-left: 0.2rem;
  background: url(../images/news/ico5.png) no-repeat;
  background-position: left center;
  background-size: 0.06rem;
  transition: all 0.4s;
}
.newsdata .news-npm1 .return:hover {
  color: #0a01b1;
  background: url(../images/news/ico5on.png) no-repeat;
  background-position: left center;
  background-size: 0.06rem;
}
.newsdata .news-npm1 .above {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e6e9ec;
}
.newsdata .news-npm1 .above h5 {
  margin-top: 0.5rem;
  color: #161823;
}
.newsdata .news-npm1 .above .lang {
  display: flex;
  color: #666;
  font-family: "sanslight";
  margin-top: 0.2rem;
}
.newsdata .news-npm1 .above .lang em {
  font-style: normal;
  margin-right: 0.25rem;
}
.newsdata .news-npm1 .below {
  margin-top: 0.5rem;
  color: #161823;
}
.newsdata .news-npm1 .flexrun {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 0.4rem;
  padding-top: 0.4rem;
  margin: auto;
  margin-top: 1.2rem;
  border-top: 1px solid #e6e9ec;
}
@media (max-width: 767px) {
  .newsdata .news-npm1 .flexrun {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    display: none;
  }
}
.newsdata .news-npm1 .flexrun a {
  color: #666;
  max-width: 40%;
}
@media (max-width: 767px) {
  .newsdata .news-npm1 .flexrun a {
    max-width: 100%;
  }
}
.community1 .flex-tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.community1 .flex-tit .more {
  color: #666;
  background: url(../images/latestnews/ico1.png) no-repeat;
  background-position: right center;
  background-size: 0.08rem;
  padding-right: 0.2rem;
  height: 100%;
  transition: all 0.4s;
}
.community1 .flex-tit .more:hover {
  color: #0a01b1;
  background: url(../images/news/ico1.png) no-repeat;
  background-position: right center;
  background-size: 0.08rem;
}
.community1 .comn-npm1 {
  padding: 0.8rem 0 1.45rem;
}
.community1 .comn-npm1 .box {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.6rem;
}
@media (max-width:1024px) {
  .community1 .comn-npm1 .box {
    grid-gap: 0.4rem;
  }
}
@media (max-width: 767px) {
  .community1 .comn-npm1 .box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .community1 .comn-npm1 .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.community1 .comn-npm1 .box .item {
  box-shadow: 0 0 0.27rem 0 rgba(225, 225, 225, 0.52);
}
.community1 .comn-npm1 .box .item:hover img {
  transform: scale(1.1);
}
.community1 .comn-npm1 .box .item:hover .txt h3 {
  color: #0a01b1;
}
.community1 .comn-npm1 .box .item .public-img::before {
  padding-top: 52.72727273%;
}
.community1 .comn-npm1 .box .item .txt {
  padding: 0.3rem 0.4rem 0.8rem;
  position: relative;
}
.community1 .comn-npm1 .box .item .txt h3 {
  color: #222222;
  transition: all 0.4s;
  margin-bottom: 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.community1 .comn-npm1 .box .item .txt p {
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.community1 .comn-npm1 .box .item .txt span {
  color: #666;
  display: block;
  position: absolute;
  bottom: 0.3rem;
  left: 0.3rem;
}
.community1 .comn-npm2 {
  background: url(../images/latestnews/bg1.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 1rem 0;
}
.community1 .comn-npm2 .swiper-button-next,
.community1 .comn-npm2 .swiper-button-prev {
  width: 0.6rem;
  height: 0.6rem;
  border: 1px solid #e4e8ec;
  border-radius: 50%;
  transition: all 0.4s;
  top: 2rem;
}
@media (max-width: 1260px) {
  .community1 .comn-npm2 .swiper-button-next,
  .community1 .comn-npm2 .swiper-button-prev {
    display: none;
  }
}
.community1 .comn-npm2 .swiper-button-next {
  background: url(../images/latestnews/next.png) no-repeat;
  background-position: center;
  background-size: 0.11rem;
  right: -1rem;
}
.community1 .comn-npm2 .swiper-button-next:hover {
  background: #0a01b1 url(../images/latestnews/nexton.png) no-repeat;
  background-position: center;
  background-size: 0.11rem;
}
.community1 .comn-npm2 .swiper-button-prev {
  background: url(../images/latestnews/prev.png) no-repeat;
  background-position: center;
  background-size: 0.11rem;
  left: -1rem;
}
.community1 .comn-npm2 .swiper-button-prev:hover {
  background: #0a01b1 url(../images/latestnews/prevon.png) no-repeat;
  background-position: center;
  background-size: 0.11rem;
}
.community1 .comn-npm2 .swiper-pagination {
  opacity: 1;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: auto;
  width: 1.71rem;
  height: 0.03rem;
  background: #dddfe2;
}
.community1 .comn-npm2 .swiper-pagination span {
  background: #0a01b1;
}
.community1 .comn-npm2 .swiper-slide-active .item::after {
  opacity: 0;
  pointer-events: none;
}
.community1 .comn-npm2 .swiper-slide-active .item::before {
  opacity: 1;
}
.community1 .comn-npm2 .item {
  position: relative;
}
.community1 .comn-npm2 .item img {
  width: 100%;
}
.community1 .comn-npm2 .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
}
@media (max-width:1024px) {
  .community1 .comn-npm2 .item::after {
    display: none;
  }
}
.community1 .comn-npm2 .item::before {
  content: '';
  width: 100%;
  height: 0.07rem;
  left: 0;
  bottom: 0;
  background: #0a01b1;
  position: absolute;
  z-index: 2;
  opacity: 0;
}
.community1 .comn-npm2 .item .txt {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.35rem 0.4rem;
}
.community1 .comn-npm2 .item .txt h3 {
  color: #fff;
}
@media (max-width:1024px) {
  .community1 .comn-npm2 .item .txt h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
}
.community1 .comn-npm2 #certify {
  position: relative;
  padding-bottom: 0.9rem;
  margin-top: 1.1rem;
}
.community1 .comn-npm2 #certify .swiper-container-pointer-events {
  touch-action: pan-y;
}
.community1 .comn-npm2 #certify .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.community1 .comn-npm2 #certify .swiper-slide {
  width: 41.6%;
  height: auto;
}
.community1 .comn-npm3 {
  padding: 1rem 0;
}
.community1 .comn-npm3 .box {
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .community1 .comn-npm3 .box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    grid-gap: 0.6rem;
  }
}
.community1 .comn-npm3 .box a:hover h3 {
  color: var(--color-active);
}
.community1 .comn-npm3 .box h3 {
  color: #222222;
  background: url(../images/latestnews/ico2.png) no-repeat;
  background-position: left center;
  background-size: 0.1rem;
  padding-left: 0.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.community1 .comn-npm3 .box span {
  padding-left: 0.25rem;
}
.community1 .comn-npm3 .box .fl {
  position: relative;
  overflow: hidden;
  width: 48.6%;
  max-width: 700px;
}
@media (max-width: 767px) {
  .community1 .comn-npm3 .box .fl {
    width: 100%;
    float: none;
  }
}
.community1 .comn-npm3 .box .fl::before {
  padding-top: 57.14285714%;
}
.community1 .comn-npm3 .box .fl:hover img {
  transform: scale(1.1);
}
.community1 .comn-npm3 .box .fl h3 {
  left: 0.35rem;
  bottom: 0.4rem;
  position: absolute;
  z-index: 2;
}
.community1 .comn-npm3 .box .fr {
  width: 47.2%;
  max-width: 682px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 0.2rem;
}
@media (max-width: 767px) {
  .community1 .comn-npm3 .box .fr {
    width: 100%;
    float: none;
  }
}
.community1 .comn-npm3 .box .fr span {
  color: #666;
  display: block;
  margin-top: 0.2rem;
}
.community1 .index-contact {
  background: #fff;
}
.community2.news1 {
  background-color: #f5f7f9;
}
.community2.news1 .news-npm1 .above {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  margin-top: 0.2rem;
}
@media (max-width:1024px) {
  .community2.news1 .news-npm1 .above {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    grid-gap: 0.4rem;
  }
}
.community2.news1 .news-npm1 .above .tabul {
  float: left;
}
.community2.news1 .news-npm1 .above .tabul .li {
  float: left;
  margin-right: 1.1rem;
  color: #666;
  position: relative;
  padding-bottom: 0.1rem;
  cursor: pointer;
}
.community2.news1 .news-npm1 .above .tabul .li::after {
  content: '';
  width: 100%;
  height: 0.03rem;
  background: #0a01b1;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.community2.news1 .news-npm1 .above .tabul .li.on {
  color: #222222;
}
.community2.news1 .news-npm1 .above .tabul .li.on::after {
  opacity: 1;
}
.community2.news1 .news-npm1 .below .ul .li {
  background: #fff;
}
.community2.news1 .news-npm1 .below .ul .li .txt .lang {
  justify-content: flex-start;
}
.community2.news1 .news-npm1 .below .ul .li .txt .lang .more {
  opacity: 1;
  background: none;
  color: #666;
  margin-left: 0.25rem;
}
.community3.news1 .news-npm1 .below .ul {
  grid-template-columns: repeat(1, 1fr);
}
.community3.news1 .news-npm1 .below .ul .li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:480px) {
  .community3.news1 .news-npm1 .below .ul .li {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.community3.news1 .news-npm1 .below .ul .li .public-img {
  width: 27.78%;
  max-width: 400px;
}
.community3.news1 .news-npm1 .below .ul .li .public-img::before {
  padding-top: 62.5%;
}
@media (max-width:480px) {
  .community3.news1 .news-npm1 .below .ul .li .public-img {
    width: 100%;
  }
}
.community3.news1 .news-npm1 .below .ul .li .txt {
  width: 72.22%;
  padding: 0.4rem 0.6rem 0.4rem 0.45rem;
}
@media (max-width:480px) {
  .community3.news1 .news-npm1 .below .ul .li .txt {
    width: 100%;
  }
}
.community3.news1 .news-npm1 .below .ul .li .txt .lang {
  display: flex;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 0.4rem;
}
.community3.news1 .news-npm1 .below .ul .li .txt .lang .more {
  margin-left: 0;
  color: #0a01b1;
}
.community3.news1 .news-npm1 .below .ul .li .txt h3 {
  margin-bottom: 0.15rem;
}
.commdata .contdata {
  background: url(../images/latestnews/bg2.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0.45rem 0.6rem;
  margin: 1rem 0 0;
  display: flex;
  justify-content: space-between;
}
.commdata .contdata h3 {
  color: #fff;
}
.commdata .contdata a {
  display: table;
  color: #0073ff;
  line-height: 1;
  background: #fff;
  padding: 0.15rem 0.6rem;
}
.plandetails .plan-npm1 {
  padding: 0.75rem 0 1.68rem;
}
.plandetails .plan-npm1 .fl {
  width: 27.1%;
  background: #f5f7f9;
  padding: 0.5rem 0.4rem 0.65rem;
  position: sticky;
  top: 0.9rem;
  left: 0;
  z-index: 9;
}
@media (max-width:1024px) {
  .plandetails .plan-npm1 .fl {
    width: 100%;
  }
}
.plandetails .plan-npm1 .fl ul {
  border-bottom: 1px solid #e1e5e9;
}
.plandetails .plan-npm1 .fl ul li {
  margin-bottom: 0.35rem;
  font-family: "sansregular";
}
.plandetails .plan-npm1 .fl ul li p {
  color: #666666;
}
.plandetails .plan-npm1 .fl ul li .emo1 {
  background: url(../images/plandetails/ico2.png) no-repeat;
  background-position: right center;
  background-size: 0.21rem;
  display: table;
  padding-right: 0.35rem;
  font-family: "sansmedium";
}
.plandetails .plan-npm1 .fl ul li .emo2 {
  background: url(../images/plandetails/ico3.png) no-repeat;
  background-position: right center;
  background-size: 0.21rem;
  display: table;
  padding-right: 0.35rem;
  font-family: "sansmedium";
}
.plandetails .plan-npm1 .fl .txt {
  margin-top: 0.3rem;
  font-family: "sansregular";
}
.plandetails .plan-npm1 .fl .txt p {
  color: #666666;
}
.plandetails .plan-npm1 .fl .txt a {
  color: #fff;
  line-height: 1;
  padding: 0.18rem 0;
  background: #0c0695;
  display: block;
  text-align: center;
  margin-top: 0.25rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.plandetails .plan-npm1 .fl .txt a:hover {
  opacity: 0.8;
}
.plandetails .plan-npm1 .fr {
  width: 67.4%;
  padding-top: 0.15rem;
}
@media (max-width:1024px) {
  .plandetails .plan-npm1 .fr {
    width: 100%;
    margin-top: 0.8rem;
  }
}
.plandetails .plan-npm1 .fr .i {
  margin-bottom: 0.3rem;
}
.plandetails .plan-npm1 .fr .above {
  margin-top: 0.35rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #e6e9ec;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.plandetails .plan-npm1 .fr .above .img-main {
  width: 0.66rem;
}
.plandetails .plan-npm1 .fr .above .public-img {
  background-color: #fff;
  border: 2px solid #0a01b1;
  border-radius: 50%;
}
.plandetails .plan-npm1 .fr .above .txt {
  width: 80%;
  margin-left: 0.35rem;
}
.plandetails .plan-npm1 .fr .above .txt .en {
  position: relative;
  margin: 0.05rem 0 0.1rem 0;
}
.plandetails .plan-npm1 .fr .above .txt .en::after {
  content: '';
  background: url(../images/join/ico4.png) no-repeat;
  width: 0.06rem;
  height: 0.07rem;
  background-size: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.13rem;
  margin: auto;
}
.plandetails .plan-npm1 .fr .above .txt .cn {
  font-family: "sansregular";
}
.plandetails .plan-npm1 .fr .below .item {
  padding: 0.45rem 0 0.55rem;
  border-bottom: 1px solid #e6e9ec;
}
.plandetails .plan-npm1 .fr .below .item:last-child {
  border-bottom: none;
}
.plandetails .plan-npm1 .fr .below .item h4 {
  line-height: 1;
  position: relative;
  padding-left: 0.17rem;
  margin-bottom: 0.35rem;
}
.plandetails .plan-npm1 .fr .below .item h4::after {
  content: '';
  width: 0.06rem;
  height: 0.25rem;
  background: #0a01b1;
  position: absolute;
  left: 0;
  top: 0;
}
.plandetails .plan-npm1 .fr .below .item p {
  color: #161823;
  margin-bottom: 0.2rem;
}
.plandetails .plan-npm1 .fr .below .item p:last-child {
  margin-bottom: 0;
}
.plandetails .plan-npm1 .fr .below .item h6 {
  position: relative;
  padding-left: 0.18rem;
  margin-top: 0.1rem;
  color: #161823;
}
.plandetails .plan-npm1 .fr .below .item h6::after {
  content: '';
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.13rem;
  background: #0a01b1;
}
.plandetails .plan-npm1 .fr .contdata {
  background: url(../images/latestnews/bg2.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0.45rem 0.6rem;
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .plandetails .plan-npm1 .fr .contdata {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 0.4rem;
    grid-gap: 0.4rem;
  }
}
.plandetails .plan-npm1 .fr .contdata h3 {
  color: #fff;
  max-width: 3.6rem;
}
@media (max-width: 767px) {
  .plandetails .plan-npm1 .fr .contdata h3 {
    max-width: 100%;
    font-size: var(--font26);
  }
}
.plandetails .plan-npm1 .fr .contdata a {
  display: table;
  color: #0073ff;
  line-height: 1;
  background: #fff;
  padding: 0.15rem 0.6rem;
  height: 100%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.plandetails .plan-npm1 .fr .contdata a:hover {
  background-color: var(--color-active);
  color: #fff;
}
.plandetails .plan-npm2 {
  background: #f5f7f9;
  padding: 1.05rem 0 0.2rem;
}
.plandetails .plan-npm2 .pagetit {
  text-align: center;
}
.plandetails .plan-npm2 .box {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.58rem;
}
@media (max-width:1024px) {
  .plandetails .plan-npm2 .box {
    grid-gap: 0.4rem;
  }
}
@media (max-width: 991px) {
  .plandetails .plan-npm2 .box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .plandetails .plan-npm2 .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.plandetails .plan-npm2 .box .item {
  background: #fff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.plandetails .plan-npm2 .box .item:hover {
  box-shadow: 0px 1px 0.27rem 0px rgba(225, 225, 225, 0.52);
}
.plandetails .plan-npm2 .box .item:hover .public-img img {
  transform: scale(1.1);
}
.plandetails .plan-npm2 .box .item .public-img::before {
  padding-top: 52.72727273%;
}
.plandetails .plan-npm2 .box .item .txt {
  padding: 0.45rem 0.4rem;
}
@media (max-width:1024px) {
  .plandetails .plan-npm2 .box .item .txt {
    padding: 0.4rem;
  }
}
.plandetails .plan-npm2 .box .item .txt .icon img {
  min-height: 30px;
  max-height: 30px;
}
.plandetails .plan-npm2 .box .item .txt p {
  color: #0a01b1;
}
.plandetails .plan-npm2 .box .item .txt h3 {
  color: #222222;
  margin-top: 0.3rem;
}
.plandetails .index-contact {
  background: #f5f7f9;
}
.plan1-page {
  padding-top: 0.68rem;
  background: no-repeat center;
  background-size: cover;
  position: relative;
}
.plan1-page .pagetit {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.4rem;
}
.plan1-page .pagetit span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.14rem;
}
.plan1-page .pagetit img {
  width: 0.43rem;
}
.plan1-page .page-main {
  border-top: 1px solid #bbdaff;
  padding-top: 0.54rem;
  margin-top: 0.62rem;
}
.plan1-page .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.46rem;
  margin-top: 0.48rem;
}
@media (max-width:1024px) {
  .plan1-page .list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.4rem;
  }
}
@media (max-width: 767px) {
  .plan1-page .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.plan1-page .list .item:hover .item-box {
  background: url(../images/plan/plan1-item-bg.jpg) no-repeat center;
  background-size: cover;
  box-shadow: -0.06rem 0.21rem 0.46rem 0 rgba(0, 96, 255, 0.18);
}
.plan1-page .list .item:hover .item-box .num span {
  background-color: rgba(225, 225, 225, 0.1);
}
.plan1-page .list .item:hover .item-box .title {
  color: #fff;
}
.plan1-page .list .item:hover .item-box .text-body {
  color: #fff;
}
.plan1-page .list .item:hover .item-box .text-body p::before {
  background-color: #fff;
}
.plan1-page .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  padding: 0.32rem 0.36rem 0.6rem 0.52rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width:1024px) {
  .plan1-page .list .item .item-box {
    padding: 0.4rem;
  }
}
.plan1-page .list .item .item-box .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.plan1-page .list .item .item-box .num span {
  background-color: #0a01b1;
  color: #fff;
  min-width: 0.38rem;
  line-height: 0.38rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.plan1-page .list .item .item-box .text-body {
  color: #666666;
  line-height: 2em;
  margin-top: 0.28rem;
}
.plan1-page .list .item .item-box .text-body p {
  position: relative;
  padding-left: 0.18rem;
}
.plan1-page .list .item .item-box .text-body p::before {
  content: '';
  width: 0.05rem;
  height: 0.05rem;
  background-color: #0a01b1;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.15rem;
}
@media (max-width: 1580px) {
  .plan1-page .list .item .item-box .text-body p::before {
    top: 0.18rem;
  }
}
.tishi-text {
  text-align: center;
  color: #555555;
  padding: 0.76rem 0 0.36rem;
}
.tips-main {
  position: relative;
  text-align: center;
}
.tips-main .bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.tips-main .bg img {
  height: 0.45rem;
}
.tips-main .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
.plan2-page {
  padding-top: 1.2rem;
  overflow: hidden;
}
@media (max-width:1024px) {
  .plan2-page {
    padding-bottom: 1rem;
  }
}
.plan2-page .pagetit {
  text-align: center;
}
.plan2-page .page-main {
  position: relative;
  margin-bottom: -65%;
  margin-top: 1.4rem;
}
@media (max-width:1024px) {
  .plan2-page .page-main {
    margin-bottom: 0;
    margin-top: 0;
  }
}
.plan2-page .page-main .up {
  position: absolute;
  top: 3.5%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.plan2-page .page-main .up .page-title .icon {
  width: 2.12rem;
  margin: auto;
  margin-bottom: 0.12rem;
}
.plan2-page .page-main .up .page-title .title {
  color: #000;
  font-style: italic;
}
@media (max-width:1024px) {
  .plan2-page .page-main .up {
    position: relative;
    -webkit-transform: initial;
    transform: initial;
  }
}
.plan2-page .page-main .guard-bg {
  border: 1px solid #d7e8ff;
  border-radius: 50%;
  overflow: visible;
}
@media (max-width:1024px) {
  .plan2-page .page-main .guard-bg {
    margin-top: 0.8rem;
    border: none;
    border-radius: 0;
  }
  .plan2-page .page-main .guard-bg::before {
    display: none;
  }
}
.plan2-page .page-main .guard-bg2 {
  width: 66.6%;
  height: 66.6%;
  border: 1px solid #d7e8ff;
  border-radius: 50%;
  overflow: visible;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width:1024px) {
  .plan2-page .page-main .guard-bg2 {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 0.4rem;
    border: none;
    border-radius: 0;
    display: none;
  }
  .plan2-page .page-main .guard-bg2::before {
    display: none;
  }
}
.plan2-page .list {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width:1024px) {
  .plan2-page .list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0.4rem;
  }
}
@media (max-width: 991px) {
  .plan2-page .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.plan2-page .list .item {
  position: absolute;
  z-index: 2;
  cursor: pointer;
}
@media (max-width:1024px) {
  .plan2-page .list .item {
    position: relative;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }
  .plan2-page .list .item .item-box .text-float {
    width: 100% !important;
    display: block !important;
    -webkit-animation: initial !important;
    animation: initial !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-top: 0.4rem;
    -webkit-transform: initial !important;
    transform: initial !important;
  }
}
.plan2-page .list .item:hover .item-box .public-img-main {
  background: url(../images/plan/plan2-icon6.png) no-repeat center;
  background-size: cover;
  border-color: transparent;
}
.plan2-page .list .item:hover .item-box .public-img-main img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.plan2-page .list .item:hover .item-box .text-float {
  display: block;
  -webkit-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
  -webkit-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.plan2-page .list .item .item-box {
  display: block;
  height: 100%;
  position: relative;
  text-align: center;
}
.plan2-page .list .item .item-box .public-img-main {
  width: 0.96rem;
  height: 0.96rem;
  background-color: #fff;
  border: 1px solid #d7e8ff;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 0.15rem;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.plan2-page .list .item .item-box .public-img-main .public-img {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.plan2-page .list .item .item-box .public-img-main::after {
  content: '';
  width: 100%;
  height: 100%;
  border: 0.12rem solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width:1024px) {
  .plan2-page .list .item .item-box .public-img-main::after {
    display: none;
  }
}
.plan2-page .list .item .item-box .public-img-main img {
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 53%;
  max-height: 50%;
  transition: initial;
}
.plan2-page .list .item .item-box .text-box .title {
  color: #000;
}
.plan2-page .list .item .item-box .text-float {
  width: 3rem;
  background-color: #fff;
  padding: 0.32rem 0.44rem 0.44rem 0.32rem;
  box-shadow: 0px 0.14rem 0.46rem 0px rgba(93, 131, 168, 0.18);
  border-radius: 0.17rem;
  position: absolute;
  top: 50%;
  left: 100%;
  text-align: left;
  margin-left: 0.3rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.plan2-page .list .item .item-box .text-float .title {
  color: #000;
}
.plan2-page .list .item .item-box .text-float .text-body {
  color: #666666;
  line-height: 1.625em;
  margin-top: 0.07rem;
}
.plan2-page .list .item1 {
  top: 20%;
  left: 3%;
}
.plan2-page .list .item2 {
  top: 0%;
  left: 26%;
}
.plan2-page .list .item3 {
  top: 0%;
  right: 26%;
}
.plan2-page .list .item4 {
  top: 20%;
  right: 3%;
}
.plan2-page .list .item4 .item-box .text-float {
  left: auto;
  margin-left: 0;
  right: 100%;
  margin-right: 0.3rem;
}
.plan3-page {
  overflow: hidden;
  background: no-repeat center;
  background-size: 100% 100%;
  background-color: #ecf4ff;
  position: relative;
  padding: 0.89rem 0 1.8rem;
}
@media (max-width:1024px) {
  .plan3-page {
    background-image: initial !important;
    padding: 0.9rem 0 1rem;
  }
}
.plan3-page .pagetit {
  text-align: center;
}
.plan3-page .box2 {
  margin-top: 0.64rem;
}
.plan3-page .item-box {
  position: relative;
}
.plan3-page .item-box .public-img {
  width: 48.47222222%;
  max-width: 698px;
}
.plan3-page .item-box .public-img::before {
  padding-top: 60.6017192%;
}
@media (max-width:1024px) {
  .plan3-page .item-box .public-img {
    width: 100%;
    margin: auto;
  }
}
.plan3-page .item-box .text-main {
  width: 53.47222222%;
  max-width: 770px;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width:1024px) {
  .plan3-page .item-box .text-main {
    width: 100%;
    max-width: 698px;
    margin: auto;
    position: relative;
    top: 0;
    -webkit-transform: initial;
    transform: initial;
  }
}
.plan3-page .item-box .text-main .text-box {
  background: url(../images/plan/plan3-bg2.jpg) no-repeat center;
  background-size: cover;
  padding: 0.5rem 0.5rem 0.74rem 0.66rem;
  position: relative;
}
@media (max-width:1024px) {
  .plan3-page .item-box .text-main .text-box {
    padding: 0.6rem 0.4rem;
  }
}
.plan3-page .item-box .text-main .text-box .float-icon {
  position: absolute;
  top: -0.15rem;
  right: 0.68rem;
}
.plan3-page .item-box .text-main .text-box .float-icon img {
  width: 0.9rem;
  opacity: 0.2;
}
.plan3-page .item-box .text-main .text-box .icon img {
  height: 26px;
}
.plan3-page .item-box .text-main .text-box .text-body {
  padding-right: 0.2rem;
  line-height: 1.5em;
  line-height: 1.5;
  max-height: calc(4em * 1.5);
  overflow: auto;
  margin-top: 0.58rem;
}
@media (max-width:1024px) {
  .plan3-page .item-box .text-main .text-box .text-body {
    margin-top: 0.4rem;
    overflow: initial;
    padding: 0;
  }
}
.plan3-page .item-box .text-main .text-box .title {
  text-align: right;
  color: #666666;
  line-height: 1;
  margin-top: 0.44rem;
}
.plan3-page .item-box .text-main .text-box .title > span {
  position: relative;
  padding-left: 0.88rem;
}
.plan3-page .item-box .text-main .text-box .title > span::before {
  content: '';
  width: 0.6rem;
  height: 1px;
  background-color: #d3d3d3;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.plan3-page .item-box .text-main .text-box .title .black {
  color: #000;
}
.plan3-page .plan3coursea2 {
  margin-top: 0.42rem;
}
.plan3-page .plan3coursea2 .swiper-slide-thumb-active .icon::before {
  width: 100%;
}
.plan3-page .plan3coursea2 .icon {
  position: relative;
  height: 80px;
  background-color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.plan3-page .plan3coursea2 .icon::before {
  content: '';
  width: 0;
  height: 0.03rem;
  background-color: var(--color-active);
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.plan3-page .bgimg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5.15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.plan3-page .bgimg img {
  width: 100%;
}
.plan3-page .line {
  position: absolute;
  left: 0;
  bottom: 0.29rem;
  width: 100%;
}
.plan4-page {
  padding-top: 0.9rem;
  position: relative;
}
.plan4-page .pagetit {
  text-align: center;
}
.plan4-page .container {
  position: relative;
}
.plan4-page .img-hide-Box {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -9;
  opacity: 0;
}
.plan4-page .img-hide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 20px;
}
.plan4-page .img-hide .img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.plan4-page .img-hide .active {
  flex: 1 1 29.375%;
}
.plan4-page .list {
  max-height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 20px;
  margin-top: 0.84rem;
}
@media (max-width:1024px) {
  .plan4-page .list {
    max-height: initial;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    max-width: 720px;
    margin: auto;
    margin-top: 0.8rem;
  }
}
.plan4-page .list .item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.plan4-page .list .item .item-box {
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.plan4-page .list .item .item-box .public-img {
  height: 100%;
}
@media (max-width:1024px) {
  .plan4-page .list .item .item-box .public-img {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.plan4-page .list .item .item-box .text-main {
  display: none;
}
.plan4-page .list .item .item-box .text-box {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: 0 0.64rem 0.7rem;
}
@media (max-width:1024px) {
  .plan4-page .list .item .item-box .text-box {
    padding: 0.4rem;
    position: relative;
  }
}
.plan4-page .list .item .item-box .text-box .num {
  line-height: 1;
  color: var(--color-active);
  opacity: 0.2;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.plan4-page .list .item .item-box .text-box .title {
  color: #000000;
  line-height: 1.2em;
}
.plan4-page .list .item .item-box .text-box .title span {
  display: block;
}
.plan4-page .list .item .item-box .text-box .text-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.22rem 0.4rem;
  margin-top: 0.9rem;
}
@media (max-width: 767px) {
  .plan4-page .list .item .item-box .text-box .text-body {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0.6rem;
  }
}
.plan4-page .list .item .item-box .text-box .text-body dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0.14rem;
}
.plan4-page .list .item .item-box .text-box .text-body dl dt img {
  width: 0.27rem;
}
.plan4-page .list .item .item-box .text-box .text-body dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.plan4-page .list .item.active,
.plan4-page .list .item:hover {
  flex: 1 1 26.389%;
}
.plan4-page .list .item.active .item-box .public-img::before,
.plan4-page .list .item:hover .item-box .public-img::before {
  padding-top: 62.5%;
}
.plan4-page .list .item.active .item-box .text-main,
.plan4-page .list .item:hover .item-box .text-main {
  display: block;
}
.plan4-page .list .item.active .item-box .text-box,
.plan4-page .list .item:hover .item-box .text-box {
  -webkit-animation: fadeInUp 0.8s both;
  animation: fadeInUp 0.8s both;
  -webkit-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.plan4-page .list .item.active .item-box .text-box .title,
.plan4-page .list .item:hover .item-box .text-box .title {
  font-size: var(--font36);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0.08rem;
}
.plan4-page .list .item.active .item-box .text-box .title span,
.plan4-page .list .item:hover .item-box .text-box .title span {
  display: inline-block;
}
@media (max-width:1024px) {
  .plan4-page .list .item .item-box .public-img::before {
    padding-top: 62.5%;
  }
  .plan4-page .list .item .item-box .text-main {
    display: block;
  }
  .plan4-page .list .item .item-box .text-box {
    -webkit-animation: initial !important;
    animation: initial !important;
  }
  .plan4-page .list .item .item-box .text-box .title {
    font-size: var(--font36);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    grid-gap: 0.08rem;
  }
  .plan4-page .list .item .item-box .text-box .title span {
    display: inline-block;
  }
}
.plan5-page {
  padding-top: 1.46rem;
}
@media (max-width:1024px) {
  .plan5-page {
    padding: 1rem 0;
  }
}
.plan5-page .pagetit {
  text-align: center;
}
.plan5-page .img {
  margin-top: 1.3rem;
  text-align: center;
}
@media (max-width:1024px) {
  .plan5-page .img {
    margin-top: 1rem;
  }
}
.plan5-page .img img {
  margin: auto;
}
.plan5-page .public-btn3 {
  margin-top: 1.3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:1024px) {
  .plan5-page .public-btn3 {
    margin-top: 1rem;
  }
}
.public-page {
  background-color: #f5f7f9;
}
.public-page .container {
  background-color: #fff;
}
.public-page .page-up {
  margin-bottom: 0.55rem;
}
.public-page .page-up .container {
  background-color: #f5f7f9;
}
.public-page .page-main {
  padding: 0.56rem 2.4rem 1.2rem;
}
@media (max-width:1024px) {
  .public-page .page-main {
    padding: 0.6rem 0.4rem 1rem;
  }
}
.public-page .page-main .public-title {
  line-height: 1.25em;
  font-weight: bold;
}
.public-page .page-main .type-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 0.22rem;
  color: #999999;
  margin-top: 0.14rem;
}
.public-page .page-main .public-detail-content {
  border-top: 1px solid #dddddd;
  padding-top: 0.36rem;
  margin-top: 0.47rem;
}
.public-page .page-main .public-detail-content h6 {
  font-size: var(--font18);
  color: #222222;
  line-height: 1.77777778em;
  margin: 0.43rem 0 0.13rem;
}
.public-page .page-main .public-detail-content h6:first-child {
  margin-top: 0;
}
.public-page .page-main .public-detail-content h5 {
  font-size: var(--font20);
  color: #222222;
  line-height: 1.6em;
  margin: 0.41rem 0 0.13rem;
}
.public-page .page-main .public-detail-content h5:first-child {
  margin-top: 0;
}
.public-page .page-main .public-detail-content p {
  font-size: var(--font16);
  color: #666666;
  line-height: 1.5em;
}
.public-page .page-main .public-detail-content p strong {
  color: #222222;
}
.public-page .page-main .public-detail-content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.public-page .page-main .public-detail-content dl dt {
  color: #222222;
}
.public-page .page-main .public-detail-content dl dt * {
  color: #222222;
}
.public-page .page-main .public-detail-content dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.public-page .page-main .public-detail-content ul {
  padding-left: 2em;
}
.public-page .page-main .public-detail-content ul li h4 {
  color: #000000;
  margin: 0.18rem 0 0.09rem;
}
.error-main {
  padding: 2.2rem 0 2.36rem;
}
@media (max-width:1024px) {
  .error-main {
    padding: 140px 0;
  }
}
.error-main .title {
  color: #7ac0ff;
  text-align: center;
  margin-bottom: 0.46rem;
}
.error-main .img {
  width: 37.84722222%;
  max-width: 545px;
  margin: auto;
  text-align: center;
}
.error-main .text-body {
  color: #666666;
  text-align: center;
  margin-top: 0.58rem;
}
.error-main .text-body span {
  color: var(--color-active);
}
.error-main .public-btn3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.42rem;
}
.error-main .public-btn3 .public-btn0 {
  border-radius: 99px;
}
.list-sitemap .item {
  padding: 0.47rem 0;
  border-bottom: 1px solid #edeff1;
}
.list-sitemap .item a {
  cursor: pointer;
}
.list-sitemap .item .item-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media (max-width: 767px) {
  .list-sitemap .item .item-box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    grid-gap: 0.4rem;
  }
}
.list-sitemap .item .item-box .title {
  min-width: 2.19rem;
  font-weight: bold;
  color: #222222;
}
.list-sitemap .item .item-box .text-list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media (max-width: 767px) {
  .list-sitemap .item .item-box .text-list {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    grid-gap: var(--spacing-30);
  }
}
.list-sitemap .item .item-box .text-list .text-dt {
  min-width: 66px;
}
.list-sitemap .item .item-box .text-list .text-dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 0.4rem 0.7rem;
}
.list-sitemap .item .item-box .text-list .text-dd a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #666666;
}
.list-sitemap .item .item-box .text-list .text-dd a .icon {
  line-height: 1;
}
.list-sitemap .item .item-box .text-list .text-dd a img,
.list-sitemap .item .item-box .text-list .text-dd a svg {
  width: 0.08rem;
  min-width: 6px;
  height: auto;
  margin-left: 0.07rem;
}
.list-sitemap .item .item-box .text-list .text-dd a svg path {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.list-sitemap .item .item-box .text-list .text-dd a:hover {
  color: var(--color-active);
}
.list-sitemap .item .item-box .text-list .text-dd a:hover svg path {
  fill: var(--color-active);
  opacity: 1;
}
.search-page {
  background-color: #f5f7f9;
  padding: 2.3rem 0 0.4rem;
}
.search-page .searchform {
  position: relative;
  width: 68.57142857%;
  max-width: 960px;
}
@media (max-width: 991px) {
  .search-page .searchform {
    width: 100%;
  }
}
.search-page .searchform .input {
  font-size: var(--font16);
  color: #999999;
  font-style: normal;
  width: 100%;
  height: 0.72rem;
  padding-left: 0.36rem;
  padding-right: 80px;
  border: 1px solid #dddddd;
  border-radius: 0;
  background-color: #fff;
}
.search-page .searchform .iconfont {
  width: 0.66rem;
  height: 0.66rem;
  position: absolute;
  right: 3px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--color-active);
  cursor: pointer;
}
.search-page .searchform .iconfont img,
.search-page .searchform .iconfont svg {
  width: 0.17rem;
  height: 0.17rem;
}
.search-page .searchform .iconfont svg path {
  fill: #fff;
  opacity: 1;
}
.search-page .recommend_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 0.4rem 0.74rem;
  margin-top: 1.3rem;
}
@media (max-width:1024px) {
  .search-page .recommend_list {
    margin-top: 1rem;
    grid-gap: 0.4rem;
  }
}
.search-page .recommend_list a {
  position: relative;
  color: #666666;
  padding-bottom: 0.12rem;
}
.search-page .recommend_list a.active {
  color: #222222;
}
.search-page .recommend_list a.active::before {
  width: 100%;
}
.search-page .recommend_list a::before {
  content: '';
  width: 0;
  height: 0.03rem;
  background-color: var(--color-active);
  position: absolute;
  left: 0;
  bottom: 0;
}
.search-box .flex-tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.search-box .flex-tit .more {
  color: #666;
  background: url(../images/latestnews/ico1.png) no-repeat;
  background-position: right center;
  background-size: 0.08rem;
  padding-right: 0.2rem;
  height: 100%;
}
.search-box .community1 .comn-npm1 {
  padding: 0.65rem 0 1.28rem;
}
.search-box .news1 .news-npm1 {
  padding: 1rem 0;
}
.search-box .news1 .news-npm1 .below .ul {
  border: none;
}
.search-box .plandetails .plan-npm2 {
  background: #f5f7f9;
  padding: 1rem 0 1.5rem;
}
.no-result-page {
  padding: 0.96rem 0;
}
.no-result-page .text-body {
  color: #999999;
  line-height: 2.25em;
  text-align: center;
}
.no-result-page .text-body img {
  margin-bottom: 0.42rem;
  max-height: 1.56rem;
}
.search-popup {
  position: fixed;
  top: 0.9rem;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 0.78rem 0 0.7rem;
  z-index: 10;
  display: none;
}
.search-popup .container {
  position: relative;
}
.search-popup .page-main {
  max-width: 960px;
  margin: auto;
}
.search-popup .search_close {
  position: absolute;
  right: -13px;
  top: -0.4rem;
  opacity: 0.6;
  cursor: pointer;
}
.search-popup .search_close img {
  width: 13px;
}
.search-popup .searchform {
  position: relative;
}
.search-popup .searchform .input {
  font-size: var(--font16);
  color: #999999;
  font-style: normal;
  width: 100%;
  height: 0.72rem;
  padding-left: 0.36rem;
  padding-right: 80px;
  border: 1px solid #dddddd;
  border-radius: 0;
  background-color: #fff;
}
.search-popup .searchform .iconfont {
  width: 0.66rem;
  height: 0.66rem;
  position: absolute;
  right: 3px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #0a01b1;
  cursor: pointer;
}
.search-popup .searchform .iconfont img,
.search-popup .searchform .iconfont svg {
  width: 0.17rem;
  height: 0.17rem;
}
.search-popup .searchform .iconfont svg path {
  fill: #fff;
  opacity: 1;
}
.search-popup .recommend_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 0.2rem 0.5rem;
  margin-top: 0.32rem;
}
.search-popup .recommend_list dt {
  width: 100%;
}
.search-popup .recommend_list a,
.search-popup .recommend_list dd {
  color: #666666;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.search-popup .recommend_list a:hover,
.search-popup .recommend_list dd:hover {
  color: #0a01b1;
}
.pagetit-main {
  position: relative;
}
.pagetit-main .num {
  font-family: 'Douyin-Sans-B';
  color: #666666;
  opacity: 0.08;
  line-height: 1;
}
.pagetit-main .pagetit {
  width: 100%;
  position: absolute;
  top: 44%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
}
@media (max-width: 767px) {
  .pagetit-main .pagetit {
    position: relative;
    top: 0;
    -webkit-transform: initial;
    transform: initial;
  }
  .pagetit-main .pagetit > span {
    display: block;
  }
}
.page-center {
  text-align: center;
}
.products1-page {
  padding: 0.58rem 0 1.06rem;
}
.products1-page .box2 {
  margin-top: 0.64rem;
}
.products1-page .item-box {
  position: relative;
}
.products1-page .item-box .public-img {
  width: 52.77777778%;
  max-width: 760px;
}
.products1-page .item-box .public-img::before {
  padding-top: 57.23684211%;
}
@media (max-width:1024px) {
  .products1-page .item-box .public-img {
    width: 100%;
    margin: auto;
  }
}
.products1-page .item-box .text-main {
  width: 49.375%;
  max-width: 711px;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width:1024px) {
  .products1-page .item-box .text-main {
    width: 100%;
    max-width: 711px;
    margin: auto;
    position: relative;
    top: 0;
    -webkit-transform: initial;
    transform: initial;
  }
}
.products1-page .item-box .text-main .text-box {
  padding: 0.46rem 0.24rem 0.7rem 0.72rem;
  position: relative;
  background-color: #fff;
  box-shadow: 0px 0px 0.32rem 0px rgba(170, 175, 190, 0.19);
}
@media (max-width:1024px) {
  .products1-page .item-box .text-main .text-box {
    padding: 0.6rem 0.4rem;
  }
}
.products1-page .item-box .text-main .text-box .icon-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.products1-page .item-box .text-main .text-box .float-icon img {
  width: 0.9rem;
  opacity: 0.2;
}
.products1-page .item-box .text-main .text-box .icon img {
  height: 0.54rem;
}
.products1-page .item-box .text-main .text-box .text-body {
  padding-right: 0.2rem;
  line-height: 1.5em;
  line-height: 1.5;
  max-height: calc(4em * 1.5);
  overflow: auto;
  margin-top: 0.29rem;
}
@media (max-width:1024px) {
  .products1-page .item-box .text-main .text-box .text-body {
    margin-top: 0.4rem;
    overflow: initial;
    padding: 0;
  }
}
.products1-page .item-box .text-main .text-box .title {
  color: #0b0306;
  margin-top: 0.56rem;
}
.products1-page .products1coursea1 .swiper-pagination {
  opacity: 0;
}
@media (max-width:1024px) {
  .products1-page .products1coursea1 {
    overflow: visible;
    padding-bottom: 40px;
  }
  .products1-page .products1coursea1 .swiper-pagination {
    opacity: 1;
  }
}
.products1-page .products1coursea2 {
  margin-top: 0.28rem;
  text-align: center;
}
@media (max-width:1024px) {
  .products1-page .products1coursea2 {
    display: none;
  }
}
.products1-page .products1coursea2 .swiper-slide-thumb-active .title {
  color: #0a01b1;
}
.products1-page .products1coursea2 .swiper-slide-thumb-active .title::before {
  height: 0.04rem;
  background-color: #0a01b1;
}
.products1-page .products1coursea2 .title {
  color: #666666;
  position: relative;
  padding-bottom: 0.2rem;
  cursor: pointer;
}
.products1-page .products1coursea2 .title::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #f5f5f5;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.products2-page {
  background: no-repeat center;
  background-size: cover;
  background-color: #f6f9fd;
  padding-top: 0.6rem;
}
@media (max-width:1024px) {
  .products2-page {
    padding: 1rem 0;
  }
}
.products2-page .page-main {
  padding: 0.23rem 0 0.1rem;
}
.products2-page .box2 {
  margin-top: 0.96rem;
}
.products2-page .item-box {
  position: relative;
}
.products2-page .item-box > .public-img {
  width: 78.68055556%;
  max-width: 1133px;
  margin: auto;
}
.products2-page .item-box > .public-img::before {
  padding-top: 44.57193292%;
}
@media (max-width:1024px) {
  .products2-page .item-box > .public-img {
    width: 100%;
    margin: auto;
  }
}
.products2-page .item-box .text-main {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0.13rem;
}
@media (max-width:1024px) {
  .products2-page .item-box .text-main {
    margin-top: 0.4rem;
    position: relative;
    top: 0;
    -webkit-transform: initial;
    transform: initial;
  }
}
.products2-page .item-box .text-main .img-main {
  width: 0.66rem;
}
.products2-page .item-box .text-main .public-img {
  background-color: #fff;
  border: 2px solid #0a01b1;
  border-radius: 50%;
}
.products2-page .item-box .text-main .text-box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  max-width: 320px;
  padding: 0.36rem 0.44rem 0.28rem 0.36rem;
  position: relative;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 0.2rem;
  box-shadow: -1rem 0.08rem 0.24rem 0px rgba(72, 84, 219, 0.2), inset 0px 0px 7.6px 2.4px rgba(237, 244, 253, 0.004);
}
@media (max-width:1024px) {
  .products2-page .item-box .text-main .text-box {
    padding: 0.6rem 0.4rem;
    box-shadow: none;
    max-width: 100%;
  }
}
.products2-page .item-box .text-main .text-box .text-body {
  color: #000000;
  line-height: 1.33333333em;
}
.products2-page .item-box .text-main .text-box .float-icon {
  text-align: right;
  margin-top: 0.42rem;
}
.products2-page .item-box .text-main .text-box .float-icon img {
  width: 0.64rem;
  opacity: 0.2;
}
.products2-page .products2coursea1 .swiper-pagination {
  opacity: 0;
}
@media (max-width:1024px) {
  .products2-page .products2coursea1 {
    overflow: visible;
    padding-bottom: 40px;
  }
  .products2-page .products2coursea1 .swiper-pagination {
    opacity: 1;
  }
}
.products2-page .products2coursea2 {
  margin-top: 0.46rem;
  text-align: center;
}
@media (max-width:1024px) {
  .products2-page .products2coursea2 {
    display: none;
  }
}
.products2-page .products2coursea2 .swiper-wrapper {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.products2-page .products2coursea2 .swiper-slide {
  width: auto;
}
.products2-page .products2coursea2 .swiper-slide:first-child .title::before {
  display: none;
}
.products2-page .products2coursea2 .swiper-slide-thumb-active .title {
  color: #0a01b1;
}
.products2-page .products2coursea2 .title {
  color: #666666;
  position: relative;
  padding: 0 1.25rem;
  cursor: pointer;
}
.products2-page .products2coursea2 .title::before {
  content: '';
  width: 1.6rem;
  height: 1px;
  background-color: #e9ecf0;
  position: absolute;
  left: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.products3-page {
  padding-top: 0.7rem;
}
@media (max-width:1024px) {
  .products3-page {
    padding: 1rem 0;
  }
}
.products3-page .page-up .text-body {
  max-width: 74%;
  margin: auto;
  color: #666666;
  line-height: 1.66666667em;
  text-align: center;
}
@media (max-width: 767px) {
  .products3-page .page-up .text-body {
    max-width: 100%;
    margin-top: 0.4rem;
  }
}
.products3-page .box2 {
  margin-top: 0.6rem;
}
@media (max-width: 767px) {
  .products3-page .box2 {
    padding: 0 5%;
  }
}
.products3-page .box3 {
  max-width: 80%;
  margin: auto;
  position: relative;
  z-index: 2;
}
@media (max-width:1024px) {
  .products3-page .box3 {
    display: none;
  }
}
.products3-page .item-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:1024px) {
  .products3-page .item-box {
    display: block;
  }
}
.products3-page .item-box .public-img {
  width: 50%;
  order: 2;
  overflow: visible;
}
.products3-page .item-box .public-img span {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.products3-page .item-box .public-img::before {
  padding-top: 57.08333333%;
}
@media (max-width:1024px) {
  .products3-page .item-box .public-img {
    width: 100%;
    margin: auto;
  }
}
.products3-page .item-box .text-main {
  width: 50%;
  background: url(../images/products/products3-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 0.6rem 6% 0.6rem 12.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width:1024px) {
  .products3-page .item-box .text-main {
    width: 100%;
    padding: 0.6rem 0.4rem;
  }
}
.products3-page .item-box .text-main .text-box .text-body {
  margin-top: 0.4rem;
  color: #fff;
  color: rgba(225, 225, 225, 0.8);
}
.products3-page .item-box .text-main .text-box .text-body-en {
  margin-top: 1.08rem;
  color: #fff;
  color: rgba(225, 225, 225, 0.22);
}
.products3-page .item-box .text-main .text-box .subtitle {
  color: #fff;
}
.products3-page .item-box .text-main .text-box .title {
  color: #fff;
}
.products3-page .item-box .text-main .text-box .public-btn3 {
  margin-top: 0.5rem;
}
.products3-page .item-box .text-main .text-box .public-btn3 .public-btn0 {
  min-width: 1.6rem;
  line-height: 0.48rem;
  background-color: rgba(225, 225, 225, 0.1);
}
.products3-page .item-box .text-main .text-box .public-btn3 .public-btn0 .icon {
  margin-left: 0.07rem;
}
.products3-page .item-box .text-main .text-box .public-btn3 .public-btn0 .icon img,
.products3-page .item-box .text-main .text-box .public-btn3 .public-btn0 .icon svg {
  width: 0.08rem;
  min-width: 6px;
  height: auto;
}
.products3-page .item-box .text-main .text-box .public-btn3 .public-btn0 .icon svg path {
  fill: #fff;
  opacity: 1;
}
.products3-page .products3coursea1 {
  overflow: visible;
}
.products3-page .products3coursea1 .swiper-pagination {
  opacity: 0;
}
@media (max-width:1024px) {
  .products3-page .products3coursea1 {
    overflow: visible;
    padding-bottom: 40px;
  }
  .products3-page .products3coursea1 .swiper-pagination {
    opacity: 1;
  }
}
.products3-page .products3coursea2 {
  margin-top: 0.7rem;
  text-align: center;
}
.products3-page .products3coursea2 .swiper-slide-thumb-active .title {
  color: #222222;
}
.products3-page .products3coursea2 .swiper-slide-thumb-active .title::before {
  height: 0.03rem;
}
.products3-page .products3coursea2 .title {
  color: #666666;
  position: relative;
  padding-bottom: 0.1rem;
  cursor: pointer;
  display: inline-block;
}
.products3-page .products3coursea2 .title::before {
  content: '';
  width: 100%;
  height: 0;
  background-color: #0a01b1;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.products3-page .img {
  text-align: center;
  padding: 0.35rem 0 1.38rem;
}
.products3-page .img img {
  margin: auto;
}
@media (max-width:1024px) {
  .products3-page .img {
    padding: 1rem 0;
  }
}
.products3-page-new .box2 {
  margin-top: 1.2rem;
}
.products4-page .page-up {
  padding-top: 0.66rem;
}
@media (max-width:1024px) {
  .products4-page .page-up {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.products4-page .page-down {
  position: relative;
  margin-top: -3.56rem;
}
@media (max-width:1024px) {
  .products4-page .page-down {
    display: none;
  }
}
.products4-page .page-down img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products4-page .swiper-main {
  padding-left: 0.68rem;
  margin-top: 0.68rem;
}
.products4-page .products4-swiper {
  overflow: visible;
  padding-bottom: 1.2rem;
}
.products4-page .products4-swiper .swiper-slide {
  height: auto;
}
.products4-page .products4-swiper .swiper-pagination {
  opacity: 1;
  right: auto;
  width: 3.2rem !important;
  background-color: rgba(225, 225, 225, 0.1);
}
@media (max-width:1024px) {
  .products4-page .products4-swiper .swiper-pagination {
    background-color: #e4e4e4;
  }
}
.products4-page .products4-swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #fff;
}
@media (max-width:1024px) {
  .products4-page .products4-swiper .swiper-pagination .swiper-pagination-progressbar-fill {
    background: #0a01b1;
  }
}
.products4-page .item-box {
  display: block;
  height: 100%;
  background-color: #fff;
  border-radius: 0.2rem;
  overflow: hidden;
  position: relative;
  padding: 0.46rem 0.5rem 2.32rem 0.42rem;
}
.products4-page .item-box:hover {
  background: url(../images/products/products4-item-bg.jpg) no-repeat center;
  background-size: cover;
}
.products4-page .item-box:hover .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.products4-page .item-box:hover .text-box {
  color: #fff;
}
.products4-page .item-box .icon {
  width: 0.64rem;
  height: 0.68rem;
  position: absolute;
  left: 0.42rem;
  bottom: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.products4-page .item-box .text-box {
  color: #000;
}
.products4-page .item-box .text-box .text-body {
  line-height: 1.8em;
  margin-top: 0.36rem;
}
.products5-page {
  padding: 0.9rem 0 1.4rem;
}
.products5-page .img {
  margin-top: 1.3rem;
  text-align: center;
}
@media (max-width:1024px) {
  .products5-page .img {
    margin-top: 1rem !important;
  }
}
.products5-page .img img {
  margin: auto;
}
.products5-page .public-btn3 {
  margin-top: 1.3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:1024px) {
  .products5-page .public-btn3 {
    margin-top: 1rem;
  }
}
.products6-page {
  padding: 1rem 0 1.38rem;
  background-color: #f6f9fd;
  overflow: hidden;
  position: relative;
}
.products6-page::before,
.products6-page::after {
  content: '';
  width: 30%;
  height: 100%;
  background: -webkit-linear-gradient(0deg, #f6f9fd 0%, transparent 100%);
  background: linear-gradient(90deg, #f6f9fd 0%, transparent 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.products6-page::after {
  left: auto;
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.products6-page .public-btn3 {
  margin-top: 0.6rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:1024px) {
  .products6-page .public-btn3 {
    margin-top: 1rem;
  }
}
.products6-page #products6-swiper1 {
  margin-top: 0.58rem;
  border-top: 1px solid #e4f2ff;
}
.products6-page .products6-swiper {
  border-bottom: 1px solid #e4f2ff;
  overflow: visible;
}
.products6-page .products6-swiper .swiper-wrapper {
  -webkit-transition-duration: 2500ms;
  transition-duration: 2500ms;
  -o-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.products6-page .item-box {
  width: 100%;
  height: 1.45rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.products6-page .item-box .img {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.products6-page .item-box .img img {
  position: relative;
  z-index: 1;
  max-width: 90%;
  max-height: 74%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.products7-page {
  padding-top: 0.5rem;
}
@media (max-width:1024px) {
  .products7-page {
    padding: 1rem 0;
  }
}
.products7-page .products7-swiper {
  padding-bottom: 0.64rem;
  margin-top: 0.28rem;
}
@media (max-width:1024px) {
  .products7-page .products7-swiper {
    margin-top: 0.6rem;
  }
}
.products7-page .products7-swiper .swiper-slide {
  height: auto;
}
.products7-page .products7-swiper .publicswiperpage {
  bottom: 0;
}
.products7-page .products7-swiper .publicswiperpage .swiper-pagination-bullet {
  height: 0.03rem;
}
.products7-page .products7-swiper .publicswiperpage .swiper-pagination-bullet::before {
  background-color: #0060ff;
  opacity: 0.1;
}
.products7-page .products7-swiper .publicswiperpage .swiper-pagination-bullet em {
  background-color: #0a01b1;
}
.products7-page .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: #f6f9fd;
  padding: 0.86rem 0.6rem 0.55rem 0.84rem;
}
.products7-page .item-box .text-box .text-body {
  color: #000000;
  line-height: 1.5em;
  position: relative;
}
.products7-page .item-box .text-box .text-body::before {
  content: '';
  width: 0.22rem;
  height: 0.14rem;
  background: url(../images/products/products7-icon.png) no-repeat center;
  background-size: cover;
  position: absolute;
  left: -0.4rem;
  top: -0.26rem;
}
.products7-page .item-box .text-box .icon {
  margin-top: 0.46rem;
}
.products7-page .item-box .text-box .icon img {
  width: 2.1rem;
}
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.header {
  z-index: 20;
}
.ba_FFF {
  background: #FFFFFF;
}
.pager_box {
  width: 100%;
  height: auto;
  --widthNum: 0.5rem;
  --berCor: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
}
.pager_box .swiperbtn {
  width: var(--widthNum);
  height: var(--widthNum);
  border-radius: 50%;
  border: 1px solid var(--berCor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  min-height: 38px;
  min-width: 38px;
}
@media (max-width:990px) {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  ::-webkit-scrollbar {
    display: none;
  }
  * {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  *::-webkit-scrollbar {
    display: none;
  }
}
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
.word_box_idx {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-align: center;
}
.word_box_idx .number {
  font-family: sansmedium;
  position: absolute;
  font-size: 2rem;
  line-height: 1;
  color: #666666;
  opacity: 0.08;
}
.word_box_idx .pagetit {
  font-family: sansmedium;
}
/* ---------------------------------------------------------------------------------------------------  */
/* ---------------------------------------------------------------------------------------------------  */
.serveCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: url(../images/zbg1.jpg) no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1.46rem;
}
.serveCon1 .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}
@media (max-width:1024px) {
  .serveCon1 .swiper_box {
    margin-top: 0.6rem;
  }
}
.serveCon1 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.serveCon1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.serveCon1 .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.serveCon1 .swiper_box ul li .centerInfo .content .item {
  width: 31.39%;
  padding: 0 0.2rem;
}
.serveCon1 .swiper_box ul li .centerInfo .content .item .icon {
  width: 0.9rem;
  height: 0.9rem;
  box-shadow: -8.866px 9.508px 51px 0px rgba(125, 138, 154, 0.13);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.serveCon1 .swiper_box ul li .centerInfo .content .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.serveCon1 .swiper_box ul li .centerInfo .content .item .word .t1 {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e5e5e5;
}
.serveCon1 .swiper_box ul li .centerInfo .content .item .word .t2 {
  margin-top: 0.3rem;
}
.serveCon1 .swiper_box ul li .centerInfo .content .item .word .t2 span {
  color: var(--color);
  display: initial;
  background: url(../images/zi3.png) no-repeat;
  background-size: 100% 100%;
}
.serveCon1 .swiper_box ul li .centerInfo .content .images {
  width: 30%;
  max-width: 430px;
}
.serveCon1 .swiper_box ul li .centerInfo .content .images .pb {
  padding-bottom: 116%;
}
.serveCon1 .swiperlist {
  position: absolute;
  left: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.3rem;
}
@media (max-width: 767px) {
  .serveCon1 .swiperlist {
    width: 100%;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 0.1rem;
    left: 0;
    bottom: 0.6rem;
  }
}
@-webkit-keyframes circle_right {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }
  50%,
  100% {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
  }
}
@keyframes circle_right {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }
  50%,
  100% {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
  }
}
.serveCon1 .circle_right {
  -webkit-animation-name: circle_right;
  animation-name: circle_right;
}
.serveCon1 .swiperlist .swiper-pagination-bullet {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
  background-color: transparent;
  margin: 0 0.2rem 0 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.serveCon1 .swiperlist .swiper-pagination-bullet::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #808080;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.5;
}
.serveCon1 .swiperlist .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: transparent;
  width: 14px;
}
.serveCon1 .swiperlist .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background-color: transparent;
  border: 3px solid #808080;
}
.serveCon1 .swiperlist .swiper-pagination-bullet.swiper-pagination-bullet-active .line {
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  z-index: -1;
}
.serveCon1 .swiperlist .swiper-pagination-bullet .l {
  position: absolute;
  width: 7px;
  height: 14px;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 7px 0 0 7px;
}
.serveCon1 .swiperlist .swiper-pagination-bullet .r {
  position: absolute;
  width: 7px;
  height: 14px;
  top: 0;
  right: 0;
  overflow: hidden;
  border-radius: 0 7px 7px 0;
}
.serveCon1 .swiperlist .swiper-pagination-bullet .l:after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(-44deg);
}
.serveCon1 .swiperlist .swiper-pagination-bullet .r:after {
  content: " ";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(-46deg);
}
.serveCon1 .swiperlist .swiper-pagination-bullet.swiper-pagination-bullet-active .l:after {
  border: 3px solid #0a01b1;
  border-color: transparent #0a01b1 #0a01b1 transparent;
  -webkit-animation: circle_right 5s linear 1 forwards;
  -moz-animation: circle_right 5s linear 1 forwards;
  -o-animation: circle_right 5s linear 1 forwards;
  animation: circle_right 5s linear 1 forwards;
}
.serveCon1 .swiperlist .swiper-pagination-bullet.swiper-pagination-bullet-active .r:after {
  border: 3px solid #0a01b1;
  border-color: #0a01b1 transparent transparent #0a01b1;
  -webkit-animation: circle_right 4.9s 2.5s linear 1 forwards;
  -moz-animation: circle_right 4.9s 2.5s linear 1 forwards;
  -o-animation: circle_right 4.9s 2.5s linear 1 forwards;
  animation: circle_right 4.9s 2.5s linear 1 forwards;
}
.serveCon1 .swiperlist .swiper-pagination-bullet.swiper-pagination-bullet-active.on:last-child .l:after {
  -webkit-animation: circle_right 6s linear 1 forwards;
  -moz-animation: circle_right 6s linear 1 forwards;
  -o-animation: circle_right 6s linear 1 forwards;
  animation: circle_right 6s linear 1 forwards;
}
.serveCon1 .swiperlist .swiper-pagination-bullet.swiper-pagination-bullet-active.on:last-child .r:after {
  -webkit-animation: circle_right 5.9s 3s linear 1 forwards;
  -moz-animation: circle_right 5.9s 3s linear 1 forwards;
  -o-animation: circle_right circle_right 5.9s 3s linear 1 forwards;
  animation: circle_right 5.9s 3s linear 1 forwards;
}
@media (max-width:990px) {
  .serveCon1 .swiper_box ul li .centerInfo .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem;
  }
  .serveCon1 .swiper_box ul li .centerInfo .content .item,
  .serveCon1 .swiper_box ul li .centerInfo .content .images {
    width: 100%;
    height: auto;
  }
  .serveCon1 .swiper_box ul li .centerInfo .content .item {
    order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0;
    grid-gap: 0.2rem;
  }
  .serveCon1 .swiper_box ul li .centerInfo .content .item .icon {
    flex-shrink: 0;
  }
  .serveCon1 .swiper_box ul li .centerInfo .content .item .word {
    margin-top: 0.1rem;
  }
  .serveCon1 .swiper_box ul li .centerInfo .content .images {
    order: 2;
  }
}
@media (max-width:990px) and (max-width:480px) {
  .serveCon1 .swiper_box ul li .centerInfo .content .images {
    width: 80%;
    margin: auto;
  }
}
.serveCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.serveCon2 .page-img-main {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.serveCon2 .page-img-main::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(33, 55, 87, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.serveCon2 .page-img-main .page-img + .page-img {
  display: none;
}
.serveCon2 .page-img-main .page-img.active {
  display: block;
}
.serveCon2 .container {
  position: relative;
  z-index: 2;
}
.serveCon2 .page-up {
  padding-top: 0.88rem;
  padding-bottom: 1.9rem;
}
.serveCon2 .pagetit-main .num {
  color: #FFFFFF;
}
.serveCon2 .pagetit-main .pagetit {
  color: #FFFFFF;
}
.serveCon2 .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.86rem;
}
.serveCon2 .content .item_box {
  width: 25%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  background: rgba(0, 0, 0, 0.1);
}
@media (max-width:1024px) {
  .serveCon2 .content .item_box {
    display: none;
  }
}
.serveCon2 .content .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font24);
  padding: 0.3rem 0.4rem;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  color: #FFFFFF;
  opacity: 0.7;
}
.serveCon2 .content .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(-90deg, #00000000 10%, #0a01b1 100%);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}
.serveCon2 .content .item_box .item:hover {
  opacity: 1;
}
.serveCon2 .content .item_box .item.active {
  opacity: 1;
}
.serveCon2 .content .item_box .item.active::after {
  width: 100%;
}
.serveCon2 .content .swiper_box {
  width: 75%;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
}
.serveCon2 .content .swiper_box .swiper-pagination {
  opacity: 0;
}
@media (max-width:1024px) {
  .serveCon2 .content .swiper_box {
    width: 100%;
    padding-bottom: 40px;
    background: transparent;
  }
  .serveCon2 .content .swiper_box .swiper-slide {
    background-color: #fff;
  }
  .serveCon2 .content .swiper_box .swiper-pagination {
    opacity: 1;
  }
}
.serveCon2 .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.serveCon2 .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background-color: #fff;
}
.serveCon2 .content .swiper_box ul li .centerInfo .word_box {
  width: 53%;
  padding: 0.6rem 0.65rem;
}
@media (max-width:1024px) {
  .serveCon2 .content .swiper_box ul li .centerInfo .word_box {
    padding: 0.6rem 0.4rem;
  }
}
.serveCon2 .content .swiper_box ul li .centerInfo .word_box .t1 {
  line-height: 1;
}
.serveCon2 .content .swiper_box ul li .centerInfo .word_box .t2 {
  line-height: 1;
  margin-top: 0.15rem;
}
.serveCon2 .content .swiper_box ul li .centerInfo .word_box .t3 {
  margin-top: 0.8rem;
  color: #666666;
  line-height: 1.5;
}
.serveCon2 .content .swiper_box ul li .centerInfo .word_box .t3 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.13rem;
  margin-bottom: 0.15rem;
}
.serveCon2 .content .swiper_box ul li .centerInfo .word_box .t3 dl dt {
  width: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.serveCon2 .content .swiper_box ul li .centerInfo .word_box .t3 dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.serveCon2 .content .swiper_box ul li .centerInfo .images {
  width: 47%;
  height: auto;
}
.serveCon2 .content .swiper_box ul li .centerInfo .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .serveCon2 .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .serveCon2 .content .item_box,
  .serveCon2 .content .swiper_box {
    width: 100%;
    height: auto;
  }
  .serveCon2 .content .swiper_box ul li .centerInfo {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .serveCon2 .content .swiper_box ul li .centerInfo .word_box,
  .serveCon2 .content .swiper_box ul li .centerInfo .images {
    width: 100%;
    height: auto;
  }
  .serveCon2 .content .swiper_box ul li .centerInfo .word_box {
    padding: 0.6rem 0.4rem;
  }
}
.serveCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: url(../images/zbg3.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 0.89rem;
  padding-bottom: 1.56rem;
}
.serveCon3 .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.34rem;
}
.serveCon3 .content .cont {
  width: 47.9%;
}
.serveCon3 .content .cont .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  background: #FFFFFF;
  padding: 0.5rem;
}
@media (max-width:1024px) {
  .serveCon3 .content .cont .item_box {
    grid-gap: 0.4rem;
    padding: 0.4rem;
  }
}
.serveCon3 .content .cont .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.6rem 0.15rem;
}
.serveCon3 .content .cont .item_box .item .icon {
  flex-shrink: 0;
  width: 0.44rem;
  /*min-width: 30px;*/
}
.serveCon3 .content .cont .item_box .item .word {
  font-size: var(--font18);
}
.serveCon3 .content .cont .name {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.2rem;
  margin-top: 0.3rem;
}
.serveCon3 .content .cont .name span {
  font-size: var(--font32);
  flex-shrink: 0;
}
.serveCon3 .content .cont .name img {
  height: 0.16rem;
}
@media (max-width:990px) {
  .serveCon3 .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }
  .serveCon3 .content .cont {
    width: 100%;
    height: auto;
  }
  .serveCon3 .content .cont .item_box .item {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.2rem;
  }
}
.serveCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.serveCon5 {
  background: url(../images/products/serveCon5-bg.jpg) no-repeat center;
  background-size: cover;
  padding-top: 0.88rem;
  padding-bottom: 1.75rem;
}
@media (max-width:1024px) {
  .serveCon5 {
    padding: 1rem 0;
  }
}
.serveCon5 .guard-bg {
  max-width: 1287px;
  margin: auto;
  position: relative;
}
@media (max-width:1024px) {
  .serveCon5 .guard-bg {
    margin-top: 0.6rem;
  }
}
.serveCon5 .guard-bg > .img img {
  width: 100%;
}
@media (max-width:1024px) {
  .serveCon5 .guard-bg > .img {
    display: none;
  }
}
.serveCon5 .guard-bg .float-title {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 2.34rem;
}
@media (max-width:1024px) {
  .serveCon5 .guard-bg .float-title {
    position: relative;
    top: 0 !important;
  }
}
.serveCon5 .guard-bg .float-title1 {
  top: 13%;
}
.serveCon5 .guard-bg .float-title2 {
  top: 64%;
}
@media (max-width:1024px) {
  .serveCon5 .guard-bg .float-title2 {
    margin-top: 0.6rem;
  }
}
.serveCon5 .guard-bg .list1 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width:1024px) {
  .serveCon5 .guard-bg .list1 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.4rem;
    margin-top: 0.6rem;
  }
}
@media (max-width: 767px) {
  .serveCon5 .guard-bg .list1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.serveCon5 .guard-bg .list1 .item1 {
  top: 10%;
  left: 8%;
}
.serveCon5 .guard-bg .list1 .item2 {
  top: 37%;
  left: 14%;
}
.serveCon5 .guard-bg .list1 .item3 {
  top: 41%;
  left: 33%;
}
.serveCon5 .guard-bg .list1 .item4 {
  top: 41%;
  right: 33%;
}
.serveCon5 .guard-bg .list1 .item5 {
  top: 37%;
  right: 14%;
}
.serveCon5 .guard-bg .list1 .item6 {
  top: 10%;
  right: 8%;
}
.serveCon5 .guard-bg .list1 .item {
  position: absolute;
  z-index: 2;
  cursor: pointer;
}
.serveCon5 .guard-bg .list1 .item:hover .item-box .public-img-main {
  background: url(../images/products/serveCon5-icon-bg2.png) no-repeat center;
  background-size: cover;
}
.serveCon5 .guard-bg .list1 .item:hover .item-box .public-img-main img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.serveCon5 .guard-bg .list1 .item:hover .item-box .text-float {
  display: block;
  -webkit-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
  -webkit-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.serveCon5 .guard-bg .list1 .item:hover .item-box .text-box {
  opacity: 0;
}
.serveCon5 .guard-bg .list1 .item .item-box {
  display: block;
  height: 100%;
  position: relative;
  text-align: center;
}
.serveCon5 .guard-bg .list1 .item .item-box .public-img-main {
  width: 0.9rem;
  height: 0.9rem;
  background: url(../images/products/serveCon5-icon-bg1.png) no-repeat center;
  background-size: cover;
  border-radius: 50%;
  margin: auto;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.serveCon5 .guard-bg .list1 .item .item-box .public-img-main img {
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 37.7%;
  max-height: 37.7%;
  object-fit: initial;
}
.serveCon5 .guard-bg .list1 .item .item-box .text-box {
  width: 100%;
  position: absolute;
  left: 0;
  top: -0.3rem;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.serveCon5 .guard-bg .list1 .item .item-box .text-box .title {
  color: #000;
}
.serveCon5 .guard-bg .list1 .item .item-box .text-float {
  text-align: left;
  position: absolute;
  right: -0.14rem;
  top: -0.1rem;
  width: 3.56rem;
  height: 1.12rem;
  background-color: #fff;
  border-radius: 99px;
  padding: 0.28rem 1.1rem 0.28rem 0.4rem;
  box-shadow: 0px 0.04rem 0.65rem 0px rgba(1, 96, 254, 0.18);
  z-index: -1;
  display: none;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.serveCon5 .guard-bg .list1 .item .item-box .text-float .title {
  color: #000;
}
.serveCon5 .guard-bg .list1 .item .item-box .text-float .text-body {
  color: #666666;
  line-height: 1.875em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width:1024px) {
  .serveCon5 .guard-bg .list1 .item {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
  }
  .serveCon5 .guard-bg .list1 .item .item-box .public-img-main {
    background: url(../images/products/serveCon5-icon-bg2.png) no-repeat center;
    background-size: cover;
  }
  .serveCon5 .guard-bg .list1 .item .item-box .public-img-main img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .serveCon5 .guard-bg .list1 .item .item-box .text-float {
    text-align: center;
    padding: 0.4rem;
    margin-top: 0.2rem;
    width: 100%;
    height: auto;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    display: block !important;
    -webkit-animation: initial !important;
    animation: initial !important;
  }
  .serveCon5 .guard-bg .list1 .item .item-box .text-box {
    opacity: 0;
  }
}
.serveCon5 .guard-bg .list2 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-family: 'Douyin-Sans-B';
  font-style: italic;
}
@media (max-width:1024px) {
  .serveCon5 .guard-bg .list2 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.4rem;
    margin-top: 0.6rem;
  }
}
.serveCon5 .guard-bg .list2 .item1 {
  bottom: -5%;
  left: 4%;
}
.serveCon5 .guard-bg .list2 .item2 {
  bottom: -11%;
  left: 25%;
}
.serveCon5 .guard-bg .list2 .item3 {
  bottom: -11%;
  right: 25%;
}
.serveCon5 .guard-bg .list2 .item4 {
  bottom: -5%;
  right: 4%;
}
.serveCon5 .guard-bg .list2 .item {
  position: absolute;
  z-index: 2;
  cursor: pointer;
}
@media (max-width:1024px) {
  .serveCon5 .guard-bg .list2 .item {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
  }
}
.serveCon5 .guard-bg .list2 .item:nth-child(2) .item-box .public-img-main,
.serveCon5 .guard-bg .list2 .item:nth-child(3) .item-box .public-img-main {
  width: 0.94rem;
  height: 0.94rem;
}
@media (max-width:1024px) {
  .serveCon5 .guard-bg .list2 .item:nth-child(2) .item-box .public-img-main,
  .serveCon5 .guard-bg .list2 .item:nth-child(3) .item-box .public-img-main {
    width: 0.84rem;
    height: 0.84rem;
  }
  .serveCon5 .guard-bg .list2 .item:nth-child(2) .item-box .public-img-main .title,
  .serveCon5 .guard-bg .list2 .item:nth-child(3) .item-box .public-img-main .title {
    font-size: var(--font24);
  }
}
.serveCon5 .guard-bg .list2 .item .item-box {
  display: block;
  height: 100%;
  position: relative;
  text-align: center;
}
.serveCon5 .guard-bg .list2 .item .item-box .public-img-main {
  width: 0.84rem;
  height: 0.84rem;
  background: url(../images/products/serveCon5-icon-bg3.png) no-repeat center;
  background-size: cover;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 0.04rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.serveCon5 .guard-bg .list2 .item .item-box .public-img-main .title {
  color: #fff;
}
.serveCon5 .guard-bg .list2 .item .item-box .text-box {
  text-align: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.serveCon5 .guard-bg .list2 .item .item-box .text-box .title {
  color: #666666;
}
@media (max-width: 1580px) {
  .serveCon5 .guard-bg {
    max-width: 80%;
  }
  .serveCon5 .guard-bg .float-title1 {
    top: 15%;
  }
  .serveCon5 .guard-bg .float-title2 {
    top: 66%;
  }
}
@media (max-width: 1580px) and (max-width:1024px) {
  .serveCon5 .guard-bg {
    max-width: 100%;
  }
}
.ins_bannerCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #ecf3fc;
}
.ins_bannerCon1 .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_bannerCon1 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_bannerCon1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_bannerCon1 .swiper_box ul li .centerInfo .word_box_idx {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_bannerCon1 .swiper_box ul li .centerInfo .word_box_idx .pagetit {
  opacity: 0.5;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.ins_bannerCon1 .swiper_box ul li .centerInfo .word_box_idx .t2 {
  color: #161823;
}
.ins_bannerCon1 .swiper_box ul li .centerInfo .word_box_idx .img {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.ins_bannerCon1 .swiper_box ul li .centerInfo .word_box_idx .img .ri {
  transform: translateX(50%);
}
.ins_bannerCon1 .swiper_box ul li .centerInfo .word_box_idx .img .le {
  transform: translateX(-50%);
}
.ins_bannerCon1 .swiper_box ul li .centerInfo .images {
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.ins_bannerCon1 .swiper_box ul li .centerInfo .images .pb {
  padding-bottom: 56%;
}
.ins_bannerCon1 .swiper_box ul li .centerInfo .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.ins_bannerCon1 .swiper_box ul li .centerInfo .images .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  z-index: 10;
  padding: 0.4rem;
}
.ins_bannerCon1 .swiper_box ul li .centerInfo .images .word span {
  color: #FFFFFF;
  font-size: var(--font24);
}
.ins_bannerCon1 .swiper_box ul li .centerInfo .images .word i {
  width: 0.9rem;
  height: 2px;
  background: rgba(0, 0, 0, 0.23);
  position: relative;
  z-index: 1;
  display: block;
  flex-shrink: 0;
}
.ins_bannerCon1 .swiper_box ul li .centerInfo .images .word i::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #FFFFFF;
  transition: all 5s linear;
}
.ins_bannerCon1 .swiper_box ul li.swiper-slide-active .centerInfo .word_box_idx .pagetit {
  opacity: 1;
}
.ins_bannerCon1 .swiper_box ul li.swiper-slide-active .centerInfo .word_box_idx .img {
  opacity: 1;
}
.ins_bannerCon1 .swiper_box ul li.swiper-slide-active .centerInfo .images .word i::after {
  width: 100%;
}
.ins_bannerCon1 .pager_box {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  z-index: 10;
  left: 0;
}
.ins_bannerCon1 .pager_box .container {
  width: 100%;
  height: auto;
  top: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 60%;
}
.ins_bannerCon1 .pager_box .swiperbtn:hover {
  background: #FFFFFF;
}
.ins_bannerCon1 .pager_box .swiperbtn:hover svg path {
  fill: #0a01b1;
}
.development2-page {
  padding: 0.82rem 0 1.15rem;
  background: url(../images/development/development2-bg.jpg) no-repeat center;
  background-size: cover;
}
.development2-page .pagetit-main {
  position: relative;
  opacity: 0.5;
}
.development2-page .pagetit-main .pagetit span {
  display: block;
}
.development2-page .pagetit-main .img {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.development2-page .pagetit-main .img .ri {
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
@media (max-width: 767px) {
  .development2-page .pagetit-main .img .ri {
    -webkit-transform: initial;
    transform: initial;
  }
}
.development2-page .pagetit-main .img .le {
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .development2-page .pagetit-main .img .le {
    -webkit-transform: initial;
    transform: initial;
  }
}
.development2-page .pagetit-main .img img {
  height: 0.2rem;
}
.development2-page .swiper-slide-active .pagetit-main {
  opacity: 1;
}
.development2-page .swiper-slide-active .pagetit-main .img {
  opacity: 1;
}
.development2-page .swiper-main {
  margin: auto;
  width: 63.68055556%;
  position: relative;
}
@media (max-width:1024px) {
  .development2-page .swiper-main {
    width: 90%;
  }
}
@media (max-width:1024px) and (max-width: 767px) {
  .development2-page .swiper-main {
    width: 100%;
  }
}
.development2-page .swiper-main .swiper-button-prev,
.development2-page .swiper-main .swiper-button-next {
  background-image: none;
  margin: 0;
  top: 58%;
}
.development2-page .swiper-main .swiper-button-prev {
  left: 0.36rem;
}
.development2-page .swiper-main .publicswipernext2 {
  right: 0.36rem;
}
.development2-page .swiper-main .swiper-pagination2 {
  background-color: rgba(128, 128, 128, 0.2);
}
.development2-page .swiper-main .swiper-pagination2 .swiper-pagination-progressbar-fill {
  background-color: #0a01b1;
}
.development2-page .swiper-main .swiper-pagination {
  left: auto !important;
  right: 0.56rem;
  bottom: 0.56rem;
  -webkit-transform: initial;
  transform: initial;
  background-color: rgba(255, 255, 255, 0.2);
}
.development2-page .swiper-main .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #fff;
}
@media (max-width: 767px) {
  .development2-page .swiper-main .swiper-pagination {
    left: 0 !important;
    right: 0;
    bottom: 0.3rem;
  }
}
.development2-page .swiper-main .development2-swiper {
  padding-bottom: 0.72rem;
  overflow: visible;
  -webkit-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.development2-page .swiper-main .development2-swiper div.swiper-slide.swiper-slide-active .swiper-box,
.development2-page .swiper-main .development2-swiper div.swiper-slide.swiper-slide-active .swiper-scrollbar,
.development2-page .swiper-main .development2-swiper div.swiper-slide.swiper-slide-active .swiper-pagination {
  opacity: 1;
}
.development2-page .swiper-main .development2-swiper .swiper-box {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.development2-page .swiper-main .development2-swiper .swiper-pagination,
.development2-page .swiper-main .development2-swiper .swiper-scrollbar {
  opacity: 0;
}
.development2-page .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.development2-page .item-box:hover .public-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .development2-page .item-box {
    margin-top: 0.4rem;
  }
}
.development2-page .item-box::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #0f1727;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: 2;
}
.development2-page .item-box .public-img {
  min-height: 255px;
}
.development2-page .item-box .public-img::before {
  padding-top: 56.27044711%;
}
.development2-page .item-box .text-box {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 0.5rem 0.42rem;
  color: #fff;
}
.development2-page .item-box .text-box .title {
  width: 80%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .development2-page .item-box .text-box {
    padding-bottom: 0.6rem;
  }
  .development2-page .item-box .text-box .title {
    width: 100%;
  }
}
