@charset "utf-8";
/* 这个css是初始化的css，在任何项目里面都可以使用 */
/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
}
body {
  --header_h: 6.25rem;
  --container: 15rem;
  outline: none;
  font-weight: 500;
}
.p_top {
  position: absolute;
  top: -10rem;
}
.bg {
  background: #0C8DD9;
}
img {
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.c {
  color: #0C8DD9;
}
.phone_show_990,
.phone_show_767 {
  display: none;
}
.pagination {
  display: flex;
  padding-left: 0;
  margin: 1.25rem 0;
  border-radius: 0.25rem;
  justify-content: center;
}
.pagination > li {
  margin: 0 0.3125rem;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  border: 1px solid #DBDBDB;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}
.pagination > li:hover {
  background: #0C8DD9;
  color: #fff;
  text-align: center;
}
.pagination > li:hover a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 3.125rem;
}
.pagination > li.active {
  background: #0C8DD9;
  color: #fff;
}
.pagination > li.active a {
  color: #fff;
}
.pagination > li.disabled:hover {
  color: #333;
  background: #FFF;
}
.pagination {
  display: flex;
  padding-left: 0;
  margin: 4.375rem 0 0;
  border-radius: 0.25rem;
  justify-content: center;
}
.pagination a {
  display: block;
  margin: 0 0.3125rem;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  border: 1px solid #DBDBDB;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}
.pagination a:hover {
  background: #0C8DD9;
  color: #fff;
  text-align: center;
}
.pagination a:hover a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 3.125rem;
}
.pagination span {
  display: block;
  margin: 0 0.3125rem;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  border: 1px solid #DBDBDB;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}
.pagination > .current {
  background: #0C8DD9;
  color: #fff;
}
.pagination > li.disabled:hover {
  color: #333;
  background: #FFF;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.gap15 {
  gap: 0.9375rem;
}
.gap20 {
  gap: 1.25rem;
}
.gap30 {
  gap: 1.875rem;
}
.gap40 {
  gap: 2.5rem;
}
.gap50 {
  gap: 3.125rem;
}
.foot-fot {
  background: #2D3333;
  display: none;
}
.foot-fot .foota2 {
  font-size: 1rem;
  color: #fff;
}
.foot-fot .foota2 a {
  font-size: 1rem;
  color: #fff;
}
/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input {
  resize: none;
  border: none;
}
img {
  max-width: 100%;
  height: auto;
  width: auto;
  /* ie8 */
  -ms-interpolation-mode: bicubic;
  /*为了照顾ie图片缩放失真*/
}
.search_more {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: #444;
  position: relative;
  display: inline-block;
}
.search_more:hover {
  color: #0C8DD9;
}
.search_more:hover::before {
  background: #0C8DD9;
}
.search_more::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #E5E5E5;
}
.line1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.line4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.trans {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.sec_box {
  position: absolute;
  width: 100vw;
  left: 0%;
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.1);
  right: 0;
  top: 100%;
  z-index: 999;
  transition: 400ms ease-in-out;
  transform: scaleY(0) translateX(-50%);
  transform-origin: top center;
  opacity: 0;
}
.sec_box .sec_cont {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}
.sec_box .sec_cont .left {
  width: 17%;
  padding-top: 2.5rem;
}
.sec_box .sec_cont .left ul > li a {
  padding-left: 2.5rem;
  color: #3C3C3C;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 3.75rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.sec_box .sec_cont .left ul > li:hover a,
.sec_box .sec_cont .left ul > li.active a {
  background-color: #0C8DD9;
  color: #fff;
}
.sec_box .sec_cont .right {
  flex: 1;
  padding-left: 3.125rem;
  padding-right: 10.4375rem;
  padding-top: 2.6875rem;
  padding-bottom: 3.25rem;
  border-left: 1px solid #EAEAEA;
}
.sec_box .sec_cont .right .pro_cont {
  display: none;
}
.sec_box .sec_cont .right .pro_cont.active {
  display: block;
}
.sec_box .sec_cont .right .pro_box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.0625rem;
}
.sec_box .sec_cont .right .pro_box .pro_item .over {
  border: 1px solid #E8E8E8;
}
.sec_box .sec_cont .right .pro_box .pro_item .tt {
  margin-top: 1rem;
  color: #3C3C3C;
  text-align: center;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}
header .head_nav > ul > li:hover .sec_box {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
}
.logo_phone img {
  width: 7.5rem;
}
.cf {
  color: #fff !important;
}
.c0 {
  color: #000 !important;
}
.phone_weibu {
  background: #0A0A0A;
  display: none;
}
.phone_weibu .mobMenu > li > a {
  font-size: 14px;
  padding: 10px 0;
  color: #fff;
}
.phone_weibu .mobMenu > li {
  border-bottom: #424245 1px solid;
}
.phone_weibu .mobMenu > li > .subDepth > li > a {
  font-size: 1em;
  color: #9a9797;
  line-height: 28px;
}
.phone_weibu .mobMenu > li > a::before {
  background-color: #fff;
}
.phone_weibu .mobMenu > li > a::after {
  background-color: #fff;
}
.phone_weibu .mobMenu > li > .subDepth {
  display: none;
}
body {
  --container: 15rem;
}
@media (max-width: 1600px) {
  body {
    --container: 10rem;
  }
}
@media (max-width: 1440px) {
  body {
    --container: 8rem;
  }
}
@media (max-width: 1280px) {
  body {
    --container: 6rem;
  }
}
@media (max-width: 990px) {
  body {
    --container: 15px;
  }
}
.container {
  padding: 0 var(--container);
  width: 100%;
  max-width: 100%;
}
.container.container_l {
  padding: 0 0 0 var(--container);
}
.container.container_r {
  padding: 0 var(--container) 0 0;
}
/* 搜索 */
.search {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* background: #000; */
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
}
.search-box {
  width: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25%;
}
.inp {
  width: 100%;
  height: 6.25rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}
.inp::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.bu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  z-index: 9999;
}
.bu .iconfont {
  font-size: 3.125rem;
}
.search-con {
  position: absolute;
  right: 7%;
  top: 7%;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.search-con .iconfont {
  font-size: 2.125rem;
  font-weight: 100;
}
.ds {
  cursor: pointer;
}
.fenxiang .flex {
  justify-content: flex-start;
}
.fenxiang .social-share li {
  float: left;
  margin-right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.375rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
}
.fenxiang .social-share li a {
  margin: 0 !important;
  width: 100%;
  height: 100%;
  line-height: 2.375rem;
  color: rgba(0, 0, 0, 0.5) !important;
  border: none !important;
  font-size: 1rem;
}
.serbtn {
  background: #0C8DD9;
}
.searchbox {
  border-color: #0C8DD9;
}
@media (max-width: 990px) {
  body {
    padding-bottom: 0;
    overflow: hidden;
  }
}
@media (max-width: 990px) {
  .pc-hidden {
    display: none;
  }
  .pc_show_990 {
    display: none;
  }
  .phone_show_990 {
    display: block;
  }
}
.m-hidden {
  display: none;
}
@media (max-width: 990px) {
  .m-hidden {
    display: block;
  }
}
.foot1-m {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1;
}
/*手机底部*/
@media (max-width: 990px) {
  .foot1-m {
    display: block;
  }
}
/*手机端头部*/
.m-bm-head {
  position: fixed;
  top: 0;
  z-index: 999999;
  left: 0;
  right: 0;
  background: #000;
}
.m-bm-head .m-bm-head-box {
  position: relative;
  height: 60px;
}
.m-bm-head .m-bm-head-box .m-bm-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto 4%;
  max-width: 100%;
  height: 34px;
}
.m-bm-head .m-bm-head-box .m-bm-logo .flex_logo {
  display: inline-flex;
  align-items: center;
}
.m-bm-head .m-bm-head-box .m-bm-logo .flex_logo .slogan {
  padding-left: 10px;
  font-size: 12px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
}
.m-bm-head .m-bm-head-box .m-bm-logo h1,
.m-bm-head .m-bm-head-box .m-bm-logo a {
  display: inline;
  font-size: 0;
}
.m-bm-head .m-bm-head-box .m-bm-logo img {
  height: 40px;
  width: 120px;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 4% auto 0;
  width: 20px;
  height: 15px;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span,
.m-bm-head .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: 4.5px 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  content: '';
  -webkit-transform-origin: 7.5%;
  -moz-transform-origin: 7.5%;
  -ms-transform-origin: 7.5%;
  -o-transform-origin: 7.5%;
  transform-origin: 7.5%;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked span {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.m-bm-head .phone_lanu {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 65px;
}
.m-bm-head .m-bm-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  height: 100vh;
  background: #050505;
}
.m-bm-head .m-bm-menu .m-bm-menu-box {
  height: -webkit-calc(40vh);
  height: -moz-calc(40vh);
  height: calc(100vh - 60px);
  overflow: auto;
  padding-bottom: 80px;
}
.m-bm-head .mrhgxt {
  color: #fff;
  font: 500 1.125rem/60px;
  margin-left: 63%;
  position: relative;
  z-index: 9;
}
.m-bm-head .mrhgxt i {
  font-size: 1.125rem;
  margin-right: 0.25em;
}
.m-bm-nav .aniut.aniut_son {
  height: 35px;
  line-height: 35px;
}
.m-bm-nav > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.m-bm-nav > li > a {
  display: block;
  line-height: 50px;
  font-size: 14px;
  color: #fff;
  padding: 0 4%;
  font-weight: 600;
}
.m-bm-nav > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-weight: 500;
}
.m-bm-nav > li .sec {
  display: none;
  padding: 10px 15px 10px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.m-bm-nav > li .sec a {
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 35px;
}
.m-bm-nav > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}
.m-bm-nav > li .aniut {
  position: absolute;
  width: 40px;
  height: 50px;
  line-height: 50px;
  right: 2%;
  top: 0;
  text-align: center;
  z-index: 9;
}
.m-bm-nav > li .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #fff;
}
.m-bm-head.white {
  background: #fff;
}
.m-bm-head.white .m-bm-head-box .m-bm-navbtn span,
.m-bm-head.white .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head.white .m-bm-head-box .m-bm-navbtn:before {
  background: #000;
}
.m-bm-head.white .m-bm-menu {
  background: #fff;
}
.m-bm-head.white .m-bm-nav > li,
.m-bm-head.white .m-bm-nav > li .sec {
  border-color: rgba(51, 51, 51, 0.1);
}
.m-bm-head.white .m-bm-nav > li > a,
.m-bm-head.white .m-bm-nav .aniut i,
.m-bm-head.white .m-bm-nav > li .sec a,
.m-bm-head.white .mrhgxt {
  color: #000;
}
.ajhhsd {
  padding: 1.375rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
}
.ajhhsd a {
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
}
.ajhhsd a:hover {
  color: #0C8DD9;
}
.ajhhsd span {
  padding: 0 0.3em;
}
.ajhhsd span:last-child {
  display: none;
}
.xw_ny_banner {
  background: #333;
  -o-background-size: cover;
  background-size: cover;
  padding: 13.5rem 0 7.25rem;
}
.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em;
}
@media (max-width: 990px) {
  .xw_ny_banner {
    padding: 7.25rem 0;
  }
}
@media (max-width: 768px) {
  .xw_ny_banner {
    padding: 4rem 0;
  }
  .xw_ny_banner h2 {
    font-size: 1.8rem;
  }
}
.ssy-sskaa {
  margin-bottom: 2rem;
}
.ssy-sskaa .searchsa form {
  width: 50%;
  border: 1px solid #999;
  padding: 0 1.5em;
  border-radius: 2rem;
  margin: 0 auto;
}
.ssy-sskaa .searchsa form input {
  width: 70%;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 4rem;
  background: transparent;
  color: #999;
}
.ssy-sskaa .searchsa form button {
  width: auto;
  outline: none;
  border: none;
  background: transparent;
}
.ssy-sskaa .searchsa form button i {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 4rem;
  color: #333;
}
@media (max-width: 768px) {
  .ssy-sskaa {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .ssy-sskaa .searchsa form {
    width: 90%;
  }
  .pc_show_767 {
    display: none;
  }
  .phone_show_767 {
    display: block;
  }
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form input {
    font-size: 1.125rem;
    line-height: 3rem;
  }
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form button i {
    font-size: 1.35rem;
    line-height: 3rem;
  }
}
.sssjga {
  color: #333;
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-bottom: 1em;
}
.ss-list li + li {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .ss-list li + li {
    margin-top: 1rem;
  }
}
.ss-list li div.img {
  width: 25%;
}
.ss-list li div.img a.img {
  display: block;
  border: 1px solid #f2f2f2;
}
.ss-list li .xw-nycont {
  width: 72%;
}
.ss-list li .xw-nycont h2 a {
  display: block;
  color: #656363;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.35em;
  overflow: hidden;
  margin-bottom: 0.2em;
}
.ss-list li .xw-nycont.w100 {
  width: 100%;
}
@media (max-width: 768px) {
  .ss-list li div.img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont {
    width: 100%;
    margin-top: 1.2em;
  }
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont h2 a {
    font-size: 1.125rem;
  }
}
.ss-list li .xw-nycont span {
  color: #0C8DD9;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5em;
}
.ss-list li .xw-nycont .datea {
  color: #999999;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5em;
}
.ss-list li .xw-nycont .p {
  color: #999999;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.5em;
}
.ss-list li .xw-nycont a.more-msl {
  margin-top: 1em;
}
/* end */
.list_website ul li {
  padding: 1.875rem 0;
  border-bottom: 1px solid #ddd;
}
.list_website ul li:first-child {
  padding-top: 0;
}
.list_website ul li .top {
  font-size: 1.375rem;
  line-height: 1.875rem;
  margin-bottom: 0.625rem;
  font-weight: 600;
}
.list_website ul li .bot {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #717171;
  margin-right: 1.25rem;
}
@media (max-width: 1600px) {
  body,
  html {
    font-size: calc(100vw / 110);
  }
  .container {
    padding: 0 var(--container);
  }
}
@media (max-width: 1440px) {
  body,
  html {
    font-size: calc(100vw / 100);
  }
  .container {
    padding: 0 var(--container);
  }
}
@media (max-width: 1366px) {
  body,
  html {
    font-size: calc(100vw / 100);
  }
}
@media (max-width: 1280px) {
  body,
  html {
    font-size: calc(100vw / 105);
  }
}
@media (max-width: 990px) {
  body,
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 var(--container);
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 var(--container);
  }
}
.phone {
  line-height: 60px;
  padding: 0 30px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  background: #000;
}
.phone.white {
  background: #fff;
}
.phone.white .left img {
  filter: brightness(0);
}
@media (max-width: 767px) {
  .phone {
    padding: 0 15px;
  }
}
.phone > .clearfix {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone.noLanuage .center {
  width: 60%;
  text-align: left;
  order: 1;
}
.phone.noLanuage .left {
  width: 40%;
  text-align: right;
  order: 2;
}
.phone.noLanuage .right {
  display: none;
}
.phone .left {
  width: 10%;
  text-align: right;
}
.phone .left img {
  height: 22px;
}
.phone .right {
  width: 10%;
  text-align: left;
}
.phone .right span {
  width: 1px;
  height: 10px;
  background: #1D1D1F;
  display: inline-block;
  margin: 0 5px;
  position: relative;
  top: 1px;
}
.phone .right a {
  font-weight: bold;
  font-size: 12px;
  color: #A7A7A8;
}
.phone .right a.c {
  color: #1D1D1F;
}
.phone .center {
  width: 80%;
  margin: 0 auto;
}
.phone .center img {
  height: 40px;
  width: 120px;
}
.sjj_nav {
  position: fixed;
  z-index: 9999;
  background: #1D1D1F;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 40px;
  top: 0;
  left: -100%;
  overflow: auto;
  overflow-x: hidden;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.nav_show {
  left: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.sjj_nav > ul > li:first-child {
  overflow: hidden;
  border-top: 0;
}
.sjj_nav > ul > li:first-child > a {
  width: 60%;
}
.sjj_nav > ul > li:first-child .language {
  width: 100%;
  overflow: hidden;
  line-height: 30px;
  margin-top: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
}
.sjj_nav > ul > li:first-child .language a {
  width: 25%;
  float: left;
  border-left: 1px #ddd solid;
  text-align: center;
  color: #999;
  display: inline-block;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.sjj_nav > ul > li:first-child .language a.active {
  background: #0C8DD9;
  color: #fff !important;
}
.sjj_nav > ul > li:first-child .language a:last-child {
  border-right: 1px #ddd solid;
}
.sjj_nav ul li .sjj_nav_i_se svg {
  transform: rotate(0deg);
}
.sjj_nav ul li {
  position: relative;
  line-height: 40px;
  font-size: 14px;
}
.sjj_nav > ul > li:last-child {
  border-bottom: 1px #ddd solid;
}
.sjj_nav ul li ul {
  display: none;
}
.sjj_nav ul li i svg {
  width: 20px;
  height: 20px;
  fill: #555;
}
.sjj_nav ul li .sjj_nav_i_se svg {
  fill: #0C8DD9;
}
.sjj_nav ul li ul li > ul {
  margin-left: 10px;
}
.sjj_nav .top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #1D1D1F;
}
.sjj_nav .top .ta img {
  height: 40px;
  filter: brightness(0) invert(0.8);
  width: 120px;
}
.sjj_nav .top .fr img {
  height: 22px;
}
.sjj_nav .bot {
  padding: 25px 40px 0;
  margin-top: 60px;
  height: calc(100% - 60px);
  overflow: scroll;
}
.sjj_nav .bot > li:first-child {
  margin-bottom: 34px;
}
.sjj_nav .bot > li:first-child input {
  padding-left: 28px;
  width: 100%;
  font-size: 14px;
  color: #a7a7a7;
  line-height: 35px;
  border: 1px solid #A7A7A8;
  background: transparent;
}
.sjj_nav .bot > li:first-child button {
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 28px;
  height: 100%;
  border: none;
}
.sjj_nav .bot > li:first-child button .iconfont {
  position: static;
  text-align: center;
  color: #a7a7a7;
  font-size: 16px;
  padding: 0;
  border: none;
}
.sjj_nav .bot > li {
  font-size: 18px;
  line-height: 20px;
  color: #a7a7a7;
  border-bottom: none !important;
  margin-bottom: 30px;
}
.sjj_nav .bot > li > ul {
  padding-left: 1.25rem;
}
.sjj_nav .bot > li > div > a {
  width: calc(100% - 3.75rem);
}
.sjj_nav .bot > li > a {
  display: inline-block;
}
.sjj_nav .bot > li img {
  height: 30px;
}
.sjj_nav .bot > li .list .left {
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.9px;
  color: #EBEBEC;
  float: left;
}
.sjj_nav .bot > li .list .left a {
  color: #EBEBEC;
}
.sjj_nav .bot > li .list .right.w100 {
  width: 100%;
  float: none;
  padding-bottom: 20px;
}
.sjj_nav .bot > li .list .right {
  width: 80%;
  float: right;
  font-size: 14px;
  color: #EBEBEC;
  line-height: 20px;
}
.sjj_nav .bot > li .list .right a {
  color: #EBEBEC;
  margin-bottom: 18px;
}
.sjj_nav .bot > li ul {
  margin-top: 20px;
}
.sjj_nav .bot > li > div {
  color: #a7a7a7;
  position: relative;
  padding-bottom: 8px;
  line-height: 1.875rem;
  display: flex;
  align-items: center;
}
.sjj_nav .bot > li > div > a {
  color: #a7a7a7;
}
.sjj_nav .bot > li > div .iconfont {
  width: 3.75rem;
  text-align: right;
  display: block;
  font-size: 1rem;
}
.sjj_nav .bot > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  background: #a7a7a7;
}
.sjj_nav .bot > li:hover > a::before,
.sjj_nav .bot > li.active > a::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.sjj_nav .top .container {
  padding: 0 40px;
}
@media (max-width: 767px) {
  .sjj_nav .top .container {
    padding: 0 15px;
  }
}
.rightfix {
  bottom: 10%;
  top: auto;
  transform: translateY(0);
  right: 1.25rem;
  width: auto;
  box-shadow: none;
  border: none;
  background: transparent;
}
.rightfix li {
  cursor: pointer;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0;
  line-height: 3.25rem;
  padding: 0;
  border: none;
  background: transparent;
  margin-bottom: 0.875rem;
  position: relative;
  border: none !important;
}
.rightfix li .iconfont {
  width: 100%;
  height: 100%;
  background: #f08300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rightfix li svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}
.rightfix li:hover .iconfont {
  background: #0C8DD9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.rightfix li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: #DEDDDD;
  width: 1.1875rem;
}
.rightfix li:last-child::before {
  display: none;
}
.rightfix li::before {
  display: none;
}
.fixright_li_last {
  display: none;
}
.right_div.right_tel {
  min-width: 11rem;
  height: 3.25rem;
  line-height: 1.5;
  right: 3.75rem;
  color: #fff;
  font-weight: 600;
  background-color: #0C8DD9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fix_ul li:hover .right_div {
  right: 3.75rem;
}
.right_div.img {
  min-width: 7.5rem !important;
}
.right_div.img img {
  height: 7.5rem;
  object-fit: contain;
}
@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-moz-keyframes sticky {
  0% {
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -moz-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-o-keyframes sticky {
  0% {
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  position: fixed !important;
  padding-bottom: 1.875rem;
  background: #EAEAEA;
}
header.active {
  animation: sticky 0.65s;
}
@media (max-width: 990px) {
  header {
    display: none;
  }
}
header .head_top {
  background-color: #fff;
}
header .head_top .flex {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
}
header .head_top .le {
  width: 50%;
  display: flex;
  align-items: center;
}
header .head_top .le .slogan {
  font-size: 1.125rem;
  font-weight: 800;
  padding-left: 1rem;
  color: #727171;
  font-style: italic;
}
header .head_top .logo {
  line-height: 8.4375rem;
}
header .head_top .logo img {
  height: 4.6875rem;
}
header .head_top .ri {
  display: flex;
  align-items: center;
  line-height: 5.9375rem;
}
header .head_top .ri .getquote {
  color: #838383;
  font-size: 1rem;
  font-weight: 400;
  padding-right: 1.5625rem;
}
header .head_top .ri .getquote:hover {
  color: #0C8DD9;
}
header .head_top .ri span {
  color: #D5D5D5;
}
header .head_top .ri .tel {
  padding-left: 0.875rem;
  padding-right: 1.25rem;
  color: #838383;
  font-size: 1rem;
  font-weight: 400;
}
header .head_top .ri .tel svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.625rem;
}
header .head_top .ri .tel i {
  color: #0C8DD9;
  font-size: 1rem;
  font-weight: 600;
}
header .head_top .ri .ds1 {
  padding-left: 0.875rem;
  cursor: pointer;
}
header .head_top .ri .ds1 i {
  font-size: 1.5rem;
  color: #6D6D6D;
  font-weight: 600;
}
header .head_top .ri .ds1 i:hover {
  color: #0C8DD9;
}
header .head_nav {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: end;
  padding-top: 0.625rem;
}
header .head_nav .er-ul {
  position: absolute;
  width: 15rem;
  left: 50%;
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.1);
  right: 0;
  top: 100%;
  z-index: 999;
  background: #fff;
  transition: 400ms ease-in-out;
  transform: scaleY(0) translateX(-50%);
  transform-origin: top center;
  opacity: 0;
  border-radius: 0 0 0.5rem 0.5rem;
}
header .head_nav .er-ul li {
  line-height: 2.5;
  text-align: center;
  font-size: 1rem;
}
header .head_nav .er-ul li:hover a {
  color: #0C8DD9 !important;
}
header .head_nav > ul {
  width: 51%;
  display: flex;
  justify-content: end;
  align-items: center;
  line-height: 4.375rem;
  padding-right: var(--container);
  position: relative;
}
header .head_nav > ul::before {
  content: '';
  display: block;
  width: 90%;
  height: 100%;
  background-color: #EAEAEA;
  position: absolute;
  right: 0;
  z-index: 1;
}
header .head_nav > ul > li:hover .er-ul {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
}
header .head_nav > ul > li > a {
  display: block;
  color: #3C3C3C;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0 2.1875rem;
  position: relative;
  z-index: 2;
  text-align: center;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header .head_nav > ul > li > a:hover {
  color: #0C8DD9;
}
header .head_nav > ul > li:nth-child(1) {
  width: 14.375rem;
}
header .head_nav > ul > li:nth-child(1) > a {
  width: 100%;
  color: #fff;
  padding: 0;
}
header .head_nav > ul > li:nth-child(1) > a span {
  position: relative;
  z-index: 3;
}
header .head_nav > ul > li:nth-child(1) > a::before {
  content: '';
  display: block;
  width: 14.375rem;
  height: 5rem;
  background-image: url('https://cloud-rd-1251007531.bcdn8.com/dawosi0518/uploads/rd/20260518/20260518113957.svg');
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
header .head_nav > ul > li:nth-child(2) {
  width: 14.375rem;
  text-align: center;
  position: relative;
}
header .head_nav > ul > li:nth-child(2)::after {
  content: '';
  display: block;
  width: 24rem;
  height: 6.25rem;
  background-image: url('https://cloud-rd-1251007531.bcdn8.com/dawosi0518/uploads/rd/20260601/20260601173157.svg');
  background-size: 100% 100%;
  position: absolute;
  top: -1rem;
  right: -4.5rem;
  z-index: 1;
}
header .head_nav > ul > li:nth-child(2)::before {
  content: '';
  display: block;
  width: 14.375rem;
  height: 5rem;
  background-image: url('https://cloud-rd-1251007531.bcdn8.com/dawosi0518/uploads/rd/20260518/20260518114157.svg');
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
header .head_nav > ul > li:nth-child(2) > a {
  padding: 0;
  color: #fff;
}
header .head_nav > ul > li.news-menu {
  position: relative;
  z-index: 2;
}
footer {
  background-size: cover;
  background-image: url('https://cloud-rd-1251007531.bcdn8.com/dawosi0518/uploads/rd/20260527/20260527095532.webp');
}
footer .foot_top {
  padding-top: 6.75rem;
  padding-bottom: 5.3125rem;
}
footer .foot_top .footnav {
  display: flex;
  justify-content: space-between;
}
footer .foot_top .footnav > li:nth-last-child(1) {
  width: 25%;
}
footer .foot_top .footnav .tt {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 600;
}
footer .foot_top .footnav .subfootnav {
  margin-top: 0.3125rem;
}
footer .foot_top .footnav .subfootnav .subfootli {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
footer .foot_top .footnav .subfootnav .subfootli > a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.1875rem;
  /* 218.75% */
}
footer .foot_top .footnav .subfootnav .subfootli > a:hover {
  color: #fff;
}
footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 400;
  padding: 1.875rem 0;
}
footer .copyright a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 400;
}
footer .copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 400;
}
footer .copyright .left span:nth-last-child(1) {
  display: none;
}
footer .copyright .left {
  display: flex;
}
footer .copyright .social-share,
footer .copyright ul {
  display: flex;
  align-items: center;
  margin-left: 1.25rem;
}
footer .copyright .social-share .social-share-icon,
footer .copyright ul .social-share-icon,
footer .copyright .social-share li,
footer .copyright ul li {
  margin: 0 0.625rem;
}
footer .copyright .social-share .social-share-icon i,
footer .copyright ul .social-share-icon i,
footer .copyright .social-share li i,
footer .copyright ul li i {
  color: #fff;
  border: none;
  font-size: 1rem;
}
@-webkit-keyframes banscaleDraw {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -moz-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -moz-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -o-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -o-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    /*放大1.1倍*/
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.banner {
  margin-top: 10rem;
}
.banner .img {
  position: relative;
}
.banner .img::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(108.75deg, #191d1f 5%, rgba(25, 29, 31, 0.2) 60%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.banner .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}
.banner .hover .p1 {
  color: #FFF;
  text-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.15);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 4.0625rem;
}
.banner .hover .p2 {
  margin-top: 1.5rem;
  color: #FFF;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
.banner .hover .p2 ul li {
  position: relative;
  padding-left: 1.875rem;
}
.banner .hover .p2 ul li::before {
  content: '';
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 0.625rem;
  top: 1rem;
}
.banner .swiper-pagination {
  justify-content: center;
  bottom: 3.75rem;
}
.banner .swiper-pagination-bullet {
  width: 2.1875rem;
  height: 2.1875rem;
  opacity: 1;
  background: unset;
  position: relative;
}
.banner .swiper-pagination-bullet::before {
  content: '';
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: unset;
  border: unset;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: #fff;
}
.banner .swiper-slide.swiper-slide-active .img img {
  -webkit-animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
}
.banner .swiper-pagination {
  display: flex;
}
.banner .scroll {
  position: absolute;
  left: 50%;
  bottom: 3.125rem;
  transform: translateX(-50%);
  z-index: 9;
  animation: xiangxia 2s infinite;
}
@keyframes xiangxia {
  0% {
    transform: translateY(-0.625rem);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0.625rem);
  }
}
.swiper-pagination {
  display: flex;
}
.swiper-button-next,
.swiper-button-prev {
  width: 3.375rem;
  height: 3.375rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #b3b3b3;
  line-height: 3.375rem;
  text-align: center;
}
.swiper-button-next i,
.swiper-button-prev i {
  color: #000;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: -6.25rem;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: -6.25rem;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.neibanner {
  position: relative;
}
.neibanner .neibanner_txt {
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
}
.neibanner .neibanner_txt h3 {
  color: #fff;
}
.neibanner .neibanner_txt p {
  color: #fff;
}
.neibanner .mbxdh {
  position: absolute;
  bottom: 1.875rem;
}
.search-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99999999;
  top: 0;
  left: 0;
  display: none;
}
.search-box {
  display: none;
  width: 40%;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}
.search-box input[type="text"] {
  padding: 1.5625rem;
  border: unset;
  border-radius: 1.25rem;
  width: 100%;
  outline: none;
}
.search-box button {
  background: unset;
  color: #999;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 1.875rem;
  top: 1.4375rem;
}
.search-box button i {
  font-size: 1.25rem;
  color: #000;
  font-weight: 700;
}
.all_title p {
  color: #0C8DD9;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.8125rem;
  display: inline-block;
}
.all_title p::before {
  content: '';
  display: block;
  width: 100%;
  height: 0.1875rem;
  background-color: #0C8DD9;
  position: absolute;
  bottom: 0;
}
.all_title h3 {
  margin-top: 0.625rem;
  color: #343434;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 4.0625rem;
}
.all_title .p {
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.all_more {
  width: 12.8125rem;
  height: 3.4375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #939393;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.all_more::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #B4B4B4;
  transform: skewX(-30deg);
  transform-origin: center;
  pointer-events: none;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.all_more span {
  position: relative;
  z-index: 1;
  color: #939393;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.all_more:hover::before {
  background-color: #0C8DD9;
}
.all_more:hover span {
  color: #fff;
}
.index_two {
  padding-top: 8.125rem;
  position: relative;
  overflow: hidden;
}
.index_two .all_desc {
  color: #434343;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
.index_two .swiper-button-prev,
.index_two .swiper-button-next {
  border: none;
  width: auto;
  height: auto;
  top: unset;
  margin-top: unset;
  bottom: 3.125rem;
  width: 3.5625rem;
  height: 2.1875rem;
}
.index_two .swiper-button-prev {
  left: 0;
}
.index_two .swiper-button-next {
  right: unset;
  left: 6.0625rem;
}
.index_two .swiper-scrollbar {
  width: 100%;
  height: 1px;
  left: 0;
  background: #CCC;
}
.index_two .swiper-scrollbar-drag {
  background: #070707;
}
.index_two .swiper-pagination {
  width: 100%;
  bottom: 2.0625rem;
  justify-content: end;
}
.index_two .main-loading-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #CCC;
  overflow: hidden;
  z-index: 5;
}
.index_two .main-loading-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: #070707;
}
.index_two .swiper_indexabout {
  width: 60%;
  position: relative;
  padding-bottom: 6.875rem;
  margin: 0 auto;
}
.index_two .swiper_indexabout .swiper-wrapper {
  position: relative;
}
.index_two .swiper_indexabout .swiper-slide-active .indexabout .tit {
  color: #000;
}
.index_two .swiper_indexabout .swiper-slide-active .indexabout .desc {
  opacity: 1;
}
.index_two .swiper_indexabout .indexabout {
  text-align: center;
}
.index_two .swiper_indexabout .indexabout .tit {
  color: rgba(52, 52, 52, 0.15);
  font-size: 6.25rem;
  font-weight: 600;
}
.index_two .swiper_indexabout .indexabout .desc {
  color: #7D7D7D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  opacity: 0;
}
.index_two .swiper_indexabout .main-values-cover-group {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -16rem;
  margin-left: -8rem;
  width: 16.125rem;
  height: 16.125rem;
  display: flex;
  justify-content: center;
}
.index_two .swiper_indexabout .main-values-cover1,
.index_two .swiper_indexabout .main-values-cover2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 16.125rem;
  height: 16.125rem;
  border-radius: 100%;
  display: block;
}
.index_two .swiper_indexabout .main-values-cover1 {
  background-color: #f37226;
  z-index: -1;
}
.index_two .swiper_indexabout .main-values-cover2 {
  background-color: #fff;
  z-index: 1;
  mix-blend-mode: difference;
}
.index_two .main-values-cover-circle {
  position: absolute;
  top: 59%;
  left: 51%;
  width: 16.125rem;
  height: 16.125rem;
  background-color: #0C8DD9;
  border-radius: 100%;
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(10);
  transition: all 0.9s ease-in-out;
  z-index: 99;
}
.index_two.animated .main-values-cover-circle {
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0;
}
.cursor-dot {
  position: fixed;
  top: 50%;
  left: 50%;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(12, 141, 217, 0.7);
  z-index: 999;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s ease-in-out, width 0.5s, height 0.5s, background-color 0.5s ease, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.5s ease-in-out, width 0.5s, height 0.5s, background-color 0.5s ease, -webkit-transform 0.3s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out, width 0.5s, height 0.5s, background-color 0.5s ease, -o-transform 0.3s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out, width 0.5s, height 0.5s, background-color 0.5s ease, -moz-transform 0.3s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out, width 0.5s, height 0.5s, background-color 0.5s ease;
  transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out, width 0.5s, height 0.5s, background-color 0.5s ease, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
}
.index_three .tabul {
  display: flex;
  align-items: center;
}
.index_three .tabul .tabli {
  padding-right: 3.125rem;
}
.index_three .tabul .tabli a {
  padding-left: 1.5625rem;
  color: #555;
  font-size: 1.375rem;
  font-weight: 400;
  position: relative;
}
.index_three .tabul .tabli a::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url('https://cloud-rd-1251007531.bcdn8.com/dawosi0518/uploads/rd/20260518/20260518171956.svg');
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0.5625rem;
  opacity: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_three .tabul .tabli.active a,
.index_three .tabul .tabli:hover a {
  color: #0C8DD9;
  font-size: 1.375rem;
  font-weight: 600;
}
.index_three .tabul .tabli.active a::before,
.index_three .tabul .tabli:hover a::before {
  opacity: 1;
}
.index_three .swiper_box {
  display: none;
}
.index_three .swiper_box.active {
  display: block;
}
.index_three .swiper_indexpro {
  position: relative;
  margin: 0 -1.375rem;
}
.index_three .swiper_indexpro .swiper-slide {
  padding: 0 1.375rem;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box:hover .top_box .desc {
  bottom: 0;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box .top_box {
  position: relative;
  background: #F5F5F5;
  overflow: hidden;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box .top_box .tag {
  padding: 0.625rem 1.125rem;
  position: absolute;
  top: 1.875rem;
  left: 1.875rem;
  z-index: 9;
  border: 1px solid #828282;
  color: #828282;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box .top_box .over {
  padding: 6.25rem 1.25rem;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box .top_box .desc {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -100%;
  left: 0;
  z-index: 9;
  background: rgba(1, 109, 174, 0.8);
  backdrop-filter: blur(0.125rem);
  padding: 6rem 3.4375rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box .top_box .desc p {
  color: #FFF;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.875rem;
  position: relative;
  padding-left: 1.5625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box .top_box .desc p i {
  font-size: 1rem;
  color: #fff;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box .top_box .desc p::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box .top_box .desc p a {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
  padding: 0.625rem 0;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box .top_box .desc p::before {
  content: '';
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 0.625rem;
  top: 1.5rem;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box .top_box .desc p:hover a {
  color: #f08300;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box .top_box .desc p:hover::after {
  width: 100%;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box .text {
  padding-top: 3.3125rem;
  display: flex;
  align-items: center;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box .text .tit {
  color: #343434;
  font-size: 1.25rem;
  font-weight: 600;
  padding-right: 6.25rem;
  flex: 1;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box .text .more {
  width: 2.8125rem;
  height: 2.8125rem;
  background-color: #0C8DD9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_three .swiper_indexpro .swiper-slide .indexpro_box .text .more i {
  color: #fff;
  font-size: 1rem;
}
.index_three .swiper_indexpro .btn_group {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 5.625rem;
  border: 1px solid #070707;
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.index_three .swiper_indexpro .btn_group .swiper-button-prev,
.index_three .swiper_indexpro .btn_group .swiper-button-next {
  position: relative;
  margin-top: 0;
  top: unset;
  left: unset;
  right: unset;
  border: none;
  width: auto;
  height: auto;
  border-radius: unset;
  background-color: unset;
  cursor: pointer;
}
.index_three .swiper_indexpro .btn_group .swiper-button-prev i,
.index_three .swiper_indexpro .btn_group .swiper-button-next i {
  font-size: 1.375rem;
  color: #070707;
  font-weight: 500;
}
.index_four {
  overflow: hidden;
  padding-bottom: 8.125rem;
  background: linear-gradient(180deg, rgba(1, 109, 174, 0) 0%, rgba(1, 109, 174, 0.1) 100%);
}
.index_four .tabul {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.index_four .tabul .tabli.active .icon {
  border: 1px solid #0C8DD9;
}
.index_four .tabul .tabli .icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_four .tabul .tabli .icon img {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
}
.index_four .tabcont {
  margin: 20px 0;
}
.index_four .tabcont .tabitem {
  display: none;
}
.index_four .tabcont .tabitem.active {
  display: block;
}
.index_four .tabcont .tabitem .icon {
  width: 4rem;
}
.index_four .tabcont .tabitem h3 {
  margin-top: 0.625rem;
  color: #343434;
  font-size: 1.375rem;
  font-weight: 600;
}
.index_four .tabcont .tabitem p {
  margin-top: 0.625rem;
  color: rgba(125, 125, 125, 0.7);
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.index_four .swiper_appli2 {
  position: relative;
  overflow: hidden;
  padding-bottom: 5rem;
}
.index_four .swiper_appli2 .swiper-pagination {
  justify-content: center;
}
.index_four .solutions-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5.625rem 0 13.75rem;
  cursor: grab;
  user-select: none;
}
.index_four .solutions-content-wrapper.is-dragging {
  cursor: grabbing;
}
.index_four .solutions-left {
  position: relative;
  z-index: 2;
  width: 35%;
  margin: 0;
  height: 14rem;
}
.index_four .solutions-right {
  justify-content: center;
  align-items: center;
  position: relative;
  top: 6.25rem;
  right: 0;
  transform: none;
  z-index: -1;
  display: flex;
}
.index_four .rotate-swap-icon {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.index_four .rotate-swap-headers-wrapper .swap-iocn {
  width: 5.5625rem;
  height: 5.5625rem;
  transition: transform 0.35s ease, opacity 0.35s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_four .rotate-swap-headers-wrapper .swap-iocn .swap-icon-img {
  position: relative;
  z-index: 1;
  width: 4.5625rem;
  height: 4.5625rem;
  opacity: 0.6;
  border-radius: 50%;
  object-fit: cover;
}
.index_four .rotate-swap-headers-wrapper .swap-iocn .logo-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #0C8DD9;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 0;
}
.index_four .rotate-swap-headers-wrapper .swap-iocn.active .swap-icon-img {
  opacity: 1;
}
.index_four .rotate-swap-headers-wrapper .swap-iocn.active .logo-cover {
  transform: scale(1);
}
.index_four .rotate-swap-headers-frame {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
}
.index_four .rotate-swap-headers-frame .rotate-swap-header-cell {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  margin-top: 3rem;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(0.75rem);
}
.index_four .rotate-swap-headers-frame .rotate-swap-header-cell.active {
  opacity: 1;
  transform: translateY(0);
}
.index_four .rotate-swap-headers-frame .rotate-swap-header-cell img {
  width: 4.375rem;
  height: 4.375rem;
  aspect-ratio: 1/1;
}
.index_four .rotate-swap-headers-frame .rotate-swap-header-cell h3 {
  margin-top: 1.0625rem;
  color: #343434;
  font-size: 1.375rem;
  font-weight: 600;
}
.index_four .rotate-swap-headers-frame .rotate-swap-header-cell p {
  margin-top: 1.0625rem;
  color: rgba(125, 125, 125, 0.7);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.index_four .rotate-swap-headers-frame .rotate-swap-header-cell.active {
  pointer-events: auto;
}
.rotate-height {
  height: 350vh;
  padding: 1.875rem 0;
  margin-top: 1.25rem;
}
.rotate-height .rotate-subheight {
  height: 100vh;
  top: 8rem;
  position: sticky;
  top: 3.75rem;
  overflow: hidden;
}
.rotate-cards-flexbox {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0rem;
  transform: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.rotate-cards-flexbox.is-dragging {
  cursor: grabbing;
}
.rotate-ellipse {
  grid-gap: 4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 210rem;
  height: 210rem;
  display: flex;
  position: absolute;
  right: 0;
  transform-origin: center center !important;
  will-change: transform;
  transform: rotate(0);
  transform-style: preserve-3d;
}
.rotate-card {
  aspect-ratio: 92/59;
  width: 50rem;
  position: absolute;
  right: -24%;
  transform-origin: center center !important;
  overflow: hidden;
}
/* 保持你原本精心调试好的 4 张卡片初始排布 */
.rotate-card.card-1 {
  transform: translate3d(0px, 0px, 0px) rotate(0deg);
}
/* X轴变负，Y轴保持，角度变正 */
.rotate-card.card-2 {
  transform: translate3d(-16%, 139%, 0px) rotate(20deg);
}
/* 严格等差：34deg */
.rotate-card.card-3 {
  transform: translate3d(-62%, 262%, 0px) rotate(40deg);
}
/* 严格等差：51deg */
.rotate-card.card-4 {
  transform: translate3d(-131.7%, 351.5%, 0px) rotate(60deg);
}
.image-cover {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: relative;
  inset: 0%;
}
.image-cover img {
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  inset: -100%;
}
.home-anim-swiper-container {
  position: relative;
}
.anim-swiper-section {
  background-color: #fff;
  height: auto;
}
.anim-swiper-section .section-container {
  position: sticky;
  top: 0;
  height: auto;
}
.anim-swiper-section .swiper-wrapper {
  padding-top: 5vw;
}
.anim-swiper-section .swiper-slide {
  aspect-ratio: 554/800;
  perspective: 62.5rem;
  transition: all 0.6s ease-in-out;
}
.anim-swiper-section .swiper-slide .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
  transform-style: preserve-3d;
  transform: rotateY(0);
}
.anim-swiper-section .swiper-slide .card-front,
.anim-swiper-section .swiper-slide .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 0;
}
.anim-swiper-section .swiper-slide .card-front {
  background: linear-gradient(180deg, #e9e8ed, #f1f0f5);
}
.anim-swiper-section .swiper-slide.swiper-slide-prev .card-back {
  background: url(/images/anim-swiper-back.webp) no-repeat left center;
  background-size: 300% 100%;
  transform: rotateY(180deg);
}
.anim-swiper-section .swiper-slide.swiper-slide-active .card-back {
  background: url(/images/anim-swiper-back.webp) no-repeat center center;
  background-size: 300% 100%;
  transform: rotateY(180deg);
}
.anim-swiper-section .swiper-slide.swiper-slide-next .card-back {
  background: url(/images/anim-swiper-back.webp) no-repeat right center;
  background-size: 300% 100%;
  transform: rotateY(180deg);
}
.anim-swiper-section .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.anim-swiper-section .swiper-slide .text {
  position: absolute;
  top: clamp(16px, 6.2rem, 6.2rem);
  left: clamp(16px, 6.2rem, 6.2rem);
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}
.anim-swiper-section .swiper-slide .text h5 {
  font-size: clamp(16px, 3rem, 3rem);
  color: #000;
}
.anim-swiper-section .swiper-slide .text p {
  color: #000;
  padding-top: clamp(5px, 0.6rem, 0.6rem);
  font-size: clamp(12px, 1.6rem, 1.6rem);
}
.anim-swiper-section .active-swiper-button {
  visibility: visible;
  top: -2rem;
  position: relative;
  z-index: 10;
  opacity: 1;
}
.anim-swiper-section .swiper-pagination {
  bottom: 0 !important;
  position: relative !important;
  width: auto !important;
}
@keyframes float-1 {
  0% {
    transform: translate(0, 0) rotate(15deg) scale(1);
  }
  33% {
    transform: translate(15vw, 20vh) rotate(45deg) scale(1.1);
  }
  66% {
    transform: translate(30vw, -10vh) rotate(-15deg) scale(0.9);
  }
  100% {
    transform: translate(10vw, 15vh) rotate(30deg) scale(1);
  }
}
.index_five {
  padding-bottom: 7.5rem;
  position: relative;
}
.index_five::before {
  content: '';
  display: block;
  width: 47.875rem;
  height: 47.875rem;
  border-radius: 47.875rem;
  background: rgba(12, 141, 217, 0.1);
  filter: blur(9.375rem);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  animation: float-1 25s ease-in-out infinite alternate;
}
.index_five .all_desc {
  color: #7D7D7D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  position: relative;
  z-index: 9;
}
.index_five .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.375rem;
  position: relative;
  z-index: 9;
}
.index_five .grid_box .grid_item {
  position: relative;
}
.index_five .grid_box .grid_item .tit {
  color: #FFF;
  font-size: 1.625rem;
  font-weight: 600;
  position: absolute;
  left: 5.375rem;
  bottom: 4.8125rem;
}
.index_five .grid_box .grid_item:nth-child(2) {
  transform: translateY(7.9375rem);
}
.index_five .flex_box {
  background: #ECF4F9;
  position: relative;
  z-index: 9;
}
.index_five .left {
  width: 49%;
}
.index_five .right {
  flex: 1;
  padding-left: 4.0625rem;
  padding-right: 3.75rem;
}
.index_five .right .title {
  color: #343434;
  font-size: 1.875rem;
  font-weight: 600;
}
.index_five .right .subtit {
  margin-top: 1rem;
  color: #7D7D7D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.index_five .right .msg-a1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5625rem;
}
.index_five .right .msg-a1 .inpt input {
  width: 100%;
  height: 3.125rem;
  padding: 0 1.5rem;
  border-radius: 0.1875rem;
  background: #FFF;
  color: #7D7D7D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.index_five .right .msg-a1 .inpt input::placeholder {
  color: #7D7D7D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.index_five .right .msg-a3 {
  margin-top: 1.5625rem;
}
.index_five .right .msg-a3 textarea {
  width: 100%;
  border-radius: 0.1875rem;
  background: #FFF;
  border: none;
  padding: 0.6875rem 1.5rem;
  color: #7D7D7D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  height: 10.3125rem;
}
.index_five .right .msg-a3 textarea::placeholder {
  color: #7D7D7D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.index_five .right .div_aghgha {
  margin-top: 1.5625rem;
}
.index_five .right .div_aghgha button,
.index_five .right .div_aghgha input[type="submit"] {
  width: 100%;
  height: 3.125rem;
  border-radius: 0.1875rem;
  background: #0C8DD9;
  color: #FFF;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  border: none;
}
.index_six {
  padding-top: 8.125rem;
  background: #0C8DD9;
}
.index_six .top_box {
  display: flex;
  justify-content: space-between;
}
.index_six .top_box .le .title {
  color: #FFF;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 4.0625rem;
}
.index_six .top_box .le .desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.index_six .top_box .ri {
  display: grid;
  gap: 2.5rem;
}
.index_six .top_box .ri .num_item h3 {
  color: #FFF;
  text-align: right;
  font-size: 3rem;
  font-weight: 600;
}
.index_six .top_box .ri .num_item h3 sub {
  font-size: 1rem;
}
.index_six .top_box .ri .num_item h4 {
  color: #FFF;
  text-align: right;
  font-size: 2rem;
  font-weight: 600;
}
.index_six .top_box .ri .num_item p {
  color: #FFF;
  text-align: right;
  font-size: 1.125rem;
  font-weight: 400;
}
.index_six .content {
  position: relative;
}
.index_six .content .text {
  text-align: center;
  font-size: 27.5rem;
  font-weight: 600;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-right: 6.25rem;
  margin-top: -6.25rem;
}
.index_six .lottie_outer-wrap {
  position: relative;
  /* 核心：直接把最终的宽度定死，靠居中对齐 */
  width: 45rem;
  height: 45rem;
  /* 根据设计稿调整高度 */
  margin: 0 auto;
  overflow: hidden;
  will-change: transform;
  transform: translate3d(0px, 20svh, 0px) scale3d(1.87565, 1.87565, 1) rotateX(0deg) rotateY(0deg) rotateZ(-13.1348deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.index_six .lottie_outer-wrap .stick_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.index_six .lottie_outer-wrap .sticky-lot {
  position: absolute;
  top: 0;
}
.all_more2 {
  position: relative;
  width: 10.4375rem;
  height: 3.125rem;
  line-height: 3.125rem;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}
.all_more2 .text-base {
  width: 100%;
  color: #4B4B4B;
  z-index: 1;
}
.all_more2 .text-base i {
  font-size: 1.125rem;
  color: #4B4B4B;
}
.all_more2 .text-overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 48%;
  /* 初始蓝色色块宽度 */
  background-color: #0C8DD9;
  overflow: hidden;
  /* 核心：裁切多余的白色文字 */
  z-index: 2;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.all_more2 .text-overlay .text-white {
  width: 10rem;
  /* 必须和父级 .all_more2 宽度一致，防止文字换行 */
  color: #ffffff;
  white-space: nowrap;
}
.all_more2 .text-overlay .text-white i {
  font-size: 1.125rem;
  color: #ffffff;
}
.all_more2:hover .text-overlay {
  width: 100%;
  /* 悬停铺满 */
}
.all_more3 {
  position: relative;
  width: 10.4375rem;
  height: 3.125rem;
  line-height: 3.125rem;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}
.all_more3 .text-base {
  width: 100%;
  color: #fff;
  z-index: 1;
}
.all_more3 .text-base i {
  font-size: 1.125rem;
  color: #fff;
}
.all_more3 .text-overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 48%;
  /* 初始蓝色色块宽度 */
  background-color: #fff;
  overflow: hidden;
  /* 核心：裁切多余的白色文字 */
  z-index: 2;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.all_more3 .text-overlay .text-white {
  width: 10rem;
  /* 必须和父级 .all_more2 宽度一致，防止文字换行 */
  color: #0C8DD9 !important;
  white-space: nowrap;
}
.all_more3 .text-overlay .text-white i {
  font-size: 1.125rem;
  color: #0C8DD9;
}
.all_more3:hover .text-overlay {
  width: 100%;
}
.index_seven {
  padding-top: 8.125rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.index_seven::before {
  content: '';
  display: block;
  width: 47.875rem;
  height: 47.875rem;
  border-radius: 47.875rem;
  background: rgba(12, 141, 217, 0.1);
  filter: blur(9.375rem);
  position: absolute;
  top: 20%;
  left: 20%;
  z-index: 1;
  animation: float-1 25s ease-in-out infinite alternate;
}
.index_seven .content {
  position: relative;
  z-index: 9;
}
.index_seven .content ul li {
  border-bottom: 1px solid #CCC;
  padding: 2.75rem 0 0;
}
.index_seven .content ul li .item {
  display: flex;
}
.index_seven .content ul li .item .time {
  width: 15%;
}
.index_seven .content ul li .item .time p {
  color: #343434;
  font-size: 0.875rem;
  font-weight: 400;
}
.index_seven .content ul li .item .time h3 {
  margin-top: 0.25rem;
  color: #343434;
  font-size: 1.375rem;
  font-weight: 600;
}
.index_seven .content ul li .item .ri_box {
  width: 85%;
}
.index_seven .content ul li .item .tit {
  color: #343434;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 2.5rem;
  padding-bottom: 1.9375rem;
}
.index_seven .content ul li .item .text_box {
  display: flex;
  height: 0;
  overflow: hidden;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  justify-content: space-between;
}
.index_seven .content ul li .item .text_box .le {
  width: 45%;
}
.index_seven .content ul li .item .text_box .le .text {
  color: #7D7D7D;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.index_seven .content ul li .item .text_box .ri {
  width: 40%;
}
.index_seven .content ul li:hover .item .text_box,
.index_seven .content ul li.active .item .text_box {
  height: 25rem;
}
.bodycolor {
  position: relative;
}
.bodycolor::before {
  content: '';
  display: block;
  width: 100%;
  height: 100vh;
  background: linear-gradient(0deg, rgba(1, 109, 174, 0) 0%, rgba(1, 109, 174, 0.1) 100%);
  position: absolute;
  top: 10rem;
  left: 0;
  z-index: -1;
}
.page-banner {
  margin-top: 9.375rem;
  height: auto;
  position: relative;
}
.page-banner .ajhhsd {
  position: absolute;
  z-index: 2;
  top: 1rem;
}
.page-banner .swiper {
  width: 100%;
  height: 55vh;
  overflow: visible;
}
.page-banner .swiper-slide {
  position: relative;
}
.page-banner .swiper-slide::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(108.75deg, #191d1f 5%, rgba(25, 29, 31, 0.2) 60%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.page-banner .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  right: 0;
  transform-origin: right bottom;
}
.page-banner .slide-text {
  position: absolute;
  bottom: 50px;
  left: 30px;
  width: 260px;
  height: 200px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}
.page-banner .slide-text .slide-text-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  margin-left: 5%;
  transform-origin: left center;
  display: flex;
  align-items: center;
}
.page-banner .slide-text .slide-text-svg svg {
  height: 70%;
  width: auto;
}
.page-banner .slide-text h2 {
  line-height: 1.4;
  font-size: 1.875rem;
  font-weight: 600;
  text-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.58);
  text-transform: uppercase;
}
.page-banner .slide-text p {
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 500;
  padding-left: 0;
  text-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.58);
  text-transform: uppercase;
}
@media (width >= 768px) {
  .page-banner .slide-text {
    height: 34.375rem;
    width: 37.5rem;
    bottom: 0;
    left: var(--container);
  }
  .page-banner .slide-text h2 {
    font-size: 2.5rem;
  }
  .page-banner .slide-text p {
    margin-top: 1.375rem;
    font-size: 1.375rem;
    line-height: 1.5;
    padding-left: 0.3125rem;
  }
}
@media screen and (width <= 1024px) {
  .page-banner,
  .page-banner .swiper {
    height: 90vw;
  }
  .page-banner .swiper-slide img {
    position: relative;
  }
  .page-banner .slide-text {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    bottom: 0;
    color: #fff;
    padding: 5vh 6.25rem 3vh;
  }
  .page-banner .slide-text .slide-text-svg {
    display: none;
  }
  .page-banner .slide-text h2,
  .page-banner .slide-text p {
    text-shadow: none;
  }
}
.page-banner .swiper-pagination {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translate(-50%);
}
.page-banner .swiper-pagination .swiper-pagination-bullet {
  height: 2px;
  width: 60px;
  background-color: #d9d9d9;
  opacity: 1;
}
.page-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0C8DD9;
}
.page-banner .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin: 0 3px;
}
.list_news {
  padding-bottom: 9.375rem;
}
.list_news .content .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem 3rem;
}
.list_news .content .grid_box .grid_item .text {
  padding-top: 1.75rem;
}
.list_news .content .grid_box .grid_item .text .time {
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
}
.list_news .content .grid_box .grid_item .text .tt {
  margin-top: 0.75rem;
  color: #343434;
  font-family: Montserrat;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.list_news .content .grid_box .grid_item .text .dd {
  margin-top: 0.75rem;
  color: #7D7D7D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.show_news {
  margin-top: 10rem;
}
.show_news .ajhhsd {
  color: #7D7D7D;
}
.show_news .ajhhsd a {
  color: #7D7D7D;
}
.show_news .news_content {
  margin-top: 8.125rem;
  padding-bottom: 6.25rem;
}
.show_news .news_content.mt45 {
  margin-top: 2.8125rem;
}
.show_news .news_content .time {
  color: #343434;
  font-family: Montserrat;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.1875rem;
  text-align: center;
}
.show_news .news_content .time span {
  color: #D5D5D5;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.1875rem;
  padding: 0 1.375rem;
}
.show_news .news_content .time strong {
  color: #0C8DD9;
  text-align: center;
  font-family: Montserrat;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
.show_news .news_content .title {
  margin-top: 1.25rem;
  color: #343434;
  text-align: center;
  font-family: Montserrat;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 4.0625rem;
}
.show_news .news_content .content {
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.show_news_two {
  border-top: 1px solid #D7D7D7;
  padding-bottom: 9.375rem;
}
.show_news_two.show_application {
  border-top: unset;
}
.show_news_two .gotoback {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
.show_news_two .gotoback .i {
  width: 2.8125rem;
  height: 2.8125rem;
  aspect-ratio: 1/1;
  background: #0C8DD9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}
.show_news_two .gotoback .i i {
  color: #fff;
  font-size: 1rem;
}
.show_news_two .content .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem 3rem;
}
.show_news_two .content .grid_box .grid_item .over img {
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}
.show_news_two .content .grid_box .grid_item .text {
  padding-top: 1.75rem;
}
.show_news_two .content .grid_box .grid_item .text .time {
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
}
.show_news_two .content .grid_box .grid_item .text .tt {
  margin-top: 0.75rem;
  color: #343434;
  font-family: Montserrat;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
.show_news_two .content .grid_box .grid_item .text .dd {
  margin-top: 0.75rem;
  color: #7D7D7D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.list_contact_one .grid_box {
  background: #ECF4F9;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.list_contact_one .grid_box .grid_item {
  padding: 4.75rem 1.375rem 2.75rem;
}
.list_contact_one .grid_box .grid_item .icon {
  width: 4.0625rem;
  height: 4.0625rem;
  border-radius: 50%;
  background-color: #0C8DD9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.list_contact_one .grid_box .grid_item .icon svg {
  width: 1.875rem;
  height: 1.875rem;
}
.list_contact_one .grid_box .grid_item .text {
  margin-top: 0.625rem;
  color: #6D6D6D;
  text-align: center;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
.list_contact_one .grid_box .grid_item:not(:nth-last-child(1)) {
  border-right: 1px solid #FFF;
}
.list_contact_one #map {
  height: 39.375rem;
}
.list_message {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
.list_message .content .msg-a1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 2.25rem;
}
.list_message .content .msg-a1 .inpt input {
  width: 100%;
  height: 3.125rem;
  padding: 0 1.5rem;
  background: #FFF;
  border-radius: 0.1875rem;
  border: 1px solid rgba(152, 152, 152, 0.5);
  color: #7D7D7D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.list_message .content .msg-a1 .inpt input::placeholder {
  color: #7D7D7D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.list_message .content .msg-a3 {
  margin-top: 1.75rem;
}
.list_message .content .msg-a3 textarea {
  width: 100%;
  background: #FFF;
  border: none;
  padding: 0.6875rem 1.5rem;
  border-radius: 0.1875rem;
  border: 1px solid rgba(152, 152, 152, 0.5);
  color: #7D7D7D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  height: 10.3125rem;
}
.list_message .content .msg-a3 textarea::placeholder {
  color: #7D7D7D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.list_message .content .div_aghgha button,
.list_message .content .div_aghgha input[type="submit"] {
  width: 11.25rem;
  height: 3.125rem;
  background: #0C8DD9;
  color: #FFF;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  border: none;
  margin: 0 auto;
}
.list_service {
  padding-bottom: 7.5rem;
}
.list_service .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2.9375rem;
}
.list_service .grid_box .grid_item {
  padding-top: 3rem;
  padding-bottom: 2.8125rem;
  border-bottom: 1px solid rgba(36, 152, 247, 0.3);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_service .grid_box .grid_item:hover {
  background: #ECF4F9;
  box-shadow: 0 0 0.625rem 0.375rem rgba(36, 152, 247, 0.05);
}
.list_service .grid_box .grid_item a {
  display: inline-flex;
  padding-left: 3.125rem;
}
.list_service .grid_box .grid_item a .icon {
  padding-top: 0.625rem;
}
.list_service .grid_box .grid_item a .icon svg {
  width: 2.1313rem;
  height: 2.2248rem;
}
.list_service .grid_box .grid_item a .text {
  flex: 1;
  padding-left: 1.4375rem;
}
.list_service .grid_box .grid_item a .text .time {
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
}
.list_service .grid_box .grid_item a .text .tt {
  margin-top: 0.625rem;
  color: #343434;
  font-family: Montserrat;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
.list_service .grid_box .grid_item a .text .download_btn {
  display: flex;
  align-items: center;
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
.list_service .grid_box .grid_item a .text .download_btn .i {
  width: 2.8125rem;
  height: 2.8125rem;
  aspect-ratio: 1/1;
  background-color: #0C8DD9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}
.list_service .grid_box .grid_item a .text .download_btn .i svg {
  width: 1.375rem;
  height: 1.375rem;
}
.list_application {
  padding-bottom: 9.375rem;
}
.list_application .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.6875rem 3.125rem;
}
.list_application .grid_box .grid_item .tit {
  padding-top: 2.0625rem;
  color: #343434;
  font-family: Montserrat;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 2.8125rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_application .grid_box .grid_item:hover .tit {
  color: #0C8DD9;
}
.list_product {
  position: relative;
  padding-top: 6.875rem;
}
.list_product .left {
  padding-right: 2.8125rem;
}
.list_product .left .le_menu {
  position: sticky;
  top: 10rem;
}
.list_product .left .le_menu ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.list_product .left .le_menu ul li:nth-child(1) {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.list_product .left .le_menu ul li a {
  color: #000;
  font-family: Montserrat;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 6.25rem;
  padding-left: 6.25rem;
}
.list_product .left .le_menu ul li.active a,
.list_product .left .le_menu ul li:hover a {
  color: #0C8DD9;
}
.list_product .right {
  padding-left: 2.8125rem;
}
.list_product .right .product_list {
  padding-bottom: 7.5rem;
}
.list_product .right .product_list .title {
  color: #343434;
  font-family: Montserrat;
  font-size: 2.1875rem;
  font-weight: 600;
}
.list_product .right .product_list .product_box {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
}
.list_product .right .product_list .product_box .product_item {
  background: #F5F5F5;
  padding-top: 5.9375rem;
  padding-bottom: 5.9375rem;
  position: relative;
  overflow: hidden;
}
.list_product .right .product_list .product_box .product_item:hover .text {
  background: rgba(12, 141, 217, 0.8);
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 5rem;
}
.list_product .right .product_list .product_box .product_item:hover .text .tt {
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: unset;
  overflow: hidden;
}
.list_product .right .product_list .product_box .product_item .text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 75%;
  left: 0;
  right: 0;
  padding: 3.125rem 1.25rem 2rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.list_product .right .product_list .product_box .product_item .text .tt {
  color: #343434;
  font-family: Montserrat;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
.list_product .right .product_list .product_box .product_item .text .pp p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.1875rem;
  padding-left: 1.5625rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list_product .right .product_list .product_box .product_item .text .pp p i {
  font-size: 0.875rem;
  color: #fff;
}
.list_product .right .product_list .product_box .product_item .text .pp p a {
  color: #FFF;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  overflow: hidden;
  padding: 0.3125rem 0;
}
.list_product .right .product_list .product_box .product_item .text .pp p::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_product .right .product_list .product_box .product_item .text .pp p::before {
  content: '';
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 0.625rem;
  top: 1.25rem;
}
.list_product .right .product_list .product_box .product_item .text .pp p:hover a {
  color: #f08300;
}
.list_product .right .product_list .product_box .product_item .text .pp p:hover::after {
  width: 100%;
}
.list_about_one .left .all_title h3 {
  margin-top: 0;
  line-height: 1;
}
.list_about_one .right {
  padding-left: 3rem;
  padding-top: 5.1875rem;
  padding-bottom: 5.4375rem;
  padding-right: 3.3125rem;
  position: relative;
}
.list_about_one .right::before {
  content: '';
  width: 120%;
  height: 100%;
  background: #ECF4F9;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.list_about_one .right .text {
  color: #7D7D7D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  height: 30rem;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_about_one .right .text.is-expanded {
  -webkit-mask-image: none;
  mask-image: none;
}
.list_about_one .right .text h3 {
  margin-top: 1.875rem;
  font-size: 1.25rem;
  color: #7D7D7D;
  font-family: Montserrat;
  font-weight: 700;
}
.list_about_one .right .text h4 {
  font-size: 1.125rem;
  color: #7D7D7D;
  font-family: Montserrat;
  font-weight: 500;
  margin-top: 1.25rem;
}
.list_about_one .right .show_btn {
  cursor: pointer;
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  z-index: 99;
  color: #343434;
  text-align: center;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
}
.list_about_one .right .show_btn i {
  font-size: 1rem;
  color: #343434;
}
.list_about_two {
  padding-bottom: 7.5rem;
}
.list_about_two .content .grid_box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
}
.list_about_two .content .grid_box .grid_item {
  background: #FFF;
  box-shadow: 0 0 0.625rem 0.375rem rgba(36, 152, 247, 0.05);
  padding: 3.125rem 1.25rem 3.75rem;
}
.list_about_two .content .grid_box .grid_item .icon {
  width: 5.625rem;
  height: 5.625rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #0C8DD9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_about_two .content .grid_box .grid_item .icon img {
  width: 2.1875rem;
}
.list_about_two .content .grid_box .grid_item .tt {
  margin-top: 1.4375rem;
  color: #343434;
  text-align: center;
  font-family: Montserrat;
  font-size: 1.375rem;
  font-weight: 400;
}
.list_about_two .content .grid_box .grid_item:hover .icon {
  transform: rotateY(180deg);
}
.list_about_three {
  background: linear-gradient(0deg, #0C8DD9 -63.66%, rgba(12, 141, 217, 0) 73.68%), #05131E;
  padding-top: 7.5rem;
}
.list_about_three .all_title h3 {
  color: #fff;
  line-height: 1.5;
}
.list_about_three .content ul {
  position: relative;
  padding-bottom: 19.75rem;
}
.list_about_three .content ul::before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 50%;
}
.list_about_three .content ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.125rem 0;
  position: relative;
}
.list_about_three .content ul li::before {
  content: '';
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.list_about_three .content ul li .year,
.list_about_three .content ul li .text {
  width: 42%;
}
.list_about_three .content ul li .year {
  color: #FFF;
  font-family: Montserrat;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.1875rem;
  text-align: right;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_about_three .content ul li .text {
  color: #FFF;
  font-family: Montserrat;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
.list_about_three .content ul li:nth-child(even) .year {
  order: 2;
  text-align: left;
}
.list_about_three .content ul li:nth-child(even) .text {
  order: 1;
  text-align: right;
}
.list_about_three .content ul li:hover .year {
  color: #0C8DD9;
  font-family: Montserrat;
  font-size: 5.3125rem;
  font-weight: 600;
  line-height: 2.1875rem;
}
.list_about_three .content ul li:hover::before {
  background-color: #0C8DD9;
}
.list_about_four {
  background: linear-gradient(99deg, rgba(21, 73, 154, 0.15) -65.53%, rgba(21, 73, 154, 0) 102.23%);
  padding-top: 9.75rem;
  overflow: hidden;
}
.list_about_four .container {
  padding-right: 6.125rem;
}
.list_about_four .container .left {
  position: relative;
  z-index: 99;
}
.list_about_four .container .left .desc {
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.list_about_four .container .right .swiper_honor {
  position: relative;
  width: 33%;
  margin: 0 auto;
  height: 75vh;
}
.list_about_four .container .right .swiper_honor .swiper-slide {
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.list_about_four .container .right .swiper_honor .swiper-slide::after {
  width: 25.625vw;
  height: 20.83333vw;
  position: absolute;
  left: 50%;
  bottom: 0px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url("https://cloud-rd-1251007531.bcdn8.com/dawosi0518/uploads/rd/20260528/20260528131229.webp") no-repeat bottom;
  background-size: 25.625vw 20.83333vw;
  content: "";
  display: block;
}
.list_about_four .container .right .swiper_honor .swiper-slide img {
  width: auto;
  height: 19.27083vw;
  position: absolute;
  left: 50%;
  bottom: 18.90625vw;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}
.list_about_four .container .right .swiper_honor .swiper-slide.swiper-slide-active {
  opacity: 1;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  margin-top: 5.20833vw;
  position: relative;
  z-index: 3;
}
.list_about_four .container .right .swiper_honor .swiper-slide.swiper-slide-prev {
  opacity: 1;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  margin-top: 2.08333vw;
}
.list_about_four .container .right .swiper_honor .swiper-slide.swiper-slide-next {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  margin-top: 0px;
}
.list_about_five {
  padding-top: 7.5rem;
  padding-bottom: 8.125rem;
}
.list_about_five .content {
  position: relative;
}
.list_about_five .content .text {
  position: absolute;
  left: 7.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.list_about_five .content .text .all_title h3 {
  color: #fff;
  margin-top: 0;
}
.list_about_five .content .text .desc {
  width: 45%;
  margin-top: 1.875rem;
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
.ptb {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
.pt0 {
  padding-top: 0;
}
.pb0 {
  padding-bottom: 0;
}
.list_xgcp .swiper_xgpro {
  position: relative;
  overflow: hidden;
  margin: 0 -1.4375rem;
}
.list_xgcp .swiper_xgpro .swiper-slide {
  padding: 0 1.4375rem;
}
.list_xgcp .swiper_xgpro .swiper-slide .xgpro_box .tt {
  padding-top: 2.5rem;
  color: #343434;
  font-family: Montserrat;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2.5rem;
}
.list_xgcp .swiper_xgpro .btn_group {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 3.75rem;
  border: 1px solid #070707;
  position: absolute;
  right: 30%;
  top: 30%;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.list_xgcp .swiper_xgpro .btn_group .swiper-button-prev,
.list_xgcp .swiper_xgpro .btn_group .swiper-button-next {
  position: relative;
  margin-top: 0;
  top: unset;
  left: unset;
  right: unset;
  border: none;
  width: auto;
  height: auto;
  border-radius: unset;
  background-color: unset;
}
.list_xgcp .swiper_xgpro .btn_group .swiper-button-prev i,
.list_xgcp .swiper_xgpro .btn_group .swiper-button-next i {
  font-size: 1.125rem;
  color: #070707;
  font-weight: 500;
}
.list_appli .swiper_appli {
  position: relative;
  overflow: hidden;
  margin: 0 -1.75rem;
  padding-bottom: 3.125rem;
}
.list_appli .swiper_appli .swiper-slide {
  padding: 0 1.75rem;
}
.list_appli .swiper_appli .swiper-slide .appli_box .tit {
  padding-top: 1.875rem;
  color: #343434;
  font-family: Montserrat;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.list_appli .swiper_appli .swiper-pagination-bullet {
  width: 1.0625rem;
  height: 1.0625rem;
  border: none;
  background: #D9D9D9;
  margin: 0 0.375rem;
}
.list_appli .swiper_appli .swiper-pagination-bullet-active {
  background: #0C8DD9;
}
.list_appli .swiper_appli .swiper-pagination-bullet-active::before {
  display: none;
}
.list_appli .swiper_appli .swiper-pagination {
  justify-content: center;
}
.show_product1 {
  margin-top: 10rem;
}
.show_product1 .ajhhsd {
  color: #7D7D7D;
}
.show_product1 .ajhhsd a {
  color: #7D7D7D;
}
.show_product1 .row {
  align-items: center;
}
.show_product1 .left .title {
  color: #343434;
  font-family: Montserrat;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.8125rem;
}
.show_product1 .left .desc {
  color: #7D7D7D;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.show_product1 .left .desc p {
  position: relative;
  padding-left: 1.875rem;
}
.show_product1 .left .desc p::before {
  content: '';
  display: block;
  width: 0.1875rem;
  height: 0.1875rem;
  border-radius: 50%;
  background: #7D7D7D;
  position: absolute;
  left: 0.75rem;
  top: 1rem;
}
.show_product1 .left .btn_box {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.show_product1 .left .btn_box .btn {
  display: flex;
  align-items: center;
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2.1875rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.show_product1 .left .btn_box .btn:hover {
  color: #0C8DD9;
}
.show_product1 .left .btn_box .btn .i {
  width: 2.8125rem;
  height: 2.8125rem;
  background: #0C8DD9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
}
.show_product1 .left .btn_box .btn .i svg {
  width: 1.375rem;
  height: 1.375rem;
}
.show_product1 .right {
  padding-left: 5.5rem;
}
.show_product1 .right .swiper_moreimg {
  position: relative;
  overflow: hidden;
}
.show_product1 .right .swiper_moreimg .swiper-button-prev {
  left: 2.75rem;
}
.show_product1 .right .swiper_moreimg .swiper-button-next {
  right: 2.75rem;
}
.show_product1 .right .swiper_moreimg .swiper-button-prev,
.show_product1 .right .swiper_moreimg .swiper-button-next {
  background: unset;
  border: none;
  width: 1.9688rem;
  height: 3.9375rem;
  border-radius: none;
}
.show_product1 .right .swiper_moreimg .swiper-button-prev svg,
.show_product1 .right .swiper_moreimg .swiper-button-next svg {
  width: 1.9688rem;
  height: 3.9375rem;
}
.show_procontent .content h3 {
  color: #343434;
  font-family: Montserrat;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 2.1875rem;
  margin-bottom: 1.25rem;
}
.show_procontent .content .p {
  color: #7D7D7D;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.show_procontent .grid_box2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.4375rem 2.5rem;
}
.show_procontent .grid_box2 .grid_item {
  background: #FFF;
  box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, 0.05);
  padding: 1.375rem 2.25rem 1.5625rem 1.625rem;
  display: flex;
  align-items: center;
}
.show_procontent .grid_box2 .grid_item .over {
  width: 45%;
}
.show_procontent .grid_box2 .grid_item .text {
  flex: 1;
  padding-left: 2.375rem;
}
.show_procontent .grid_box2 .grid_item .text .tt {
  color: #434343;
  font-family: Montserrat;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.show_procontent .grid_box2 .grid_item .text .pp {
  color: #7D7D7D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.show_procontent .table_box {
  overflow-x: auto;
}
.show_procontent .table_box table {
  width: 100%;
}
.show_procontent .table_box table tr td {
  border: none;
  border-bottom: 1px solid #DADADA;
}
.show_procontent .table_box table tr td:nth-child(1) {
  color: #4E4E4E;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 400;
}
.show_procontent .table_box table tr td:nth-child(2) {
  color: #7D7D7D;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 400;
}
.show_procontent .swiper_proys {
  position: relative;
  overflow: hidden;
  padding-bottom: 4.0625rem;
  margin: 4.375rem -1.875rem 0;
}
.show_procontent .swiper_proys .swiper-slide {
  padding: 0 1.875rem;
}
.show_procontent .swiper_proys .swiper-slide .proys_box .num {
  width: 6.25rem;
  height: 6.25rem;
  aspect-ratio: 1/1;
  background-color: #0C8DD9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #FFF;
  font-family: Montserrat;
  font-size: 2.5rem;
  font-weight: 400;
  position: relative;
  z-index: 9;
}
.show_procontent .swiper_proys .swiper-slide .proys_box .cont {
  margin-top: -3.125rem;
  padding: 6.1875rem 2.1875rem;
  height: 22.25rem;
  background: #FFF;
  box-shadow: 0 0 1.25rem 0.1875rem rgba(12, 141, 217, 0.05);
}
.show_procontent .swiper_proys .swiper-slide .proys_box .cont .tt {
  color: #434343;
  font-family: Montserrat;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.show_procontent .swiper_proys .swiper-slide .proys_box .cont .pp {
  margin-top: 0.6875rem;
  color: #7D7D7D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.show_procontent .swiper_proys .swiper-pagination-bullet {
  width: 1.0625rem;
  height: 1.0625rem;
  border: none;
  background: #D9D9D9;
  margin: 0 0.375rem;
}
.show_procontent .swiper_proys .swiper-pagination-bullet-active {
  background: #0C8DD9;
}
.show_procontent .swiper_proys .swiper-pagination-bullet-active::before {
  display: none;
}
.show_procontent .swiper_proys .swiper-pagination {
  justify-content: center;
}
.show_procontent .lc_box {
  padding-top: 8rem;
  padding-bottom: 10.3125rem;
}
.show_procontent .lc_box ul li {
  width: 15rem;
  position: absolute;
  text-align: center;
}
.show_procontent .lc_box ul li .icon {
  width: 7.4375rem;
  height: 7.4375rem;
  background: #0C8DD9;
  box-shadow: 0 0.625rem 0.25rem rgba(12, 141, 217, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.show_procontent .lc_box ul li .icon img {
  width: 45%;
}
.show_procontent .lc_box ul li .tt {
  padding-top: 0.875rem;
  display: inline-block;
  color: #424242;
  text-align: center;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}
.show_procontent .lc_box ul li .tt p {
  color: #424242;
  font-family: Montserrat;
  font-size: 0.75rem;
  font-weight: 500;
}
.show_procontent .lc_box ul li:nth-child(1) {
  top: 6.25rem;
  left: 20%;
}
.show_procontent .lc_box ul li:nth-child(2) {
  top: 6.25rem;
  left: 40%;
}
.show_procontent .lc_box ul li:nth-child(3) {
  top: 6.25rem;
  left: 60%;
}
.show_procontent .lc_box ul li:nth-child(4) {
  display: flex;
  align-items: center;
  top: 40%;
  left: 89%;
  text-align: left;
}
.show_procontent .lc_box ul li:nth-child(4) .tt {
  flex: 1;
  text-align: left;
  padding-left: 0.875rem;
}
.show_procontent .lc_box ul li:nth-child(5) {
  top: 65%;
  left: 60%;
}
.show_procontent .lc_box ul li:nth-child(6) {
  top: 65%;
  left: 40%;
}
.show_procontent .lc_box ul li:nth-child(7) {
  top: 65%;
  left: 20%;
}
.show_procontent .lc_box ul li:nth-child(8) {
  display: flex;
  align-items: center;
  top: 40%;
  left: -5%;
  text-align: left;
}
.show_procontent .lc_box ul li:nth-child(8) .tt {
  order: 1;
  flex: 1;
  padding-right: 0.875rem;
}
.show_procontent .lc_box ul li:nth-child(8) .icon {
  order: 2;
}
.show_procontent .swiper_procont {
  position: relative;
  overflow: hidden;
}
.show_procontent .swiper_procont .procont_box {
  padding-top: 4.8125rem;
  padding-bottom: 1.875rem;
}
.show_procontent .swiper_procont .procont_box .img {
  width: 55%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.show_procontent .swiper_procont .procont_box .img .i i {
  display: inline-block;
  width: 1.0625rem;
  height: 1.0625rem;
  border-radius: 50%;
  background-color: #E18016;
  position: absolute;
  z-index: 3;
}
.show_procontent .swiper_procont .procont_box .img .i i svg {
  position: absolute;
}
.show_procontent .swiper_procont .procont_box .img .i i::before {
  content: '';
  display: block;
  width: 0.3542rem;
  height: 0.3542rem;
  border-radius: 0.3542rem;
  background: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.show_procontent .swiper_procont .procont_box .img .i1 {
  width: 90%;
}
.show_procontent .swiper_procont .procont_box .img .i2 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.show_procontent .swiper_procont .procont_box ul li {
  position: absolute;
  width: 20.5625rem;
  min-height: 10rem;
  border: 1px solid #D5D5D5;
  background: #FFF;
  padding: 1.25rem 1.375rem;
}
.show_procontent .swiper_procont .procont_box ul li .tt {
  color: #434343;
  font-family: Montserrat;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375rem;
}
.show_procontent .swiper_procont .procont_box ul li .pp {
  color: #7D7D7D;
  font-family: Montserrat;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375rem;
}
.show_procontent .swiper_procont .swiper-pagination-bullet {
  width: 1.0625rem;
  height: 1.0625rem;
  border: none;
  background: #7D7D7D;
  margin: 0 0.375rem;
}
.show_procontent .swiper_procont .swiper-pagination-bullet-active {
  background: #0C8DD9;
}
.show_procontent .swiper_procont .swiper-pagination-bullet-active::before {
  display: none;
}
.show_procontent .swiper_procont .swiper-pagination {
  justify-content: center;
}
.show_product2 {
  padding-top: 10rem;
}
.show_product2 .ajhhsd {
  color: #7D7D7D;
}
.show_product2 .ajhhsd a {
  color: #7D7D7D;
}
.show_product2 .content .title {
  margin-top: 5.625rem;
  color: #343434;
  text-align: center;
  font-family: Montserrat;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.8125rem;
}
.show_product2 .content .swiper_box .swiper-button-prev,
.show_product2 .content .swiper_box .swiper-button-next {
  background: unset;
  border: none;
  width: 1.9688rem;
  height: 3.9375rem;
  border-radius: none;
}
.show_product2 .content .swiper_box .swiper-button-prev svg,
.show_product2 .content .swiper_box .swiper-button-next svg {
  width: 1.9688rem;
  height: 3.9375rem;
}
.show_product2 .content .swiper_proimg2 {
  position: relative;
  overflow: hidden;
  margin: 0 -1.375rem;
}
.show_product2 .content .swiper_proimg2 .swiper-slide {
  padding: 0 1.375rem;
}
.show_product2 .content .text {
  color: #7D7D7D;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.show_product2 .content .btn_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.show_product2 .content .btn_box .btn {
  display: flex;
  align-items: center;
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2.1875rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.show_product2 .content .btn_box .btn:hover {
  color: #0C8DD9;
}
.show_product2 .content .btn_box .btn .i {
  width: 2.8125rem;
  height: 2.8125rem;
  background: #0C8DD9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
}
.show_product2 .content .btn_box .btn .i svg {
  width: 1.375rem;
  height: 1.375rem;
}
.show_procontent2 .content .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.625rem;
}
.show_procontent2 .content .grid_box .grid_item {
  padding: 2.25rem;
  background: #FFF;
  box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, 0.05);
}
.show_procontent2 .content .grid_box .grid_item .top_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.3125rem;
  border-bottom: 1px solid #E3E3E3;
}
.show_procontent2 .content .grid_box .grid_item .top_grid .over {
  border: 1px solid #E3E3E3;
}
.show_procontent2 .content .grid_box .grid_item .top_grid .tt {
  padding: 0.8125rem 0.625rem 1.6875rem;
  color: #414141;
  text-align: center;
  font-family: Montserrat;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 6.5rem;
}
.show_procontent2 .content .grid_box .grid_item .bottom_text {
  padding-top: 1.75rem;
}
.show_procontent2 .content .grid_box .grid_item .bottom_text .tt {
  color: #434343;
  font-family: Montserrat;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
.show_procontent2 .content .grid_box .grid_item .bottom_text .pp {
  color: #7D7D7D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
/* 鼠标跟随 --> */
#c-followDot {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: transparent;
  z-index: 999;
  pointer-events: none;
}
@media (max-width: 990px) {
  #c-followDot {
    display: none;
  }
}
#c-followDot .c-hover {
  color: #FFF;
  font-family: "Noto Serif SC";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 50%;
  width: 5.625rem;
  height: 5.625rem;
  text-align: center;
  -webkit-transform: scale(0, 0) translate(-50%, -50%);
  -moz-transform: scale(0, 0) translate(-50%, -50%);
  -ms-transform: scale(0, 0) translate(-50%, -50%);
  -o-transform: scale(0, 0) translate(-50%, -50%);
  transform: scale(0, 0) translate(-50%, -50%);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
#c-followDot.c-active .c-hover {
  -webkit-transform: scale(1, 1) translate(-50%, -50%);
  -moz-transform: scale(1, 1) translate(-50%, -50%);
  -ms-transform: scale(1, 1) translate(-50%, -50%);
  -o-transform: scale(1, 1) translate(-50%, -50%);
  transform: scale(1, 1) translate(-50%, -50%);
}
#c-followDot.c-active.on .c-hover {
  display: none;
}
.channel_pro_three {
  padding-top: 5rem;
  padding-bottom: 6rem;
  position: relative;
  mask: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}
.channel_pro_three::before {
  content: '';
  display: block;
  width: 86.5rem;
  height: 19.375rem;
  border-radius: 86.5rem;
  opacity: 0.1;
  background: rgba(12, 141, 217, 0.5);
  filter: blur(9.375rem);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.channel_pro_three .all_title {
  position: relative;
  z-index: 3;
}
.channel_pro_three .content {
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.channel_pro_three .content .m_show {
  display: none;
}
.channel_pro_three .content .picMarquee-left {
  -webkit-mask: -webkit-linear-gradient(left, transparent, #000 15%, #000 85%, transparent);
  mask: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.channel_pro_three .content .picList {
  display: inline-flex;
  gap: 1.75rem;
}
.channel_pro_three .content .picList li {
  width: 14.875rem;
}
.channel_pro_three .content .picList li .pic {
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem;
  border-radius: 1.25rem;
  background: #FFF;
  box-shadow: 0 0.25rem 1.25rem 0 rgba(25, 46, 120, 0.1);
  overflow: hidden;
  height: 6rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.channel_pro_three .content .picList li .pic img {
  width: auto;
  height: 100%;
}
.channel_pro_three .content .picList li .pic:hover {
  border-color: rgba(25, 46, 120, 0.5);
}
.channel_pro_three .content .swiper_coop,
.channel_pro_three .content .swiper_coop2 {
  position: relative;
  padding-bottom: 3rem;
  padding-top: 1rem;
  margin: -0.3125rem;
}
.channel_pro_three .content .swiper_coop .swiper-slide,
.channel_pro_three .content .swiper_coop2 .swiper-slide {
  padding: 0.3125rem;
}
.channel_pro_three .content .swiper_coop .swiper-slide .coop_box,
.channel_pro_three .content .swiper_coop2 .swiper-slide .coop_box {
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  overflow: hidden;
  height: 5rem;
  text-align: center;
  padding: 10px 1rem;
}
.channel_pro_three .content .swiper_coop .swiper-slide .coop_box img,
.channel_pro_three .content .swiper_coop2 .swiper-slide .coop_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.channel_pro_three .content .swiper_coop .swiper-pagination,
.channel_pro_three .content .swiper_coop2 .swiper-pagination {
  justify-content: center;
}
.channel_pro_three .content .swiper_coop .swiper-pagination-bullet.swiper-pagination-bullet-active,
.channel_pro_three .content .swiper_coop2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0C8DD9;
}
.list_service .servce_box {
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.list_service .servce_box h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
.list_service .servce_box ul li {
  position: relative;
  padding-left: 1.375rem;
}
.list_service .servce_box ul li::before {
  content: '';
  display: block;
  width: 0.1875rem;
  height: 0.1875rem;
  border-radius: 50%;
  background: #7D7D7D;
  position: absolute;
  left: 0.75rem;
  top: 1rem;
}
.list_faq_box.bgf8 {
  background: #f8f8f8;
}
.list_faq_box.bgf8 ul li {
  background-color: #fff;
}
.list_faq_box ul li {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-top: 1.625rem;
  padding-bottom: 1.625rem;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  border-radius: 1.25rem;
  background: #f8f8f8;
}
.list_faq_box ul li .ii i {
  font-size: 1.25rem;
  color: #6D6D6D;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_faq_box ul li .text h3 {
  color: #2A2926;
  font-size: 1.25rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
}
.list_faq_box ul li .text h3 span {
  display: inline-block;
  width: 2.1875rem;
  height: 2.1875rem;
  line-height: 2.1875rem;
  border-radius: 50%;
  background-color: rgba(12, 141, 217, 0.5);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-right: 1rem;
}
.list_faq_box ul li .text h3 .t {
  flex: 1;
}
.list_faq_box ul li .text .p {
  margin-top: 1.0625rem;
  color: #656565;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6875rem;
  display: flex;
}
.list_faq_box ul li .text .p span {
  display: inline-block;
  width: 2.1875rem;
  height: 2.1875rem;
  line-height: 2.1875rem;
  border-radius: 50%;
  background-color: rgba(225, 128, 22, 0.5);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-right: 1rem;
}
.list_faq_box ul li .text .p .pp {
  flex: 1;
}
.list_faq_box ul li .text .bottom {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
}
.list_faq_box ul li .text .bottom u {
  display: inline-block;
  width: 1.6875rem;
}
.list_faq_box ul li .text .bottom span {
  color: #6D6D6D;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin-left: 0.9375rem;
}
.list_faq_box ul li .text .bottom i {
  font-size: 1.6875rem;
  color: #6D6D6D;
  vertical-align: middle;
}
.list_faq_box ul li.active {
  border-radius: 1.25rem;
  border-bottom: none;
}
