@charset "utf-8";
@font-face {
  font-family: "BRONOVA-BOLD";
  src: url('../font/BRONOVA-BOLD.TTF');
  font-display: swap;
}
@font-face {
  font-family: "BRONOVA-REGULAR";
  src: url('../font/BRONOVA-REGULAR.TTF');
  font-style: normal;
  font-display: swap;
}
.ones-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.twos-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.clearfix:after,
.clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
.picture {
  /*position: relative;*/
  overflow: hidden;
  /*z-index: 10;*/
}
.picture img {
  transition: all 1.8s ease-in-out;
}
.each-item:hover .picture img {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  zoom: 1.1 \9;
}
/*flex 布局*/
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inline-flex {
  display: -webkit-inline-flex;
  display: inline-flex;
}
.flex-hc {
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.flex-zBetween {
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex-zEnd {
  -webkit-box-pack: end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-zStart {
  -webkit-box-pack: start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.flex-ac {
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.flex-cStart {
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.flex-cEnd {
  -webkit-box-align: end;
  -moz-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.flex-cBaseline {
  -webkit-box-align: baseline;
  -moz-align-items: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.flex-cStretch {
  -webkit-box-align: stretch;
  -moz-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.flex-zTopBottom {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.flex-zBottomTop {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.flex-zLeftRight {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.flex-zRightLeft {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-shrink {
  -webkit-box-flex: 0;
  -moz-flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.flex-center {
  -webkit-align-content: center;
  align-content: center;
}
.flex-start {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
.flex-end {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}
.flex-between {
  -webkit-align-content: space-between;
  align-content: space-between;
}
.flex-container {
  -webkit-align-content: space-around;
  align-content: space-around;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-nowrap {
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex_bd {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw / 19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "BRONOVA-BOLD", "Microsoft YaHei", "PingFang SC";
}
@media screen and (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media screen and (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: calc(100vw / 7.5);
  }
}
body {
  min-height: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #FFFFFF;
  font-family: "BRONOVA-BOLD", "Microsoft YaHei", "PingFang SC";
}
@media screen and (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 1580px) and screen and (min-width: 1261px) and (max-width: 1900px) {
  body {
    font-size: 0.7291666666666667vw;
  }
}
@media screen and (max-width: 1580px) and screen and (max-width: 1260px) {
  body {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: .28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
.overflow {
  overflow: hidden;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.contain {
  max-width: 1600px;
  width: 83.33333333333333%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1260px) {
  .contain {
    width: 90%;
  }
}
.bg-color {
  background-color: #fff;
}
.pt80 {
  padding-top: 4.166666666666667vw;
}
@media screen and (max-width: 991px) {
  .pt80 {
    padding-top: 0.8rem;
  }
}
.pb80 {
  padding-bottom: 4.166666666666667vw;
}
@media screen and (max-width: 991px) {
  .pb80 {
    padding-bottom: 0.8rem;
  }
}
.pt100 {
  padding-top: 5.208333333333333vw;
}
@media screen and (max-width: 991px) {
  .pt100 {
    padding-top: 1rem;
  }
}
.pb100 {
  padding-bottom: 5.208333333333333vw;
}
@media screen and (max-width: 991px) {
  .pb100 {
    padding-bottom: 1rem;
  }
}
.pt120 {
  padding-top: 6.25vw;
}
@media screen and (max-width: 991px) {
  .pt120 {
    padding-top: 1rem;
  }
}
.pb120 {
  padding-bottom: 6.25vw;
}
@media screen and (max-width: 991px) {
  .pb120 {
    padding-bottom: 1rem;
  }
}
.pt130 {
  padding-top: 6.770833333333333vw;
}
@media screen and (max-width: 991px) {
  .pt130 {
    padding-top: 1rem;
  }
}
.pb130 {
  padding-bottom: 6.770833333333333vw;
}
@media screen and (max-width: 991px) {
  .pb130 {
    padding-bottom: 1rem;
  }
}
.pt180 {
  padding-top: 9.375vw;
}
@media screen and (max-width: 991px) {
  .pt180 {
    padding-top: 1.4rem;
  }
}
.pb180 {
  padding-bottom: 9.375vw;
}
@media screen and (max-width: 991px) {
  .pb180 {
    padding-bottom: 1.4rem;
  }
}
.font14 {
  font-size: 14px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .font14 {
    font-size: 0.7291666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .font14 {
    font-size: 13px;
  }
}
.font16 {
  font-size: 16px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .font16 {
    font-size: 0.8333333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .font16 {
    font-size: 14px;
  }
}
.font18 {
  font-size: 18px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .font18 {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 1260px) {
  .font18 {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .font18 {
    font-size: 14px;
  }
}
.font20 {
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .font20 {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .font20 {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .font20 {
    font-size: 16px;
  }
}
.font24 {
  font-size: 24px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .font24 {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .font24 {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .font24 {
    font-size: 18px;
  }
}
.font30 {
  font-size: 30px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .font30 {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .font30 {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .font30 {
    font-size: 20px;
  }
}
.font36 {
  font-size: 36px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .font36 {
    font-size: 1.875vw;
  }
}
@media screen and (max-width: 1260px) {
  .font36 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .font36 {
    font-size: 20px;
  }
}
.font40 {
  font-size: 40px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .font40 {
    font-size: 2.083333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .font40 {
    font-size: 24px;
  }
}
.font50 {
  font-size: 50px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .font50 {
    font-size: 2.604166666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .font50 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .font50 {
    font-size: 24px;
  }
}
.font60 {
  font-size: 60px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .font60 {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 1260px) {
  .font60 {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .font60 {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .font60 {
    font-size: 28px;
  }
}
.font80 {
  font-size: 80px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .font80 {
    font-size: 4.166666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .font80 {
    font-size: 48px;
  }
}
@media screen and (max-width: 991px) {
  .font80 {
    font-size: 36px;
  }
}
@media screen and (max-width: 480px) {
  .font80 {
    font-size: 32px;
  }
}
#hi-upgrade {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
#hi-upgrade .hi-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -177px 0 0 -450px;
  width: 900px;
}
#hi-upgrade .hi-wrap .hi-title {
  font-size: 30px;
  line-height: 40px;
  color: #333;
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-close {
  margin: 10px 0;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-close:hover {
  text-decoration: underline;
}
#hi-upgrade .hi-wrap .hi-text1 {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-text1 span {
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-text1 * {
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-text2 {
  position: relative;
  margin: 60px 0;
  color: #333;
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-text2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  border-top: 1px solid #ddd;
}
#hi-upgrade .hi-wrap .hi-text2 span {
  position: relative;
  z-index: 5;
  padding: 0 30px;
  background: #fff;
}
#hi-upgrade .hi-wrap .hi-list {
  overflow: hidden;
}
#hi-upgrade .hi-wrap .hi-list li {
  display: inline-block;
  width: 16%;
}
#hi-upgrade .hi-wrap .hi-list li div {
  margin: 0 auto 5px;
  width: 50px;
  height: 50px;
}
#hi-upgrade .hi-wrap .hi-list li a {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-list li a:hover {
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
  background: url(../images/hi-llq-1.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
  background: url(../images/hi-llq-2.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
  background: url(../images/hi-llq-5.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
  background: url(../images/hi-llq-3.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
  background: url(../images/hi-llq-6.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
  background: url(../images/hi-llq-4.png) no-repeat center / 100%;
}
/* 占位标签，设置导航样式 */
#interval {
  height: 1rem;
}
@media screen and (max-width: 991px) {
  #interval {
    height: 60px;
  }
}
.substance #interval {
  height: 0;
}
.about-intro #interval {
  height: 0;
}
.public-btn span,
.public-btn a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.04rem;
  height: 1.21rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
@media screen and (max-width: 1260px) {
  .public-btn span,
  .public-btn a {
    width: 48px;
    height: 56px;
  }
}
.public-btn span img,
.public-btn a img {
  display: block;
  width: 100%;
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  width: 100%;
}
@media screen and (max-width: 1260px) {
  .header .box {
    align-items: stretch;
  }
}
.header .box .logo {
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  margin-right: 3.5%;
  padding-left: 0.36rem;
}
.header .box .logo a {
  display: inline-flex;
  align-items: center;
  height: 1rem;
}
@media screen and (max-width: 1260px) {
  .header .box .logo a {
    height: 60px;
  }
}
.header .box .logo a img {
  width: 2.36rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1260px) {
  .header .box .logo a img {
    width: 2.7rem;
  }
}
.header .box .headright {
  position: relative;
  padding-right: 0.36rem;
  box-sizing: border-box;
  /*background: rgba(21, 21, 241, 0.2);*/
 	padding-left: 1.1rem;
 	background: url(../images/img91.png) left top no-repeat;
  background-size: auto 100%;
}
@media screen and (max-width: 1260px) {
  .header .box .headright {
    background: none;
  }
}
/*.header .box .headright::before {
  content: '';
  position: absolute;
  left: -5.72916667vw;
  top: 0;
  width: 5.729166666666667vw;
  height: 100%;
  background: url(../images/navbg.png) left top no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 1260px) {
  .header .box .headright::before {
    display: none;
  }
}*/
@media screen and (max-width: 1260px) {
  .header .box .headright .nav {
    display: none;
  }
}
.header .box .headright .nav ul {
  padding: 0;
}
.header .box .headright .nav ul li {
  padding: 0 0.2rem;
  list-style: none;
}
.header .box .headright .nav ul li:last-child {
  padding-right: 0;
}
.header .box .headright .nav ul li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1rem;
  color: #ffffff;
  font-size: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .header .box .headright .nav ul li > a {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .header .box .headright .nav ul li > a {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .nav ul li > a {
    font-size: 16px;
  }
}
.header .box .headright .nav ul li > a span {
  position: relative;
  display: inline-block;
}
.header .box .headright .nav ul li > a span::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0.02rem;
  background: #FFFFFF;
  transition: all 0.4s ease;
}
.header .box .headright .nav ul li:hover > a {
  color: #FFFFFF;
}
.header .box .headright .nav ul li:hover > a span::before {
  width: 100%;
  background: #FFFFFF;
}
.header .box .headright .nav ul li.on > a {
  color: #FFFFFF;
}
.header .box .headright .nav ul li.on > a span::before {
  width: 100%;
  background: #FFFFFF;
}
.header .box .headright .nav ul li .dropdown {
  position: fixed;
  left: 15px;
  top: 1rem;
  width: calc(100% - 30px);
  border-radius: 0.2rem;
  box-sizing: border-box;
  box-shadow: 0px 0px 87px rgba(0, 0, 241, 0.11);
  padding: 3.65% 5.8%;
  background: #FFFFFF;
  display: none;
  overflow: hidden;
}
.header .box .headright .nav ul li .dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 44%;
  height: 100%;
  background: #f6f6fe;
  clip-path: polygon(94% 0%, 100% 6%, 100% 94%, 94% 100%, 0% 100%, 0% 0%);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}
.header .box .headright .nav ul li .dropdown.show::before {
  -webkit-transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition-delay: .4s;
  -o-transition-delay: .4s;
  transition-delay: .4s;
  -webkit-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem {
  position: relative;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem.on .left_w .title {
  color: #0000d8;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem.on .left_w .title a {
  color: #0000d8;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem.on .left_w .title i {
  opacity: 1;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem.on .left_w .title::after {
  opacity: 1;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem.on .left_w .levelbox {
  display: block;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem.on .right_w {
  opacity: 1;
  visibility: visible;
  z-index: 6;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w {
  width: 44%;
  padding-right: 6.7%;
  box-sizing: border-box;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .title {
  position: relative;
  display: flex;
  align-items: baseline;
  padding: 0.16rem 0;
  border-bottom: transparent solid 2px;
  font-size: 30px;
  color: #000000;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .title {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .title {
    font-size: 20px;
  }
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.02rem;
  background: #0000d8;
  opacity: 0;
  transition: all 0.4s ease;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .title a,
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .title span {
  flex: 1;
  overflow: hidden;
  transition: all 0.4s ease;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .title i {
  flex-shrink: 0;
  display: inline-block;
  width: 0.14rem;
  height: 0.15rem;
  background: url(../images/icon37.png) center no-repeat;
  background-size: 100% auto;
  opacity: 0;
  transition: all 0.4s ease;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox {
  display: none;
  padding: 0.35rem 0;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li {
  cursor: pointer;
  margin-bottom: 7px;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li:hover span,
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li:hover a {
  color: #0000d8;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li:hover span::before,
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li:hover a::before {
  background: url(../images/icon39.png) center no-repeat;
  background-size: 100% auto;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li:hover span::after,
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li:hover a::after {
  opacity: 1;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li.on span,
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li.on a {
  color: #0000d8;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li.on span::before,
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li.on a::before {
  background: url(../images/icon39.png) center no-repeat;
  background-size: 100% auto;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li.on span::after,
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li.on a::after {
  opacity: 1;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li span,
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li a {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 0.12rem;
  padding-bottom: 0.12rem;
  padding-right: 0.25rem;
  color: #939393;
  font-size: 20px;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li span,
  .header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li a {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li span,
  .header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li span,
  .header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li a {
    font-size: 16px;
  }
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li span::before,
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li a::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.15rem;
  display: inline-block;
  width: 0.1rem;
  height: 0.1rem;
  background: url(../images/icon38.png) center no-repeat;
  background-size: 100% auto;
  transition: all 0.4s ease;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li span::after,
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .left_w .levelbox .level_li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.02rem;
  background: #0000d8;
  opacity: 0;
  transition: all 0.4s ease;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .right_w {
  position: absolute;
  right: 0;
  top: 0;
  width: 56%;
  padding-left: 5.6%;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: -1;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .right_w .level_item {
  display: none;
  width: 100%;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .right_w .level_item.on {
  display: block;
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .right_w .level_item a {
  display: block;
  color: #939393;
  font-size: 20px;
  padding: 0.15rem 0;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .header .box .headright .nav ul li .dropdown .drop-content .dropitem .right_w .level_item a {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .header .box .headright .nav ul li .dropdown .drop-content .dropitem .right_w .level_item a {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .nav ul li .dropdown .drop-content .dropitem .right_w .level_item a {
    font-size: 16px;
  }
}
.header .box .headright .nav ul li .dropdown .drop-content .dropitem .right_w .level_item a:hover {
  color: #0000d8;
}
.header .box .headright .head-nation {
  position: relative;
  margin-left: 0.32rem;
}
.header .box .headright .head-nation .cur-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.49rem;
  height: 0.57rem;
  background: url(../images/menuicon.png) center no-repeat;
  background-size: 100% 100%;
  color: #FFFFFF;
  font-size: 16px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .header .box .headright .head-nation .cur-title {
    font-size: 0.8333333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .header .box .headright .head-nation .cur-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .header .box .headright .head-nation .cur-title {
    width: 36px;
    height: 42px;
  }
}
.header .box .headright .head-nation .dropdown {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0.1rem);
  transform: translate(-50%, 0.1rem);
  top: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .dropdown {
    top: 100%;
    padding: 10px 0px;
    min-width: 90px;
  }
}
.header .box .headright .head-nation .dropdown ul {
  margin-top: 0.1rem;
  background: #FFFFFF;
  padding: 0.1rem 0px;
  text-align: left;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
.header .box .headright .head-nation .dropdown ul li {
  list-style: none;
}
.header .box .headright .head-nation .dropdown ul li a {
  display: block;
  font-size: 16px;
  color: #333333;
  line-height: 2.2;
  min-width: 1.28rem;
  text-align: center;
  padding: 0 0.2rem;
  white-space: nowrap;
  box-sizing: border-box;
  list-style: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .header .box .headright .head-nation .dropdown ul li a {
    font-size: 0.8333333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .header .box .headright .head-nation .dropdown ul li a {
    font-size: 14px;
  }
}
.header .box .headright .head-nation .dropdown ul li a:hover {
  color: #1515ff;
}
.header .box .headright .head-nation:hover .dropdown {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.header .phone-toggle {
  position: relative;
  z-index: 100;
  margin-left: 0.16rem;
  user-select: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.06rem;
  width: 0.49rem;
  height: 0.57rem;
  background: url(../images/menuicon.png) center no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 1260px) {
  .header .phone-toggle {
    width: 36px;
    height: 42px;
    gap: 4px;
    margin-left: 0.32rem;
  }
}
.header .phone-toggle span {
  position: relative;
  display: block;
  width: 0.24rem;
  height: 0.02rem;
  background: transparent;
  transition: all 0.45s ease;
}
@media screen and (max-width: 1260px) {
  .header .phone-toggle span {
    width: 18px;
    height: 2px;
  }
}
.header .phone-toggle span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transition: all 0.5s ease;
}
.header .phone-toggle span:nth-child(2)::before {
  width: 58.33333333333333%;
}
.header.white {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.4);
}
.header.white .box .logo img {
  -webkit-filter: none;
  filter: none;
}
.header.white .box .headright {
  /*background: rgba(203, 203, 203, 0.2);*/
 	background: url(../images/img92.png) left top no-repeat;
  background-size: auto 100%;
}
@media screen and (max-width: 1260px) {
  .header.white .box .headright {
    background: none;
  }
}
/*.header.white .box .headright::before {
  background: url(../images/navbg1.png) left top no-repeat;
  background-size: 100% 100%;
}*/
.header.white .box .headright .nav ul li:hover > a {
  color: #1515ff;
}
.header.white .box .headright .nav ul li:hover > a span::before {
  width: 100%;
  background: #1515ff;
}
.header.white .box .headright .nav ul li.on > a {
  color: #1515ff;
}
.header.white .box .headright .nav ul li.on > a span::before {
  width: 100%;
  background: #1515ff;
}
.header.white .box .headright .nav ul li > a {
  color: #1515ff;
}
.header.white .box .headright .nav ul li > a span::before {
  background: #1515ff;
}
.header.whitebg {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.4);
}
.header.whitebg .box .logo img {
  -webkit-filter: none;
  filter: none;
}
.header.whitebg .box .headright {
  /*background: rgba(203, 203, 203, 0.2);*/
 	background: url(../images/img92.png) left top no-repeat;
  background-size: auto 100%;
}
@media screen and (max-width: 1260px) {
  .header.whitebg .box .headright {
    background: none;
  }
}
/*.header.whitebg .box .headright::before {
  background: url(../images/navbg1.png) left top no-repeat;
  background-size: 100% 100%;
}*/
.header.whitebg .box .headright .nav ul li:hover > a {
  color: #1515ff;
}
.header.whitebg .box .headright .nav ul li:hover > a span::before {
  width: 100%;
  background: #1515ff;
}
.header.whitebg .box .headright .nav ul li.on > a {
  color: #1515ff;
}
.header.whitebg .box .headright .nav ul li.on > a span::before {
  width: 100%;
  background: #1515ff;
}
.header.whitebg .box .headright .nav ul li > a {
  color: #1515ff;
}
.header.whitebg .box .headright .nav ul li > a span::before {
  background: #1515ff;
}
.mbox .header {
  background: #ffffff;
}
.mbox .header .box .logo img {
  -webkit-filter: none;
  filter: none;
}
.mbox .header .box .headright .nav ul li > a {
  color: #333333;
}
.mbox .header .box .headright .nav ul li:hover > a {
  color: #1515ff;
}
.mbox .header .box .headright .nav ul li.on > a {
  color: #00b0ec;
}
.mbox .m-nav {
  height: 100vh;
}
.mbox .phone-toggle span:nth-child(1)::before {
  margin-top: -0.02rem;
  transform: rotate(-45deg) translate(-0.06rem, 0.06rem);
}
@media screen and (max-width: 1260px) {
  .mbox .phone-toggle span:nth-child(1)::before {
    margin-top: -2px;
    transform: rotate(-45deg) translate(-4px, 4px);
  }
}
.mbox .phone-toggle span:nth-child(2)::before {
  margin-top: -0.02rem;
  width: 100%;
  transform: rotate(45deg);
}
@media screen and (max-width: 1260px) {
  .mbox .phone-toggle span:nth-child(2)::before {
    margin-top: -2px;
  }
}
.m-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 99;
  background: url(../images/menubg.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.m-nav .content {
  height: 100vh;
}
@media screen and (max-width: 1260px) {
  .m-nav .content {
    align-items: flex-start;
    padding-top: 80px;
    padding-bottom: 40px;
    box-sizing: border-box;
  }
}
.m-nav .content .wrap {
  width: 100%;
}
@media screen and (max-width: 1260px) {
  .m-nav .content .wrap {
    height: 100%;
    max-height: 100%;
  }
}
.m-nav .content .wrap .imgbox {
  flex-shrink: 0;
  margin-left: 12.1875%;
  width: 25.10416666666667%;
  overflow: hidden;
}
@media screen and (max-width: 1260px) {
  .m-nav .content .wrap .imgbox {
    display: none;
  }
}
.m-nav .content .wrap .imgbox .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.m-nav .content .wrap .imgbox .swiper .swiper-wrapper {
  align-items: stretch;
}
.m-nav .content .wrap .imgbox .swiper .swiper-wrapper .swiper-slide {
  display: block;
  width: 100%;
  height: auto;
}
.m-nav .content .wrap .imgbox .swiper .swiper-wrapper .swiper-slide.swiper-slide-active img {
  opacity: 1;
}
.m-nav .content .wrap .imgbox .swiper .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 4000ms cubic-bezier(0.25, 1, 0.5, 1);
}
.m-nav .content .wrap .imgbox img {
  display: block;
  width: 100%;
}
.m-nav .content .wrap .textbox {
  position: relative;
  flex: 1;
  margin-left: 6.5625%;
  margin-right: 7.8125%;
  padding-top: 1.5625vw;
  /*overflow: hidden;*/
}
@media screen and (max-width: 1260px) {
  .m-nav .content .wrap .textbox {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow-y: auto;
  }
}
@media screen and (max-width: 1260px) {
  .m-nav .content .wrap .textbox .menubox {
    flex-wrap: wrap;
  }
}
.m-nav .content .wrap .textbox .menubox > ul {
  width: 42%;
}
@media screen and (max-width: 1260px) {
  .m-nav .content .wrap .textbox .menubox > ul {
    width: 100%;
  }
}
.m-nav .content .wrap .textbox .menubox > ul > li {
  list-style: none;
}
.m-nav .content .wrap .textbox .menubox > ul > li:hover > a {
  color: #FFFFFF;
}
.m-nav .content .wrap .textbox .menubox > ul > li:hover .headtitle {
  color: #FFFFFF;
}
.m-nav .content .wrap .textbox .menubox > ul > li:hover .headtitle a {
  color: #FFFFFF;
}
.m-nav .content .wrap .textbox .menubox > ul > li a {
  display: block;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.3);
  font-size: 30px;
  padding: 0.14rem 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .m-nav .content .wrap .textbox .menubox > ul > li a {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .m-nav .content .wrap .textbox .menubox > ul > li a {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .m-nav .content .wrap .textbox .menubox > ul > li a {
    font-size: 20px;
  }
}
.m-nav .content .wrap .textbox .menubox > ul > li .headtitle {
  position: relative;
  display: block;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.3);
  font-size: 30px;
  padding: 0.14rem 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .m-nav .content .wrap .textbox .menubox > ul > li .headtitle {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .m-nav .content .wrap .textbox .menubox > ul > li .headtitle {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .m-nav .content .wrap .textbox .menubox > ul > li .headtitle {
    font-size: 20px;
  }
}
.m-nav .content .wrap .textbox .menubox > ul > li .headtitle.on a {
  color: #FFFFFF;
}
.m-nav .content .wrap .textbox .menubox > ul > li .headtitle a {
  color: rgba(255, 255, 255, 0.3);
  display: inline-block;
  padding: 0;
  transition: all 0.4s ease;
}
.m-nav .content .wrap .textbox .menubox > ul > li .headtitle i {
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 100%;
  background: url(../images/icon40.png) center no-repeat;
  background-size: 36% auto;
  transition: all 0.4s ease;
  opacity: 0;
}
@media screen and (max-width: 1260px) {
  .m-nav .content .wrap .textbox .menubox > ul > li .headtitle i {
    opacity: 0.3;
  }
}
.m-nav .content .wrap .textbox .menubox > ul > li .headtitle.on {
  color: #ffffff;
}
@media screen and (max-width: 1260px) {
  .m-nav .content .wrap .textbox .menubox > ul > li .headtitle.on i {
    opacity: 1;
  }
}
.m-nav .content .wrap .textbox .menubox > ul > li ul {
  display: none;
}
.m-nav .content .wrap .textbox .menubox > ul > li ul li {
  list-style: none;
}
.m-nav .content .wrap .textbox .menubox > ul > li ul li a {
  position: relative;
  display: block;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 1.4;
  padding: 0.07rem 0;
  padding-left: 0.36rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .m-nav .content .wrap .textbox .menubox > ul > li ul li a {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .m-nav .content .wrap .textbox .menubox > ul > li ul li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .m-nav .content .wrap .textbox .menubox > ul > li ul li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1260px) {
  .m-nav .content .wrap .textbox .menubox > ul > li ul li a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.m-nav .content .wrap .textbox .menubox > ul > li ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 0.16rem;
  height: 0.18rem;
  background: url(../images/icon6.png) center no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 1260px) {
  .m-nav .content .wrap .textbox .menubox > ul > li ul li a::before {
    top: 12px;
  }
}
.m-nav .content .wrap .textbox .menubox > ul > li ul li:hover > a {
  color: #FFFFFF;
  text-decoration: underline;
}
.m-nav .content .wrap .textbox .menubox > ul > li ul li ul li ul li a {
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .m-nav .content .wrap .textbox .menubox > ul > li ul li ul li ul li a {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .m-nav .content .wrap .textbox .menubox > ul > li ul li ul li ul li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .m-nav .content .wrap .textbox .menubox > ul > li ul li ul li ul li a {
    font-size: 16px;
  }
}
.m-nav .content .wrap .textbox .menubox > ul > li:hover > a {
  color: #FFFFFF;
}
@media screen and (min-width: 1261px) {
  .m-nav .content .wrap .textbox .common-share {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 1260px) {
  .m-nav .content .wrap .textbox .common-share {
    margin-top: 0.5rem;
    flex-shrink: 0;
  }
}

/*20260116新增*/
.header{
	/*transition: all 0.5s ease;*/
}
/*.header,*/
.header.white{
	-webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  /*background: #f5f5f5;*/
 	background: rgba(245,245,245,1);
 	box-shadow: 0px 0px 30px rgba(6,6,255,0.1);
}
.header.displace{
	top: -100%;
}
/*.header .box .headright,*/
.header.white .box .headright{
	background: none;
}
/*.header .box .logo a img{
	-webkit-filter: none;
  filter: none;
}
.header .box .headright .nav ul li > a{
	color: #1515ff;
}*/
/*20260116end*/


/*20260209修改*/
.sidebar {
  position: fixed;
  /*top: 50%;*/
  right: 1%;
  z-index: 12;
  /*-webkit-transform: translateY(-50%);
  transform: translateY(-50%);*/
 	bottom: 145px;
}
@media screen and (max-width: 991px) {
  .sidebar {
    right: 0.2rem;
  }
}
.sidebar ul {
  padding-left: 0;
}
.sidebar ul li {
  position: relative;
  text-align: center;
  cursor: pointer;
  margin-bottom: 0.1rem;
  list-style: none;
}
@media screen and (min-width: 992px) {
  .sidebar ul li {
    margin-bottom: 0.5208333vw;
  }
}
@media screen and (max-width: 991px) {
  .sidebar ul li {
    margin-bottom: 6px;
  }
}
.sidebar .istop{
	position: relative;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar .istop.show{
	opacity: 1;
}
.sidebar .istop span .img,
.sidebar .istop a .img {
	display: flex;
  justify-content: center;
  align-items: center;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #1515ff;
}
.sidebar .istop span .img img,
.sidebar .istop a .img img{
	display: block;
  margin: auto;
  width: 33.33333333333333%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
	-webkit-filter: none !important;
  filter: none !important; 
}

/*新增*/
.sidebar .split{
	position: relative;
	margin-bottom: 0.1rem;
}
@media screen and (min-width: 992px){
	.sidebar .split{
		margin-bottom: 0.5208333vw;
	}
}
.sidebar .split ul{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
  min-height: 0.78rem;
	z-index: 10;
	display: none;
}
.sidebar .split ul li{
	opacity: 0;
	transform: translateX(150%);
}
.sidebar .split ul li:last-child{
	margin-bottom: 0;
}
.sidebar .split:hover ul li{
	opacity: 1;
	transform: translateX(0%);
}
.spliticon{
	border-radius: 50%;
  overflow: hidden;
}
.spliticon .img{
	display: flex;
  justify-content: center;
  align-items: center;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #ffffff;
  /*box-shadow: 0px 0px 20px rgba(0,0,0,0.08);*/
}
.spliticon .img img{
	display: block;
  margin: auto;
  width: 33.33333333333333%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/*20260209end*/
.sidebar ul li span,
.sidebar ul li a {
  display: block;
}
.sidebar ul li span .img,
.sidebar ul li a .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  overflow: hidden;
  background: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /*box-shadow: 0px 0px 20px rgba(0,0,0,0.08);*/
}
.sidebar ul li span .img img,
.sidebar ul li a .img img {
  display: block;
  margin: auto;
  width: 33.33333333333333%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.sidebar ul li:hover span .img,
.sidebar ul li:hover a .img {
  background: #1515ff;
}
.sidebar ul li:hover span .img img,
.sidebar ul li:hover a .img img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.sidebar ul li:hover .secondary {
  display: block;
}
.sidebar ul li .secondary {
  display: none;
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 12;
  min-width: 100%;
  white-space: nowrap;
  text-align: center;
  padding-right: 10px;
}
.sidebar ul li .secondary .box {
  position: relative;
  padding: 0.2rem;
  background: #ffffff;
  box-shadow: 0px 0px 87px rgba(21, 21, 241, 0.11);
  border-radius: 10px;
  box-sizing: border-box;
}
.sidebar ul li .secondary .box::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #ffffff;
}
.sidebar ul li .secondary .box .codeimg {
  text-align: center;
}
.sidebar ul li .secondary .box .codeimg img {
  display: block;
  margin: auto;
  max-width: inherit;
  width: 120px;
}
.sidebar ul li .secondary .txt {
  margin-top: 5px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
}
.sidebar ul li .secondary .txtli {
  font-size: 24px;
  color: #000000;
  padding: 0 0.15rem;
  box-sizing: border-box;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .sidebar ul li .secondary .txtli {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .sidebar ul li .secondary .txtli {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .sidebar ul li .secondary .txtli {
    font-size: 18px;
  }
}

.sidebar ul li .secondary .txtli .item {
	text-align: left;
  margin-bottom: 0.1rem;
}
.sidebar ul li .secondary .txtli .item:last-child {
  margin-bottom: 0;
}
.sidebar ul li .secondary .txtli .item .t1 {
  color: #939393;
  font-size: 16px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .sidebar ul li .secondary .txtli .item .t1 {
    font-size: 0.8333333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .sidebar ul li .secondary .txtli .item .t1 {
    font-size: 14px;
  }
}
.sidebar ul li .secondary .txtli .item .t2 {
  color: #1515ff;
  font-size: 24px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .sidebar ul li .secondary .txtli .item .t2 {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .sidebar ul li .secondary .txtli .item .t2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .sidebar ul li .secondary .txtli .item .t2 {
    font-size: 18px;
  }
}



.sidebar ul li .tiptext{
  display: none;
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 12;
  min-width: 100%;
  white-space: nowrap;
  text-align: center;
  padding-right: 10px;
}
.sidebar .display ul li .tiptext{
	display: block;
}
.sidebar ul li .tiptext .box {
  position: relative;
  padding: 0.2rem;
  background: #ffffff;
  box-shadow: 0px 0px 87px rgba(21, 21, 241, 0.11);
  border-radius: 10px;
  box-sizing: border-box;
}
.sidebar ul li .tiptext .box::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #ffffff;
}
.sidebar ul li .tiptext .box .txt{
	font-size: 20px;
	color: #1515ff;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .sidebar ul li .tiptext .box .txt {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .sidebar ul li .tiptext .box .txt{
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .sidebar ul li .tiptext .box .txt{
    font-size: 16px;
  }
}






.footer {
  position: relative;
  margin-top: -4.6875%;
  padding-top: 12.5%;
  background: url(../images/footerbg.png) top center no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 1260px) {
  .footer {
    margin-top: 0%;
    padding-top: 1rem;
    background: url(../images/footerbg.png) top 0.8rem center no-repeat;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-contact {
    margin-top: -1.5rem;
  }
}
.footer .footer-contact .contain {
  text-align: center;
}
.footer .footer-contact .contain .title {
  color: #000000;
  font-size: 60px;
  line-height: 1.25;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .footer .footer-contact .contain .title {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 1260px) {
  .footer .footer-contact .contain .title {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .footer .footer-contact .contain .title {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .footer .footer-contact .contain .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-contact .contain .title {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 480px) {
  .footer .footer-contact .contain .title {
    font-size: 5vw;
  }
}
.footer .footer-contact .contain .btn {
  margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
  .footer .footer-contact .contain .btn {
    margin-top: 0.4rem;
  }
}
.footer .footer-contact .contain .btn a {
  display: inline-block;
  width: 1.39rem;
  height: 1.61rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
@media screen and (max-width: 1260px) {
  .footer .footer-contact .contain .btn a {
    width: 1rem;
    height: 1.16rem;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-contact .contain .btn a {
    width: 45px;
    height: 52px;
  }
}
.footer .footer-contact .contain .btn a img {
  display: block;
  width: 100%;
}
.footer .content {
  margin-top: 6.25%;
}
.footer .content .box {
  gap: 0.4rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1260px) {
  .footer .content .box {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
  }
}
.footer .content .box .footer-logo {
  flex-shrink: 0;
}
@media screen and (max-width: 1260px) {
  .footer .content .box .footer-logo {
    width: 100%;
  }
}
.footer .content .box .footer-logo a img {
  /*width: 2.36rem;*/
 	width: 3.2rem;
}
@media screen and (max-width: 1260px) {
  .footer .content .box .footer-logo a img {
    width: 2.7rem;
  }
}
.footer .content .box .footer-nav {
  flex: 1;
  overflow: hidden;
}
@media screen and (max-width: 1260px) {
  .footer .content .box .footer-nav {
    flex: auto;
    width: 100%;
    flex-direction: row;
  }
}

@media screen and (min-width: 768px){
	.footer .content .box .footer-nav .wrap {
	  /*grid-template-columns: 1fr 1fr;*//* 两列 */
	  /*grid-template-rows: repeat(3, auto);*/
	  /* 每列 3 个元素 */
	 	display: inline-grid;
		/*grid-template-columns: repeat(3, 1fr);*/
		grid-template-columns: repeat(3, auto); 
		grid-template-rows: repeat(2, auto); 
		grid-auto-flow: column;
	  column-gap: 1rem;
	  row-gap: 0.04rem;
	  min-width: 85%;
	}
}
@media screen and (max-width: 1260px){
		.footer .content .box .footer-nav .wrap{
			min-width: 100%;
		}
}
@media screen and (max-width: 767px){
	.footer .content .box .footer-nav .wrap{
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		gap: 0.2rem 0.5rem;
	}
}

/*@media screen and (max-width: 480px) {
  .footer .content .box .footer-nav .wrap {
    display: grid;
    width: 100%;
    column-gap: 0.5rem;
  }
}*/
.footer .content .box .footer-nav .wrap a {
  font-size: 24px;
  color: #000000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .footer .content .box .footer-nav .wrap a {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .footer .content .box .footer-nav .wrap a {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .footer .content .box .footer-nav .wrap a {
    font-size: 18px;
  }
}

@media screen and (max-width: 414px){
	.footer .content .box .footer-nav .wrap{
		column-gap: 6vmin;
	}
	.footer .content .box .footer-nav .wrap a{
		width: calc((100% - 6vmin) /2);
		font-size: 4.4vmin;
	}
}

.footer .content .box .footer-nav .wrap a:hover {
  color: #1515ff;
}
.footer .content .box .common-share{
	display: none;	
}
.footer .content .copylink {
  padding: 0.2rem 0;
  border-top: rgba(0, 0, 0, 0.1) solid 0.02rem;
  font-size: 18px;
  color: #000000;
  line-height: 1.7;
  column-gap: 0.4rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .footer .content .copylink {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 1260px) {
  .footer .content .copylink {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .footer .content .copylink {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .footer .content .copylink {
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
    padding: 20px 0;
  }
}
.footer .content .copylink a {
  color: #000000;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .content .copylink a:hover {
  color: #1515ff;
}
.footer .content .copylink .poweredBy {
  color: #000000;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1260px) {
  .footer .content .copylink .poweredBy {
    display: block;
    width: 100%;
    margin-top: 5px;
  }
}
.footer .content .copylink .poweredBy a {
  color: #000000;
}
.footer .content .copylink .poweredBy:hover {
  color: #1515ff;
}
.footer .content .copylink .poweredBy:hover a {
  color: #1515ff;
}
.footer .content .copylink .txt {
  display: inline-block;
}
.common-share.white ul li a {
  background: rgba(255, 255, 255, 0.1);
}
.common-share.white ul li a img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.common-share.white ul li a:hover {
  background: #FFFFFF;
}
.common-share.white ul li a:hover img {
  -webkit-filter: none;
  filter: none;
}
.common-share ul {
  column-gap: 0.1rem;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .common-share ul {
    column-gap: 0.5208333333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .common-share ul {
    column-gap: 10px;
  }
}
.common-share ul li {
  position: relative;
  list-style: none;
}
.common-share ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  background: rgba(216, 216, 216, 0.3);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.common-share ul li a img {
  width: 33.33333333333333%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.common-share ul li a:hover {
  background: #1515ff;
}
.common-share ul li a:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.common-share ul li .additional {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 100%;
  min-width: 100%;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.common-share ul li:last-child .additional{
	left: auto;
  -webkit-transform: none;
  transform: none;
  right: 0;
}
.common-share ul li .additional .cont {
  background: #ffffff;
  border-radius: 0.2rem;
  padding: 0.2rem 0.3rem;
}
.common-share ul li .additional .cont .item {
  margin-bottom: 0.2rem;
}
.common-share ul li .additional .cont .item:last-child {
  margin-bottom: 0;
}
.common-share ul li .additional .cont .item .t1 {
  color: #939393;
  font-size: 16px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .common-share ul li .additional .cont .item .t1 {
    font-size: 0.8333333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .common-share ul li .additional .cont .item .t1 {
    font-size: 14px;
  }
}
.common-share ul li .additional .cont .item .t2 {
  color: #1515ff;
  font-size: 24px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .common-share ul li .additional .cont .item .t2 {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .common-share ul li .additional .cont .item .t2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .common-share ul li .additional .cont .item .t2 {
    font-size: 18px;
  }
}
.common-share ul li .additional::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 8px;
  border-color: #FFFFFF transparent transparent transparent;
}
.common-share ul li:last-child .additional::after{
	margin-right: 0.3rem;
}
.common-share ul li .qrcode {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 100%;
  width: 1.03rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .common-share ul li .qrcode {
    width: 96px;
  }
}
.common-share ul li .qrcode .img {
  overflow: hidden;
  background-color: #FFFFFF;
}
.common-share ul li .qrcode .img img {
  width: 100%;
}
.common-share ul li .qrcode .sjx {
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 8px;
  border-color: #FFFFFF transparent transparent transparent;
}
.common-share ul li:hover a img {
  opacity: 1;
}
.common-share ul li:hover .qrcode {
  opacity: 1;
  visibility: visible;
}
.common-share ul li:hover .additional {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1260px) {
  .footer .common-share ul li .additional {
    left: -15px;
    -webkit-transform: none;
    transform: none;
  }
}
@media screen and (max-width: 1260px) {
  .footer .common-share ul li .additional::after {
    margin-left: 30px;
  }
}



.header .common-share ul li .tiptext{
  display: none;
  position: absolute;
  bottom: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
  z-index: 12;
  min-width: 100%;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 1260px){
	.header .common-share ul li .tiptext{
		right: 0;
		left: auto;
		-webkit-transform: none;
		transform: none;
	}
}
.header .common-share.display ul li .tiptext{
	display: block;
}
.header .common-share ul li .tiptext .box {
  position: relative;
}
.header .common-share ul li .tiptext .box::after {
  content: '';
  display: block;
	width: 0;
	height: 0;
	margin: auto;
	border-style: solid;
	border-width: 8px;
	border-color: #FFFFFF transparent transparent transparent;
}
@media screen and (max-width: 1260px){
	.header .common-share ul li .tiptext .box::after{
		margin-right: 0.28rem;
	}
}
.header .common-share ul li .tiptext .box .txt{
	padding: 0.2rem;
  background: #ffffff;
  box-shadow: 0px 0px 87px rgba(21, 21, 241, 0.11);
  border-radius: 10px;
  box-sizing: border-box;
	font-size: 20px;
	color: #1515ff;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .header .common-share ul li .tiptext .box .txt {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .header .common-share ul li .tiptext .box .txt{
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .header .common-share ul li .tiptext .box .txt{
    font-size: 16px;
  }
}









.bgcolor {
  background: #f7f7f7;
}
.bgcolor1 {
  background: #fafafa;
}
.home-banner-section {
  position: relative;
  overflow: hidden;
}
.home-banner-section .lunbotu {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.home-banner-section .lunbotu .swiper-wrapper .swiper-slide {
  position: relative;
}
@media screen and (max-width: 991px) {
  .home-banner-section .lunbotu .swiper-wrapper .swiper-slide {
    /*min-height: 100vh;*/
  }
}
.home-banner-section .lunbotu .swiper-wrapper .swiper-slide > img {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .home-banner-section .lunbotu .swiper-wrapper .swiper-slide > img {
    /*position: absolute;
    left: 0;
    top: 0;
    height: 100%;*/
    object-fit: cover;
  }
}
.home-banner-section .lunbotu .swiper-wrapper .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  -webkit-mask-image: url(../images/mask1.png);
  mask-image: url(../images/mask1.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
@media screen and (max-width: 991px) {
  .home-banner-section .lunbotu .swiper-wrapper .swiper-slide::before{
    -webkit-mask-size: auto 100%;
  	mask-size: auto 100%;
  }
}
.home-banner-section .lunbotu .swiper-wrapper .swiper-slide .video-box {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.home-banner-section .lunbotu .swiper-wrapper .swiper-slide .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-banner-section .lunbotu .swiper-wrapper .swiper-slide .i-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.home-banner-section .lunbotu .swiper-wrapper .swiper-slide .i-banner .box .title {
  text-align: center;
}
.home-banner-section .lunbotu .swiper-wrapper .swiper-slide .i-banner .box .title .headline {
  color: #FFFFFF;
  font-size: 80px;
  line-height: 1.2;
  word-wrap: break-word;
	overflow-wrap: break-word;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-banner-section .lunbotu .swiper-wrapper .swiper-slide .i-banner .box .title .headline {
    font-size: 4.166666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-banner-section .lunbotu .swiper-wrapper .swiper-slide .i-banner .box .title .headline {
    font-size: 48px;
  }
}
@media screen and (max-width: 991px) {
  .home-banner-section .lunbotu .swiper-wrapper .swiper-slide .i-banner .box .title .headline {
    font-size: 36px;
  }
}
@media screen and (max-width: 480px) {
  .home-banner-section .lunbotu .swiper-wrapper .swiper-slide .i-banner .box .title .headline {
    font-size: 32px;
  }
}
.home-banner-section .lunbotu .swiper-pagination {
  bottom: 4.6875vw;
}
@media screen and (max-width: 991px) {
  .home-banner-section .lunbotu .swiper-pagination {
    bottom: 0.8rem;
  }
}
.home-banner-section .lunbotu .swiper-pagination .swiper-pagination-bullet {
  width: 0.21rem;
  height: 0.24rem;
  margin: 0 0.08rem;
  opacity: 0.4;
  background: url(../images/spot.png) center no-repeat;
  background-size: 100% 100%;
  border-radius: 0;
}
@media screen and (max-width: 991px) {
  .home-banner-section .lunbotu .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 18px;
    margin: 0 6px;
  }
}
@media screen and (max-width: 767px) {
  .home-banner-section .lunbotu .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 16px;
  }
}
.home-banner-section .lunbotu .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.home-banner-section .lunbotu .swiper-button-next,
.home-banner-section .lunbotu .swiper-button-prev {
  position: absolute;
  width: 0.56rem;
  height: 0.56rem;
  margin-top: -0.28rem;
  border-radius: 50%;
  transition: all 0.5s ease;
}
@media screen and (min-width: 992px) {
  .home-banner-section .lunbotu .swiper-button-next,
  .home-banner-section .lunbotu .swiper-button-prev {
    width: 2.9167vw;
    height: 2.9167vw;
  }
}
@media screen and (max-width: 991px) {
  .home-banner-section .lunbotu .swiper-button-next,
  .home-banner-section .lunbotu .swiper-button-prev {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.home-banner-section .lunbotu .swiper-button-prev {
  background: url(../images/icon12.png) center no-repeat;
  background-size: 30% auto;
  right: auto;
  left: 2%;
}
.home-banner-section .lunbotu .swiper-button-next {
  background: url(../images/icon13.png) center no-repeat;
  background-size: 30% auto;
  right: 2%;
  left: auto;
}
.wavebox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 12;
}
.wavebox .wave {
  width: 23rem;
  position: absolute;
  right: 1.6rem;
  bottom: 0;
  height: 2rem;
}
.wavebox .wave.w2 {
  right: -5.3rem;
  bottom: -0.2rem;
}
.wavebox .wave.w2 .mask {
  -webkit-animation-delay: .4s;
  animation-delay: 0.4s;
}
@media screen and (max-width: 1260px) {
  .wavebox .wave {
    width: 13rem;
    right: 0rem;
    bottom: -0.5rem;
  }
  /*.wavebox .wave.w2 {
    right: -4.35rem;
  }*/
}
.wavebox .wave .mask {
  -webkit-mask-image: url(../images/water.svg);
  mask-image: url(../images/water.svg);
  -webkit-mask-size: 100vw;
  mask-size: 100vw;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-animation: move-svg 4s linear infinite;
  animation: move-svg 4s linear infinite;
  display: grid;
  grid-template-columns: repeat(160, 1fr);
}
@media screen and (max-width: 1260px) {
  .wavebox .wave .mask {
    grid-template-columns: repeat(120, 1fr);
  }
}
.wavebox .wave .mask .line {
  width: 2px;
  height: 2rem;
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 70%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 70%);
}
.detailbanner .wavebox .wave .mask .line {
  background: -webkit-linear-gradient(bottom, rgba(21, 21, 241, 0) 0%, rgba(21, 21, 241, 0.15) 70%);
  background: linear-gradient(0deg, rgba(21, 21, 241, 0) 0%, rgba(21, 21, 241, 0.15) 70%);
}
/* 波浪动画 */
@-webkit-keyframes move-svg {
  0% {
    -webkit-mask-position-x: 0;
  }
  to {
    -webkit-mask-position-x: 100vw;
  }
}
@keyframes move-svg {
  0% {
    -webkit-mask-position-x: 0;
  }
  to {
    -webkit-mask-position-x: 100vw;
  }
}
.mImg {
  display: none;
}
@media screen and (max-width: 1260px) {
  .mImg {
    display: block;
  }
}
@media screen and (max-width: 1260px) {
  .pImg {
    display: none;
  }
}
.scrollDown {
  position: absolute;
  bottom: 2.5vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
}
@media screen and (max-width: 1260px) {
  .scrollDown {
    display: none;
  }
}
.scrollDown .scrollDown__icon {
  display: block;
  margin: auto;
  width: 0.62rem;
  height: 0.72rem;
  background: url(../images/icon14.png) center no-repeat;
  background-size: 100% 100%;
}
.scrollDown .scrollDown__icon img {
  position: relative;
  display: block;
  width: 0.17rem;
  margin: auto;
  animation: arrow-down 2s infinite;
}
.scrollDown .scrollDown__icon img:nth-child(1) {
  top: 0.25rem;
  animation: arrow-up 2s infinite;
  animation-delay: -0.2s;
}
.scrollDown .scrollDown__icon img:nth-child(2) {
  top: 4px;
  animation: arrow-up1 2s infinite;
  animation-delay: -0.6s;
}
.scrollDown .scrollDown__text {
  margin-top: 0.2rem;
  text-align: center;
  color: #939393;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .scrollDown .scrollDown__text {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .scrollDown .scrollDown__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .scrollDown .scrollDown__text {
    font-size: 16px;
  }
}
@keyframes arrow-up {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}
@keyframes arrow-up1 {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}
.obanner {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}
.obanner > img {
  width: 100%;
}
.obanner.detailbanner {
  min-height: clamp(360px, 28.64583333vw, 550px);
  background: #f2f2f9;
}
.obanner.detailbanner .bannertitle .box .headline {
  color: #000000;
}
.obanner .bannerImg {
  display: none;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.obanner .bannertitle {
  position: absolute;
  bottom: 4.6875vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
}
@media screen and (max-width: 1260px) {
  .obanner .bannertitle {
    bottom: 2.1rem;
  }
}
.obanner .bannertitle.diverse {
  bottom: 0;
}
.obanner .bannertitle.diverse .box {
  width: 53.90625%;
  padding-top: 2.6%;
  padding-bottom: 2.6%;
  padding-right: 2.6%;
  padding-left: calc((100% - 1600px) / 2);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  clip-path: polygon(90% 0%, 100% 25%, 100% 100%, 0% 100%, 0% 0%);
}
@media screen and (max-width: 1900px) {
  .obanner .bannertitle.diverse .box {
    padding-left: 8.333333333333335%;
  }
}
@media screen and (max-width: 1260px) {
  .obanner .bannertitle.diverse .box {
    width: 60%;
    padding-left: 5%;
    padding-top: 3.5%;
    padding-bottom: 3.5%;
  }
}
@media screen and (max-width: 991px) {
  .obanner .bannertitle.diverse .box {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .obanner .bannertitle.diverse .box {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
    padding-bottom: 5%;
  }
}
.obanner .bannertitle .box .icon {
  margin-bottom: 0.2rem;
}
.obanner .bannertitle .box .icon img {
  width: 0.58rem;
  opacity: 0.3;
}
.obanner .bannertitle .box .headline {
  font-size: 60px;
  line-height: 1.2;
  color: #ffffff;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .obanner .bannertitle .box .headline {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 1260px) {
  .obanner .bannertitle .box .headline {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .obanner .bannertitle .box .headline {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .obanner .bannertitle .box .headline {
    font-size: 28px;
  }
}
.obanner .bannertitle .box .text {
  margin-top: 0.12rem;
  font-size: 20px;
  color: #ffffff;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .obanner .bannertitle .box .text {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .obanner .bannertitle .box .text {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .obanner .bannertitle .box .text {
    font-size: 16px;
  }
}
.recruit-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}
.recruit-banner > img {
  width: 100%;
}
@media screen and (max-width: 1260px) {
  .recruit-banner > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
  }
}
.recruit-banner .box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
}
@media screen and (max-width: 1260px) {
  .recruit-banner .box {
    position: relative;
    left: 0;
    top: 0;
    -webkit-transform: none;
    transform: none;
    padding-top: 1.8rem;
    padding-bottom: 2.8rem;
  }
}
.recruit-banner .box .title {
  color: #ffffff;
  font-size: 60px;
  text-align: center;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruit-banner .box .title {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruit-banner .box .title {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .recruit-banner .box .title {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .recruit-banner .box .title {
    font-size: 28px;
  }
}
.recruit-banner .box .wrap {
  margin-top: 0.6rem;
}
.recruit-banner .box .wrap .layui-form-item {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.3rem;
}
@media screen and (max-width: 767px) {
  .recruit-banner .box .wrap .layui-form-item {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
}
.recruit-banner .box .wrap .layui-form-item .layui-input-inline {
  max-width: 3.4rem;
  width: 36%;
  margin-right: 0;
  margin-left: 0 !important;
  left: 0 !important;
}
@media screen and (max-width: 1260px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline {
    max-width: 36%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline {
    max-width: 100%;
    width: 100% !important;
    margin-right: auto;
  }
}
.recruit-banner .box .wrap .layui-form-item .layui-input-inline.inline2 {
  position: relative;
  z-index: 12;
}
.recruit-banner .box .wrap .layui-form-item .layui-input-inline.inline3 {
  max-width: 2rem;
  width: calc(28% - 0.6rem);
}
@media screen and (max-width: 1260px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline.inline3 {
    max-width: calc(28% - 0.6rem);
    width: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline.inline3 {
    max-width: 100%;
  }
}
.recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-label {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 0.15rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-label {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-label {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-label {
    font-size: 16px;
  }
}
.recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-input {
  width: 100%;
  height: 0.7rem;
  border-radius: 3.5rem;
  background: #FFFFFF;
  padding: 0 0.4rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-input {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-input {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-input {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-input {
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}
.recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-form-select .layui-select-title .layui-input {
  padding-right: 0.6rem;
}
.recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-form-select .layui-select-title .layui-edge {
  right: 0.4rem;
  border-top-color: #1515ff;
}
.recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-form-select dl {
  top: 100%;
  border-radius: 0.2rem;
  padding: 0;
  box-shadow: 0px 0px 30px rgba(0, 0, 241, 0.11);
}
.recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-form-select dl dd {
  display: flex;
  align-items: center;
  line-height: 1.5;
  min-height: 0.45rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  padding: 0 0.3rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-form-select dl dd {
    font-size: 0.8333333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-form-select dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-form-select dl dd {
    min-height: 0.6rem;
  }
}
@media screen and (max-width: 1260px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-form-select dl dd {
    min-height: 0.6rem;
  }
}
@media screen and (max-width: 480px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-form-select dl dd {
    min-height: 0.64rem;
  }
}
.recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-form-select dl dd.layui-select-tips {
  padding-left: 0.3rem !important;
}
.recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-form-select dl dd.layui-this {
  color: #FFFFff;
  background-color: #0000d8;
}
.recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-btn {
  width: 100%;
  background: #0000d8;
  color: #FFFFFF;
  height: 0.7rem;
  border-radius: 3.5rem;
  color: #ffffff;
  font-size: 24px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-btn {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-btn {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 1260px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-btn {
    padding: 0 0.4rem;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 480px) {
  .recruit-banner .box .wrap .layui-form-item .layui-input-inline .layui-btn {
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}
.recruit-banner .box .choiceitem {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  gap: 0.3rem;
}
.recruit-banner .box .choiceitem span,
.recruit-banner .box .choiceitem a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  height: 0.7rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 24px;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruit-banner .box .choiceitem span,
  .recruit-banner .box .choiceitem a {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruit-banner .box .choiceitem span,
  .recruit-banner .box .choiceitem a {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .recruit-banner .box .choiceitem span,
  .recruit-banner .box .choiceitem a {
    font-size: 18px;
  }
}
@media screen and (max-width: 1260px) {
  .recruit-banner .box .choiceitem span,
  .recruit-banner .box .choiceitem a {
    padding: 0 0.4rem;
  }
}
@media screen and (max-width: 480px) {
  .recruit-banner .box .choiceitem span,
  .recruit-banner .box .choiceitem a {
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}
.recruit-banner .box .choiceitem span:hover,
.recruit-banner .box .choiceitem a:hover {
  background: #0000d8;
}
.home-intro-section {
  background: #f7f7f7 url(../images/img16.png) bottom right no-repeat;
}
@media screen and (max-width: 1260px) {
  .home-intro-section {
    background: #f7f7f7 url(../images/img16.png) bottom right no-repeat;
    background-size: 50.83333333333333% auto;
  }
}
.home-intro-section .animation_content {
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content {
    padding-top: 1rem;
    height: auto;
  }
}
.home-intro-section .animation_content .box {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box {
    display: flex;
    flex-direction: column;
  }
}
.home-intro-section .animation_content .box .left_w {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  padding-top: 1rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .left_w {
    position: relative;
    height: auto;
    order: 3;
    /*margin-top: 0.6rem;*/
   	padding-top: 0.6rem;
  }
}
.home-intro-section .animation_content .box .left_w .imgbox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 1920px;
  width: 100%;
  margin: auto;
}
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent {
  position: absolute;
  left: 25%;
  width: 50.52083333333333%;
  transform: scale(1.399);
  height: clamp(440px, 34.375vw, 660px);
}
@media screen and (max-width: 1920px) {
  .home-intro-section .animation_content .box .left_w .imgbox .imgcontent {
    transform: scale(1.2);
  }
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .left_w .imgbox .imgcontent {
    position: relative;
    top: 0;
    transform: scale(1);
    left: 0;
    width: 100%;
    height: auto;
  }
}
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 {
  position: relative;
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 {
    display: none;
  }
}
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 .bg.bg1 {
  position: relative;
  width: 100%;
}
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 .bg.bg1 .effect {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 .bg.bg1 .effect .item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 .bg.bg1 .effect .item img {
  display: block;
  width: 100%;
}
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 .bg.bg1 .a1 {
  z-index: 10;
}
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 .bg.bg2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
}
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 .bg img {
  display: block;
  width: 100%;
}
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 .bg .effect .item.a2 {
  left: 1px;
  top: -1px;
}
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 .bg .effect .item.a3 {
  left: 1px;
}
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 .bg .effect .item.a4 {
  left: 1px;
}
/*20251224新增*/
@media screen and (min-width: 1261px){
	.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 .bg .effect .item.a2{
		top: 0;
	}
	.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 .bg .effect .item.a4{
		left: 0;
	}
}
/*end*/
/*20260116新增*/
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 .bg .effect .item.a2,
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part1 .bg .effect .item.a3{
		left: 0;
}
/*end*/
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part2 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  opacity: 0;
  width: 100%;
  background: #FFFFFF;
}
/*@media screen and (min-width: 1261px) {*/
  .home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part2 {
    -webkit-mask-image: url(../images/img4.png);
    mask-image: url(../images/img4.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
/*}*/
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part2 {
    position: relative;
    opacity: 1;
  }
}
.home-intro-section .animation_content .box .left_w .imgbox .imgcontent .part2 img {
  display: block;
  width: 100%;
}
.home-intro-section .animation_content .box .topic {
  position: absolute;
  left: 0;
  top: 50vh;
  transform: translateY(-50%);
  width: 100%;
  font-size: 60px;
  color: #000000;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-intro-section .animation_content .box .topic {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .topic {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .home-intro-section .animation_content .box .topic {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .home-intro-section .animation_content .box .topic {
    font-size: 28px;
  }
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .topic {
    position: relative;
    top: 0;
    transform: translateY(0%);
    height: auto;
    order: 1;
  }
}
.home-intro-section .animation_content .box .topic .txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .topic .txt {
    width: 90%;
    margin: auto;
    justify-content: flex-start;
    /*20260303*/
    flex-wrap: wrap;
  }
}
.home-intro-section .animation_content .box .topic .txt span {
  width: 29.0625%;
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .topic .txt span {
    /*width: auto;*/
   	/*20260303*/
   	width: 100%;
  }
}
.home-intro-section .animation_content .box .topic .txt span.t1 {
  padding-left: 4.6875vw;
  text-align: right;
}
@media screen and (max-width: 1920px){
	.home-intro-section .animation_content .box .topic .txt span.t1 {
	  padding-left: 0;
	}
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .topic .txt span.t1 {
    padding-left: 0;
    margin-right: 0.2rem;
  }
}
.home-intro-section .animation_content .box .topic .txt span.t1 {
  padding-right: 4.6875vw;
}
@media screen and (max-width: 1920px){
	.home-intro-section .animation_content .box .topic .txt span.t1 {
	  padding-right: 3vw;
	}
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .topic .txt span.t1 {
    padding-right: 0;
    /*20260303*/
   	width: 100%;
   	text-align: left;
    margin-right: 0;
  }
}
.home-intro-section .animation_content .box .right_w {
  display: flex;
  justify-content: space-between;
  position: absolute;
  align-items: flex-start;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: clamp(440px, 34.375vw, 660px);
}
@media screen and (max-width: 1920px) {
  .home-intro-section .animation_content .box .right_w {
    padding-right: 0%;
  }
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .right_w {
    position: relative;
    height: auto;
    order: 2;
    margin-top: 0.3rem;
  }
}
.home-intro-section .animation_content .box .right_w .textbox {
  opacity: 0;
  flex: 1;
  margin-right: 0;
  margin-left: auto;
  max-width: 49.47916666666667%;
  padding-right: calc((100% - 1920px) / 2);
  box-sizing: border-box;
  transform: translateY(clamp(440px, 34.375vw, 660px));
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .right_w .textbox {
    opacity: 1;
    max-width: 100%;
    padding-right: 5%;
    padding-left: 5%;
    transform: none;
    box-sizing: border-box;
  }
}
.home-intro-section .animation_content .box .right_w .textbox .i-title .text {
  margin-bottom: 0.1rem;
}
.home-intro-section .animation_content .box .right_w .textbox .i-title .home-marquee {
  position: relative;
  height: 60px;
  overflow: hidden;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-intro-section .animation_content .box .right_w .textbox .i-title .home-marquee {
    height: 3.125vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .right_w .textbox .i-title .home-marquee {
    height: 36px;
  }
}
@media screen and (max-width: 991px) {
  .home-intro-section .animation_content .box .right_w .textbox .i-title .home-marquee {
    height: 32px;
  }
}
@media screen and (max-width: 480px) {
  .home-intro-section .animation_content .box .right_w .textbox .i-title .home-marquee {
    height: 28px;
  }
}
.home-intro-section .animation_content .box .right_w .textbox .i-title .home-marquee .home-marquee_track {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home-intro-section .animation_content .box .right_w .textbox .i-title .home-marquee .home-marquee_track .home-marquee_item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.home-intro-section .animation_content .box .right_w .textbox .i-title .home-marquee .home-marquee_track .home-marquee_item .home-marquee_text {
  color: #1515f1;
  font-size: 60px;
  line-height: 1;
  /* text-decoration: underline; */
  display: inline-block;
  max-width: 100%;
  position: relative;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-intro-section .animation_content .box .right_w .textbox .i-title .home-marquee .home-marquee_track .home-marquee_item .home-marquee_text {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .right_w .textbox .i-title .home-marquee .home-marquee_track .home-marquee_item .home-marquee_text {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .home-intro-section .animation_content .box .right_w .textbox .i-title .home-marquee .home-marquee_track .home-marquee_item .home-marquee_text {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .home-intro-section .animation_content .box .right_w .textbox .i-title .home-marquee .home-marquee_track .home-marquee_item .home-marquee_text {
    font-size: 28px;
  }
}
.home-intro-section .animation_content .box .right_w .textbox .i-title .home-marquee .home-marquee_track .home-marquee_item .home-marquee_text::before{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height: 0.06rem;
  background:#1515f1;
}
.home-intro-section .animation_content .box .right_w .textbox .desc {
  margin-top: 0.7rem;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-intro-section .animation_content .box .right_w .textbox .desc {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .right_w .textbox .desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .home-intro-section .animation_content .box .right_w .textbox .desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .right_w .textbox .desc {
    margin-top: 0.5rem;
    color: #000000;
  }
}
.home-intro-section .animation_content .box .right_w .textbox .btn {
  margin-top: 0.5rem;
}
.home-intro-section .animation_content .box .right_w .textbox .btn a {
  display: inline-flex;
  align-items: center;
  color: #1515f1;
  font-size: 24px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-intro-section .animation_content .box .right_w .textbox .btn a {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .right_w .textbox .btn a {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .home-intro-section .animation_content .box .right_w .textbox .btn a {
    font-size: 18px;
  }
}
.home-intro-section .animation_content .box .right_w .textbox .btn a i {
  display: inline-flex;
  margin-right: 0.3rem;
  font-style: normal;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.home-intro-section .animation_content .box .right_w .textbox .btn a i img {
  width: 0.62rem;
}
@media screen and (max-width: 1260px) {
  .home-intro-section .animation_content .box .right_w .textbox .btn a i img {
    width: 48px;
  }
}
@media screen and (max-width: 1260px) {
  .home-intro-section .index_data {
    padding-top: 1.2rem;
  }
}
.home-intro-section .index_data .box {
  overflow: hidden;
}
.home-intro-section .index_data .box .item {
  position: relative;
  width: 17.8125%;
  margin-left: -1.25%;
}
@media screen and (max-width: 1260px) {
  .home-intro-section .index_data .box .item {
    width: 25%;
  }
}
.home-intro-section .index_data .box .item:nth-child(1) {
  margin-left: 0;
  z-index: 1;
}
.home-intro-section .index_data .box .item:nth-child(1) .text {
  transform: translateY(46%);
}
.home-intro-section .index_data .box .item:nth-child(2) {
  z-index: 2;
}
.home-intro-section .index_data .box .item:nth-child(2) .text {
  transform: translateY(29%);
}
.home-intro-section .index_data .box .item:nth-child(3) {
  z-index: 3;
}
.home-intro-section .index_data .box .item:nth-child(3) .text {
  transform: translateY(0%);
}
.home-intro-section .index_data .box .item:nth-child(3) .text .t1{
  transform: translateX(0.2rem);
}
.home-intro-section .index_data .box .item:nth-child(4) {
  z-index: 4;
}
.home-intro-section .index_data .box .item:nth-child(4) .text {
  transform: translateY(29%);
}
.home-intro-section .index_data .box .item:nth-child(5) {
  z-index: 5;
}
.home-intro-section .index_data .box .item:nth-child(5) .text {
  transform: translateY(46%);
}
.home-intro-section .index_data .box .item .text {
  text-align: center;
  height: clamp(386px, 30.20833333vw, 580px);
  background: url(../images/img17.png) top 0.5rem center no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .home-intro-section .index_data .box .item .text {
    height: 50.78125vw;
  }
}
.home-intro-section .index_data .box .item .text .t1 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #1515f1;
  font-size: 80px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-intro-section .index_data .box .item .text .t1 {
    font-size: 4.166666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-intro-section .index_data .box .item .text .t1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 991px) {
  .home-intro-section .index_data .box .item .text .t1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 480px) {
  .home-intro-section .index_data .box .item .text .t1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .home-intro-section .index_data .box .item .text .t1 {
    font-size: 6.25vw;
  }
}
.home-intro-section .index_data .box .item .text .t1 .sp {
  font-size: 30px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-intro-section .index_data .box .item .text .t1 .sp {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-intro-section .index_data .box .item .text .t1 .sp {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .home-intro-section .index_data .box .item .text .t1 .sp {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .home-intro-section .index_data .box .item .text .t1 .sp {
    font-size: 3.125vw;
  }
}
.home-intro-section .index_data .box .item .text .t1 .t3{
	display: inline-flex;
	align-items: flex-start;
}
.home-intro-section .index_data .box .item .text .t2 {
  margin-top: 0.3rem;
  padding-right: 28%;
  box-sizing: border-box;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.6;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-intro-section .index_data .box .item .text .t2 {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-intro-section .index_data .box .item .text .t2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .home-intro-section .index_data .box .item .text .t2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .home-intro-section .index_data .box .item .text .t2 {
    font-size: 2.0833333vw;
  }
}
.i-title.center {
  text-align: center;
}
.i-title.white .headline {
  color: #FFFFFF;
}
.i-title.white .text {
  color: #FFFFFF;
}
.i-title .text {
  color: #000000;
  font-size: 24px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .i-title .text {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .i-title .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .i-title .text {
    font-size: 18px;
  }
}
.i-title .headline {
  color: #000000;
  font-size: 60px;
  line-height: 1.2;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .i-title .headline {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 1260px) {
  .i-title .headline {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .i-title .headline {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .i-title .headline {
    font-size: 28px;
  }
}
.i-title .headline span {
  display: inline-block;
  text-decoration: underline;
  color: #1515f1;
}
.home-business-section {
  position: relative;
  background: #f7f7f7;
}
.home-business-section .mySwiper2 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.home-business-section .mySwiper2 .swiper-wrapper {
  align-items: stretch;
}
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide {
  position: relative;
  height: auto;
}
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: clamp(270px, 20.833333vw, 400px);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-mask-image: url(../images/img87.png);
  mask-image: url(../images/img87.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .imgbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .imgbox {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .imgbox img.im1 {
  display: block;
}
@media screen and (max-width: 1260px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .imgbox img.im1 {
    display: none;
  }
}
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .imgbox img.im2 {
  display: none;
}
@media screen and (max-width: 1260px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .imgbox img.im2 {
    display: block;
  }
}
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 13;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: flex-end;
  margin-top: -0.5rem;
}
@media screen and (max-width: 1260px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox {
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0%);
  }
}
@media screen and (max-width: 767px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    padding: 1rem 0 3.5rem;
  }
}
@media screen and (max-width: 480px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox {
    padding: 1rem 0 4.2rem;
  }
}
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box {
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box {
    width: 100%;
  }
}
/*20260225*/
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .public-btn {
  position: relative;
  z-index: 5;
  /*margin-right: -0.4rem;*/
 	margin-right: -0.318rem;
}
@media screen and (max-width: 1536px){
	.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .public-btn {
		margin-right: -0.295rem;
	}
}
@media screen and (max-width: 1260px){
	.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .public-btn {
		margin-right: -0.375rem;
	}
}
@media screen and (max-width: 768px){
	.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .public-btn {
		margin-right: -0.37rem;
	}
}
@media screen and (max-width: 480px){
	.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .public-btn {
		margin-right: -0.39rem;
	}
}
/*end*/
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text {
	position: relative;
	z-index: 1;
  width: clamp(337px, 26.35416667vw, 506px);
  min-height: clamp(394px, 30.78125vw, 591px);
  padding: clamp(90px, 7.03125vw, 135px) clamp(30px, 2.34375vw, 45px) clamp(90px, 7.03125vw, 135px) clamp(50px, 4.16666667vw, 80px);
  /*background: #FFFFFF;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);*/
  box-sizing: border-box;
}
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text::before{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	width: clamp(366px, 28.54166666666667vw, 548px);
  height: clamp(427px, 33.33333333333333vw, 640px);
	background: #FFFFFF;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
@media screen and (max-width: 1260px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text {
    width: 450px;
    min-height: 526px;
    padding: 120px 30px 110px 70px;
  }
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text::before{
  	width: 450px;
    height: 526px;
  }
}
@media screen and (max-width: 767px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text {
    width: 80vw;
    min-height: 93.33333333333336vw;
    padding: 21vw 4vw 20vw 10vw;
  }
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text::before{
  	width: 80vw;
    height: 93.33333333333336vw;
  }
}
@media screen and (max-width: 480px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text::before{
  	width: 81vw;
    height: 100vw;
  }
}
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text .rubric {
  color: #1515f1;
  font-size: 30px;
  line-height: 1.25;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text .rubric {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text .rubric {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text .rubric {
    font-size: 20px;
  }
}
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text .txt {
  margin-top: 0.2rem;
  font-size: 20px;
  color: #b9b9b9;
  line-height: 1.5;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text .txt {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text .txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text .txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text .txt {
    font-size: 14px;
  }
}
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text .txt ul {
  padding-left: 0;
}
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text .txt ul li {
  position: relative;
  list-style: none;
  padding-left: 0.32rem;
}
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text .txt ul li a{
 color:#b9b9b9;
 transition: all 0.4s ease;
}
/*20260225*/
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text .txt ul li:hover a{
	color:#1515f1;
}
/*end*/
.home-business-section .mySwiper2 .swiper-wrapper .swiper-slide .textbox .box .text .txt ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.06rem;
  width: 0.14rem;
  height: 0.16rem;
  /*background: #1515ff;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);*/
 	background: url(../images/icon41a.png) center no-repeat;
 	background-size: 100% auto;
}
.home-business-section .wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 12;
  width: 100%;
  /*padding-top: 1rem;*/
  box-sizing: border-box;
}
.home-business-section .wrap .thumbsbox {
  position: relative;
}
.home-business-section .wrap .thumbsbox::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.08rem;
  width: calc(100% - ((100% - 1600px) / 2));
  height: 0.02rem;
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1900px) {
  .home-business-section .wrap .thumbsbox::before {
    width: 91.66666666666667%;
  }
}
@media screen and (max-width: 1260px) {
  .home-business-section .wrap .thumbsbox::before {
    width: 90%;
    height: 2px;
  }
}
.home-business-section .wrap .thumbsbox .swiper {
  position: relative;
  max-width: 1600px;
  width: 83.33333333333333%;
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
@media screen and (max-width: 1260px) {
  .home-business-section .wrap .thumbsbox .swiper {
    width: 90%;
  }
}
.home-business-section .wrap .thumbsbox .swiper .swiper-wrapper {
  align-items: stretch;
}
.home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide {
  height: auto;
  min-height: 1.8rem;
  padding-bottom: 0.6rem;
  box-sizing: border-box;
  cursor: pointer;
}
.home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 50%;
  height: 0.02rem;
  background: #FFFFFF;
  opacity: 0;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1260px) {
  .home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide::before {
    height: 2px;
  }
}
.home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0.08rem;
  width: 50%;
  height: 0.02rem;
  background: #FFFFFF;
  opacity: 0;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1260px) {
  .home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide::after {
    height: 2px;
  }
}
.home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide:first-child::before {
  opacity: 1;
}
.home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide.on::before {
  opacity: 1;
}
.home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide.on::after {
  opacity: 1;
}
.home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide.on .text .icon {
  /*background: #ffffff;*/
 	opacity: 1;
}
.home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide.active::before {
  opacity: 1;
}
.home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide.active::after {
  opacity: 0;
}
.home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide.active .text .icon {
  /*background: #ffffff;*/
 	opacity: 1;
}
.home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide.active .text .subtit {
  color: #ffffff;
}
.home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide .text {
  text-align: center;
}
.home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide .text .icon {
  display: block;
  margin: auto;
  width: 0.16rem;
  height: 0.18rem;
  /*clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(255, 255, 255, 0.6);*/
 	background: url(../images/icon41.png) center no-repeat;
 	background-size: 100% auto;
 	opacity: 0.6;
  transition: all 0.4s ease;
}
.home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide .text .subtit {
  margin-top: 0.25rem;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.25;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide .text .subtit {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide .text .subtit {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .home-business-section .wrap .thumbsbox .swiper .swiper-wrapper .swiper-slide .text .subtit {
    font-size: 20px;
  }
}
.home-case-section {
  margin-bottom: 0.1rem;
  background: #f7f7f7;
}
@media screen and (max-width: 1260px) {
  .home-case-section {
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 1260px) {
  .home-case-section .box {
    flex-wrap: wrap;
  }
}
.home-case-section .box .left_w {
  flex-shrink: 0;
  width: 27.60416666666667%;
  margin-right: 1.5625%;
}
@media screen and (max-width: 1260px) {
  .home-case-section .box .left_w {
    width: 100%;
    margin-right: 0;
    display: none;
  }
}
.home-case-section .box .right_w {
  flex-shrink: 0;
  width: 27.60416666666667%;
  margin-left: 1.5625%;
}
@media screen and (max-width: 1260px) {
  .home-case-section .box .right_w {
    width: 100%;
    margin-left: 0;
    display: none;
  }
}
.home-case-section .box .rollBox {
  position: relative;
  width: 100%;
  height: 52.08333333333333vw;
  overflow: hidden;
}
.home-case-section .box .rollBox ul li {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0.05rem;
  margin-top: 0.05rem;
}
@media screen and (min-width: 1261px) {
  .home-case-section .box .rollBox ul li {
    height: calc((52.08333333333333vw - 0.1rem) / 2.5);
  }
}
.home-case-section .box .rollBox ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  pointer-events: none;
}
.home-case-section .box .rollBox ul li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/img88.png) center no-repeat;
  background-size: 37% auto;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}
.home-case-section .box .rollBox ul li.active::before {
  opacity: 0;
}
.home-case-section .box .rollBox ul li.active::after {
  opacity: 0.2;
}
.home-case-section .box .rollBox ul li .img {
	display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home-case-section .box .rollBox ul li .img a{
	display: block;
	width: 100%;
  height: 100%;
  overflow: hidden;
}
.home-case-section .box .rollBox ul li .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-case-section .box .swiper {
  position: relative;
  width: 100%;
  height: 52.08333333333333vw;
  overflow: hidden;
}
.home-case-section .box .swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.home-case-section .box .swiper .swiper-wrapper .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.home-case-section .box .swiper .swiper-wrapper .swiper-slide .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home-case-section .box .swiper .swiper-wrapper .swiper-slide .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-case-section .box .middle_w {
  flex: 1;
  overflow: hidden;
}
@media screen and (max-width: 1260px) {
  .home-case-section .box .middle_w {
    flex: auto;
    width: 100%;
  }
}
@media screen and (max-width: 1260px) {
  .home-case-section .box .middle_w .case-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
}
@media screen and (max-width: 1260px) {
  .home-case-section .box .middle_w .case-swiper .case-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    transition-property: transform;
    box-sizing: content-box;
    width: 100%;
  }
}
.home-case-section .box .middle_w .case-swiper .case-wrapper .item {
  display: none;
  width: 100%;
}
.home-case-section .box .middle_w .case-swiper .case-wrapper .item.active {
  display: block;
}
@media screen and (max-width: 1260px) {
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    height: auto;
    justify-content: space-between;
  }
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item.active {
    display: flex;
  }
}
.home-case-section .box .middle_w .case-swiper .case-wrapper .item .mobileimg {
  display: none;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1260px) {
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .mobileimg {
  	position: relative;
  	padding-bottom: 75%;
    display: block;
    order: 2;
  }
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .mobileimg img{
  	position: absolute;
  	left: 0;
  	top: 0;
  	height: 100%;
  	object-fit: cover;
  }
}
.home-case-section .box .middle_w .case-swiper .case-wrapper .item .mobileimg img {
  display: block;
  width: 100%;
}
.home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox {
  padding-top: 6.25vw;
  padding-left: 3.75%;
  padding-right: 3.75%;
}
@media screen and (max-width: 1260px) {
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox {
    padding-top: 8%;
    padding-bottom: 6%;
    padding-left: 5%;
    padding-right: 5%;
    order: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
  }
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content{
  	display: flex;
    flex-direction: column;
  	flex: 1;
  	overflow: hidden;
  }
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content .text{
  	flex: 1;
  }
}
.home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content {
  margin-top: 4%;
  padding-top: 10%;
  border-top: #001515 solid 0.02rem;
}
@media screen and (max-width: 1260px) {
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content {
    padding-top: 6%;
  }
}
@media screen and (max-width: 767px) {
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content {
    padding-top: 8%;
  }
}
.home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content .icon img {
  width: 0.68rem;
}
.home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content .subtit {
  margin-top: 0.3rem;
  color: #000000;
  font-size: 40px;
  line-height: 1.4;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content .subtit {
    font-size: 2.083333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content .subtit {
    font-size: 24px;
  }
}
.home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content .text {
  margin-top: 0.3rem;
  color: #b9b9b9;
  font-size: 20px;
  min-height: 1.2rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content .text {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content .text {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content .text {
    font-size: 16px;
  }
}
.home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content .text span {
  color: #1515f1;
  font-size: 24px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content .text span {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content .text span {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content .text span {
    font-size: 18px;
  }
}
.home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content .public-btn {
  margin-top: 0.45rem;
}
@media screen and (max-width: 480px) {
  .home-case-section .box .middle_w .case-swiper .case-wrapper .item .textbox .content .public-btn {
    margin-top: 0.25rem;
  }
}
.home-case-section .box .middle_w .case-swiper .swiper-pagination {
  display: none;
}
@media screen and (max-width: 1260px) {
  .home-case-section .box .middle_w .case-swiper .swiper-pagination {
    display: block;
    bottom: 0.6rem;
  }
}
@media screen and (max-width: 767px) {
  .home-case-section .box .middle_w .case-swiper .swiper-pagination {
    bottom: 0.4rem;
  }
}
.home-case-section .box .middle_w .case-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 18px;
  margin: 0 8px;
  opacity: 0.4;
  background: url(../images/spot.png) center no-repeat;
  background-size: 100% 100%;
  border-radius: 0;
}
@media screen and (max-width: 991px) {
  .home-case-section .box .middle_w .case-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .home-case-section .box .middle_w .case-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 14px;
    margin: 0 6px;
  }
}
.home-case-section .box .middle_w .case-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.home-insights-section {
  position: relative;
  /*20251224修改*/
  /*display: flex;
  align-items: center;
  min-height: 100vh;*/
  background: #f7f7f7;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1260px) {
  .home-insights-section {
    min-height: 1px;
  }
}
.home-insights-section .fullvideo {
	/*20251224修改*/
  /*position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 15;
 	height: 100vh;*/
 	position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*20251224新增*/
.home-insights-section .fullvideo .btns.c-play{
	display: none;
}
@media screen and (max-width: 1260px) {
  .home-insights-section .fullvideo {
    /*display: none;*//*20251224修改*/
   margin-top: 10px;
  }
  .home-insights-section .fullvideo .movie,
  .home-insights-section .fullvideo .btns.playButton{
  	display: none;
  }
  .home-insights-section .fullvideo .btns.c-play{
  	display: block;
  }
}
.home-insights-section .fullvideo .videoimg {
  position: relative;
  display: block;
  width: 100%;
  /*height: 100%;*/
  overflow: hidden;
}
.home-insights-section .fullvideo .videoimg.hide {
  opacity: 0;
  visibility: hidden;
}
.home-insights-section .fullvideo .videoimg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.home-insights-section .fullvideo .videoimg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-insights-section .fullvideo .movie {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-insights-section .fullvideo .movie.show {
  opacity: 1;
  visibility: visible;
}
.home-insights-section .fullvideo .movie video {
  display: block;
  width: 100%;
  /*height: 100%;*/
  object-fit: cover;
}
.home-insights-section .fullvideo .btns {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.425rem;
  margin-top: -0.425rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.home-insights-section .fullvideo .btns img {
  display: block;
  width: 100%;
}
.home-insights-section .box {
  position: relative;
  /*20251224修改*/
  /*padding-top: 1.2rem;*/
  /*padding-bottom: 1.2rem;*/
 	padding-top: 0.7rem;
 	padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1260px) {
	.home-insights-section .box{
		padding-top: 1.2rem;
		padding-bottom: 1.2rem;
	}
}
.home-insights-section .box .adorn {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /*opacity: 0;*//*20251224修改*/
}
@media screen and (max-width: 1260px) {
	.home-insights-section .box{
		padding-top: 1.2rem;
	}
  .home-insights-section .box .adorn {
    opacity: 1;
  }
}
.home-insights-section .box .adorn span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.home-insights-section .box .adorn span:nth-child(1)::before {
  content: '';
  position: absolute;
  left: 2.34375vw;
  top: 3.125vw;
  width: 2.083333333333333vw;
  height: 2.083333333333333vw;
  border-left: #1515f1 solid 0.2083333333333333vw;
  border-top: #1515f1 solid 0.2083333333333333vw;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .home-insights-section .box .adorn span:nth-child(1)::before {
    left: 0.3rem;
    top: 0.4rem;
    width: 0.4rem;
    height: 0.4rem;
    border-left: #1515f1 solid 2px;
    border-top: #1515f1 solid 2px;
  }
}
.home-insights-section .box .adorn span:nth-child(1)::after {
  content: '';
  position: absolute;
  right: 2.34375vw;
  top: 3.125vw;
  width: 2.083333333333333vw;
  height: 2.083333333333333vw;
  border-right: #1515f1 solid 0.2083333333333333vw;
  border-top: #1515f1 solid 0.2083333333333333vw;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .home-insights-section .box .adorn span:nth-child(1)::after {
    right: 0.3rem;
    top: 0.4rem;
    width: 0.4rem;
    height: 0.4rem;
    border-right: #1515f1 solid 2px;
    border-top: #1515f1 solid 2px;
  }
}
.home-insights-section .box .adorn span:nth-child(2) {
  top: auto;
  bottom: 0;
}
.home-insights-section .box .adorn span:nth-child(2)::before {
  content: '';
  position: absolute;
  left: 2.34375vw;
  bottom: 3.125vw;
  width: 2.083333333333333vw;
  height: 2.083333333333333vw;
  border-left: #1515f1 solid 0.2083333333333333vw;
  border-bottom: #1515f1 solid 0.2083333333333333vw;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .home-insights-section .box .adorn span:nth-child(2)::before {
    left: 0.3rem;
    bottom: 0.4rem;
    width: 0.4rem;
    height: 0.4rem;
    border-left: #1515f1 solid 2px;
    border-bottom: #1515f1 solid 2px;
  }
}
.home-insights-section .box .adorn span:nth-child(2)::after {
  content: '';
  position: absolute;
  right: 2.34375vw;
  bottom: 3.125vw;
  width: 2.083333333333333vw;
  height: 2.083333333333333vw;
  border-right: #1515f1 solid 0.2083333333333333vw;
  border-bottom: #1515f1 solid 0.2083333333333333vw;
  box-sizing: border-box;
}
/*20251224修改*/
/*@media screen and (max-width: 1260px) {
  .home-insights-section .box .adorn span:nth-child(2)::after {
    right: 0.3rem;
    bottom: 0.4rem;
    width: 0.4rem;
    height: 0.4rem;
    border-right: #1515f1 solid 2px;
    border-bottom: #1515f1 solid 2px;
  }
}
@media screen and (min-width: 1261px) {
  .home-insights-section .box .i-title {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease;
  }
}*/
.home-insights-section .box .wrap {
  position: relative;
  width: 100%;
  /*margin-top: 3.125%;
  padding-bottom: 0.9rem;*//*20251224修改*/
 	margin-top: 2.083%;
}
@media screen and (max-width: 1260px) {
  .home-insights-section .box .wrap {
    width: 90%;
    padding-bottom: 0;
    margin-top: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }
}
.home-insights-section .box .wrap .swiper {
  position: relative;
  width: 100%;
}
.home-insights-section .box .wrap .swiper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 5;
  pointer-events: none;
  width: 37.5%;
  /*height: calc(100% - 5.8vw);*/
 	height: 100%;
  background: linear-gradient(to right, rgba(247, 247, 247, 0.7), rgba(247, 247, 247, 0));
}
@media screen and (max-width: 1260px) {
  .home-insights-section .box .wrap .swiper::before {
    display: none;
  }
}
.home-insights-section .box .wrap .swiper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 5;
  pointer-events: none;
  width: 37.5%;
  /*height: calc(100% - 5.8vw);*/
 	height: 100%;
  background: linear-gradient(to left, rgba(247, 247, 247, 0.7), rgba(247, 247, 247, 0));
}
@media screen and (max-width: 1260px) {
  .home-insights-section .box .wrap .swiper::after {
    display: none;
  }
}
@media screen and (min-width: 1261px) {
  .home-insights-section .box .wrap .swiper .swiper-wrapper {
    align-items: center;
    transition: all 0.4s ease;
  }
}
@media screen and (max-width: 1260px) {
  .home-insights-section .box .wrap .swiper .swiper-wrapper {
    align-items: stretch;
  }
}
@media screen and (min-width: 1261px) {
	/*20251224修改*/
  /*.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide {
    opacity: 0;
  }*/
  .home-insights-section .box .wrap .swiper .swiper-wrapper:hover{
  	z-index: 6;
  }
}
@media screen and (min-width: 1261px){
	.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item::before,
	.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item::before {
	  content: '';
	  display: block;
	  width: 100%;
	  padding-top: 15%;
	  pointer-events: none;
	  transition: all 0.4s ease;
	}
	.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item::after,
	.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item::after {
	  content: '';
	  display: block;
	  width: 100%;
	  padding-top: 3.125vw;
	  pointer-events: none;
	  transition: all 0.4s ease;
	}
		.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide:hover .item::before,
	.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide:hover .item::before{
		padding-top: 0;
	}
	.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide:hover .item::after,
	.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide:hover .item::after{
		padding-top: 0;
	}
}
@media screen and (min-width: 1261px) {

  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide:hover .item .imgbox {
    padding-top: 62.5%;
  }
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide:hover .item .textbox {
    /*min-height: 17.70833333333333vw;*/
   	height: 17.70833333333333vw;
  }
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide:hover .item .textbox .icon {
    background: url(../images/icon10.png) center no-repeat;
    background-size: 100% auto;
    opacity: 1;
  }
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide:hover .item .textbox{
    background: #1515f1;
  }
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide:hover .item .textbox .subtitle a {
    color: #FFFFFF;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide:hover .item .textbox .txt {
    color: #FFFFFF;
  }
  
  /*.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item {
    background: #1515f1;
  }
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .imgbox {
    padding-top: 62.5%;
  }
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox {
    min-height: 17.70833333333333vw;
  }
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox .icon {
    background: url(../images/icon10.png) center no-repeat;
    background-size: 100% auto;
    opacity: 1;
  }
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox .subtitle a {
    color: #FFFFFF;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox .txt {
    color: #FFFFFF;
  }*/
}
.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item {
	position: relative;
}


.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .imgbox {
  position: relative;
  width: 100%;
  padding-top: 47.5%;
  overflow: hidden;
  transition: all 0.4s ease;
}
.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .imgbox a,
.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .imgbox span {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .imgbox a::before,
.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .imgbox span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .imgbox a img,
.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .imgbox span img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .imgbox span .playbtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.53rem;
  height: 0.53rem;
  background: url(../images/icon11.png) center no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 1260px) {
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .imgbox span .playbtn {
    width: 42px;
    height: 42px;
  }
}
.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox {
  display: flex;
  flex-direction: column;
  /*min-height: 14.58333333333333vw;*/
 	height: 14.58333333333333vw;	
  padding: 0.4rem 0.4rem 0.3rem;
  box-sizing: border-box;
  background: #FFFFFF;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1260px) {
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox {
    padding: 0.4rem;
    height: auto;
  }
}
.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .icon {
  flex-shrink: 0;
  margin-bottom: 0.25rem;
  width: 0.47rem;
  height: 0.43rem;
  background: url(../images/icon9.png) center no-repeat;
  background-size: 100% auto;
  opacity: 0.2;
  transition: all 0.4s ease;
}
.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .subtitle {
  flex: 1;
  color: #000000;
  font-size: 30px;
  line-height: 1.25;
  overflow: hidden;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .subtitle {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .subtitle {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .subtitle {
    font-size: 20px;
  }
}
.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .subtitle a {
  color: #000000;
  transition: all 0.4s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .txt {
  flex-shrink: 0;
  margin-top: 0.3rem;
  color: #000000;
  font-size: 18px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .txt {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .home-insights-section .box .wrap .swiper .swiper-wrapper .swiper-slide .item .textbox .txt {
    font-size: 14px;
  }
}
.home-insights-section .box .wrap .desc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #000000;
  font-size: 18px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .home-insights-section .box .wrap .desc {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 1260px) {
  .home-insights-section .box .wrap .desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .home-insights-section .box .wrap .desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 1261px) {
  .home-insights-section .box .wrap .desc {
  	/*20251224修改*/
    /*position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease;*/
   	margin-top: 2.083%;
  }
}
@media screen and (max-width: 1260px) {
  .home-insights-section .box .wrap .desc {
    margin-top: 0.4rem;
  }
}
.home-insights-section .box .wrap .desc .sp {
  display: inline-block;
  margin-right: 0.05rem;
}
.home-insights-section .box .wrap .desc .sp span {
  display: inline-block;
  width: 0.12rem;
  height: 0.12rem;
  margin-right: 0.2rem;
  border-radius: 50%;
  background: #ff1829;
  animation: ani 1s infinite;
}
.home-insights-section .box .wrap .desc .swiper-pagination {
  display: inline-block;
  position: static;
  width: auto;
  display: none;
}
.home-insights-section .box .wrap .desc .fraction{
	display: inline-block;
}
.home-insights-section .box .wrap .desc .fraction span{
	display: inline-block;
}
@media screen and (max-width: 1260px){
	.home-insights-section .box .wrap .desc .swiper-pagination{
		display: inline-block;
	}
	.home-insights-section .box .wrap .desc .fraction{
		display: none;
	}
}
@keyframes ani {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.about-intro {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 1260px) {
  .about-intro {
    height: auto;
  }
}
.about-intro .bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1260px) {
  .about-intro .bg {
    display: none;
  }
}
.about-intro .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(10);
}
@media screen and (max-width: 1260px) {
  .about-intro .bg img {
    height: 70%;
  }
}
@media screen and (max-width: 480px) {
  .about-intro .bg img {
    height: 55%;
  }
}
.about-intro .bg1 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
@media screen and (max-width: 1260px) {
  .about-intro .bg1 {
    display: none;
  }
}
.about-intro .bg1 span {
  width: 200%;
  height: 200%;
  border-top: 60vh solid #fff;
  border-bottom: 60vh solid #fff;
  border-left: 30vw solid #fff;
  border-right: 30vw solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 3;
}
@media screen and (max-width: 1260px) {
  .about-intro .bg1 span {
    border-left: 0px solid #fff;
    border-right: 0px solid #fff;
    border-top: 70vh solid #fff;
    border-bottom: 70vh solid #fff;
  }
}
.about-intro .topic {
  position: absolute;
  left: 0;
  bottom: 30vh;
  z-index: 6;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1260px) {
  .about-intro .topic {
    display: none;
  }
}
.about-intro .topic .contain .sp {
  position: relative;
  max-width: 46.875vw;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  color: #000000;
  font-size: 30px;
  line-height: 1.35;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .about-intro .topic .contain .sp {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .about-intro .topic .contain .sp {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .about-intro .topic .contain .sp {
    font-size: 20px;
  }
}
@media screen and (max-width: 1260px) {
  .about-intro .topic .contain .sp {
    max-width: 90%;
  }
}
.about-intro .topic .contain .sp::before {
  content: '';
  position: absolute;
  left: -6.5vw;
  top: 1.875vw;
  width: 2.708333333333333vw;
  height: 3.020833333333333vw;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #f1f1ff;
}
.about-intro .album {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1260px) {
  .about-intro .album {
    display: none;
  }
}
.about-intro .album .item {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.about-intro .album .item.a1 {
  left: 3.55vw;
  top: 11vw;
  width: 15.20833333333333vw;
  height: 17.65625vw;
}
@media screen and (max-width: 1260px) {
  .about-intro .album .item.a1 {
    width: 27.34375vw;
    height: 31.73828125vw;
  }
}
@media screen and (max-width: 480px) {
  .about-intro .album .item.a1 {
    top: 20vw;
  }
}
.about-intro .album .item.a2 {
  right: 14.0625vw;
  bottom: 7vw;
  width: 9.427083333333333vw;
  height: 10.98958333333333vw;
}
@media screen and (max-width: 1260px) {
  .about-intro .album .item.a2 {
    width: 16.9921875vw;
    height: 19.82421875vw;
  }
}
@media screen and (max-width: 480px) {
  .about-intro .album .item.a2 {
    bottom: 28vw;
  }
}
.about-intro .album .item.a3 {
  right: -1.5vw;
  top: 15vw;
  width: 12.76041666666667vw;
  height: 14.79166666666667vw;
}
@media screen and (max-width: 1260px) {
  .about-intro .album .item.a3 {
    width: 22.94921875vw;
    height: 26.5625vw;
  }
}
@media screen and (max-width: 480px) {
  .about-intro .album .item.a3 {
    top: 24vw;
  }
}
.about-intro .album .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-intro .box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about-intro .box .imgbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about-intro .box .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-intro .box .textbox {
  position: absolute;
  left: 0;
  bottom: 6.25vw;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .about-intro .box .textbox {
    bottom: 2.1rem;
  }
}
.about-intro .box .textbox .icon {
  margin-bottom: 0.2rem;
}
.about-intro .box .textbox .icon img {
  width: 0.58rem;
  opacity: 0.3;
}
.about-profile {
  background: url(../images/img35a.png) left bottom no-repeat;
}
@media screen and (max-width: 1260px) {
  .about-profile {
    background: url(../images/img35a.png) left bottom no-repeat;
    background-size: 35% auto;
  }
}
@media screen and (max-width: 991px) {
  .about-profile .imgbox {
    flex-wrap: wrap;
    row-gap: 0.4rem;
  }
}
.about-profile .imgbox .item {
  width: 43.75%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .about-profile .imgbox .item {
    width: 100%;
  }
}
.about-profile .imgbox .item.img1 {
  position: relative;
}
.about-profile .imgbox .item.img1::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
}
@media screen and (max-width: 991px) {
  .about-profile .imgbox .item.img1::before {
    display: none;
  }
}
.about-profile .imgbox .item img {
  display: block;
  width: 100%;
}
.about-profile .textbox {
  position: relative;
  margin-top: -14vw;
}
@media screen and (max-width: 991px) {
  .about-profile .textbox {
    margin-top: 8%;
  }
}
.about-profile .textbox .i-title {
  padding: 0 4.6875%;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .about-profile .textbox .i-title {
    padding: 0;
  }
}
.about-profile .textbox .content {
  margin-top: 4.6875%;
  width: 66%;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .about-profile .textbox .content {
    width: 100%;
  }
}
.about-profile .textbox .content .subtit {
  color: #000000;
  font-size: 30px;
  margin-bottom: 0.2rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .about-profile .textbox .content .subtit {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .about-profile .textbox .content .subtit {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .about-profile .textbox .content .subtit {
    font-size: 20px;
  }
}
.about-profile .textbox .content .desc {
  color: #939393;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .about-profile .textbox .content .desc {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .about-profile .textbox .content .desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .about-profile .textbox .content .desc {
    font-size: 16px;
  }
}
.about-develop {
  position: relative;
}
.about-develop .swiperbg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about-develop .swiperbg::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 19.375%;
  height: 100%;
  background: url(../images/img39.png) center right no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 991px) {
  .about-develop .swiperbg::after {
    display: none;
  }
}
.about-develop .swiperbg .swiper-wrapper .swiper-slide .item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about-develop .swiperbg .swiper-wrapper .swiper-slide .item::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(37px);
}
.about-develop .swiperbg .swiper-wrapper .swiper-slide .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-develop .i-title {
  position: relative;
  z-index: 6;
}
.about-develop .box {
  position: relative;
  z-index: 6;
  align-items: center;
}
@media screen and (max-width: 1260px) {
  .about-develop .box {
    flex-wrap: wrap;
  }
}


/*20260209修改*/
.about-develop .box .time {
  /*width: 18.75%;*/
 	/*width: 116px;*/
 	position: relative;
 	display: inline-block;
 	padding-bottom: 1.1rem;
  flex-shrink: 0;
  padding-top: 1.1rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .about-develop .box .time {
   /* width: 100%;*/
    padding-top: 0.6rem;
    padding-bottom: 0;
    /*width: calc(100% - 1.3rem);*/
   	width: 100%;
   	padding-left: 0.65rem;
   	padding-right: 0.65rem;
    margin-left: auto;
    margin-right: auto;
    flex-shrink: initial;
  }
}
.about-develop .box .time .swiper {
  position: relative;
  width: 100%;
  height: clamp(4.2rem, 21.875vw, 420px);
  overflow: hidden;
}
@media screen and (max-width: 1260px) {
  .about-develop .box .time .swiper {
    height: auto;
  }
}
.about-develop .box .time .swiper .swiper-wrapper .swiper-slide {
  cursor: pointer;
}
@media screen and (max-width: 1260px) {
  .about-develop .box .time .swiper .swiper-wrapper .swiper-slide {
    width: auto;
    text-align: center;
  }
}
.about-develop .box .time .swiper .swiper-wrapper .swiper-slide.active .item {
  color: #FFFFFF;
}
.about-develop .box .time .swiper .swiper-wrapper .swiper-slide .item {
  color: rgba(255, 255, 255, 0.33);
  font-size: 24px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .about-develop .box .time .swiper .swiper-wrapper .swiper-slide .item {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .about-develop .box .time .swiper .swiper-wrapper .swiper-slide .item {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .about-develop .box .time .swiper .swiper-wrapper .swiper-slide .item {
    font-size: 18px;
  }
}
.about-develop .box .event {
  /*width: 78.75%;*/
 	width: 84.375%;
}
@media screen and (max-width: 1260px) {
  .about-develop .box .event {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.about-develop .box .event .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.about-develop .box .event .swiper .swiper-wrapper{
	align-items: stretch;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide{
	height: auto;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item{
	height: 100%;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox > * {
  opacity: 1;
  transform: none;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox > *:nth-child(1) {
  transition-delay: 0.3s;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox > *:nth-child(2) {
  transition-delay: 0.4s;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox > *:nth-child(3) {
  transition-delay: 0.5s;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox > *:nth-child(4) {
  transition-delay: 0.6s;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox > *:nth-child(5) {
  transition-delay: 0.7s;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox > *:nth-child(6) {
  transition-delay: 0.8s;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox > *:nth-child(7) {
  transition-delay: 0.9s;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox > *:nth-child(8) {
  transition-delay: 1s;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox > *:nth-child(9) {
  transition-delay: 1.1s;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox > *:nth-child(10) {
  transition-delay: 1.2s;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .imgbox span img {
  opacity: 1;
  transition-delay: .3s;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item {
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
 	align-items: flex-start;
}
@media screen and (max-width: 991px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item {
    /*flex-wrap: wrap;*/
   	flex-direction: column;
    height: auto;
  }
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox {
  /*width: 47%;*/
 	width: 41.5%;
 
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .desc p{
  margin-bottom: 20px;
}
@media screen and (max-width: 1260px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox {
    width: 100%;
  }
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox > * {
  opacity: 0;
  transform: translateY(50px);
  transition: all .4s;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .date {
  color: #FFFFFF;
  font-size: 80px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .date {
    font-size: 4.166666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .date {
    font-size: 48px;
  }
}
@media screen and (max-width: 991px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .date {
    font-size: 36px;
  }
}
@media screen and (max-width: 480px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .date {
    font-size: 32px;
  }
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .desc {
  color: #FFFFFF;
  font-size: 24px;
  min-height: clamp(200px, 20vw, 390px);
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .desc {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .desc {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .desc {
    font-size: 18px;
  }
}

.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .content .content_li{
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .content .content_li .t1 {
  position: relative;
  /*padding-left: 0.35rem;*/
  box-sizing: border-box;
  color: #FFFFFF;
  /*font-size: 24px;*/
 	font-size: 28px;
 	line-height: 1.25;
 	margin-bottom: 0.06rem;
}

@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .content .content_li .t1 {
    /*font-size: 1.25vw;*/
   	font-size: 1.458333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .content .content_li .t1 {
    /*font-size: 20px;*/
   	font-size: 24px;
  }
}
@media screen and (max-width: 991px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .content .content_li .t1 {
    /*font-size: 18px;*/
   	font-size: 20px;
  }
}
/*.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .content .content_li .t1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.06rem;
  width: 0.17rem;
  height: 0.19rem;
  background: url(../images/icon41.png) center no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 1260px){
	.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .content .content_li .t1::before{
		top: 0.1rem;
	}
}
@media screen and (max-width: 991px){
	.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .content .content_li .t1::before{
		top: 0.08rem;
	}
}
@media screen and (max-width: 480px){
	.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .content .content_li .t1::before{
		top: 0.1rem;
	}
}*/
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .content .content_li .t2 {
  color: #FFFFFF;
  font-size: 18px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .content .content_li .t2 {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 1260px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .content .content_li .t2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .textbox .content .content_li .t2 {
    font-size: 14px;
  }
}



.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .imgbox {
  position: relative;
  /*width: 49.2%;*/
 	width: 46%;
}
@media screen and (max-width: 1260px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .imgbox {
    text-align: right;
  }
}
@media screen and (max-width: 991px) {
  .about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .imgbox {
    margin-top: 8%;
    width: 100%;
    text-align: center;
  }
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .imgbox span {
  position: relative;
  /*display: inline-block;
  width: 87.26%;
  padding-bottom: 101.4516129032258%;*/
 	display: block;
 	width: 100%;
 	padding-bottom: 70.96774193548387%;
}
.about-develop .box .event .swiper .swiper-wrapper .swiper-slide .item .imgbox span img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  /*width: 100%;
  height: 100%;*/
 	max-width: 100%;
 	max-height: 100%;
  object-fit: cover;
  /*clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);*/
  opacity: 0;
  transition: all .3s;
}
/*20260116新增*/
.about-develop .swiper-button-prev,
.about-develop .swiper-button-next {
  position: absolute;
  width: .5rem;
  height: .57rem;
  /*left: 0.25rem;*/
 	left: 50%;
 	transform: translateX(-50%);
  margin-top: 0;
  background: url(../images/icon42a.svg) center no-repeat;
  background-size: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/*@media screen and (max-width: 991px) {
  .about-develop .swiper-button-prev,
  .about-develop .swiper-button-next {
    width: .6rem;
    height: .69rem;
  }
}*/
.about-develop .swiper-button-prev img,
.about-develop .swiper-button-next img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(90deg);
  width: 22%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.about-develop .swiper-button-prev:hover,
.about-develop .swiper-button-next:hover {
  background: url(../images/icon42.svg) center no-repeat;
  background-size: contain;
}
.about-develop .swiper-button-prev:hover img,
.about-develop .swiper-button-next:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.about-develop .swiper-button-prev.swiper-button-disabled,
.about-develop .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}
.about-develop .swiper-button-prev {
  /*left: 0.25rem;*/
  top: 0.35rem;
  bottom: auto;
}
.about-develop .swiper-button-next {
  /*left: 0.25rem;*/
  right: auto;
  top: auto;
  bottom: 0.35rem;
}
@media screen and (max-width: 1260px) {
	.about-develop .swiper-button-prev,
	.about-develop .swiper-button-next{
		transform: none;
	}
  .about-develop .swiper-button-prev{
  	left: 0;
  	top: 0.5rem;
  }
  .about-develop .swiper-button-next{
  	left: auto;
  	right: 0;
  	bottom: auto;
  	top: 0.5rem;
  }
  .about-develop .swiper-button-prev img,
	.about-develop .swiper-button-next img {
		transform: translate(-50%, -50%);
	}
}

/*end*/
.about-leadership .contain .box {
  margin-top: 0.3rem;
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.about-leadership .contain .box .item {
  width: 23.875%;
  margin-right: 1.5%;
  margin-bottom: 1.5%;
  transform: none !important;
}
.about-leadership .contain .box .item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1260px) {
  .about-leadership .contain .box .item {
    width: 31.66666666666667%;
    margin-right: 2.5%;
    margin-bottom: 2.5%;
  }
  .about-leadership .contain .box .item:nth-child(4n) {
    margin-right: 2.5%;
  }
  .about-leadership .contain .box .item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .about-leadership .contain .box .item {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
  .about-leadership .contain .box .item:nth-child(4n) {
    margin-right: 4%;
  }
  .about-leadership .contain .box .item:nth-child(3n) {
    margin-right: 4%;
  }
  .about-leadership .contain .box .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .about-leadership .contain .box .item {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 4%;
  }
}
.about-leadership .contain .box .item .el-item .el-item-content {
  padding-bottom: 30px;
  position: relative;
}
.about-leadership .contain .box .item .el-item .el-item-content .img-responsive {
  position: relative;
}
.about-leadership .contain .box .item .el-item .el-item-content .img-responsive::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 216, 0), rgba(0, 0, 216, 0.1));
}
.about-leadership .contain .box .item .el-item .el-item-content .img-responsive img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.about-leadership .contain .box .item .el-item .el-item-content .el-name {
  margin-top: 0.3rem;
  margin-bottom: 0.1rem;
  color: #000000;
  font-size: 30px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .about-leadership .contain .box .item .el-item .el-item-content .el-name {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .about-leadership .contain .box .item .el-item .el-item-content .el-name {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .about-leadership .contain .box .item .el-item .el-item-content .el-name {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about-leadership .contain .box .item .el-item .el-item-content .el-name {
    margin-top: 0.4rem;
  }
}
.about-leadership .contain .box .item .el-item .el-item-content .el-title {
  color: #1515ff;
  font-size: 24px;
  height: 0.72rem;
  margin-bottom: 0.3rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .about-leadership .contain .box .item .el-item .el-item-content .el-title {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .about-leadership .contain .box .item .el-item .el-item-content .el-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .about-leadership .contain .box .item .el-item .el-item-content .el-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
	.about-leadership .contain .box .item .el-item .el-item-content .el-title{
		height: auto;
	}
}
.about-leadership .contain .box .item .el-item .el-item-content .el-btn {
  margin-top: 5px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 1.8rem;
  height: 0.4rem;
  color: #0000d8;
  font-size: 16px;
  border-radius: 0.2rem;
  background: #FFFFFF;
  padding: 0 0.2rem;
  cursor: pointer;
  box-sizing: border-box;
  border: rgba(0, 0, 216, 0.1) solid 0.02rem;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .about-leadership .contain .box .item .el-item .el-item-content .el-btn {
    font-size: 0.8333333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .about-leadership .contain .box .item .el-item .el-item-content .el-btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .about-leadership .contain .box .item .el-item .el-item-content .el-btn {
    min-width: 2.2rem;
    height: 0.6rem;
    border-radius: 0.3rem;
    padding: 0 0.35rem;
  }
}
@media screen and (max-width: 767px) {
  .about-leadership .contain .box .item .el-item .el-item-content .el-btn {
    height: 0.7rem;
    border-radius: 0.35rem;
  }
}
@media screen and (max-width: 480px) {
  .about-leadership .contain .box .item .el-item .el-item-content .el-btn {
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}
.about-leadership .contain .box .item .el-item .el-item-content .el-btn:hover {
  border-color: #0000d8;
}
.about-leadership .contain .box .item .el-item .el-item-content .el-btn.active {
  background: #0000d8;
  color: #FFFFFF;
  border-color: #0000d8;
}
.about-leadership .contain .box .item .el-item .el-item-content .el-btn.active i {
  background: url(../images/icon16.png) center no-repeat;
  background-size: 100% auto;
}
.about-leadership .contain .box .item .el-item .el-item-content .el-btn i {
  flex-shrink: 0;
  display: inline-block;
  width: 0.11rem;
  height: 0.07rem;
  margin-left: 0.1rem;
  background: url(../images/icon15.png) center no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 1260px) {
  .about-leadership .contain .box .item .el-item .el-item-content .el-btn i {
    width: 9px;
    height: 6px;
    margin-left: 10px;
  }
}
.about-leadership .contain .box .item .el-item .el-collapses {
  max-height: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
}
.about-leadership .contain .box .item .el-item .el-collapses.active {
  transition: height 0.4s ease-in-out;
  max-height: 1000px;
  opacity: 1;
}
.about-leadership .contain .box .item .el-item .el-collapses .closecollapse {
  background-color: #0000d8;
  border-radius: 0;
  color: #fff;
  width: 0.42rem;
  height: 0.42rem;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: 0;
  padding: 0;
  opacity: 0;
}
.about-leadership .contain .box .item .el-item .el-collapses.active .closecollapse{
	opacity: 1;
}
@media screen and (max-width: 1260px) {
  .about-leadership .contain .box .item .el-item .el-collapses .closecollapse {
    width: 36px;
    height: 36px;
  }
}
.about-leadership .contain .box .item .el-item .el-collapses .closecollapse img {
  max-width: 36%;
}
.about-leadership .contain .box .item .el-item .el-collapses .coll-content {
  padding: 0.4rem 0.5rem;
  background-color: #f2f2f9;
}
@media screen and (max-width: 1260px) {
  .about-leadership .contain .box .item .el-item .el-collapses .coll-content {
    padding: 0.5rem;
  }
}
.about-leadership .contain .box .item .el-item .el-collapses .coll-content .desc {
  color: #939393;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .about-leadership .contain .box .item .el-item .el-collapses .coll-content .desc {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .about-leadership .contain .box .item .el-item .el-collapses .coll-content .desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .about-leadership .contain .box .item .el-item .el-collapses .coll-content .desc {
    font-size: 16px;
  }
}
.about-leadership .contain .box .item .el-item .el-collapses .coll-content .coll-btn {
  margin-top: 0.5rem;
}
.about-leadership .contain .box .item .el-item .el-collapses .coll-content .coll-btn a {
  display: inline-flex;
  align-items: center;
  color: #0000d8;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .about-leadership .contain .box .item .el-item .el-collapses .coll-content .coll-btn a {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .about-leadership .contain .box .item .el-item .el-collapses .coll-content .coll-btn a {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .about-leadership .contain .box .item .el-item .el-collapses .coll-content .coll-btn a {
    font-size: 16px;
  }
}
.about-leadership .contain .box .item .el-item .el-collapses .coll-content .coll-btn a img {
  display: inline-block;
  margin-right: 0.2rem;
  width: 0.49rem;
}
@media screen and (max-width: 1260px) {
  .about-leadership .contain .box .item .el-item .el-collapses .coll-content .coll-btn a img {
    width: 40px;
    margin-right: 12px;
  }
}
.about-team .box {
  margin-top: 0.5rem;
  color: #0000d8;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .about-team .box {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .about-team .box {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .about-team .box {
    font-size: 16px;
  }
}
.about-team .box img {
  max-width: 100%;
  display: block;
  margin: auto;
}
.public-crumbs .contain {
  display: flex;
  align-items: center;
  padding-top: 0.28rem;
  padding-bottom: 0.28rem;
  box-sizing: border-box;
  color: #b9b9b9;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .public-crumbs .contain {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .public-crumbs .contain {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .public-crumbs .contain {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .public-crumbs .contain {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.public-crumbs .contain span,
.public-crumbs .contain a {
  display: inline-flex;
  align-items: baseline;
  flex-shrink: 0;
  color: #b9b9b9;
  transition: all 0.4s ease;
}
.public-crumbs .contain span:hover,
.public-crumbs .contain a:hover {
  color: #1515ff;
}
.public-crumbs .contain span:hover img,
.public-crumbs .contain a:hover img {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}
.public-crumbs .contain span.on,
.public-crumbs .contain a.on {
  display: inline-block;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #1515ff;
}
.public-crumbs .contain a img {
  display: inline-block;
  margin-right: 0.04rem;
  opacity: 0.4;
  width: 0.12rem;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  transition: all 0.4s ease;
}
.public-crumbs .contain span {
  margin: 0 4px;
}
@media screen and (min-width: 992px) {
  .public-crumbs .contain span {
    margin: 0 0.208333vw;
  }
}
.public-crumbs .contain span img {
  display: inline-block;
  width: 0.05rem;
}
.founder .box {
  margin-top: clamp(60px, 4.6875vw, 90px);
}
@media screen and (max-width: 991px) {
  .founder .box {
    margin-top: 30px;
  }
}
@media screen and (max-width: 991px) {
  .founder .box .contain {
    flex-wrap: wrap;
  }
}
.founder .box .contain .imgbox {
  width: 31.25%;
  overflow: hidden;
  box-shadow: 0px 0px 87px rgba(0, 0, 241, 0.11);
  background: #FFFFFF;
}
@media screen and (max-width: 991px) {
  .founder .box .contain .imgbox {
    width: 100%;
  }
}
.founder .box .contain .imgbox img {
  display: block;
  width: 100%;
}
.founder .box .contain .textbox {
  width: 59.375%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .founder .box .contain .textbox {
    width: 100%;
    margin-top: 10%;
  }
}
.founder .box .contain .textbox .appellation {
  color: #000000;
  font-size: 60px;
  margin-bottom: 0.4rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .founder .box .contain .textbox .appellation {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 1260px) {
  .founder .box .contain .textbox .appellation {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .founder .box .contain .textbox .appellation {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .founder .box .contain .textbox .appellation {
    font-size: 28px;
  }
}
@media screen and (max-width: 991px) {
  .founder .box .contain .textbox .appellation {
    margin-bottom: 0.25rem;
  }
}
.founder .box .contain .textbox .appellation span {
  display: inline-block;
  margin-left: clamp(25px, 2.6vw, 50px);
  color: #1515ff;
  font-size: 30px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .founder .box .contain .textbox .appellation span {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .founder .box .contain .textbox .appellation span {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .founder .box .contain .textbox .appellation span {
    font-size: 20px;
  }
}
.founder .box .contain .textbox .content {
  margin-bottom: 0.7rem;
}
.founder .box .contain .textbox .content:last-child {
  margin-bottom: 0;
}
.founder .box .contain .textbox .content .subtit {
  color: #000000;
  font-size: 40px;
  margin-bottom: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: rgba(0, 0, 216, 0.1) solid 0.02rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .founder .box .contain .textbox .content .subtit {
    font-size: 2.083333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .founder .box .contain .textbox .content .subtit {
    font-size: 24px;
  }
}
.founder .box .contain .textbox .content .desc {
	font-family: "BRONOVA-REGULAR";/*20260226*/
  color: #939393;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .founder .box .contain .textbox .content .desc {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .founder .box .contain .textbox .content .desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .founder .box .contain .textbox .content .desc {
    font-size: 16px;
  }
}
.case .box {
  margin-top: 0.5rem;
  margin-bottom: 0.35rem;
}
@media screen and (max-width: 1260px) {
  .case .box {
    margin-top: 0.6rem;
    margin-bottom: 0.5rem;
  }
}
.case .box .caseitem {
  width: 49.375%;
  margin-right: 1.25%;
  margin-bottom: 1.25%;
}
.case .box .caseitem:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 1260px) {
  .case .box .caseitem {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
}
@media screen and (max-width: 767px) {
  .case .box .caseitem {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.4rem;
  }
}
@media screen and (max-width: 1260px) {
  .commonwrap {
    flex-wrap: wrap;
  }
}
.commonwrap .layui-item.left_w {
  width: 46.25%;
}
@media screen and (max-width: 1260px) {
  .commonwrap .layui-item.left_w {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .commonwrap .layui-item.left_w {
    flex-wrap: wrap;
  }
}
.commonwrap .layui-item.left_w .layui-input-block {
  position: relative;
  z-index: 5;
}
.commonwrap .layui-item.left_w .layui-input-block:nth-child(1) {
  z-index: 6;
}
.commonwrap .layui-item.right_w {
  width: 37.5%;
}
@media screen and (max-width: 1260px) {
  .commonwrap .layui-item.right_w {
    width: 48.64%;
  }
}
@media screen and (max-width: 767px) {
  .commonwrap .layui-item.right_w {
    width: 100%;
  }
}
.commonwrap .layui-item .layui-input-block {
  width: 48.64%;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .commonwrap .layui-item .layui-input-block {
    width: 100%;
  }
}
.commonwrap .layui-item .layui-input-block.other {
  width: 1.8rem;
  margin-left: 0.2rem;
}
@media screen and (max-width: 1260px) {
  .commonwrap .layui-item .layui-input-block.other {
    width: 48.64%;
  }
}
@media screen and (max-width: 767px) {
  .commonwrap .layui-item .layui-input-block.other {
    width: 100%;
    margin-left: 0;
  }
}
.commonwrap .layui-item .layui-input-block .layui-form-select.layui-form-selected .layui-select-title .layui-input {
  background-color: #0000d8;
  color: #FFFFFF;
  border-color: #0000d8 !important;
}
.commonwrap .layui-item .layui-input-block .layui-form-select.layui-form-selected .layui-select-title .layui-input::-webkit-input-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #FFFFFF;
}
.commonwrap .layui-item .layui-input-block .layui-form-select.layui-form-selected .layui-select-title .layui-input::-moz-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #FFFFFF;
}
.commonwrap .layui-item .layui-input-block .layui-form-select.layui-form-selected .layui-select-title .layui-input:-moz-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #FFFFFF;
}
.commonwrap .layui-item .layui-input-block .layui-form-select.layui-form-selected .layui-select-title .layui-input:-ms-input-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #FFFFFF;
}
.commonwrap .layui-item .layui-input-block .layui-form-select.layui-form-selected .layui-select-title .layui-edge {
  margin-top: -0.15rem;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  border-top-color: #FFFFFF;
}
@media screen and (max-width: 1260px) {
  .commonwrap .layui-item .layui-input-block .layui-form-select.layui-form-selected .layui-select-title .layui-edge {
    margin-top: -12px;
  }
}
.commonwrap .layui-item .layui-input-block .layui-form-select .layui-select-title::after {
  content: '';
  display: block;
  width: 100%;
  height: 0.2rem;
}
@media screen and (max-width: 1260px) {
  .commonwrap .layui-item .layui-input-block .layui-form-select .layui-select-title::after {
    height: 0.3rem;
  }
}
.commonwrap .layui-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
  height: 0.7rem;
  border-width: 0.02rem;
  border-style: solid;
  border-color: rgba(0, 0, 216, 0.1);
  background-color: #FFFFFF;
  font-family: "BRONOVA-BOLD";
  color: #0000d8;
  font-size: 20px;
  border-radius: 0.35rem;
  padding-left: 0.4rem;
  padding-right: 0.6rem;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .commonwrap .layui-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .commonwrap .layui-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .commonwrap .layui-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .commonwrap .layui-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}
.commonwrap .layui-item .layui-input-block .layui-form-select .layui-select-title .layui-input:hover {
  border-color: rgba(21, 21, 241, 0.1) !important;
}
.commonwrap .layui-item .layui-input-block .layui-form-select .layui-select-title .layui-input:focus {
  border-color: #0000d8 !important;
}
.commonwrap .layui-item .layui-input-block .layui-form-select .layui-select-title .layui-input::-webkit-input-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #0000d8;
}
.commonwrap .layui-item .layui-input-block .layui-form-select .layui-select-title .layui-input::-moz-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #0000d8;
}
.commonwrap .layui-item .layui-input-block .layui-form-select .layui-select-title .layui-input:-moz-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #0000d8;
}
.commonwrap .layui-item .layui-input-block .layui-form-select .layui-select-title .layui-input:-ms-input-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #0000d8;
}
.commonwrap .layui-item .layui-input-block .layui-form-select .layui-select-title .layui-edge {
  right: 0.4rem;
  margin-top: -0.2rem;
  border-width: 0.07rem;
  border-top-color: #0000d8;
  border-top-style: solid;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media screen and (max-width: 1260px) {
  .commonwrap .layui-item .layui-input-block .layui-form-select .layui-select-title .layui-edge {
    margin-top: -18px;
    border-width: 6px;
  }
}
.commonwrap .layui-item .layui-input-block .layui-form-select dl {
  top: 100%;
  bottom: auto !important;
  max-width: 100%;
  padding: 0.4rem;
  box-sizing: border-box;
  max-height: 400px;
  box-shadow: 0px 0px 87px rgba(21, 21, 241, 0.11);
  border-radius: 0.15rem;
  /* 修改滚动条的整体大小 */
  /* 修改滚动条的轨道样式 */
  /* 修改滚动条的滑块样式 */
  /* 修改滑块的 hover 样式 */
}
.commonwrap .layui-item .layui-input-block .layui-form-select dl::-webkit-scrollbar {
  width: 0.02rem;
  /* 垂直滚动条的宽度 */
  height: 0.02rem;
  /* 水平滚动条的高度 */
}
.commonwrap .layui-item .layui-input-block .layui-form-select dl::-webkit-scrollbar-track {
  background: #e5e5fb;
  /* 轨道背景颜色 */
  border-radius: 0.02rem;
  /* 轨道的圆角 */
}
.commonwrap .layui-item .layui-input-block .layui-form-select dl::-webkit-scrollbar-thumb {
  background: #0000d8;
  /* 滑块背景颜色 */
  border-radius: 0.02rem;
  /* 滑块圆角 */
}
.commonwrap .layui-item .layui-input-block .layui-form-select dl::-webkit-scrollbar-thumb:hover {
  background: #0000d8;
  /* 当鼠标悬停时滑块的颜色 */
}
.commonwrap .layui-item .layui-input-block .layui-form-select dl dd {
  white-space: normal;
  font-family: "BRONOVA-BOLD";
  color: #b9b9b9;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 0.15rem;
  padding: 0 !important;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .commonwrap .layui-item .layui-input-block .layui-form-select dl dd {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .commonwrap .layui-item .layui-input-block .layui-form-select dl dd {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .commonwrap .layui-item .layui-input-block .layui-form-select dl dd {
    font-size: 16px;
  }
}
.commonwrap .layui-item .layui-input-block .layui-form-select dl dd:hover {
  color: #0000d8;
  background: none;
}
.commonwrap .layui-item .layui-input-block .layui-form-select dl dd.layui-this {
  background: none;
  color: #0000d8;
}
.commonwrap .layui-item .search-block {
  position: relative;
}
.commonwrap .layui-item .search-block .layui-input {
  padding-left: 0.4rem;
  padding-right: 1.4rem;
  border-color: rgba(0, 0, 216, 0.1);
  border-width: 0.02rem;
  height: 0.7rem;
  font-family: "BRONOVA-BOLD";
  color: #0000d8;
  font-size: 20px;
  box-sizing: border-box;
  border-radius: 0.35rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .commonwrap .layui-item .search-block .layui-input {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .commonwrap .layui-item .search-block .layui-input {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .commonwrap .layui-item .search-block .layui-input {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .commonwrap .layui-item .search-block .layui-input {
    padding-right: 1.7rem;
  }
}
@media screen and (max-width: 480px) {
  .commonwrap .layui-item .search-block .layui-input {
    padding-right: 1.9rem;
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}
.commonwrap .layui-item .search-block .layui-input::-webkit-input-placeholder {
  font-family: "BRONOVA-BOLD";
  color: rgba(21, 21, 241, 0.6);
}
.commonwrap .layui-item .search-block .layui-input::-moz-placeholder {
  font-family: "BRONOVA-BOLD";
  color: rgba(21, 21, 241, 0.6);
}
.commonwrap .layui-item .search-block .layui-input:-moz-placeholder {
  font-family: "BRONOVA-BOLD";
  color: rgba(21, 21, 241, 0.6);
}
.commonwrap .layui-item .search-block .layui-input:-ms-input-placeholder {
  font-family: "BRONOVA-BOLD";
  color: rgba(21, 21, 241, 0.6);
}
.commonwrap .layui-item .search-block .layui-input:hover {
  border-color: rgba(21, 21, 241, 0.1) !important;
}
.commonwrap .layui-item .search-block .layui-input:focus {
  border-color: #0000d8 !important;
}
.commonwrap .layui-item .search-block .layui-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.4rem;
  height: 100%;
  border-radius: 0.35rem;
  background: #0000d8;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "BRONOVA-BOLD";
  color: #ffffff;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .commonwrap .layui-item .search-block .layui-btn {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .commonwrap .layui-item .search-block .layui-btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .commonwrap .layui-item .search-block .layui-btn {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .commonwrap .layui-item .search-block .layui-btn {
    width: 1.7rem;
  }
}
@media screen and (max-width: 480px) {
  .commonwrap .layui-item .search-block .layui-btn {
    width: 1.8rem;
    border-radius: 0.38rem;
  }
}
.commonwrap .layui-item .search-block .layui-btn img {
  width: 15%;
}
@media screen and (max-width: 767px) {
  .commonwrap .layui-item .search-block .layui-btn img {
    width: 18%;
  }
}


/*20260617新增*/
.commonwrap .layui-item.item-wrap{
	width: 100%;
	column-gap: 0.3rem;
}
.commonwrap .layui-item .layui-input-block.m1{
	width: 32%;
	z-index: 7;
}
.commonwrap .layui-item .layui-input-block.m2{
	z-index: 6;
}
.commonwrap .layui-item.item-wrap .m3{
	width: calc(68% - 4.5rem);
	margin-bottom: 0.2rem;
}
.case .commonwrap .layui-item .layui-input-block.m1,
.case .commonwrap .layui-item .layui-input-block.m2{
	width: 25%;
}
.case .commonwrap .layui-item.item-wrap .m3{
	width: calc(50% - 2.7rem);
}
@media screen and (max-width: 1260px){
	.commonwrap .layui-item .layui-input-block.m2{
		width: 1.8rem;
	}
	.case .commonwrap .layui-item .layui-input-block.m2{
		width: 25%;
	}
	.commonwrap .layui-item.item-wrap .m3{
		margin-bottom: 0.3rem;
	}
}
@media screen and (max-width: 991px){
	.commonwrap .layui-item.item-wrap{
		flex-wrap: wrap;
	}
	.commonwrap .layui-item .layui-input-block.m1{
		width: calc((100% - 0.3rem) / 2);
	}
	.commonwrap .layui-item .layui-input-block.m2{
		width: calc((100% - 0.3rem) / 2);
	}
	.commonwrap .layui-item.item-wrap .m3{
		width: calc((100% - 0.3rem) / 2);
	}
	.case .commonwrap .layui-item .layui-input-block.m1,
	.case .commonwrap .layui-item .layui-input-block.m2{
		width: calc((100% - 0.3rem) / 2);
	}
	.case .commonwrap .layui-item.item-wrap .m3{
		width: calc((100% - 0.3rem) / 2);
	}
}
@media screen and (max-width: 767px){
	.commonwrap .layui-item .layui-input-block.m1{
		width: 100%;
	}
	.commonwrap .layui-item .layui-input-block.m2{
		width: 100%;
	}
	.commonwrap .layui-item.item-wrap .m3{
		width: 100%;
	}
	.case .commonwrap .layui-item .layui-input-block.m1,
	.case .commonwrap .layui-item .layui-input-block.m2{
		width: 100%;
	}
	.case .commonwrap .layui-item.item-wrap .m3{
		width: 100%;
	}
	.commonwrap .reset-button.m4{
		margin-bottom: 0;
	}
}

/*end*/




.caseitem {
  width: 100%;
  margin-bottom: 1.25%;
}
.caseitem:hover .imgbox .description {
    -webkit-transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}
.caseitem .imgbox {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 56.9620253164557%;
  overflow: hidden;
}
.caseitem .imgbox > img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caseitem .imgbox .description {
  position: absolute;
  left: 0;
  top: 0;
  width: 66.20253164556962%;
  height: 100%;
  padding-left: 5%;
  padding-top: 5%;
  padding-bottom: 5%;
  padding-right: 16%;
  background: url(../images/img56.png) center left no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
 	transform: translateX(-100%);
}
@media screen and (max-width: 1260px) {
  .caseitem .imgbox .description {
    width: 80%;
    opacity: 1;
  }
}
.caseitem .imgbox .description ul {
  padding-left: 0;
}
.caseitem .imgbox .description ul li {
  list-style: none;
  margin-bottom: 0.35rem;
}
@media screen and (max-width: 991px) {
  .caseitem .imgbox .description ul li {
    margin-bottom: 0.2rem;
  }
}
.caseitem .imgbox .description ul li:last-child {
  margin-bottom: 0;
}
.caseitem .imgbox .description ul li .subtit {
  color: #ffffff;
  font-size: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-bottom: 0.1rem;
  margin-bottom: 0.1rem;
  border-bottom: rgba(255, 255, 255, 0.1) solid 1px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .caseitem .imgbox .description ul li .subtit {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .caseitem .imgbox .description ul li .subtit {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .caseitem .imgbox .description ul li .subtit {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .caseitem .imgbox .description ul li .subtit {
    padding-bottom: 0.05rem;
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .caseitem .imgbox .description ul li .subtit {
    margin-bottom: 0.15rem;
  }
}
.caseitem .imgbox .description ul li .txt {
  color: #ffffff;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .caseitem .imgbox .description ul li .txt {
    font-size: 0.8333333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .caseitem .imgbox .description ul li .txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .caseitem .imgbox .description ul li .txt {
    font-size: 12px;
  }
}
.caseitem .textbox {
  padding-top: 0.3rem;
  padding-bottom: 0.2rem;
}
@media screen and (max-width: 1260px) {
  .caseitem .textbox {
    padding-top: 0.4rem;
  }
}
.caseitem .textbox .title {
  color: #000000;
  font-size: 30px;
  line-height: 1.35;
  margin-bottom: 0.1rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .caseitem .textbox .title {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .caseitem .textbox .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .caseitem .textbox .title {
    font-size: 20px;
  }
}
.caseitem .textbox .title a {
  color: #000000;
}
.caseitem .textbox .info {
  color: #000000;
  font-size: 16px;
  display: flex;
  align-items: baseline;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .caseitem .textbox .info {
    font-size: 0.8333333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .caseitem .textbox .info {
    font-size: 14px;
  }
}
.caseitem .textbox .info img {
  position: relative;
  top: 1px;
  flex-shrink: 0;
  display: inline-block;
  width: 0.13rem;
  margin-right: 0.08rem;
}
@media screen and (max-width: 1260px) {
  .caseitem .textbox .info img {
    width: 9px;
    margin-right: 5px;
  }
}
.caseitem .textbox .info span {
  flex: 1;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
}
.caseitem .textbox .btn {
  margin-top: 0.4rem;
}
.caseitem .textbox .btn a,
.caseitem .textbox .btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 0.7rem;
  border-radius: 0.35rem;
  color: #ffffff;
  font-size: 20px;
  background: #0000d8;
  padding: 0 0.35rem;
  box-sizing: border-box;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .caseitem .textbox .btn a,
  .caseitem .textbox .btn span {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .caseitem .textbox .btn a,
  .caseitem .textbox .btn span {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .caseitem .textbox .btn a,
  .caseitem .textbox .btn span {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .caseitem .textbox .btn a,
  .caseitem .textbox .btn span {
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}
.page {
  width: 100%;
  text-align: center;
}
.page .page-list {
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.page .page-list span,
.page .page-list a {
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 .1rem;
  width: .5rem;
  height: .57rem;
  padding-top: 0.04rem;
  margin-bottom: .06rem;
  margin-right: .18rem;
  text-align: center;
  font-size: 20px;
  color: #1515ff;
  background: url(../images/icon42a.svg) center no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .page .page-list span,
  .page .page-list a {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .page .page-list span,
  .page .page-list a {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .page .page-list span,
  .page .page-list a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1260px) {
  .page .page-list span,
  .page .page-list a {
    min-width: .6rem;
    height: .69rem;
    margin-bottom: .1rem;
  }
}
.page .page-list span:last-child,
.page .page-list a:last-child {
  margin-right: 0;
}
.page .page-list span:hover,
.page .page-list a:hover {
  color: #FFFFFF;
  background: url(../images/icon42.svg) center no-repeat;
  background-size: 100% auto;
}
.page .page-list span.fyprev,
.page .page-list a.fyprev {
  padding: 0;
}
.page .page-list span.fyprev.disabled,
.page .page-list a.fyprev.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.page .page-list span.fyprev:hover img,
.page .page-list a.fyprev:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.page .page-list span.fyprev img,
.page .page-list a.fyprev img {
  width: 22%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.page .page-list span.fynext,
.page .page-list a.fynext {
  padding: 0;
}
.page .page-list span.fynext.disabled,
.page .page-list a.fynext.disabled {
  pointer-events: none;
  background: none;
  opacity: 0.5;
}
.page .page-list span.fynext:hover img,
.page .page-list a.fynext:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.page .page-list span.fynext img,
.page .page-list a.fynext img {
  width: 22%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.page .page-list span.on,
.page .page-list a.on {
  color: #FFFFFF;
  background: url(../images/icon42.svg) center no-repeat;
  background-size: 100% auto;
}
.page .page-list span.on img,
.page .page-list a.on img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.page .page-list span {
  min-width: 0.3rem;
  background: none;
}
.page .page-list span.els {
  color: #0000d8;
  font-size: 24px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .page .page-list span.els {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .page .page-list span.els {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .page .page-list span.els {
    font-size: 18px;
  }
}
.page .page-list span:hover {
  background: none;
}
.new-swiper {
  margin-top: 0.5rem;
}
@media screen and (max-width: 1260px) {
  .new-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0.6rem;
    padding-bottom: 0.8rem;
  }
}
@media screen and (min-width: 1261px) {
  .new-swiper .new-wrapper {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0.2rem;
  }
}
@media screen and (max-width: 1260px) {
  .new-swiper .new-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    transition-property: transform;
    box-sizing: content-box;
  }
}
.new-swiper .new-wrapper .new-slide {
  width: calc((100% - 0.4rem) / 3);
}
@media screen and (max-width: 1260px) {
  .new-swiper .new-wrapper .new-slide {
    flex-shrink: 0;
  }
}
.new-swiper .new-wrapper .new-slide .item {
  display: block;
  width: 100%;
  position: relative;
}
.new-swiper .new-wrapper .new-slide .item:hover .imgbox img {
  transform: scale(1.1);
}
.new-swiper .new-wrapper .new-slide .item .imgbox {
  position: relative;
  width: 100%;
  padding-bottom: 73.07692307692308%;
  overflow: hidden;
}
.new-swiper .new-wrapper .new-slide .item .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.new-swiper .new-wrapper .new-slide .item .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  padding: 0.4rem 0.3rem 0.2rem;
  box-sizing: border-box;
}
.new-swiper .new-wrapper .new-slide .item .textbox::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 216, 0), rgba(0, 0, 216, 0.7));
}
.new-swiper .new-wrapper .new-slide .item .textbox .date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .new-swiper .new-wrapper .new-slide .item .textbox .date {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 1260px) {
  .new-swiper .new-wrapper .new-slide .item .textbox .date {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .new-swiper .new-wrapper .new-slide .item .textbox .date {
    font-size: 14px;
  }
}
.new-swiper .new-wrapper .new-slide .item .textbox .subtit {
  color: #FFFFFF;
  font-size: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .new-swiper .new-wrapper .new-slide .item .textbox .subtit {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .new-swiper .new-wrapper .new-slide .item .textbox .subtit {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .new-swiper .new-wrapper .new-slide .item .textbox .subtit {
    font-size: 18px;
  }
}
.new-swiper .swiper-pagination {
  display: none;
}
@media screen and (max-width: 1260px) {
  .new-swiper .swiper-pagination {
    display: block;
    bottom: 0;
  }
}
.new-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 18px;
  margin: 0 8px;
  opacity: 0.4;
  background: url(../images/spot1.png) center no-repeat;
  background-size: 100% 100%;
  border-radius: 0;
}
@media screen and (max-width: 991px) {
  .new-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .new-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 14px;
    margin: 0 6px;
  }
}
.new-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.newlist {
  margin-top: 6.25%;
  margin-bottom: 5.4375%;
}
@media screen and (max-width: 991px) {
  .newlist {
    margin-top: 9%;
    margin-bottom: 9%;
  }
}
.newlist .item {
  padding: 0.36rem 0.3rem;
  display: flex;
  border-bottom: rgba(21, 21, 241, 0.06) solid 0.02rem;
}
.newlist .item:first-child {
  border-top: rgba(21, 21, 241, 0.06) solid 0.02rem;
}
.newlist .item.no-image .textbox {
  flex-direction: row;
  align-items: flex-end;
}
@media screen and (max-width: 991px) {
  .newlist .item.no-image .textbox {
    flex-wrap: wrap;
  }
}
.newlist .item.no-image .textbox .part1 {
  flex: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .newlist .item.no-image .textbox .part1 {
    flex: auto;
  }
}
.newlist .item.no-image .textbox .part2 {
  display: inline-block;
  margin-left: 0.3rem;
  flex-shrink: 0;
  min-height: 1px;
}
@media screen and (max-width: 991px) {
  .newlist .item.no-image .textbox .part2 {
    display: block;
    margin-left: 0;
  }
}
.newlist .item:hover .textbox .part1 .subtit {
  color: #0000d8;
}
/*20260209*/
/*.newlist .item:hover .imgbox img {
  transform: scale(1.1);
}*/
@media screen and (max-width: 991px) {
  .newlist .item {
    flex-wrap: wrap;
    padding: 0.4rem 0rem;
  }
}
/*20260209修改*/
.newlist .item{
	transition: all 0.4s ease;
}
.newlist .item:hover{
	box-shadow: 0 0 20px rgba(150, 141, 141, 0.15);
}
.newlist .item .imgbox {
  /*width: 32.4676%;
  margin-right: 4.5%;*/
 	width: 22.5%;
  margin-right: 0.4rem;
  overflow: hidden;
}
@media screen and (max-width: 1260px){
	.newlist .item .imgbox{
		width: 27.5%;
	}
}
@media screen and (max-width: 991px) {
  .newlist .item .imgbox {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
}
.newlist .item .imgbox img {
  display: block;
  width: 100%;
  /*transition: all 0.4s ease;*/
}
.newlist .item .textbox {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .newlist .item .textbox {
    flex: auto;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .newlist .item .textbox .part1 {
    width: 100%;
  }
}
.newlist .item .textbox .part1 .date {
  color: #b9b9b9;
  font-size: 18px;
  margin-bottom: 0.1rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .newlist .item .textbox .part1 .date {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 1260px) {
  .newlist .item .textbox .part1 .date {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .newlist .item .textbox .part1 .date {
    font-size: 14px;
  }
}
.newlist .item .textbox .part1 .subtit {
  color: #000000;
  font-size: 30px;
  line-height: 1.15;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .newlist .item .textbox .part1 .subtit {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .newlist .item .textbox .part1 .subtit {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .newlist .item .textbox .part1 .subtit {
    font-size: 20px;
  }
}
.newlist .item .textbox .part2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.3rem;
}
@media screen and (min-width: 992px) {
  .newlist .item .textbox .part2 {
    min-height: 0.7rem;
  }
}
@media screen and (max-width: 991px) {
  .newlist .item .textbox .part2 {
    width: 100%;
    margin-left: 0;
  }
}
.newlist .item .textbox .part2 .morebtn {
  color: #1515f1;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .newlist .item .textbox .part2 .morebtn {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .newlist .item .textbox .part2 .morebtn {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .newlist .item .textbox .part2 .morebtn {
    font-size: 16px;
  }
}
.newlist .item .textbox .part2 .sort {
  color: #000000;
  font-size: 18px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .newlist .item .textbox .part2 .sort {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 1260px) {
  .newlist .item .textbox .part2 .sort {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .newlist .item .textbox .part2 .sort {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .details .box {
    flex-wrap: wrap;
  }
}
.details .box .navsidebar {
  position: sticky;
  top: 1.2rem;
  z-index: 12;
  flex-shrink: 0;
  width: 28.125%;
  padding-left: calc((100% - 1600px) / 2);
  box-sizing: border-box;
}
@media screen and (min-width: 2560px) {
  .details .box .navsidebar {
    width: 35%;
  }
}
@media screen and (max-width: 1900px) {
  .details .box .navsidebar {
    padding-left: 8.333333333333335%;
  }
}
@media screen and (max-width: 1260px) {
  .details .box .navsidebar {
    padding-left: 5%;
  }
}
@media screen and (max-width: 991px) {
  .details .box .navsidebar {
    position: relative;
    top: 0;
    width: 100%;
    padding-right: 5%;
  }
}
.details .box .navsidebar .subheadline {
  color: #000000;
  font-size: 30px;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .details .box .navsidebar .subheadline {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .details .box .navsidebar .subheadline {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .details .box .navsidebar .subheadline {
    font-size: 20px;
  }
}
.details .box .navsidebar ul {
  width: 100%;
}
.details .box .navsidebar ul li {
  padding: 0.28rem 0;
  border-bottom: rgba(21, 21, 241, 0.06) solid 0.02rem;
}
.details .box .navsidebar ul li:first-child {
  border-top: rgba(21, 21, 241, 0.06) solid 0.02rem;
}
.details .box .navsidebar ul li:hover a,
.details .box .navsidebar ul li:hover span {
  color: #0000d8;
}
.details .box .navsidebar ul li.on a,
.details .box .navsidebar ul li.on span {
  color: #0000d8;
}
.details .box .navsidebar ul li.on a::before,
.details .box .navsidebar ul li.on span::before {
  content: '';
  flex-shrink: 0;
  display: inline-block;
  margin-right: 0.2rem;
  width: 0.14rem;
  height: 0.16rem;
  background: url(../images/icon41a.png) center no-repeat;
  background-size: 100% 100%;
}
.details .box .navsidebar ul li a,
.details .box .navsidebar ul li span {
  position: relative;
  display: flex;
  align-items: baseline;
  color: #939393;
  font-size: 24px;
  line-height: 1.35;
  transition: all 0.4s ease;
  cursor: pointer;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .details .box .navsidebar ul li a,
  .details .box .navsidebar ul li span {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .details .box .navsidebar ul li a,
  .details .box .navsidebar ul li span {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .details .box .navsidebar ul li a,
  .details .box .navsidebar ul li span {
    font-size: 18px;
  }
}
.details .box .content {
  width: 71.875%;
  padding-left: 1.2rem;
  padding-right: calc((100% - 1600px) / 2);
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (min-width: 2560px) {
  .details .box .content {
    width: 65%;
  }
}
@media screen and (max-width: 1900px) {
  .details .box .content {
    padding-right: 8.333333333333335%;
  }
}
@media screen and (max-width: 1260px) {
  .details .box .content {
    padding-left: 7%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 991px) {
  .details .box .content {
    width: 100%;
    padding-left: 5%;
    margin-top: 8%;
  }
}
.details .box .content .commonsection {
  padding-top: 1rem;
  margin-top: -1rem;
}
.details .box .content .commonsection:last-child .item {
  margin-bottom: 0;
}
.details .box .content .commonsection .item {
  /*margin-bottom: 1rem;*/
 	margin-bottom: 0.5rem;
}

.details .box .content .commonsection .item .c-title {
  color: #000000;
  font-size: 50px;
  margin-bottom: 0.16rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .details .box .content .commonsection .item .c-title {
    font-size: 2.604166666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .details .box .content .commonsection .item .c-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .details .box .content .commonsection .item .c-title {
    font-size: 24px;
  }
}
.details .box .content .commonsection .item .wrap {
	/*display: flex;
	flex-direction: column;
	gap:0.45rem;*/
  padding-top: 0.28rem;
  border-top: rgba(21, 21, 241, 0.06) solid 0.02rem;
}
.details .box .content .commonsection .item .wrap .textbox {
	font-family: "BRONOVA-REGULAR";
  color: #939393;
  font-size: 20px;
}
.details .box .content .commonsection .item .wrap .textbox img{
	height: auto;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .details .box .content .commonsection .item .wrap .textbox {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .details .box .content .commonsection .item .wrap .textbox {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .details .box .content .commonsection .item .wrap .textbox {
    font-size: 16px;
  }
}
/*20260306*/
.details .box .content .commonsection .item .wrap .textbox ul,
.details .box .content .commonsection .item .wrap .textbox ol{
	padding-left: revert;
}
.details .box .content .commonsection .item .wrap .textbox ul li,
.details .box .content .commonsection .item .wrap .textbox ol li{
	list-style: inherit;
}
.details .box .content .commonsection .item .wrap .textbox table {
	max-width: 100%;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: #e5e5e5 solid 1px;
}
.details .box .content .commonsection .item .wrap .textbox table th,
.details .box .content .commonsection .item .wrap .textbox table td{
	padding: 0.05rem 0.15rem;
	border: #e5e5e5 solid 1px;
	box-sizing: border-box;
}
.details .box .content .commonsection .item .wrap .textbox h1, 
.details .box .content .commonsection .item .wrap .textbox h2, 
.details .box .content .commonsection .item .wrap .textbox h3, 
.details .box .content .commonsection .item .wrap .textbox h4, 
.details .box .content .commonsection .item .wrap .textbox h5, 
.details .box .content .commonsection .item .wrap .textbox h6{
	font-weight: bold;
}
/**/
.details .box .content .commonsection .item .wrap .morebtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 .65rem;
  height: 0.7rem;
  margin-top: 0.35rem;
  border-radius: 0.35rem;
  background: #0000d8;
  font-family: "BRONOVA-BOLD"; 
  color: #ffffff;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .details .box .content .commonsection .item .wrap .morebtn {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .details .box .content .commonsection .item .wrap .morebtn {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .details .box .content .commonsection .item .wrap .morebtn {
    font-size: 16px;
  }
}
@media screen and (max-width: 1260px) {
  .details .box .content .commonsection .item .wrap .morebtn {
    padding: 0 .5rem;
  }
}
@media screen and (max-width: 767px) {
  .details .box .content .commonsection .item .wrap .morebtn {
    padding: 0 .4rem;
  }
}
@media screen and (max-width: 480px) {
  .details .box .content .commonsection .item .wrap .morebtn {
    padding: 0 .3rem;
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}
.details .box .content .commonsection .item .wrap .imgbox {
  /*margin-top: 0.45rem;*/
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.5rem;
}
.details .box .content .commonsection .item .relevant {
  padding-top: 0.2rem;
}
.add-swiper-button{
	display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 0.1rem;
}
@media screen and (max-width: 991px){
	.add-swiper-button{
		gap: 0.2rem;
	}
}
.add-swiper-button .swiper-button-prev,
.add-swiper-button .swiper-button-next {
  position: relative;
  width: .5rem;
  height: .57rem;
  top: 0;
  margin-top: 0;
  background: url(../images/icon42a.svg) center no-repeat;
  background-size: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .add-swiper-button .swiper-button-prev,
  .add-swiper-button .swiper-button-next {
    width: .6rem;
    height: .69rem;
  }
}
.add-swiper-button .swiper-button-prev img,
.add-swiper-button .swiper-button-next img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
  width: 22%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.add-swiper-button .swiper-button-prev:hover,
.add-swiper-button .swiper-button-next:hover {
  background: url(../images/icon42.svg) center no-repeat;
  background-size: contain;
}
.add-swiper-button .swiper-button-prev:hover img,
.add-swiper-button .swiper-button-next:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.add-swiper-button .swiper-button-prev.swiper-button-disabled,
.add-swiper-button .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}
/*@media screen and (max-width: 991px) {
  .add-swiper-button .swiper-button-prev.swiper-button-disabled,
  .add-swiper-button .swiper-button-next.swiper-button-disabled {
    opacity: 0.5;
  }
}*/
.add-swiper-button .swiper-button-prev {
  left: 0;
}
.add-swiper-button .swiper-button-next {
  right: 0;
}
/*@media screen and (max-width: 991px) {
  .add-swiper-button .swiper-button-next {
    right: -0.2rem;
  }
}*/
.relevant .swiper .caseitem .imgbox .description ul li{
	margin-bottom: 0.2rem;
}
.relevant .swiper .caseitem .imgbox .description ul li .subtit{
	padding-bottom: 0.05rem;
}
.relevant .swiper .caseitem .textbox .btn a, 
.relevant .swiper .caseitem .textbox .btn span{
	min-width: 1.8rem;
  height: 0.5rem;
  font-size: 16px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .relevant .swiper .caseitem .textbox .btn a,
  .relevant .swiper .caseitem .textbox .btn span {
    font-size: 0.8333333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .relevant .swiper .caseitem .textbox .btn a,
  .relevant .swiper .caseitem .textbox .btn span {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .relevant .swiper .caseitem .textbox .btn a,
  .relevant .swiper .caseitem .textbox .btn span {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .relevant .swiper .caseitem .textbox .btn a,
  .relevant .swiper .caseitem .textbox .btn span {
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}

.details .box .content .commonsection .item .relevant .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  /*padding-right: 1rem;*/
}
/*@media screen and (max-width: 991px) {
  .details .box .content .commonsection .item .relevant .swiper {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .details .box .content .commonsection .item .relevant .swiper {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
}*/
.details .box .content .commonsection .item .relevant .swiper .swiper-wrapper .swiper-slide:hover .caseitem .textbox .btn{
	transform: translateY(0);
	opacity: 1;
}
.details .box .content .commonsection .item .relevant .swiper .swiper-wrapper .swiper-slide:hover .caseitem .imgbox::before {
  display: none;
}
/*.details .box .content .commonsection .item .relevant .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .caseitem .imgbox::before {
  display: none;
}*/
/*.details .box .content .commonsection .item .relevant .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .caseitem .imgbox .description {
  opacity: 1;
}
.details .box .content .commonsection .item .relevant .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .caseitem .textbox .btn {
  opacity: 1;
}*/

.details .box .content .commonsection .item .relevant .swiper .swiper-wrapper .swiper-slide .caseitem .imgbox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.details .box .content .commonsection .item .relevant .swiper .swiper-wrapper .swiper-slide .caseitem .textbox .btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}
.details .box .content .commonsection .item .relevant .swiper .swiper-button-prev,
.details .box .content .commonsection .item .relevant .swiper .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: .5rem;
  height: .57rem;
  top: 2.5rem;
  margin-top: 0;
  background: url(../images/icon42a.svg) center no-repeat;
  background-size: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: none;
}
@media screen and (max-width: 991px) {
  .details .box .content .commonsection .item .relevant .swiper .swiper-button-prev,
  .details .box .content .commonsection .item .relevant .swiper .swiper-button-next {
    width: .6rem;
    height: .69rem;
  }
}
.details .box .content .commonsection .item .relevant .swiper .swiper-button-prev img,
.details .box .content .commonsection .item .relevant .swiper .swiper-button-next img {
  width: 22%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.details .box .content .commonsection .item .relevant .swiper .swiper-button-prev:hover,
.details .box .content .commonsection .item .relevant .swiper .swiper-button-next:hover {
  background: url(../images/icon42.svg) center no-repeat;
  background-size: contain;
}
.details .box .content .commonsection .item .relevant .swiper .swiper-button-prev:hover img,
.details .box .content .commonsection .item .relevant .swiper .swiper-button-next:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.details .box .content .commonsection .item .relevant .swiper .swiper-button-prev.swiper-button-disabled,
.details .box .content .commonsection .item .relevant .swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
@media screen and (max-width: 991px) {
  .details .box .content .commonsection .item .relevant .swiper .swiper-button-prev.swiper-button-disabled,
  .details .box .content .commonsection .item .relevant .swiper .swiper-button-next.swiper-button-disabled {
    opacity: 0.5;
  }
}
.details .box .content .commonsection .item .relevant .swiper .swiper-button-prev {
  left: -1rem;
}
@media screen and (max-width: 991px) {
  .details .box .content .commonsection .item .relevant .swiper .swiper-button-prev {
    left: -0.2rem;
  }
}
.details .box .content .commonsection .item .relevant .swiper .swiper-button-next {
  right: 0;
}
@media screen and (max-width: 991px) {
  .details .box .content .commonsection .item .relevant .swiper .swiper-button-next {
    right: -0.2rem;
  }
}
.solutions .box {
  max-width: 1920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.solutions .box .wrap {
  max-width: 1600px;
  width: 83.33333333333333%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1260px) {
  .solutions .box .wrap {
    width: 90%;
  }
}
.solutions .box .wrap .item {
  margin-bottom: 10%;
  box-shadow: 0px 0px 87px rgba(21, 21, 241, 0.11);
}
@media screen and (min-width: 992px) {
  .solutions .box .wrap .item:nth-child(odd) .imgbox {
    margin-left: -10%;
  }
  .solutions .box .wrap .item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .solutions .box .wrap .item:nth-child(even) .imgbox {
    margin-right: -10%;
  }
}
@media screen and (max-width: 991px) {
  .solutions .box .wrap .item {
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .solutions .box .wrap .item {
    margin-bottom: 0.4rem;
  }
  .solutions .box .wrap .item:last-child {
    margin-bottom: 0;
  }
}
.solutions .box .wrap .item .imgbox {
  flex-shrink: 0;
  width: 53.125%;
  transform: translateY(0.64rem);
}
@media screen and (max-width: 991px) {
  .solutions .box .wrap .item .imgbox {
    width: 100%;
    transform: translateY(0);
  }
}
.solutions .box .wrap .item .textbox {
  flex-shrink: 0;
  width: 56.875%;
  padding-top: 5%;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .solutions .box .wrap .item .textbox {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .solutions .box .wrap .item .textbox {
    padding: 0.4rem;
  }
}
.solutions .box .wrap .item .textbox .subtit {
  color: #000000;
  font-size: 40px;
  line-height: 1.3;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .solutions .box .wrap .item .textbox .subtit {
    font-size: 2.083333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .solutions .box .wrap .item .textbox .subtit {
    font-size: 24px;
  }
}
.solutions .box .wrap .item .textbox .text {
  margin-top: 0.3rem;
  color: #939393;
  font-size: 20px;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .solutions .box .wrap .item .textbox .text {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .solutions .box .wrap .item .textbox .text {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .solutions .box .wrap .item .textbox .text {
    font-size: 16px;
  }
}
.solutions .box .wrap .item .textbox .text ul {
  padding-left: 0;
}
.solutions .box .wrap .item .textbox .text ul li {
  position: relative;
  padding-left: 0.35rem;
  margin-bottom: 0.2rem;
  list-style: none;
  transition: all 0.4s ease;
}
.solutions .box .wrap .item .textbox .text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.03rem;
  width: 0.17rem;
  height: 0.19rem;
  background: url(../images/icon41b.png) center no-repeat;
  background-size: 100% auto;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1260px) {
  .solutions .box .wrap .item .textbox .text ul li::before {
    top: 4px;
    width: 12px;
    height: 13px;
  }
}
@media screen and (max-width: 991px) {
  .solutions .box .wrap .item .textbox .text ul li::before {
    top: 4px;
    width: 10px;
    height: 11px;
  }
}
@media screen and (max-width: 480px) {
  .solutions .box .wrap .item .textbox .text ul li::before {
    width: 9px;
    height: 10px;
  }
}
.solutions .box .wrap .item .textbox .text ul li:hover {
  color: #0000d8;
  text-decoration: underline;
}
.solutions .box .wrap .item .textbox .text ul li:hover a {
  color: #0000d8;
}
.solutions .box .wrap .item .textbox .text ul li:hover::before {
  background: url(../images/icon27.png) center no-repeat;
  background-size: 100% auto;
}
.solutions .box .wrap .item .textbox .text ul li a {
  color: #939393;
  transition: all 0.4s ease;
}
.services .box .item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 48.75%;
  margin-right: 2.5%;
  margin-bottom: 2.5%;
}
.services .box .item:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .services .box .item {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.5rem;
  }
}
.services .box .item .c-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 5rem;
  background: #ffffff;
  padding: 7.69% 6.4%;
  box-sizing: border-box;
  box-shadow: 0px 0px 87px rgba(0, 0, 241, 0.11);
}
.services .box .item::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  top: 0.1rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 216, 0.1);
}
@media screen and (max-width: 991px) {
  .services .box .item::before {
    left: 8px;
    top: 8px;
  }
}
.services .box .item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 27%;
  height: 100%;
  background: url(../images/img76.png) center left no-repeat;
  background-size: 100% 100%;
}
.services .box .item .title {
  flex-shrink: 0;
  color: #000000;
  font-size: 40px;
  padding-bottom: 0.2rem;
  margin-bottom: 0.25rem;
  border-bottom: rgba(0, 0, 216, 0.1) solid 0.02rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .services .box .item .title {
    font-size: 2.083333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .services .box .item .title {
    font-size: 24px;
  }
}
.services .box .item .text {
  flex: 1;
  color: #939393;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .services .box .item .text {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .services .box .item .text {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .services .box .item .text {
    font-size: 16px;
  }
}
.services .box .item .btn {
  margin-top: 0.4rem;
  flex-shrink: 0;
}
.services .box .item .btn span,
.services .box .item .btn a {
  color: #1515f1;
  font-size: 20px;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .services .box .item .btn span,
  .services .box .item .btn a {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .services .box .item .btn span,
  .services .box .item .btn a {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .services .box .item .btn span,
  .services .box .item .btn a {
    font-size: 16px;
  }
}
.services .box .item .btn span:hover,
.services .box .item .btn a:hover {
  text-decoration: underline;
}
.services .seebtn {
  padding-top: 0.4rem;
  display: flex;
  justify-content: center;
}
.services .seebtn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 0.7rem;
  border-radius: 0.35rem;
  padding: 0 0.6rem;
  box-sizing: border-box;
  background: #0000d8;
  color: #FFFFFF;
  font-size: 20px;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .services .seebtn a {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .services .seebtn a {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .services .seebtn a {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .services .seebtn a {
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}
.services .seebtn a:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 241, 0.2);
}

.news-details .box {
  margin-top: 4.166666666666667%;
}

/*20260609*/
.news-details{
	padding-top: 0.2rem;
	border-top: rgba(21, 21, 241, 0.1) solid 1px;
}
.news-details .box {
  margin-top: 0.3rem;
}

.news-details .box .topic {
  padding-bottom: 0.2rem;
  border-bottom: rgba(21, 21, 241, 0.1) solid 0.02rem;
}
.news-details .box .topic .title {
  color: #000000;
  font-size: 60px;
  line-height: 1.25;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .news-details .box .topic .title {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 1260px) {
  .news-details .box .topic .title {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .news-details .box .topic .title {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .news-details .box .topic .title {
    font-size: 28px;
  }
}
.news-details .box .topic .info {
  margin-top: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #000000;
  font-size: 24px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .news-details .box .topic .info {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .news-details .box .topic .info {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .news-details .box .topic .info {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .news-details .box .topic .info {
    font-size: 16px;
    gap: 0.35rem;
  }
}
.news-details .box .wrap {
  margin-top: 4.0625%;
}
.news-details .box .wrap .content {
  font-family: 'BRONOVA-REGULAR';
  width: 62.5%;
  /*color: #939393;*/
 	color: #000000;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .news-details .box .wrap .content {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .news-details .box .wrap .content {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .news-details .box .wrap .content {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .news-details .box .wrap .content {
    width: 100%;
    order: 1;
  }
}
.news-details .box .wrap .content iframe {
  width: 100% !important;
}
.news-details .box .wrap .content video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-details .box .wrap .content img {
  height: auto !important;
}
.news-details .box .wrap .side {
  width: 32.5%;
  display: flex;
  flex-direction: column;
  row-gap: 0.6rem;
}
@media screen and (max-width: 991px) {
  .news-details .box .wrap .side {
    width: 100%;
    order: 3;
    margin-top: 8%;
  }
}
.news-details .box .wrap .side .subtit {
  color: #000000;
  font-size: 30px;
  margin-bottom: 0.27rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .news-details .box .wrap .side .subtit {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .news-details .box .wrap .side .subtit {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .news-details .box .wrap .side .subtit {
    font-size: 20px;
  }
}
.news-details .box .wrap .side .related-news .list .item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 0.22rem 0;
  border-bottom: rgba(21, 21, 241, 0.1) solid 0.02rem;
}
.news-details .box .wrap .side .related-news .list .item:first-child {
  border-top: rgba(21, 21, 241, 0.1) solid 0.02rem;
}
@media screen and (max-width: 991px) {
  .news-details .box .wrap .side .related-news .list .item {
    padding: 0.3rem 0;
  }
}
@media screen and (max-width: 767px) {
  .news-details .box .wrap .side .related-news .list .item {
    flex-wrap: wrap;
  }
}
.news-details .box .wrap .side .related-news .list .item .imgbox {
  width: 42.4%;
  margin-right: 4.8%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news-details .box .wrap .side .related-news .list .item .imgbox {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.news-details .box .wrap .side .related-news .list .item .imgbox img {
  display: block;
  width: 100%;
}
.news-details .box .wrap .side .related-news .list .item .textbox {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .news-details .box .wrap .side .related-news .list .item .textbox {
    flex: auto;
    width: 100%;
  }
}
.news-details .box .wrap .side .related-news .list .item .textbox .date {
  color: #b9b9b9;
  font-size: 14px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .news-details .box .wrap .side .related-news .list .item .textbox .date {
    font-size: 0.7291666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .news-details .box .wrap .side .related-news .list .item .textbox .date {
    font-size: 13px;
  }
}
.news-details .box .wrap .side .related-news .list .item .textbox .headline {
  margin-top: 0.2rem;
  color: #000000;
  font-size: 18px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .news-details .box .wrap .side .related-news .list .item .textbox .headline {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 1260px) {
  .news-details .box .wrap .side .related-news .list .item .textbox .headline {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .news-details .box .wrap .side .related-news .list .item .textbox .headline {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .news-details .box .wrap .side .related-news .list .item .textbox .headline {
    margin-top: 0.1rem;
  }
}

.news-details .box .wrap .side .subscription .subtit {
  margin-bottom: 0.08rem;
}
.news-details .box .wrap .side .subscription .text {
  color: #000000;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .news-details .box .wrap .side .subscription .text {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 1260px) {
  .news-details .box .wrap .side .subscription .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .news-details .box .wrap .side .subscription .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 1900px) {
  .news-details .box .wrap .side .subscription .commonwrap .layui-item .search-block .layui-input {
    padding-right: 1.6rem;
  }
}
@media screen and (max-width: 1260px) {
  .news-details .box .wrap .side .subscription .commonwrap .layui-item .search-block .layui-input {
    padding-right: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .news-details .box .wrap .side .subscription .commonwrap .layui-item .search-block .layui-input {
    padding-right: 2.1rem;
  }
}
@media screen and (max-width: 1900px) {
  .news-details .box .wrap .side .subscription .commonwrap .layui-item .search-block .layui-btn {
    width: 1.6rem;
  }
}
@media screen and (max-width: 1260px) {
  .news-details .box .wrap .side .subscription .commonwrap .layui-item .search-block .layui-btn {
    width: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .news-details .box .wrap .side .subscription .commonwrap .layui-item .search-block .layui-btn {
    width: 2.1rem;
  }
}


.news-details .box .linkbox {
  margin-top: 5%;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .news-details .box .linkbox {
    order: 2;
  }
}
.news-details .box .linkbox .item {
  display: block;
  width: 100%;
  border-bottom: rgba(21, 21, 241, 0.1) solid 0.02rem;
}
.news-details .box .linkbox .item:first-child {
  border-top: rgba(21, 21, 241, 0.1) solid 0.02rem;
}
.news-details .box .linkbox .item a {
  display: inline-block;
  color: #000000;
  font-size: 20px;
  padding: 0.2rem 0;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .news-details .box .linkbox .item a {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .news-details .box .linkbox .item a {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .news-details .box .linkbox .item a {
    font-size: 16px;
  }
}
.news-details .box .linkbox .item a:hover {
  color: #0000d8;
}
@media screen and (max-width: 991px) {
  .contact .box {
    flex-wrap: wrap;
  }
}
.contact .box .information {
  width: 29.0625%;
  padding: 3.5% 2.8%;
  box-shadow: 0px 0px 87px rgba(0, 0, 241, 0.11);
  background: #FFFFFF;
  box-sizing: border-box;
}
@media screen and (max-width: 1580px) {
  .contact .box .information {
    width: 32%;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .information {
    width: 40%;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .information {
    width: 100%;
    padding: 0.5rem 0.4rem 0.6rem;
  }
}
.contact .box .information .subtit {
  color: #000000;
  font-size: 30px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .contact .box .information .subtit {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .information .subtit {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .contact .box .information .subtit {
    font-size: 20px;
  }
}
.contact .box .information .content {
  margin-top: 0.4rem;
}
.contact .box .information .content .item {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1260px) {
  .contact .box .information .content .item {
    margin-bottom: 0.4rem;
  }
}
.contact .box .information .content .item:last-child {
  margin-bottom: 0;
}
.contact .box .information .content .item .sp1 {
  color: #1515f1;
  font-size: 24px;
  margin-bottom: 0.15rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .contact .box .information .content .item .sp1 {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .information .content .item .sp1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .information .content .item .sp1 {
    font-size: 18px;
  }
}
.contact .box .information .content .item .sp2 {
  color: #000000;
  font-size: 20px;
  margin-bottom: 0.15rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .contact .box .information .content .item .sp2 {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .information .content .item .sp2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .information .content .item .sp2 {
    font-size: 16px;
  }
}
.contact .box .information .content .item .sp3 {
  color: #939393;
  font-size: 18px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .contact .box .information .content .item .sp3 {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .information .content .item .sp3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .information .content .item .sp3 {
    font-size: 14px;
  }
}
.contact .box .information .content .item .text {
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
}
.contact .box .information .content .item .text ul {
  padding-left: 0;
}
.contact .box .information .content .item .text ul li {
  display: flex;
  align-items: baseline;
  list-style: none;
  margin-bottom: 0.15rem;
  padding-bottom: 0.15rem;
  border-bottom: rgba(21, 21, 241, 0.1) solid 0.02rem;
}
@media screen and (max-width: 991px) {
  .contact .box .information .content .item .text ul li {
    margin-bottom: 15px;
    padding-bottom: 12px;
  }
}
.contact .box .information .content .item .text ul li:last-child {
  border-bottom: none;
}
.contact .box .information .content .item .text ul li .icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.16rem;
  flex-shrink: 0;
}
.contact .box .information .content .item .text ul li .icon img {
  width: 0.22rem;
}
@media screen and (max-width: 1260px) {
  .contact .box .information .content .item .text ul li .icon img {
    width: 18px;
  }
}
.contact .box .information .content .item .text ul li .txt {
  flex: 1;
  overflow: hidden;
  color: #000000;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .contact .box .information .content .item .text ul li .txt {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .information .content .item .text ul li .txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .information .content .item .text ul li .txt {
    font-size: 16px;
  }
}
.contact .box .information .content .item .btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  color: #0000d8;
  font-size: 24px;
  padding: 0 .35rem;
  border: #0000d8 solid 0.02rem;
  box-sizing: border-box;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .contact .box .information .content .item .btn a {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .information .content .item .btn a {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .information .content .item .btn a {
    font-size: 18px;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .information .content .item .btn a {
    height: 0.7rem;
    border-radius: 0.35rem;
  }
}
@media screen and (max-width: 480px) {
  .contact .box .information .content .item .btn a {
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}
.contact .box .information .content .item .btn a:hover {
  background: #0000d8;
  color: #FFFFFF;
}
.contact .box .contact-form {
  width: 59.375%;
  padding-top: 0.3rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .contact .box .contact-form {
    width: 55%;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .contact-form {
    width: 100%;
    padding-top: 10%;
  }
}
@media screen and (max-width: 480px) {
  .contact .box .contact-form {
    padding-top: 12%;
  }
}
.contact .box .contact-form .headline {
  color: #000000;
  font-size: 50px;
  line-height: 1.25;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .contact .box .contact-form .headline {
    font-size: 2.604166666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .contact-form .headline {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .contact .box .contact-form .headline {
    font-size: 24px;
  }
}
.contact .box .contact-form .wrap {
  margin-top: 0.5rem;
}
.contact .box .contact-form .wrap .c-form .layui-form-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
  padding-bottom: 0.1rem;
  border-bottom: rgba(21, 21, 241, 0.1) solid 0.02rem;
}
.contact .box .contact-form .wrap .c-form .layui-form-item.message {
  position: relative;
  margin-top: 0.3rem;
}
.contact .box .contact-form .wrap .c-form .layui-form-item.message .layui-form-label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}
.contact .box .contact-form .wrap .c-form .layui-form-item.message .layui-input-block {
  width: 100%;
  flex: auto;
}
.contact .box .contact-form .wrap .c-form .layui-form-item.message .layui-input-block .layui-textarea {
  padding-top: 0.4rem;
}
.contact .box .contact-form .wrap .c-form .layui-form-item.no-border {
  border-bottom: none;
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-form-label {
  display: inline-block;
  margin-right: 0.2rem;
  flex-shrink: 0;
  width: auto;
  color: #939393;
  font-size: 20px;
  padding: 0;
  white-space: nowrap;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-form-label {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-form-label {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-form-label {
    font-size: 16px;
  }
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block {
  flex: 1;
  margin-left: 0;
  overflow: hidden;
  display: flex;
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-input {
  width: 100%;
  border: none;
  padding-left: 0;
  color: #000000;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-input {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-input {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-input {
    font-size: 16px;
  }
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-input::-webkit-input-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #939393;
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-input::-moz-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #939393;
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-input:-moz-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #939393;
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-input:-ms-input-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #939393;
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-textarea {
  width: 100%;
  min-height: 1.6rem;
  border: none;
  padding-left: 0;
  color: #000000;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-textarea {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-textarea {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-textarea {
    font-size: 16px;
  }
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-textarea::-webkit-input-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #939393;
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-textarea::-moz-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #939393;
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-textarea:-moz-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #939393;
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-textarea:-ms-input-placeholder {
  font-family: "BRONOVA-BOLD";
  color: #939393;
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-form-checkbox {
  padding-left: 0.45rem;
  width: 100%;
  min-height: 1px;
  margin-right: 0;
}
@media screen and (max-width: 1260px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-form-checkbox {
    padding-left: 32px;
  }
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-form-checkbox.layui-form-checked i {
  border-color: #0000d8 !important;
  background-color: #0000d8;
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-form-checkbox span {
  display: flex;
  align-items: center;
  color: #939393;
  font-size: 20px;
  height: auto;
  line-height: inherit;
  white-space: normal;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-form-checkbox span {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-form-checkbox span {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-form-checkbox span {
    font-size: 16px;
  }
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-form-checkbox i {
  width: 0.22rem;
  height: 0.22rem;
  border: rgba(21, 21, 241, 0.1) solid 0.02rem;
  box-sizing: border-box;
  font-size: 14px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-form-checkbox i {
    font-size: 0.7291666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-form-checkbox i {
    font-size: 13px;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-form-checkbox i {
    width: 18px;
    height: 18px;
  }
}
.contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 0.7rem;
  margin: auto;
  border-radius: 0.35rem;
  background: #0000d8;
  color: #FFFFFF;
  font-size: 24px;
  margin-top: 0.3rem;
  padding: 0 0.4rem;
  box-sizing: border-box;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-btn {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-btn {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .contact .box .contact-form .wrap .c-form .layui-form-item .layui-input-block .layui-btn {
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}
.market-sectors .box .item {
  display: flex;
  flex-direction: column;
  width: 31.875%;
  margin-right: 2.1875%;
  margin-bottom: 2.1875%;
  padding: 0.5rem 0.4rem;
  box-sizing: border-box;
  box-shadow: 0px 0px 87px rgba(0, 0, 241, 0.11);
  background: #FFFFFF;
  transition: all 0.4s ease;
}
.market-sectors .box .item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1260px) {
  .market-sectors .box .item {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .market-sectors .box .item:nth-child(3n) {
    margin-right: 3%;
  }
  .market-sectors .box .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .market-sectors .box .item {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.4rem;
  }
}
.market-sectors .box .item:hover {
  background: #0000d8;
}
.market-sectors .box .item:hover .subtit {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}
.market-sectors .box .item:hover .desc {
  color: #FFFFFF;
}
.market-sectors .box .item:hover .morebtn span,
.market-sectors .box .item:hover .morebtn a {
  color: #FFFFFF;
}
.market-sectors .box .item .subtit {
  flex-shrink: 0;
  color: #000000;
  font-size: 30px;
  padding-bottom: 0.15rem;
  border-bottom: rgba(21, 21, 241, 0.1) solid 0.02rem;
  margin-bottom: 0.2rem;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .market-sectors .box .item .subtit {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .market-sectors .box .item .subtit {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .market-sectors .box .item .subtit {
    font-size: 20px;
  }
}
.market-sectors .box .item .desc {
  flex: 1;
  color: #939393;
  font-size: 20px;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .market-sectors .box .item .desc {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .market-sectors .box .item .desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .market-sectors .box .item .desc {
    font-size: 16px;
  }
}
.market-sectors .box .item .morebtn {
  flex-shrink: 0;
  margin-top: 0.4rem;
}
.market-sectors .box .item .morebtn span,
.market-sectors .box .item .morebtn a {
  display: inline-block;
  color: #1515f1;
  font-size: 20px;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .market-sectors .box .item .morebtn span,
  .market-sectors .box .item .morebtn a {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .market-sectors .box .item .morebtn span,
  .market-sectors .box .item .morebtn a {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .market-sectors .box .item .morebtn span,
  .market-sectors .box .item .morebtn a {
    font-size: 16px;
  }
}
.manifesto {
  background: #FFFFFF;
}
@media screen and (max-width: 991px) {
  .manifesto .box {
    flex-wrap: wrap;
  }
}
.manifesto .box .textbox {
  width: 53.75%;
  padding: 0 6.25%;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .manifesto .box .textbox {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .manifesto .box .textbox {
    width: 100%;
  }
}
.manifesto .box .textbox .title {
  color: #000000;
  font-size: 50px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .manifesto .box .textbox .title {
    font-size: 2.604166666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .manifesto .box .textbox .title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .manifesto .box .textbox .title {
    font-size: 24px;
  }
}
.manifesto .box .textbox .desc {
  margin-top: 0.15rem;
  color: #939393;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .manifesto .box .textbox .desc {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .manifesto .box .textbox .desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .manifesto .box .textbox .desc {
    font-size: 16px;
  }
}
.manifesto .box .textbox .text {
  margin-top: 0.5rem;
}
.manifesto .box .textbox .text ul {
  padding-left: 0;
}
.manifesto .box .textbox .text ul li {
  display: flex;
  align-items: baseline;
  list-style: none;
  margin-bottom: 0.5rem;
}
.manifesto .box .textbox .text ul li .icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.28rem;
  flex-shrink: 0;
  width: 0.6rem;
}
.manifesto .box .textbox .text ul li .icon::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 0.7rem;
  z-index: -1;
  background: url(../images/icon34.png) center no-repeat;
  background-size: 100% 100%;
}
.manifesto .box .textbox .text ul li .icon img {
  max-width: 39%;
}
.manifesto .box .textbox .text ul li .txt {
  flex: 1;
  overflow: hidden;
  color: #000000;
  font-size: 30px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .manifesto .box .textbox .text ul li .txt {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .manifesto .box .textbox .text ul li .txt {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .manifesto .box .textbox .text ul li .txt {
    font-size: 20px;
  }
}
.manifesto .box .imgbox {
  width: 46.25%;
  padding: 0 4.375%;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .manifesto .box .imgbox {
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .manifesto .box .imgbox {
    width: 100%;
    margin-top: 5%;
    padding-left: 0;
  }
}
.manifesto .box .imgbox span {
  display: block;
  width: 100%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.manifesto .box .imgbox span img {
  display: block;
  width: 100%;
}
.recruitment-list {
  background: #fafafa;
}
.recruitment-list .stop{
	scroll-snap-align: start;
  scroll-margin-top: 1.2rem;
}
.recruitment-list .title {
  text-align: center;
  color: #000000;
  font-size: 50px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruitment-list .title {
    font-size: 2.604166666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruitment-list .title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .recruitment-list .title {
    font-size: 24px;
  }
}
.recruitment-list .box {
  margin-top: 0.6rem;
}
.recruitment-list .box .item {
  padding: 4.125% 5%;
  background: #ffffff;
  border: #ffffff solid 0.02rem;
  box-sizing: border-box;
  margin-bottom: 0.2rem;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1260px) {
  .recruitment-list .box .item {
    padding: 0.4rem;
    margin-bottom: 0.35rem;
  }
  .recruitment-list .box .item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .recruitment-list .box .item {
    flex-wrap: wrap;
  }
}
.recruitment-list .box .item:hover {
  border-color: #0000d8;
  box-shadow: 0px 0px 87px rgba(0, 0, 241, 0.11);
}
.recruitment-list .box .item:hover .right_w .applybtn span,
.recruitment-list .box .item:hover .right_w .applybtn a {
  background: #0000d8;
  color: #FFFFFF;
}
.recruitment-list .box .item .left_w {
  position: relative;
  width: 51%;
  margin-right: 5.5%;
  padding-right: 5.5%;
  padding-top: 0.2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .recruitment-list .box .item .left_w {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .recruitment-list .box .item .left_w {
    width: 100%;
    padding-top: 0;
    padding-right: 0;
    margin-right: 0;
  }
}
.recruitment-list .box .item .left_w::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.02rem;
  height: 100%;
  background: rgba(0, 0, 241, 0.11);
}
@media screen and (max-width: 767px) {
  .recruitment-list .box .item .left_w::before {
    display: none;
  }
}
.recruitment-list .box .item .left_w .subtit {
  color: #000000;
  font-size: 30px;
  margin-bottom: 0.2rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruitment-list .box .item .left_w .subtit {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruitment-list .box .item .left_w .subtit {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .recruitment-list .box .item .left_w .subtit {
    font-size: 20px;
  }
}
.recruitment-list .box .item .left_w .desc {
  color: #939393;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruitment-list .box .item .left_w .desc {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruitment-list .box .item .left_w .desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .recruitment-list .box .item .left_w .desc {
    font-size: 16px;
  }
}
.recruitment-list .box .item .right_w {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 49%;
  padding-top: 0.2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .recruitment-list .box .item .right_w {
    width: 30%;
    flex-wrap: wrap;
    row-gap: 0.3rem;
  }
}
@media screen and (max-width: 767px) {
  .recruitment-list .box .item .right_w {
    width: 100%;
    padding-top: 0;
    margin-top: 0.4rem;
  }
}
.recruitment-list .box .item .right_w .text:nth-child(1) {
  padding-right: 0.15rem;
}
.recruitment-list .box .item .right_w .text:nth-child(2) {
  padding-left: 0.15rem;
}
@media screen and (max-width: 1260px) {
  .recruitment-list .box .item .right_w .text {
    width: 100%;
    padding: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .recruitment-list .box .item .right_w .text {
    width: 48%;
  }
}
.recruitment-list .box .item .right_w .text .t1 {
  color: #000000;
  font-size: 20px;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruitment-list .box .item .right_w .text .t1 {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruitment-list .box .item .right_w .text .t1 {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .recruitment-list .box .item .right_w .text .t1 {
    font-size: 16px;
  }
}
@media screen and (max-width: 1260px) {
  .recruitment-list .box .item .right_w .text .t1 {
    margin-bottom: 0.1rem;
  }
}
.recruitment-list .box .item .right_w .text .t2 {
  color: #1515ff;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruitment-list .box .item .right_w .text .t2 {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruitment-list .box .item .right_w .text .t2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .recruitment-list .box .item .right_w .text .t2 {
    font-size: 16px;
  }
}
.recruitment-list .box .item .right_w .applybtn {
  flex-shrink: 0;
}
.recruitment-list .box .item .right_w .applybtn a,
.recruitment-list .box .item .right_w .applybtn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 0.7rem;
  border-radius: 0.35rem;
  color: #1515ff;
  font-size: 24px;
  background: rgba(21, 21, 255, 0.1);
  /*20260209新增*/
 	padding: 0 0.3rem;
 	box-sizing: border-box;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruitment-list .box .item .right_w .applybtn a,
  .recruitment-list .box .item .right_w .applybtn span {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruitment-list .box .item .right_w .applybtn a,
  .recruitment-list .box .item .right_w .applybtn span {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .recruitment-list .box .item .right_w .applybtn a,
  .recruitment-list .box .item .right_w .applybtn span {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .recruitment-list .box .item .right_w .applybtn a,
  .recruitment-list .box .item .right_w .applybtn span {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .recruitment-list .box .item .right_w .applybtn a,
  .recruitment-list .box .item .right_w .applybtn span {
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}
.recruitment-details .box {
  margin-top: 4.166666666666667%;
}

/*20260610*/
.recruitment-details{
	padding-top: 0.2rem;
	border-top: rgba(21, 21, 241, 0.1) solid 1px;
}
.recruitment-details .box {
  margin-top: 0.3rem;
}


.recruitment-details .box .topic {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 0.2rem;
  border-bottom: rgba(21, 21, 241, 0.1) solid 0.02rem;
}
.recruitment-details .box .topic .txt {
  flex: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .topic .txt {
    flex: auto;
  }
}
.recruitment-details .box .topic .txt .title {
  color: #000000;
  font-size: 60px;
  line-height: 1.25;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruitment-details .box .topic .txt .title {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruitment-details .box .topic .txt .title {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .topic .txt .title {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .recruitment-details .box .topic .txt .title {
    font-size: 28px;
  }
}
.recruitment-details .box .topic .txt .info {
  margin-top: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #000000;
  font-size: 24px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruitment-details .box .topic .txt .info {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruitment-details .box .topic .txt .info {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .topic .txt .info {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .recruitment-details .box .topic .txt .info {
    font-size: 16px;
    gap: 0.35rem;
  }
}
.recruitment-details .box .topic .backbtn {
  display: inline-block;
  margin-left: 0.3rem;
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .topic .backbtn {
    display: none;
  }
}
.recruitment-details .box .topic .backbtn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 0.7rem;
  border-radius: 0.35rem;
  color: #FFFFFF;
  font-size: 24px;
  background: #0000d8;
  text-transform: capitalize;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruitment-details .box .topic .backbtn a {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruitment-details .box .topic .backbtn a {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .topic .backbtn a {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .recruitment-details .box .topic .backbtn a {
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}
.recruitment-details .box .topic .backbtn a:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 241, 0.2);
}
.recruitment-details .box .topic .backbtn a i {
  display: inline-block;
  margin-right: 0.15rem;
  width: 0.23rem;
  height: 0.16rem;
  background: url(../images/icon35.png) center no-repeat;
  background-size: 100% 100%;
}
.recruitment-details .box .wrap {
  margin-top: 4.0625%;
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .wrap {
    flex-wrap: wrap;
  }
}
.recruitment-details .box .wrap .content {
  width: 62.5%;
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .wrap .content {
    width: 100%;
  }
}
.recruitment-details .box .wrap .content .text {
	font-family: "BRONOVA-REGULAR";
  color: #939393;
  font-size: 20px;
}
.recruitment-details .box .wrap .content .text strong,
.news-details .box .wrap .content strong{
	font-family: "BRONOVA-BOLD";
}
.recruitment-details .box .wrap .content .text ul,
.recruitment-details .box .wrap .content .text ol{
	padding-left: revert;
}
.recruitment-details .box .wrap .content .text ul li,
.recruitment-details .box .wrap .content .text ol li{
	list-style: inherit;
}
.news-details .box .wrap .content ul,
.news-details .box .wrap .content ol{
	padding-left: revert;
}
.news-details .box .wrap .content ul li,
.news-details .box .wrap .content ol li{
	list-style: inherit;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruitment-details .box .wrap .content .text {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruitment-details .box .wrap .content .text {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .wrap .content .text {
    font-size: 16px;
  }
}
.recruitment-details .box .wrap .content .btn {
  margin-top: 0.5rem;
}
.recruitment-details .box .wrap .content .btn .deliverbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.6rem;
  height: 0.7rem;
  border-radius: 0.35rem;
  color: #FFFFFF;
  font-size: 24px;
  background: #0000d8;
  cursor: pointer;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruitment-details .box .wrap .content .btn .deliverbtn {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruitment-details .box .wrap .content .btn .deliverbtn {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .wrap .content .btn .deliverbtn {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .recruitment-details .box .wrap .content .btn .deliverbtn {
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}
.recruitment-details .box .wrap .content .btn .deliverbtn:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 241, 0.2);
}
.recruitment-details .box .wrap .side {
  width: 32.5%;
  display: flex;
  flex-direction: column;
  row-gap: 0.6rem;
}
@media screen and (max-width: 991px) {
  .recruitment-details .box .wrap .side {
    width: 100%;
    margin-top: 7%;
  }
}
@media screen and (max-width: 767px) {
  .recruitment-details .box .wrap .side {
    margin-top: 0.7rem;
  }
}
.recruitment-details .box .wrap .side .subtit {
  color: #000000;
  font-size: 30px;
  margin-bottom: 0.27rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruitment-details .box .wrap .side .subtit {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruitment-details .box .wrap .side .subtit {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .recruitment-details .box .wrap .side .subtit {
    font-size: 20px;
  }
}
.recruitment-details .box .wrap .side .imgbox {
  width: 100%;
  overflow: hidden;
}
.recruitment-details .box .wrap .side .imgbox img {
  display: block;
  width: 100%;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 21;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.popup.active {
  opacity: 1;
  visibility: visible;
}
.popup.active .box {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.popup .box {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.6s, opacity 0.6s, transform 0.6s;
  transform: translateY(100%);
  max-width: 10rem;
  width: 80%;
  height: 90vh;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1260px) {
  .popup .box {
    width: 90%;
  }
}
.popup .box .closebtn {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.42rem;
  height: 0.42rem;
  background: #0000d8;
  cursor: pointer;
}
.popup .box .closebtn img {
  max-width: 36%;
}
.popup .box .wrap {
  position: relative;
  width: 100%;
  padding: 0.7rem 0.5rem 0.9rem;
  background: #ffffff;
  box-sizing: border-box;
  overflow: hidden;
}
.popup .box .wrap .title {
  font-size: 40px;
  color: #000000;
  margin-bottom: 0.3rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .popup .box .wrap .title {
    font-size: 2.083333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .popup .box .wrap .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 991px) {
  .popup .box .wrap .title {
    margin-bottom: 0.4rem;
  }
}
.popup .box .wrap .content .v-form {
  column-gap: 0.1rem;
  row-gap: 0.35rem;
}
.popup .box .wrap .content .v-form .layui-form-item {
  width: calc((100% - 0.1rem) / 2);
  margin-bottom: 0;
}
.popup .box .wrap .content .v-form .layui-form-item.row {
  width: 100%;
}
.popup .box .wrap .content .v-form .layui-form-item .layui-form-label {
  float: none;
  padding: 0;
  width: 100%;
  text-align: left;
  color: #000000;
  font-size: 20px;
  margin-bottom: 0.15rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .popup .box .wrap .content .v-form .layui-form-item .layui-form-label {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .popup .box .wrap .content .v-form .layui-form-item .layui-form-label {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .popup .box .wrap .content .v-form .layui-form-item .layui-form-label {
    font-size: 16px;
  }
}
.popup .box .wrap .content .v-form .layui-form-item .layui-input-inline {
  float: none;
  width: 100%;
  margin-right: 0;
}
.popup .box .wrap .content .v-form .layui-form-item .layui-input-inline .layui-input {
  padding: 0 0.3rem;
  height: 0.7rem;
  border-radius: 0.1rem;
  background: rgba(21, 21, 255, 0.1);
  border: none !important;
}
@media screen and (max-width: 480px) {
  .popup .box .wrap .content .v-form .layui-form-item .layui-input-inline .layui-input {
    height: 0.75rem;
  }
}
.popup .box .wrap .content .v-form .layui-form-item .layui-input-block {
  margin-left: 0;
}
.popup .box .wrap .content .v-form .layui-form-item .layui-input-block .layui-textarea {
  width: 100%;
  padding: 0.2rem 0.3rem;
  border-radius: 0.1rem;
  background: rgba(21, 21, 255, 0.1);
  border: none !important;
  min-height: 2rem;
  box-sizing: border-box;
}
.popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem {
  display: flex;
  align-items: center;
}
.popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem .sp {
  flex-shrink: 0;
  margin-right: 0.2rem;
  color: #000000;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem .sp {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem .sp {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem .sp {
    font-size: 16px;
  }
}
.popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.7rem;
  padding: 0 .3rem;
  border-radius: 0.1rem;
  border: rgba(21, 21, 241, 0.1) solid 0.02rem;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem .btn {
    height: 0.75rem;
  }
}
.popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem .btn .layui-up {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem .btn .uptxt {
  display: flex;
  align-items: baseline;
  color: #000000;
  font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem .btn .uptxt {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem .btn .uptxt {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem .btn .uptxt {
    font-size: 16px;
  }
}
.popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem .btn .uptxt img {
  display: inline-block;
  margin-left: 0.2rem;
  width: 0.26rem;
}
.popup .box .wrap .content .v-form .layui-form-item .layui-input-block .layui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 0.7rem;
  border-radius: 0.35rem;
  font-family: "BRONOVA-BOLD";
  color: #FFFFFF;
  font-size: 24px;
  background: #0000d8;
  padding: 0 0.3rem;
  box-sizing: border-box;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .popup .box .wrap .content .v-form .layui-form-item .layui-input-block .layui-btn {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .popup .box .wrap .content .v-form .layui-form-item .layui-input-block .layui-btn {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .popup .box .wrap .content .v-form .layui-form-item .layui-input-block .layui-btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .popup .box .wrap .content .v-form .layui-form-item .layui-input-block .layui-btn {
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}

/*20260116新增*/
@media screen and (max-width: 767px){
	.popup .box .closebtn{
		width: 0.56rem;
		height: 0.56rem;
	}
	.popup .box .wrap .content .v-form{
		row-gap: 0.3rem;
	}
	.popup .box .wrap{
		overflow-y: auto;
		max-height: 100%;
		box-sizing: border-box;
	}
	.popup .box .wrap .title{
		margin-bottom: 0.3rem;
	}
	.popup .box .wrap .content .v-form .layui-form-item .layui-input-block{
		flex-wrap: wrap;
	}
	.popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem{
		width: 100%;
		margin-bottom: 0.2rem;
	}
	.popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem .btn{
		height: 0.65rem;
	}
	.popup .box .wrap .content .v-form .layui-form-item .layui-input-block .uploaditem .btn .uptxt{
		font-size: 14px;
	}
}
@media screen and (max-width: 450px)  {
	.popup .box .wrap .content .v-form .layui-form-item .layui-input-inline{
		margin-left: 0 !important;
		margin-bottom: 0;
	}
}

.culture .headline {
  text-align: center;
  color: #000000;
  font-size: 50px;
  /*max-width: 9.25rem;*/ /*20260209修改*/
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .culture .headline {
    font-size: 2.604166666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .culture .headline {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .culture .headline {
    font-size: 24px;
  }
}
.culture .box {
  margin-top: 0.5rem;
}
.culture .box .item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 48.75%;
  margin-right: 2.5%;
  margin-bottom: 2.5%;
}
.culture .box .item:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .culture .box .item {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.5rem;
  }
}
.culture .box .item .c-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 5rem;
  background: #ffffff;
  padding: 20% 6.25%;
  box-sizing: border-box;
  box-shadow: 0px 0px 87px rgba(0, 0, 241, 0.11);
}
.culture .box .item::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  top: 0.1rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 216, 0.1);
}
@media screen and (max-width: 991px) {
  .culture .box .item::before {
    left: 8px;
    top: 8px;
  }
}
.culture .box .item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  width: 27%;
  height: 100%;
  background: url(../images/img76.png) center left no-repeat;
  background-size: 100% 100%;
}
.culture .box .item .title {
  flex-shrink: 0;
  color: #000000;
  font-size: 40px;
  padding-bottom: 0.2rem;
  margin-bottom: 0.25rem;
  border-bottom: rgba(0, 0, 216, 0.1) solid 0.02rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .culture .box .item .title {
    font-size: 2.083333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .culture .box .item .title {
    font-size: 24px;
  }
}
.culture .box .item .text {
  flex: 1;
  color: #000000;
  font-size: 24px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .culture .box .item .text {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .culture .box .item .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .culture .box .item .text {
    font-size: 18px;
  }
}
@media screen and (min-width: 1261px) {
  .no-aos [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
.values {
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 1260px) {
  .values {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.values .imgbox {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1260px) {
  .values .imgbox {
    height: auto;
    margin-top: 7%;
  }
}
.values .imgbox .box {
  position: relative;
  width: 32.76041666666667%;
  margin: auto;
}
@media screen and (max-width: 1260px) {
  .values .imgbox .box {
    width: 56%;
  }
}
@media screen and (max-width: 480px) {
  .values .imgbox .box {
    width: 65%;
  }
}
.values .imgbox .box .imgbg {
  width: 100%;
  overflow: hidden;
}
.values .imgbox .box .imgbg img {
  display: block;
  width: 100%;
}
.values .imgbox .box .photo-set {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.values .imgbox .box .photo-set > img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  opacity: 0;
}
.values .imgbox .box .photo-set > img.im1 {
  top: 2px;
}
.values .imgbox .box .photo-set > img.im2 {
  top: 1px;
}
@media screen and (max-width: 1260px) {
  .values .imgbox .box .photo-set > img {
    opacity: 1;
  }
}
.values .imgbox .box .photo-set .center {
  display: inline-flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.values .imgbox .box .photo-set .center img {
  opacity: 0;
}
@media screen and (max-width: 1260px) {
  .values .imgbox .box .photo-set .center img {
    opacity: 1;
  }
}
.values .imgbox .box .photo-set .center .title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  font-size: 50px;
  line-height: 1.25;
  opacity: 0;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .values .imgbox .box .photo-set .center .title {
    font-size: 2.604166666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .values .imgbox .box .photo-set .center .title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .values .imgbox .box .photo-set .center .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1260px) {
  .values .imgbox .box .photo-set .center .title {
    opacity: 1;
  }
}
.values .textbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1260px) {
  .values .textbox {
    position: relative;
  }
}
.values .textbox ul {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  min-height: 37vw;
  padding: 0 3.125%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 1260px) {
  .values .textbox ul {
    position: relative;
    top: 0;
    transform: none;
    min-height: 1px;
    padding: 0 5%;
    row-gap: 0.5rem;
  }
}
.values .textbox ul li {
  width: 37%;
  opacity: 0;
}
@media screen and (min-width: 992px) {
  .values .textbox ul li:nth-child(odd) .text {
    text-align: right;
  }
  .values .textbox ul li:nth-child(even) .text {
    text-align: left;
  }
}
@media screen and (min-width: 1261px) {
  .values .textbox ul li.t3 {
    padding-right: 8vw;
  }
  .values .textbox ul li.t4 {
    padding-left: 8vw;
  }
}
@media screen and (max-width: 1260px) {
  .values .textbox ul li {
    opacity: 1;
    width: 47%;
  }
}
@media screen and (max-width: 991px) {
  .values .textbox ul li {
    width: 100%;
  }
}
.values .textbox ul li .text .subtit {
  color: #0000d8;
  font-size: 36px;
  margin-bottom: 0.1rem;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .values .textbox ul li .text .subtit {
    font-size: 1.875vw;
  }
}
@media screen and (max-width: 1260px) {
  .values .textbox ul li .text .subtit {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .values .textbox ul li .text .subtit {
    font-size: 20px;
  }
}
.values .textbox ul li .text .desc {
  color: #939393;
  font-size: 24px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .values .textbox ul li .text .desc {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .values .textbox ul li .text .desc {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .values .textbox ul li .text .desc {
    font-size: 18px;
  }
}



.details .box .content .commonsection .item .wrap .textbox a{
	color: #0000d8;
	transition: all 0.4s ease;
}
.details .box .content .commonsection .item .wrap .textbox a:hover{
	opacity: 0.7;
}
.details .box .content .commonsection .item .wrap .textbox .morebtn{
	color: #ffffff;
}



/*20260209新增*/
.details .box .content .commonsection .item .relevant .caseitem .textbox .btn{
	display: none;
}
.related-btn{
	margin-top: 0.1rem;
}
.related-btn a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.8rem;
	height: 0.5rem;
	padding: 0 0.35rem;
	box-sizing: border-box;
	border-radius: 0.25rem;
	background: #0000d8;
	color: #FFFFFF;
	font-size: 20px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .related-btn a {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .related-btn a{
    font-size: 18px;
    height: 0.6rem;
    border-radius: 0.3rem;
  }
}
@media screen and (max-width: 991px) {
  .related-btn a{
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .related-btn a{
    height: 0.75rem;
    border-radius: 0.38rem;
  }
}

.recruitment-details .box .wrap .side .common-share ul li .qrcode,
.news-details .box .wrap .side .common-share ul li .qrcode{
	bottom: auto;
	top: 100%;
}
.recruitment-details .box .wrap .side .common-share ul li .qrcode .sjx,
.news-details .box .wrap .side .common-share ul li .qrcode .sjx{
	border-color: transparent transparent #ffffff transparent;
}
@media screen and (max-width: 540px){
	.recruitment-details .box .wrap .side .common-share ul li:first-child .qrcode,
	.news-details .box .wrap .side .common-share ul li:first-child .qrcode{
		left: 0;
    -webkit-transform: none;
    transform: none;
	}
	.recruitment-details .box .wrap .side .common-share ul li:first-child .qrcode .sjx,
	.news-details .box .wrap .side .common-share ul li:first-child .qrcode .sjx{
		margin-left: 0.25rem;
	}
}

@media screen and (max-width: 1260px){
	.header .common-share ul li:last-child .qrcode{
		left: auto;
		right: 0;
		-webkit-transform: none;
	  transform: none;
	}
	.header .common-share ul li:last-child .qrcode .sjx{
		margin-right: 0.28rem;
	}
}

.newlist .item .textbox .part1 .text {
	margin-top: 0.15rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  line-height: 1.5;
  transition: all 0.4s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .newlist .item .textbox .part1 .text {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 1260px) {
  .newlist .item .textbox .part1 .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .newlist .item .textbox .part1 .text {
    font-size: 14px;
  }
}


.form-error {
    display: none;
    background-color: #fef0f0;
    color: #f56c6c;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #fde2e2;
    font-size: 14px;
}

.form-error.show {
    display: block;
}



.form-error-text {
  font-size: 18px;
  color: #ff0000;
  margin: 10px auto;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .form-error-text {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 1260px) {
  .form-error-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .form-error-text {
    font-size: 14px;
  }
}

.success-text {
  font-size: 18px;
  color: #1515f1;
  margin: 10px auto;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .success-text {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 1260px) {
  .success-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .success-text {
    font-size: 14px;
  }
}

.readonly-form .layui-form-item .layui-input,
.readonly-form .layui-form-item .layui-form-checkbox{
	cursor: not-allowed;
}
.readonly-form .layui-form-item .layui-textarea{
	resize: none;
	cursor: not-allowed;
}
.readonly-form .layui-form-item .layui-form-checkbox{
	height: auto;
}
.readonly-form .layui-form-item .layui-form-checkbox span{
	background: none !important;
	padding-left: 0 !important;
	line-height: 1.5 !important;
	padding-right: 0 !important;
}
.readonly-form.c-form .layui-form-item .layui-input-block .layui-form-checkbox{
	padding-left: 0.45rem;
	padding-right: 0 !important;
}
@media screen and (max-width: 1260px) {
    .readonly-form.c-form .layui-form-item .layui-input-block .layui-form-checkbox {
        padding-left: 32px;
    }
}
.readonly-form.c-form .layui-form-item .layui-input-block .layui-form-checkbox i{
	right: auto;
	left: 0;
	line-height: 16px;
	border-color: #0000d8 !important;
  background-color: #0000d8;
}
.readonly-form.c-form .layui-form-item .layui-input-block .layui-form-checkbox:hover i{
	color: #ffffff;
}


.case .commonwrap.layui-form,
.news .commonwrap.layui-form{
	align-items: flex-start;
}

.commonwrap .layui-item.left_w{
	width: calc(62.5% - 0.3rem);
	gap: 0.3rem;
}
.commonwrap .layui-item .layui-input-block.other{
	margin-left: 0;
}
@media screen and (max-width: 1260px) {
		.commonwrap .layui-item.left_w{
			width: 100%;
		}
}
@media screen and (max-width: 767px) {
	.commonwrap .layui-item.left_w{
		gap: 0;
	}
    .commonwrap .reset-button{
    	margin-bottom: 0.3rem;
    }
}
.commonwrap .reset-button {
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 1260px) {
  .commonwrap .reset-button {
    margin-bottom: 0.3rem;
  }
}
.reset-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8rem;
  height: 0.7rem;
  border-radius: 0.35rem;
  padding: 0 0.4rem;
  box-sizing: border-box;
  border: rgba(0, 0, 216, 0.1) solid 0.02rem;
  color: #0000d8;
  font-size: 20px;
  transition: all 0.5s ease;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .reset-button a {
    font-size: 1.041666666666667vw;
  }
}
@media screen and (max-width: 1260px) {
  .reset-button a {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .reset-button a {
    font-size: 16px;
  }
}

.recruit-banner .reset-button a {
	background: #ffffff;
	border: none;
  font-size: 24px;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .recruit-banner .reset-button a {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .recruit-banner .reset-button a {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .recruit-banner .reset-button a {
    font-size: 18px;
  }
}

.reset-button a img {
  width: 0.18rem;
  margin-right: 0.12rem;
  flex-shrink: 0;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .reset-button a img {
    width: 0.22rem;
  }
}
.reset-button a span {
  padding-top: 0.03rem;
}
.reset-button a:hover {
  color: #ffffff;
  background: #0000d8;
}
.reset-button a:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 767px){
	.recruit-banner .box .wrap .layui-form-item{
		align-items: flex-start;
		justify-content: flex-start;
	}
	.recruit-banner .box .wrap .layui-form-item .layui-input-inline{
		float: none;
	}
	.recruit-banner .box .wrap .layui-form-item .layui-input-inline.inline3{
		display: inline-block;
		margin-right: 0;
	}
}


.notip {
  font-size: 24px;
  color: #1515ff;
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .notip {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1260px) {
  .notip {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .notip {
    font-size: 18px;
  }
}