@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: 14.8125rem;
  outline: none;
  font-weight: 500;
}
.p_top {
  position: absolute;
  top: -6.25rem;
}
.bg {
  background: #004DA1;
}
.c {
  color: #004DA1;
}
.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: #004DA1;
  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: #004DA1;
  color: #fff;
}
.pagination > li.active a {
  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: #f2f5ff;
  display: none;
}
.foot-fot .foota2 {
  font-size: 1rem;
  color: #171B17;
}
.foot-fot .foota2 a {
  font-size: 1rem;
  color: #171B17;
}
/* 禁止缩放表单 */
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: #004DA1;
}
.search_more:hover::before {
  background: #004DA1;
}
.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;
}
.er-ul {
  position: absolute;
  width: 26.625rem;
  left: 50%;
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.1);
  right: 0;
  top: calc(100% + 0.875rem);
  z-index: 999;
  background: #fff;
  transition: 400ms ease-in-out;
  transform: scaleY(0) translateX(-50%);
  transform-origin: top center;
  opacity: 0;
  padding: 2.375rem 2.3125rem 1.6875rem 2.0625rem;
}
.er-ul li:not(:nth-last-child(1)) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.er-ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(23, 27, 23, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 4.375rem;
  padding: 0 1.875rem 0 1.75rem;
}
.er-ul li a i {
  color: rgba(23, 27, 23, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 4.375rem;
}
.er-ul li:hover {
  border-bottom: none;
}
.er-ul li:hover a {
  border-radius: 0.625rem;
  background-color: #004DA1;
  color: #fff;
}
.er-ul li:hover a i {
  color: #fff;
}
.er-ul li:hover .er-ul {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
}
.er-ul li:nth-child(1) {
  padding-top: 0;
}
.er-ul li:last-child {
  padding-bottom: 0;
}
header .center > ul > li:hover .er-ul {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
}
header .nav_ul > li:hover .er-ul {
  transform: none;
  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;
}
.ptb {
  padding: 7.5rem 0;
}
.pt0 {
  padding-top: 0;
}
.pb0 {
  padding-bottom: 0;
}
body {
  --container: 13.125rem;
}
@media (max-width: 1600px) {
  body {
    --container: 10rem;
  }
}
@media (max-width: 1440px) {
  body {
    --container: 12rem;
  }
}
@media (max-width: 1366px) {
  body {
    --container: 7rem;
  }
}
@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: #004DA1;
}
.searchbox {
  border-color: #004DA1;
}
@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 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(0, 0, 0, 0.1);
  position: relative;
}
.m-bm-nav > li > a {
  display: block;
  line-height: 50px;
  font-size: 14px;
  color: #171B17;
  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: 14px;
  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: #171B17;
}
.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 {
  color: #919191;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.75rem;
}
.ajhhsd a {
  color: #919191;
}
.ajhhsd a:hover {
  color: #004DA1;
}
.ajhhsd span {
  padding: 0 0.3em;
}
.ajhhsd span:last-child {
  display: none;
}
.xw_ny_banner {
  background: #004DA1;
  -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: #004DA1;
  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;
}
@media (max-width: 990px) {
  body {
    padding: 60px 0 0 !important;
  }
}
/* 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 / 110);
  }
  .container {
    padding: 0 var(--container);
  }
}
@media (max-width: 1366px) {
  body,
  html {
    font-size: calc(100vw / 100);
  }
  .container {
    padding: 0 var(--container);
  }
}
@media (max-width: 1280px) {
  body,
  html {
    font-size: calc(100vw / 105);
  }
  .container {
    padding: 0 var(--container);
  }
}
@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: #004DA1;
  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: #004DA1;
}
.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.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  padding: 0;
  border: none;
  background: transparent;
  margin-bottom: 1.4375rem;
  position: relative;
  border: none !important;
}
.rightfix li a {
  font-size: 1.375rem;
  display: block;
  color: #fff;
  background: #004DA1;
  border-radius: unset;
}
.rightfix li a svg {
  width: 1.6875rem;
  height: 1.6875rem;
}
.rightfix li a svg path {
  stroke: #fff;
}
.rightfix li:hover a {
  background: #e60012;
  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.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 {
  position: fixed;
  line-height: 6.25rem;
  top: 1.375rem;
  left: 3.75rem;
  width: calc(100% - 7.5rem);
  z-index: 1001;
  background: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header .container {
  padding: 0 1.875rem 0 2.5rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
@media (max-width: 990px) {
  header {
    display: none;
  }
}
header .logo img {
  height: 2.25rem;
}
header .logo img img {
  filter: brightness(0) invert(1);
}
header .logo_text {
  color: #171B17;
  font-size: 1.375rem;
  font-weight: 500;
  margin-left: 0.75rem;
}
header .ds1 {
  padding-left: 0.9375rem;
}
header .ds1 .iconfont {
  font-size: 1.75rem;
  display: block;
  font-weight: 500;
  color: #171B17;
}
header .lanuage {
  padding-right: 0.9375rem;
  display: block;
  position: relative;
}
header .lanuage::before {
  content: '';
  display: block;
  width: 1px;
  height: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .lanuage a {
  font-size: 1.125rem;
  color: #171B17;
  font-weight: 400;
  display: flex;
  align-items: center;
}
header .lanuage a .iconfont {
  font-size: 1.5rem;
  padding-right: 0.4375rem;
}
header .lanuage a.c {
  color: #004DA1;
}
header .lanuage .yy-sec {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 5.5rem;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #e6e6e6;
  padding: 0.5rem 1rem;
  display: none;
  text-align: center;
}
header .lanuage .yy-sec a {
  color: #333;
  display: block;
  line-height: 1.75em;
  font-size: 1rem;
  font-weight: 500;
}
header .lanuage .yy-sec a + a {
  border-top: 1px solid #333;
}
header .lanuage .yy-sec a:hover {
  color: #004DA1;
}
header .center > ul > li {
  float: left;
  padding: 0 2.1875rem;
}
header .center > ul > li > a {
  font-size: 1.125rem;
  color: #171B17;
  position: relative;
}
header .center > ul > li:hover > a {
  color: #004DA1;
}
header .center > ul > li.active > a {
  color: #004DA1;
}
header.active {
  width: 100%;
  top: 0;
  left: 0;
}
header.active .container {
  padding: 0 6%;
}
header.active .center > ul > li > a {
  color: #171B17;
}
header.active .center > ul > li.active > a,
header.active .center > ul > li:hover > a {
  color: #004DA1;
}
header.active .lanuage a {
  color: #171B17;
}
header.active .lanuage::before {
  background-color: rgba(84, 91, 90, 0.2);
}
header.active .ds1 .iconfont {
  color: #171B17;
}
header.active .ds1:hover {
  cursor: pointer;
}
footer {
  padding-top: 6.0625rem;
  background: #F2F5FF;
}
footer .foot_top {
  padding-bottom: 10rem;
}
footer .foot_top .left {
  color: #fff;
  width: 25%;
}
footer .foot_top .left .logo {
  width: 14.0276rem;
}
footer .foot_top .left .title {
  margin-top: 2.3125rem;
  color: #171B17;
  font-family: "Noto Sans SC";
  font-size: 2rem;
  font-weight: 700;
}
footer .foot_top .left .subtit {
  margin-top: 0.3125rem;
  color: #171B17;
  font-family: Poppins;
  font-size: 1.25rem;
  font-weight: 500;
}
footer .foot_top .right {
  width: 40%;
  display: flex;
}
footer .foot_top .right .footnav {
  padding-right: 1.75rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
footer .foot_top .right .footnav li:hover .tt,
footer .foot_top .right .footnav li.active .tt {
  color: #004DA1;
}
footer .foot_top .right .footnav li .tt {
  color: #171B17;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.5;
  display: block;
  padding: .8rem 0;
}
footer .foot_top .right .footnav2 {
  padding-left: 2.5rem;
}
footer .foot_top .right .footnav2 .subfootnav {
  display: none;
}
footer .foot_top .right .footnav2 .subfootnav.active {
  display: block;
}
footer .foot_top .right .footnav2 .subfootnav .subfootli > a {
  color: rgba(23, 27, 23, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin: .875rem 0;
  display: block;
}
footer .foot_top .right .footnav2 .subfootnav .subfootli > a:hover {
  color: #004DA1;
}
footer .foot_top .foot-contact ul li p {
  color: rgba(23, 27, 23, 0.7);
  font-family: Poppins;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  max-width: 18.75rem;
}
footer .foot_top .foot-contact ul li p span {
  color: #004DA1;
  font-family: Poppins;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.5rem;
}
footer .foot_top .foot-contact .ewm {
  margin-top: 0.5625rem;
}
footer .foot_top .foot-contact .ewm .img {
  width: 8.625rem;
}
footer .foot_top .foot-contact .ewm .tt {
  width: 8.625rem;
  padding: 0.5625rem 0;
  color: #171B17;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
footer .copyright {
  background: #004DA1;
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.125rem;
  padding: 1.125rem 0;
}
footer .copyright a {
  color: #fff;
}
footer .copyright p {
  color: #fff;
}
footer .copyright span {
  color: rgba(255, 255, 255, 0.1);
}
footer .copyright .left span:nth-last-child(1) {
  display: none;
}
@-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 {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -moz-transform: scale(1.1);
    transform: scale(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 {
  0% {
    -o-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -o-transform: scale(1.1);
    transform: scale(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 .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.banner .hover .p1 {
  color: #FFF;
  font-size: 4rem;
  font-weight: 700;
  line-height: 7.0625rem;
}
.banner .hover .p2 {
  color: #FFF;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 2.75rem;
}
.banner .hover2 {
  position: absolute;
  right: 10%;
  bottom: 3.125rem;
}
.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 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
.banner .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.625rem;
  border: 1px solid #fff;
  opacity: unset;
  background: unset;
}
.banner .scroll {
  position: absolute;
  left: 0%;
  bottom: 2.8125rem;
  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 {
  width: 0.78rem;
  height: 0.3862rem;
  border-radius: unset;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  background: #004DA1;
  opacity: 1;
  margin: 0 0.25rem;
  border: unset;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #E60012;
  border: unset;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.neibanner {
  position: relative;
}
.neibanner .neibanner_txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.neibanner .neibanner_txt h3 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  background: linear-gradient(180deg, #FFF 29.65%, #E2E9FF 62.83%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.neibanner .neibanner_txt p {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 2.75rem;
  background: linear-gradient(180deg, #FFF 29.65%, #E2E9FF 62.83%);
  text-transform: capitalize;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.neibanner .mbxdh {
  position: absolute;
  bottom: 1.375rem;
}
.neibanner .mbxdh .ajhhsd {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.75rem;
}
.neibanner .mbxdh .ajhhsd a {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.75rem;
}
.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: #171B17;
  font-size: 1.5rem;
  font-weight: 500;
  display: inline-block;
  position: relative;
  padding-left: 1.875rem;
  text-transform: uppercase;
}
.all_title p::before {
  content: '';
  display: block;
  width: 1.3125rem;
  height: 0.625rem;
  background-image: url('https://cloud-1251007531.bcdn8.com/xinan0523/uploads/20260523/b65c4b68f97c06b74b8d0f347bf59758.svg');
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.all_title h3 {
  color: #171B17;
  font-size: 2.5rem;
  font-weight: 700;
}
.all_more {
  color: #004DA1;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  padding: 0.875rem 2.875rem;
  display: inline-block;
  position: relative;
  z-index: 9;
}
.all_more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border: 1px solid #004DA1;
  transform: skewX(-20deg);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.all_more:hover {
  color: #fff;
}
.all_more:hover::before {
  background-color: #004DA1;
}
.index_one {
  padding-top: 6.25rem;
}
.index_one .desc {
  width: 75%;
  margin: 1.5625rem auto;
  color: rgba(23, 27, 23, 0.7);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.index_two {
  padding-top: 6.25rem;
  position: relative;
}
.index_two .container {
  padding: 0 3.75rem;
}
.index_two .innovate_list .innovate_item {
  position: sticky;
  overflow: hidden;
  top: calc(var(--header_h) + 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.4375rem;
  background: #F2F5FF;
}
.index_two .innovate_list .innovate_item .over {
  width: 60%;
}
.index_two .innovate_list .innovate_item .text {
  flex: 1;
  padding: 0 9.375rem 0 7.1875rem;
}
.index_two .innovate_list .innovate_item .text h3 {
  color: #004DA1;
  font-size: 2rem;
  font-weight: 500;
}
.index_two .innovate_list .innovate_item .text .p {
  margin-top: 0.9375rem;
  color: rgba(23, 27, 23, 0.7);
  /* text-align: justify; */
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.index_two .innovate_list .innovate_item .text .num {
  position: absolute;
  bottom: 2.5rem;
  right: 2.75rem;
  color: rgba(23, 27, 23, 0.2);
  font-family: Poppins;
  font-size: 1.25rem;
  font-weight: 500;
}
.index_two .innovate_list .innovate_item .text .num span {
  color: #E60012;
  font-family: Poppins;
  font-size: 1.6875rem;
  font-weight: 500;
}
.index_three {
  padding-bottom: 6.6875rem;
}
.index_three .left ul {
  border-left: 1px solid rgba(84, 91, 90, 0.2);
}
.index_three .left ul li {
  display: flex;
  padding: 1.375rem 0 1.375rem 2.5rem;
}
.index_three .left ul li .icon {
  width: 2rem;
  height: 2rem;
}
.index_three .left ul li .icon .icon2 {
  display: none;
}
.index_three .left ul li .text {
  flex: 1;
  margin-left: 1.5625rem;
}
.index_three .left ul li .text h3 {
  color: #636363;
  font-size: 1.5rem;
  font-weight: 500;
}
.index_three .left ul li .text .p {
  margin-top: 1rem;
  color: rgba(23, 27, 23, 0.7);
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}
.index_three .left ul li .text .bottom {
  display: none;
}
.index_three .left ul li.active .icon .icon2,
.index_three .left ul li:hover .icon .icon2 {
  display: block;
}
.index_three .left ul li.active .icon .icon1,
.index_three .left ul li:hover .icon .icon1 {
  display: none;
}
.index_three .left ul li.active .text h3,
.index_three .left ul li:hover .text h3 {
  color: #004DA1;
}
.index_three .left ul li.active .bottom,
.index_three .left ul li:hover .bottom {
  display: block;
}
.index_three .right .ri_box .ri_item {
  display: none;
  position: relative;
}
.index_three .right .ri_box .ri_item.active {
  display: block;
}
.index_three .right .ri_box .ri_item ul li {
  display: flex;
  align-items: center;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(0.125rem 5rem);
  padding: 0.5rem 0.5625rem;
  position: absolute;
}
.index_three .right .ri_box .ri_item ul li .dian {
  font-size: 0.75rem;
  color: #fff;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #004DA1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.3125rem;
  margin-left: 0.3125rem;
}
.index_three .right .ri_box .ri_item ul li .dian i {
  display: inline-block;
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  background-color: #fff;
}
.index_three .right .ri_box .ri_item ul li .t {
  white-space: nowrap;
  color: #171B17;
  font-size: 0.875rem;
  font-weight: 400;
}
.channel_box {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  z-index: 99;
}
.channel_box.active {
  position: sticky;
  top: 6.25rem;
}
.channel_box .channel_list {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
.channel_box .channel_list .channel_link a {
  color: rgba(23, 27, 23, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 4rem;
  padding: 0 1.5625rem;
  position: relative;
}
.channel_box .channel_list .channel_link a::before {
  content: '';
  display: block;
  width: 0%;
  height: 0.125rem;
  background-color: #004DA1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.channel_box .channel_list .channel_link.active a,
.channel_box .channel_list .channel_link:hover a {
  color: #004DA1;
}
.channel_box .channel_list .channel_link.active a::before,
.channel_box .channel_list .channel_link:hover a::before {
  width: 100%;
}
.list_about_one {
  padding-top: 6.9375rem;
  overflow: hidden;
}
.list_about_one .desc {
  color: rgba(23, 27, 23, 0.7);
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2.5rem;
}
.list_about_one .swiper_aboutimg {
  position: relative;
  overflow: hidden;
  padding-bottom: 1.875rem;
}
.list_about_one .swiper_aboutimg .swiper-pagination {
  justify-content: center;
}
.list_about_two {
  padding-bottom: 8.75rem;
  background-color: #004DA1;
}
.list_about_two .all_title p,
.list_about_two .all_title h3 {
  color: #fff;
}
.list_about_two .left {
  width: 34%;
  padding-right: 8.75rem;
}
.list_about_two .left .cont ul {
  display: grid;
  gap: 2.5rem;
}
.list_about_two .left .cont ul li {
  display: flex;
  align-items: center;
}
.list_about_two .left .cont ul li .icon {
  width: 4rem;
  height: 4rem;
}
.list_about_two .left .cont ul li .icon img {
  filter: brightness(0) invert(1);
}
.list_about_two .left .cont ul li .text {
  flex: 1;
  padding-left: 3.9375rem;
}
.list_about_two .left .cont ul li .text .tt {
  color: #fff;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 2.75rem;
}
.list_about_two .left .cont ul li .text .pp {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.list_about_two .right {
  overflow: hidden;
  width: 66%;
  padding-left: 6.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.list_about_two .right .swiper_history {
  height: 35rem;
  position: relative;
  overflow: hidden;
}
.list_about_two .right .swiper_history .active .history_box {
  opacity: 1 !important;
}
.list_about_two .right .swiper_history .active .history_box .year {
  color: #004DA1;
}
.list_about_two .right .swiper_history .history_box .year {
  color: #fff;
  text-align: justify;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
}
.list_about_two .right .swiper_history .history_box .cont {
  margin-top: 0.625rem;
  color: #fff;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.5rem;
}
.list_about_two .right .swiper_history .history_box .cont p {
  position: relative;
  padding-left: 1.875rem;
}
.list_about_two .right .swiper_history .history_box .cont p::before {
  content: '';
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: #ffba00;
  position: absolute;
  left: 0;
  top: 0.625rem;
}
.list_about_two .right .history_boxs {
  height: 26rem;
  overflow-y: auto;
  display: grid;
  gap: 3.125rem;
}
.list_about_two .right .history_boxs::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  background-color: rgba(255, 255, 255, 0.1);
  width: 0.25rem;
  height: 10.25rem;
  position: absolute;
}
.list_about_two .right .history_boxs::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0.25rem;
  /*高宽分别对应横竖滚动条的尺寸*/
}
.list_about_two .right .history_boxs::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  display: block;
  width: 0.625rem;
  height: 2.1875rem;
  background: #fff;
}
.list_about_two .right .history_boxs .history_box.active,
.list_about_two .right .history_boxs .history_box:hover {
  cursor: pointer;
  opacity: 1 !important;
}
.list_about_two .right .history_boxs .history_box.active .year,
.list_about_two .right .history_boxs .history_box:hover .year {
  font-weight: 600;
}
.list_about_two .right .history_boxs .history_box .year {
  color: #fff;
  text-align: justify;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
}
.list_about_two .right .history_boxs .history_box .cont {
  margin-top: 0.625rem;
  color: #fff;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.5rem;
}
.list_about_two .right .history_boxs .history_box .cont h3 {
  color: #fff;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.5rem;
}
.list_about_two .right .history_boxs .history_box .cont h3 span {
  color: #fff;
  text-align: justify;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
}
.list_about_history {
  padding-top: 8rem;
  padding-bottom: 7.0625rem;
  background-color: #004DA1;
  position: relative;
}
.list_about_history .container {
  padding: 0 10.625rem;
}
.list_about_history::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('https://cloud-1251007531.bcdn8.com/xinan0523/uploads/20260622/43980eee04a1688f66823de4206bed49.png');
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.list_about_history .all_title {
  position: absolute;
}
.list_about_history .all_title p,
.list_about_history .all_title h3 {
  color: #fff;
}
.list_about_history .swiper_historynews {
  position: relative;
}
.list_about_history .swiper_historynews .swiper-slide {
  position: relative;
}
.list_about_history .swiper_historynews .swiper-slide::before {
  content: '';
  display: block;
  width: 3.4375rem;
  height: 3.4375rem;
  border-radius: 50%;
  background-color: #fff;
  border: 0.875rem solid #f6ad2f;
  position: absolute;
  bottom: 0;
  left: -1.625rem;
}
.list_about_history .swiper_historynews .swiper-slide::after {
  content: '';
  position: absolute;
  bottom: 3.4375rem;
  display: block;
  width: 0.125rem;
  height: 60%;
  background-image: url('https://cloud-1251007531.bcdn8.com/xinan0523/uploads/20260622/24f97b6c3b0696b781bc58c711740d4f.svg');
}
.list_about_history .swiper_historynews .swiper-slide .historynews_box {
  padding-left: 1.25rem;
}
.list_about_history .swiper_historynews .swiper-slide .historynews_box h3 {
  color: #FFF;
  font-size: 1.625rem;
  font-weight: 400;
}
.list_about_history .swiper_historynews .swiper-slide .historynews_box h3 span {
  color: #FFF;
  font-size: 2.375rem;
  font-weight: 700;
}
.list_about_history .swiper_historynews .swiper-slide .historynews_box p {
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.625rem 0;
}
.list_about_history .swiper-slide.swiper-slide-active::before {
  bottom: -1.25rem;
}
.list_about_history .swiper-slide-active {
  margin-top: 23.75rem;
  padding-bottom: 6.5rem;
}
.list_about_history .swiper-slide-active + .swiper-slide {
  margin-top: 14.0625rem;
  padding-bottom: 7.875rem;
}
.list_about_history .swiper-slide-active + .swiper-slide + .swiper-slide {
  margin-top: 6.25rem;
  padding-bottom: 6rem;
}
.list_about_history .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide {
  margin-top: 5rem;
  padding-bottom: 8.4rem;
}
.list_about_history .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide {
  padding-bottom: 14.1rem;
}
.list_about_three {
  position: relative;
}
.list_about_three .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 5.9375rem;
  z-index: 2;
}
.list_about_three .content .swiper_honor {
  margin-top: 7.1875rem;
  position: relative;
  overflow: hidden;
  height: 50vh;
}
.list_about_three .content .swiper_honor .swiper-slide {
  color: #6C6B6C;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
  text-transform: capitalize;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_about_three .content .swiper_honor .swiper-slide.swiper-slide-active,
.list_about_three .content .swiper_honor .swiper-slide:hover {
  color: #004DA1;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  text-transform: capitalize;
}
.list_about_four {
  padding-top: 8.75rem;
}
.list_about_four .right ul {
  display: grid;
  gap: 3.75rem;
}
.list_about_four .right ul li {
  display: flex;
  align-items: center;
}
.list_about_four .right ul li .icon {
  width: 4.6875rem;
  height: 4.6875rem;
  aspect-ratio: 1/1;
}
.list_about_four .right ul li .text {
  flex: 1;
  padding-left: 3.9375rem;
}
.list_about_four .right ul li .text .tt {
  color: #004DA1;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
.list_about_four .right ul li .text .pp {
  color: #636363;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
}
.list_about_four .bbimg {
  margin-top: -8.125rem;
}
.list_newsbox {
  position: relative;
}
.list_newsbox .swipernews {
  position: relative;
  overflow: hidden;
  padding-bottom: 3.125rem;
}
.list_newsbox .swipernews .news_box {
  display: flex;
  align-items: center;
  background: #F2F5FF;
}
.list_newsbox .swipernews .news_box .left {
  width: 50%;
}
.list_newsbox .swipernews .news_box .right {
  width: 50%;
  padding-left: 6.1875rem;
  padding-right: 5.1875rem;
}
.list_newsbox .swipernews .news_box .right .p1 {
  color: rgba(99, 99, 99, 0.4);
  font-size: 1.125rem;
  font-weight: 400;
}
.list_newsbox .swipernews .news_box .right .p1 i {
  color: rgba(99, 99, 99, 0.4);
  font-size: 1.125rem;
  font-weight: 400;
}
.list_newsbox .swipernews .news_box .right h3 {
  margin-top: 0.5625rem;
  color: #171B17;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.75rem;
}
.list_newsbox .swipernews .news_box .right .p {
  color: #636363;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.list_newsbox .swipernews .swiper-pagination {
  justify-content: center;
}
.yyhy_content {
  padding-bottom: 9.0625rem;
}
.yyhy_content .yyhy_con {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.9375rem 3.375rem;
}
.yyhy_content .yyhy_con .yyhy_item .text {
  border-bottom: 1px solid rgba(99, 99, 99, 0.1);
  padding: 1.75rem 2.25rem 2.3125rem 2.4375rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.yyhy_content .yyhy_con .yyhy_item .text .time {
  color: rgba(99, 99, 99, 0.4);
  font-size: 1.125rem;
  font-weight: 400;
}
.yyhy_content .yyhy_con .yyhy_item .text .time i {
  color: rgba(99, 99, 99, 0.4);
  font-size: 1.125rem;
  font-weight: 400;
}
.yyhy_content .yyhy_con .yyhy_item .text h3 {
  margin-top: 1rem;
  color: #636363;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  min-height: 4.5rem;
}
.yyhy_content .yyhy_con .yyhy_item:hover .text {
  background-color: #004DA1;
}
.yyhy_content .yyhy_con .yyhy_item:hover .text .time,
.yyhy_content .yyhy_con .yyhy_item:hover .text .time i,
.yyhy_content .yyhy_con .yyhy_item:hover .text h3 {
  color: #fff;
}
.show_newstop {
  background: #F2F5FF;
  padding-top: 8.125rem;
}
.show_newstop .container {
  padding: 0 25%;
}
.show_newstop .title {
  color: #171B17;
  text-align: justify;
  font-size: 2.9375rem;
  font-weight: 700;
}
.show_newstop .subbox {
  display: flex;
  align-items: center;
}
.show_newstop .subbox .time {
  color: #004DA1;
  font-size: 1.125rem;
  font-weight: 400;
}
.show_newstop .subbox .time i {
  color: #004DA1;
  font-size: 1rem;
  font-weight: 400;
  margin-right: 0.375rem;
}
.show_newstop .subbox .social-share {
  display: flex;
  align-items: center;
  margin-left: 1.875rem;
}
.show_newstop .subbox .social-share .social-share-icon {
  width: 2.75rem;
  height: 2.75rem;
  line-height: 2.75rem;
  font-size: 1.25rem;
  color: #545B5A;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.show_news {
  padding-bottom: 4.0625rem;
  border-bottom: 1px solid #DCDDDE;
  position: relative;
}
.show_news .gotoback {
  position: sticky;
  top: 6.25rem;
}
.show_news .left {
  width: 20%;
  position: relative;
}
.show_news .container {
  padding: 0 25% 0 13.125rem;
}
.show_news .content {
  width: 80%;
  color: #636363;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.show_news .content img {
  width: 100%;
}
.show_news .content h3 {
  color: #171B17;
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.875rem;
}
.page_box .page_item {
  color: #636363;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}
.page_box .page_item p {
  color: #636363;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}
.page_box .page_item a {
  color: #636363;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}
.page_box .page_item a:hover {
  color: #004DA1;
}
.list_base {
  position: relative;
}
.list_base .base_box {
  display: grid;
  gap: 5.625rem;
}
.list_base .base_box .base_item {
  display: flex;
  align-items: center;
  background: #F2F5FF;
}
.list_base .base_box .base_item .over {
  width: 58%;
}
.list_base .base_box .base_item .text {
  width: 42%;
  padding-left: 6.5625rem;
  padding-right: 5.4375rem;
}
.list_base .base_box .base_item .text .num {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 77, 161, 0.1);
  font-family: Poppins;
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
}
.list_base .base_box .base_item .text .tt {
  color: #004DA1;
  font-size: 2rem;
  font-weight: 500;
  margin-top: -2rem;
}
.list_base .base_box .base_item .text .pp {
  margin-top: 0.625rem;
  color: rgba(23, 27, 23, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_equip_one .left .img_box .over {
  margin-bottom: 2.3125rem;
}
.list_equip_one .left .img_box .over img {
  object-fit: cover;
}
.list_equip_one .right {
  padding-left: 1.5625rem;
}
.list_equip_one .right ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  color: rgba(23, 27, 23, 0.7);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
  padding: 1.125rem 1.125rem 1.1rem 2.5rem;
  position: relative;
}
.list_equip_one .right ul li::before {
  content: '';
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background: #D9D9D9;
  position: absolute;
  left: 0.3125rem;
  top: 1.5rem;
}
.list_equip_one .right ul li.active {
  color: #004DA1;
}
.list_equip_one .right ul li.active::before {
  background: #004DA1;
}
.list_equip .title {
  color: #171B17;
  font-family: "Noto Sans SC";
  font-size: 1.6875rem;
  font-weight: 700;
}
.list_equip .left_box {
  padding-right: 2.5rem;
}
.list_equip .right_box {
  padding-left: 2.5rem;
}
.list_equip .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.list_equip .grid_box .grid_item {
  display: flex;
  align-items: center;
}
.list_equip .grid_box .grid_item .icon {
  width: 6.8125rem;
  height: 6.8125rem;
  border-radius: 0.625rem;
  background: #F2F5FF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_equip .grid_box .grid_item .icon img {
  width: 45%;
}
.list_equip .grid_box .grid_item .text {
  flex: 1;
  padding-left: 1.875rem;
  color: rgba(23, 27, 23, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
}
.list_equip_two .right .img_box .over {
  display: none;
}
.list_equip_two .right .img_box .over img {
  aspect-ratio: 415/300;
  object-fit: cover;
}
.list_equip_two .right .img_box .over.active {
  display: block;
}
.list_equip_two .left ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  color: rgba(23, 27, 23, 0.7);
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 400;
  padding: 1.25rem 1.125rem 1.125rem 2.5rem;
  position: relative;
}
.list_equip_two .left ul li::before {
  content: '';
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background: #D9D9D9;
  position: absolute;
  left: 0.3125rem;
  top: 1.5rem;
}
.list_equip_two .left ul li.active {
  color: #004DA1;
}
.list_equip_two .left ul li.active::before {
  background: #004DA1;
}
.list_equip_three .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.375rem 2rem;
}
.list_equip_three .grid_box .grid_item {
  border: 1px solid #E2E2E2;
  background: #FFF;
  padding: 4.8125rem 3.5625rem 5.0625rem 3.875rem;
  display: flex;
  align-items: center;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_equip_three .grid_box .grid_item:hover {
  background: #F2F5FF;
}
.list_equip_three .grid_box .grid_item:hover .icon {
  background: #004DA1;
}
.list_equip_three .grid_box .grid_item:hover .icon img {
  filter: brightness(0) invert(1);
}
.list_equip_three .grid_box .grid_item .icon {
  width: 6.8125rem;
  height: 6.8125rem;
  border-radius: 0.625rem;
  background: #F2F5FF;
  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;
}
.list_equip_three .grid_box .grid_item .icon img {
  width: 50%;
  height: 50%;
}
.list_equip_three .grid_box .grid_item .text {
  flex: 1;
  padding-left: 2.25rem;
}
.list_equip_three .grid_box .grid_item .text .tt {
  color: rgba(23, 27, 23, 0.7);
  font-size: 1.6875rem;
  font-weight: 500;
}
.list_equip_three .grid_box .grid_item .text .pp {
  margin-top: 0.4375rem;
  color: rgba(23, 27, 23, 0.7);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.list_equip_four {
  overflow: hidden;
}
.list_equip_four .swiper_chanpinjg {
  position: relative;
  margin: 0 -1rem;
}
.list_equip_four .swiper_chanpinjg .swiper-slide {
  padding: 0 1rem;
}
.list_equip_four .swiper_chanpinjg .chanpinjg_box {
  border: 1px solid #E2E2E2;
  background: #F2F5FF;
  padding: 5.5625rem 2rem 7.75rem 2rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_equip_four .swiper_chanpinjg .chanpinjg_box:hover {
  background: #004DA1;
}
.list_equip_four .swiper_chanpinjg .chanpinjg_box:hover .text .tt,
.list_equip_four .swiper_chanpinjg .chanpinjg_box:hover .text .pp {
  color: #fff;
}
.list_equip_four .swiper_chanpinjg .chanpinjg_box .icon {
  width: 6.8125rem;
  height: 6.8125rem;
  border-radius: 0.625rem;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_equip_four .swiper_chanpinjg .chanpinjg_box .icon img {
  width: 50%;
}
.list_equip_four .swiper_chanpinjg .chanpinjg_box .text {
  margin-top: 3.125rem;
}
.list_equip_four .swiper_chanpinjg .chanpinjg_box .text .tt {
  color: rgba(23, 27, 23, 0.7);
  font-size: 1.5rem;
  font-weight: 500;
}
.list_equip_four .swiper_chanpinjg .chanpinjg_box .text .pp {
  margin-top: 0.4375rem;
  color: rgba(23, 27, 23, 0.7);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}
@keyframes bigamin2 {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bigamin {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg) scale(1.1);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
  }
}
@keyframes txtshowr {
  0% {
    opacity: 0;
    transform: translateX(2.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes txtshowl {
  0% {
    opacity: 0;
    transform: translateX(-2.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.list_equip_five .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12.5rem;
  position: relative;
  margin-top: 5.625rem;
}
.list_equip_five .content .mid {
  width: 37.5rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.list_equip_five .content .mid .yuan {
  width: 43.9375rem;
  height: 43.9375rem;
  border-radius: 43.9375rem;
  background: linear-gradient(270deg, rgba(0, 77, 161, 0.1) 0%, rgba(0, 77, 161, 0) 36.49%);
  position: relative;
  opacity: 0;
}
.list_equip_five .content .mid .yuan::before {
  content: '';
  display: block;
  width: 43.9375rem;
  height: 43.9375rem;
  border-radius: 43.9375rem;
  background: linear-gradient(-270deg, rgba(0, 77, 161, 0.1) 0%, rgba(0, 77, 161, 0) 36.49%);
  position: absolute;
  top: 0;
  left: 0;
}
.list_equip_five .content .mid .fang {
  width: 19.9375rem;
  height: 19.9375rem;
  border-radius: 0.625rem;
  background: #004DA1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.list_equip_five .content .mid .tit {
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.list_equip_five .content .ri .grid_box,
.list_equip_five .content .le .grid_box {
  display: grid;
  gap: 2.5rem;
}
.list_equip_five .content .ri .grid_box .grid_item,
.list_equip_five .content .le .grid_box .grid_item {
  text-align: center;
  padding: 2rem 3.5rem;
  opacity: 0;
}
.list_equip_five .content .ri .grid_box .grid_item .tt,
.list_equip_five .content .le .grid_box .grid_item .tt {
  color: #004DA1;
  font-family: "Noto Sans SC";
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.75rem;
  margin-bottom: 1.25rem;
}
.list_equip_five .content .ri .grid_box .grid_item .pp,
.list_equip_five .content .le .grid_box .grid_item .pp {
  margin-top: 1rem;
  color: #555;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.75;
}
.list_equip_five .content .le .grid_box .grid_item {
  background-size: 100% 100%;
  background-image: url('https://cloud-1251007531.bcdn8.com/xinan0523/uploads/20260603/c27eb6277afa2137016b2d48750f1894.png');
}
.list_equip_five .content .le .grid_box .grid_item .tt,
.list_equip_five .content .le .grid_box .grid_item .pp {
  width: 18.75rem;
  text-align: center;
}
.list_equip_five .content .le .grid_box .grid_item .i {
  width: 18.75rem;
  height: 0.1875rem;
  background: linear-gradient(90deg, #004da1 0%, #ffffff 100%);
  position: relative;
}
.list_equip_five .content .le .grid_box .grid_item .i::before {
  content: '';
  display: block;
  width: 0.8125rem;
  height: 0.8125rem;
  background-color: #004DA1;
  position: absolute;
  transform: rotate(45deg);
  left: 0;
  top: -0.3125rem;
}
.list_equip_five .content .ri .grid_box .grid_item {
  background-size: 100% 100%;
  background-image: url('https://cloud-1251007531.bcdn8.com/xinan0523/uploads/20260603/5e093fa76634fdd936de8149105abb5f.png');
  display: flex;
  flex-direction: column;
  align-items: end;
}
.list_equip_five .content .ri .grid_box .grid_item .tt,
.list_equip_five .content .ri .grid_box .grid_item .pp {
  width: 18.75rem;
  text-align: center;
}
.list_equip_five .content .ri .grid_box .grid_item .i {
  width: 18.75rem;
  height: 0.1875rem;
  background: linear-gradient(-90deg, #004da1 0%, #ffffff 100%);
  position: relative;
}
.list_equip_five .content .ri .grid_box .grid_item .i::before {
  content: '';
  display: block;
  width: 0.8125rem;
  height: 0.8125rem;
  background-color: #004DA1;
  position: absolute;
  transform: rotate(45deg);
  right: 0;
  top: -0.3125rem;
}
.list_equip_five.active .content .mid .yuan {
  animation: bigamin2 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-delay: 0.2s;
}
.list_equip_five.active .content .mid .fang {
  animation: bigamin 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
.list_equip_five.active .content .le .grid_box .grid_item {
  animation: txtshowr 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-delay: 0.5s;
}
.list_equip_five.active .content .le .grid_box .grid_item:nth-child(2) {
  animation-delay: 0.7s;
}
.list_equip_five.active .content .ri .grid_box .grid_item {
  animation: txtshowl 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-delay: 0.5s;
}
.list_equip_five.active .content .ri .grid_box .grid_item:nth-child(2) {
  animation-delay: 0.7s;
}
.list_equip_six {
  overflow: hidden;
}
.list_equip_six .swiper_management {
  position: relative;
  overflow: hidden;
  margin: 0 -1.125rem;
  padding-bottom: 2.5rem;
}
.list_equip_six .swiper_management .swiper-slide {
  padding: 0 1.125rem;
}
.list_equip_six .swiper_management .swiper-slide .management_box .over {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
  padding: 1.25rem 0.875rem 1.3125rem 1rem;
}
.list_equip_six .swiper_management .swiper-slide .management_box .tt {
  margin-top: 1.5625rem;
  color: #000;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_equip_six .swiper_management .swiper-pagination {
  justify-content: center;
}
.list_industrial_one .content .tabul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.list_industrial_one .content .tabul .tabli {
  border-radius: 0.625rem;
  background: #F2F5FF;
  padding: 2rem 1rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_industrial_one .content .tabul .tabli .icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto;
}
.list_industrial_one .content .tabul .tabli .tt {
  margin-top: 1rem;
  color: rgba(23, 27, 23, 0.7);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}
.list_industrial_one .content .tabul .tabli.active,
.list_industrial_one .content .tabul .tabli:hover {
  background-color: #004DA1;
}
.list_industrial_one .content .tabul .tabli.active .icon,
.list_industrial_one .content .tabul .tabli:hover .icon {
  filter: brightness(0) invert(1);
}
.list_industrial_one .content .tabul .tabli.active .tt,
.list_industrial_one .content .tabul .tabli:hover .tt {
  color: #fff;
}
.list_industrial_one .content .tab_box .tab_con {
  display: none;
}
.list_industrial_one .content .tab_box .tab_con.active {
  display: block;
}
.list_industrial_one .content .tab_box .tab_con .tit {
  color: rgba(23, 27, 23, 0.7);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_industrial_one .content .tab_box .tab_con .tab_img {
  width: 80%;
  margin: 0 auto;
}
.list_industrial_one .content .tab_box .tab_con .tab_img ul li {
  display: flex;
  align-items: center;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(0.125rem 5rem);
  padding: 0.5rem 0.5625rem;
  position: absolute;
}
.list_industrial_one .content .tab_box .tab_con .tab_img ul li .dian {
  font-size: 0.75rem;
  color: #fff;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #004DA1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.3125rem;
  margin-left: 0.3125rem;
}
.list_industrial_one .content .tab_box .tab_con .tab_img ul li .dian i {
  display: inline-block;
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  background-color: #fff;
}
.list_industrial_one .content .tab_box .tab_con .tab_img ul li .t {
  white-space: nowrap;
  color: #171B17;
  font-size: 0.875rem;
  font-weight: 400;
}
@keyframes circleExpandOut {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.08);
  }
  8% {
    opacity: 0.32;
  }
  55% {
    opacity: 0.12;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes circleCorePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.78);
    opacity: 0.36;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.62;
  }
}
.list_industrial_two {
  padding-top: 6.875rem;
  padding-bottom: 6.25rem;
}
.list_industrial_two #world_map {
  margin-top: 3.75rem;
  width: 100%;
  height: 43.75rem;
}
.list_industrial_two .content {
  margin-top: 3.75rem;
}
.list_industrial_two .content .title {
  text-align: center;
  color: #004DA1;
  font-size: 3.75rem;
  font-weight: 500;
}
.list_industrial_two .content .img {
  position: relative;
}
.list_industrial_two .content .yuan::before {
  content: '';
  position: absolute;
  top: 45%;
  left: 36%;
  width: 3.875rem;
  height: 3.875rem;
  border-radius: 50%;
  background-color: rgba(30, 80, 162, 0.28);
  pointer-events: none;
  z-index: 4;
  animation: circleCorePulse 2.4s ease-in-out infinite;
}
.list_industrial_two .content .echo-ring {
  position: absolute;
  top: 45%;
  left: 36%;
  width: 28.75rem;
  height: 28.75rem;
  border-radius: 50%;
  background-color: rgba(30, 80, 162, 0.18);
  transform-origin: center center;
  pointer-events: none;
  will-change: transform, opacity;
  animation: circleExpandOut 4.8s linear infinite;
}
.list_industrial_two .content .ring-inner {
  background-color: rgba(30, 80, 162, 0.18);
  animation-delay: 0s;
  z-index: 3;
}
.list_industrial_two .content .ring-middle {
  background-color: rgba(30, 80, 162, 0.13);
  z-index: 2;
  animation-delay: -1.6s;
}
.list_industrial_two .content .ring-outer {
  background-color: rgba(30, 80, 162, 0.08);
  z-index: 1;
  animation-delay: -3.2s;
}
.list_industrial_two .content ul li {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 5;
  transform: translate(-50%, -100%);
}
.list_industrial_two .content ul li:hover .tt {
  opacity: 1;
}
.list_industrial_two .content ul li .i {
  width: 0.75rem;
  margin-right: 0;
}
.list_industrial_two .content ul li .tt {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 1rem;
  color: #004DA1;
  line-height: 1;
  opacity: 0;
}
.list_industrial_two .content ul li:nth-child(1) {
  top: 33.2%;
  left: 9.3%;
}
.list_industrial_two .content ul li:nth-child(2) {
  top: 32.9%;
  left: 7.5%;
}
.list_industrial_two .content ul li:nth-child(2) .tt {
  order: 1;
  left: 50%;
  transform: translateX(-50%);
  top: -1.25rem;
}
.list_industrial_two .content ul li:nth-child(3) {
  top: 37%;
  left: 5.2%;
}
.list_industrial_two .content ul li:nth-child(3) .tt {
  top: 70%;
}
.list_industrial_two .content ul li:nth-child(4) {
  top: 39%;
  left: 7.5%;
}
.list_industrial_two .content ul li:nth-child(5) {
  top: 42.5%;
  left: 2.5%;
}
.list_industrial_two .content ul li:nth-child(5) .tt {
  order: 1;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}
.list_industrial_two .content ul li:nth-child(6) {
  top: 44.5%;
  left: 6.9%;
}
.list_industrial_two .content ul li:nth-child(7) {
  top: 31.8%;
  left: 32.4%;
}
.list_industrial_two .content ul li:nth-child(8) {
  top: 43.4%;
  left: 38.2%;
}
.list_industrial_two .content ul li:nth-child(8) .tt {
  top: 70%;
}
.list_industrial_two .content ul li:nth-child(9) {
  top: 43.3%;
  left: 41.8%;
}
.list_industrial_two .content ul li:nth-child(10) {
  top: 56.5%;
  left: 32.7%;
}
.list_industrial_two .content ul li:nth-child(11) {
  top: 65%;
  left: 34.5%;
}
.list_industrial_two .content ul li:nth-child(12) {
  top: 55.2%;
  left: 76.7%;
}
.list_industrial_two .content ul li:nth-child(13) {
  top: 61%;
  left: 31%;
}
.list_industrial_two .content ul li:nth-child(14) {
  top: 47.2%;
  left: 34.4%;
}
.list_industrial_two .content ul li:nth-child(14) .tt {
  order: 1;
  left: -2.5rem;
}
.list_industrial_two .content ul li:nth-child(15) {
  top: 47%;
  left: 37%;
}
.list_industrial_two .content ul li:nth-child(15) .i {
  width: 3.125rem;
}
.list_industrial_two .content ul li:nth-child(15) .tt {
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
}
.list_innovation_one {
  padding-bottom: 7rem;
}
.all_desc {
  color: #636363;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_innovation_two {
  position: relative;
}
.list_innovation_two::before {
  content: '';
  display: block;
  width: 100%;
  height: 35.5rem;
  background: #004DA1;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: -1;
}
.list_innovation_two .tabul {
  display: flex;
  justify-content: space-between;
}
.list_innovation_two .tabul .tabli {
  text-align: center;
}
.list_innovation_two .tabul .tabli .tt {
  color: #FFF;
  font-size: 4.375rem;
  font-weight: 700;
  line-height: 1.2;
}
.list_innovation_two .tabul .tabli .pp {
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 500;
}
.list_innovation_two .swiper_box {
  background-color: #fff;
  padding: 5.625rem 3.125rem 2.5rem;
}
.list_innovation_two .swiper_box .swiper_cxhonor {
  position: relative;
  overflow: hidden;
  padding-bottom: 3.75rem;
}
.list_innovation_two .swiper_box .swiper_cxhonor .swiper-slide {
  padding: 1.5rem 2.5rem;
}
.list_innovation_two .swiper_box .swiper_cxhonor .swiper-slide .cxhonor_box {
  width: 100%;
  height: 6.4375rem;
  position: relative;
  background-image: url(https://cloud-1251007531.bcdn8.com/xinan0523/uploads/20260604/bf7c914f6aad3c0c1c84ab2f6b2aacfb.svg), url(https://cloud-1251007531.bcdn8.com/xinan0523/uploads/20260604/20eebefb73d4f01ddb5016dadc65d0e2.svg);
  background-repeat: no-repeat, no-repeat;
  background-size: auto 85%, auto 85%;
  background-position: left center, right center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.list_innovation_two .swiper_box .swiper_cxhonor .swiper-slide .cxhonor_box .tit {
  color: #171B17;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5625rem;
}
.list_innovation_two .swiper_box .swiper_cxhonor .swiper-pagination {
  justify-content: center;
}
.list_innovation_three {
  position: relative;
  overflow: hidden;
}
.list_innovation_three .content {
  padding: 0 3.75rem;
}
.list_innovation_three .swiper_yfly {
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
  margin: -10.3125rem -0.9375rem 0;
}
.list_innovation_three .swiper_yfly .swiper-pagination {
  justify-content: center;
}
.list_innovation_three .swiper_yfly .swiper-slide {
  padding: 0 0.9375rem;
}
.list_innovation_three .swiper_yfly .yfly_box {
  background: #FFF;
  padding: 3.1875rem 2.8125rem 4.6875rem 3.3125rem;
  position: relative;
  border: 1px solid #E6E6E6;
  cursor: pointer;
}
.list_innovation_three .swiper_yfly .yfly_box .icon {
  width: 5.375rem;
  height: 5.375rem;
  border-radius: 0.625rem;
  background: #F2F5FF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_innovation_three .swiper_yfly .yfly_box .icon img {
  width: 45%;
}
.list_innovation_three .swiper_yfly .yfly_box .tt {
  margin-top: 1.625rem;
  color: rgba(23, 27, 23, 0.7);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  min-height: 4.6875rem;
}
.list_innovation_three .swiper_yfly .yfly_box .i {
  text-align: right;
  position: absolute;
  width: 100%;
  bottom: 2.8125rem;
  left: 0;
  padding-right: 3.5rem;
}
.list_innovation_three .swiper_yfly .yfly_box .i i {
  color: #004DA1;
  font-size: 1.25rem;
  font-weight: 600;
}
.list_innovation_three ul {
  margin-top: -10.3125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  position: relative;
  z-index: 3;
}
.list_innovation_three ul li {
  background: #FFF;
  padding: 3.1875rem 2.8125rem 4.6875rem 3.3125rem;
}
.list_innovation_three ul li .icon {
  width: 5.375rem;
  height: 5.375rem;
  border-radius: 0.625rem;
  background: #F2F5FF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_innovation_three ul li .icon img {
  width: 45%;
}
.list_innovation_three ul li .tt {
  margin-top: 1.625rem;
  color: rgba(23, 27, 23, 0.7);
  font-size: 1.625rem;
  font-weight: 500;
}
.filds {
  border-top: 0.6875rem solid #004DA1;
  padding-top: 3.125rem;
  padding-bottom: 7.5rem;
  padding-left: 5rem;
  padding-right: 5rem;
  width: 65.25rem;
  display: none;
}
.filds .carousel__button.is-close {
  top: 1.875rem !important;
  right: 2.5rem !important;
}
.filds .carousel__button.is-close svg {
  stroke: #333333;
}
.filds .title {
  text-align: center;
  color: #171B17;
  font-family: Inter;
  font-size: 2rem;
  font-weight: 600;
}
.filds .left {
  color: #636363;
  font-family: Inter;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
}
.filds .left h3 {
  padding-left: 1.25rem;
  position: relative;
  color: #004DA1;
  font-family: Inter;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.5rem;
  margin-bottom: 0.4375rem;
}
.filds .left h3::before {
  content: '';
  display: block;
  width: 0.6875rem;
  height: 1.5625rem;
  background: #004DA1;
  position: absolute;
  left: 0;
  top: 0.5rem;
}
.filds .swiper_fileds {
  position: relative;
  overflow: hidden;
}
.filds .swiper_fileds .swiper-pagination {
  justify-content: center;
}
.filds .swiper_fileds .img img {
  aspect-ratio: 1/1;
  object-fit: contain;
}
.list_innovation_four {
  padding-top: 7.0625rem;
}
.list_innovation_four .content .list_box {
  background: #F2F5FF;
}
.list_innovation_four .content .list_box .over {
  width: 58%;
}
.list_innovation_four .content .list_box .text {
  width: 42%;
  padding-left: 6.5625rem;
  padding-right: 5rem;
}
.list_innovation_four .content .list_box .text .top_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.list_innovation_four .content .list_box .text .top_box .num h3 {
  color: #004DA1;
  font-size: 2.75rem;
  font-weight: 600;
}
.list_innovation_four .content .list_box .text .top_box .num p {
  color: #004DA1;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 500;
}
.list_innovation_four .content .list_box .text .top_box .num:nth-child(2) {
  padding-left: 3.125rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.list_innovation_four .content .list_box .text .desc {
  margin-top: 1.25rem;
  color: rgba(23, 27, 23, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_innovation_four .content2 {
  padding-bottom: 6.875rem;
  background: #F2F5FF;
}
.list_innovation_four .content2 ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.625rem 1.8125rem;
}
.list_innovation_four .content2 ul li {
  border-bottom: 1px solid #004DA1;
  color: rgba(23, 27, 23, 0.7);
  font-size: 1.375rem;
  font-weight: 500;
  padding: 3.0625rem 0 3rem 1.5625rem;
  line-height: 1;
  position: relative;
}
.list_innovation_four .content2 ul li::before {
  content: '';
  display: block;
  width: 0.875rem;
  height: 1rem;
  background-color: #004DA1;
  position: absolute;
  left: 0;
  top: 3.25rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.list_innovation_four .content2 ul li:nth-last-child(2) {
  grid-row: 2/2;
  grid-column: 3 / 5;
}
.list_innovation_five {
  padding-top: 6.25rem;
  padding-bottom: 7.5rem;
}
.list_innovation_five .tabbox {
  width: 60%;
  background: #F2F5FF;
  margin: 0 auto;
  padding: 3rem 5.125rem;
  height: 12.5rem;
  display: flex;
  align-items: center;
}
.list_innovation_five .tabbox .tabcon {
  color: rgba(23, 27, 23, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  display: none;
}
.list_innovation_five .tabbox .tabcon.active {
  display: block;
}
.list_innovation_five .tabul {
  margin-bottom: 7.0625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 3.125rem;
}
.list_innovation_five .tabul::after {
  content: '';
  display: block;
  width: 100%;
  height: 0.125rem;
  background-color: #004DA1;
  position: absolute;
  left: 0;
  z-index: -1;
}
.list_innovation_five .tabul .tabli {
  color: #004DA1;
  font-size: 1.5rem;
  font-weight: 500;
  width: 15.1875rem;
  height: 6.625rem;
  background: #F2F5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.list_innovation_five .tabul .tabli:not(:nth-last-child(1))::before {
  content: '';
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: #E60012;
  position: absolute;
  right: -30%;
}
.list_innovation_five .tabul .tabli.active,
.list_innovation_five .tabul .tabli:hover {
  background-color: #004DA1;
  color: #fff;
}
.list_innovation_five .ul_box {
  display: grid;
  gap: 15px;
}
.list_innovation_five .ul_box .li_box .tit {
  color: #004DA1;
  font-size: 22px;
  font-weight: 500;
}
.list_innovation_five .ul_box .li_box .cont {
  color: rgba(23, 27, 23, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_digital_one .desc {
  color: #636363;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.5rem;
}
.list_digital_one .row {
  background: #F2F5FF;
  align-items: center;
}
.list_digital_one .row .left {
  padding-left: 0;
}
.list_digital_one .row .right {
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}
.list_digital_one .row .right ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
}
.list_digital_one .row .right ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_digital_one .row .right ul li .icon {
  width: 3.9375rem;
  height: 3.9375rem;
  border-radius: 0.625rem;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_digital_one .row .right ul li .icon img {
  width: 60%;
}
.list_digital_one .row .right ul li .text {
  flex: 1;
  padding-left: 1.125rem;
  color: rgba(23, 27, 23, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
}
.list_digital_one .swiper_box {
  background-color: #fff;
}
.list_digital_one .swiper_box .swiper_shuzhihonor {
  position: relative;
  overflow: hidden;
  margin: 0 -1rem;
}
.list_digital_one .swiper_box .swiper_shuzhihonor .swiper-slide {
  padding: 0 1rem;
}
.list_digital_one .swiper_box .swiper_shuzhihonor .swiper-slide .shuzhihonor_box {
  width: 100%;
  height: 6.4375rem;
  position: relative;
  background-image: url(https://cloud-1251007531.bcdn8.com/xinan0523/uploads/20260604/bf7c914f6aad3c0c1c84ab2f6b2aacfb.svg), url(https://cloud-1251007531.bcdn8.com/xinan0523/uploads/20260604/20eebefb73d4f01ddb5016dadc65d0e2.svg);
  background-repeat: no-repeat, no-repeat;
  background-size: auto 85%, auto 85%;
  background-position: left center, right center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.list_digital_one .swiper_box .swiper_shuzhihonor .swiper-slide .shuzhihonor_box .tit h3 {
  color: #004DA1;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5828rem;
}
.list_digital_one .swiper_box .swiper_shuzhihonor .swiper-slide .shuzhihonor_box .tit .p {
  margin-top: 0.9375rem;
  color: #004DA1;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5625rem;
}
.list_digital_one .swiper_box .swiper_shuzhihonor .swiper-pagination {
  justify-content: center;
}
.list_contact {
  padding-top: 6.25rem;
  padding-bottom: 9.125rem;
}
.list_contact .row {
  align-items: self-end;
}
.list_contact .row .left .title {
  color: #171B17;
  font-family: "Noto Sans SC";
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.125rem;
}
.list_contact .row .left ul {
  margin-top: 1.25rem;
}
.list_contact .row .left ul li {
  display: flex;
  align-items: center;
}
.list_contact .row .left ul li .icon {
  margin-right: 0.75rem;
}
.list_contact .row .left ul li .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.list_contact .row .left ul li p {
  color: #171B17;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 3.125rem;
}
.list_contact .row .left ul li p a {
  color: #171B17;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 3.125rem;
}
.list_contact .row .left ul li p strong {
  color: #004DA1;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 3.125rem;
}
.list_contact .row .left .ewm {
  width: 9.625rem;
  height: 9.625rem;
  border-radius: 0.9375rem;
}
.list_contact .row .right #map {
  height: 29.375rem;
}
.list_contact .grid_box {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5.625rem 2rem;
}
.list_contact .grid_box .grid_item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
}
.list_contact .grid_box .grid_item .left {
  padding: 3.5rem 3.625rem 3rem 0;
}
.list_contact .grid_box .grid_item .left .tit {
  color: #004DA1;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
}
.list_contact .grid_box .grid_item .left .cont ul {
  margin-top: 1.25rem;
}
.list_contact .grid_box .grid_item .left .cont ul li {
  display: flex;
  align-items: center;
}
.list_contact .grid_box .grid_item .left .cont ul li:nth-child(1) .t {
  color: #004DA1;
}
.list_contact .grid_box .grid_item .left .cont ul li .icon {
  margin-right: 0.4375rem;
}
.list_contact .grid_box .grid_item .left .cont ul li .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.list_contact .grid_box .grid_item .left .cont ul li .icon svg path {
  stroke: #004da1;
}
.list_contact .grid_box .grid_item .left .cont ul li .t {
  color: #171B17;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}
.list_contact .grid_box .grid_item .right .map {
  height: 100%;
  min-height: 21.875rem;
}
.fix_ul li:hover .right_div {
  right: 3.75rem;
  padding: 0 1rem;
  min-height: 3.5rem;
  line-height: 3.5rem;
}
.public_text {
  width: 100%;
  margin: auto;
  position: relative;
}
.public_text .p:first-child {
  position: relative;
  z-index: 55;
  color: #004DA1;
}
.public_text .p:not(:first-child) {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(0, 77, 161, 0.2);
  z-index: 5;
}
.public_text .p p {
  width: fit-content;
  margin: auto;
}
.leaflet-container .leaflet-control-attribution {
  display: none;
}
.index_threenews {
  padding-bottom: 6.875rem;
}
.index_threenews .row {
  align-items: center;
  padding-left: 3.75rem;
}
.index_threenews .row:nth-child(even) {
  margin-top: -6.25rem;
  padding-left: -15px;
  padding-right: 3.75rem;
}
.index_threenews .row:nth-child(even) .right {
  order: 1;
  padding-left: 16.5625rem;
  padding-right: 15px;
}
.index_threenews .row:nth-child(even) .left {
  order: 2;
}
.index_threenews .row .left .ri_box .ri_item {
  position: relative;
}
.index_threenews .row .left .ri_box .ri_item ul li {
  display: flex;
  align-items: center;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(0.125rem 5rem);
  padding: 0.5rem 0.5625rem;
  position: absolute;
}
.index_threenews .row .left .ri_box .ri_item ul li .dian {
  font-size: 0.75rem;
  color: #fff;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #004DA1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.3125rem;
  margin-left: 0.3125rem;
}
.index_threenews .row .left .ri_box .ri_item ul li .dian i {
  display: inline-block;
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  background-color: #fff;
}
.index_threenews .row .left .ri_box .ri_item ul li .t {
  white-space: nowrap;
  color: #171B17;
  font-size: 0.875rem;
  font-weight: 400;
}
.index_threenews .row .right {
  padding-right: 20.1875rem;
}
.index_threenews .row .right .icon {
  width: 4.5rem;
  height: 4.5rem;
}
.index_threenews .row .right .tit {
  flex: 1;
  padding-left: 1.5625rem;
  color: #004DA1;
  font-size: 2rem;
  font-weight: 500;
}
.index_threenews .row .right .text {
  margin-top: 2.1875rem;
}
.index_threenews .row .right .text .bottom .p {
  color: rgba(23, 27, 23, 0.7);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.index_threenews .grid_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.index_threenews .grid_box .grid_item {
  border-radius: 0.625rem;
  background: #F2F5FF;
  padding: 2.625rem 1.25rem 2.375rem;
}
.index_threenews .grid_box .grid_item .icon {
  width: 3.875rem;
  height: 3.875rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_threenews .grid_box .grid_item .icon .icon2 {
  display: none;
}
.index_threenews .grid_box .grid_item .tit {
  margin-top: 1.125rem;
  color: rgba(23, 27, 23, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
.index_threenews .grid_box .grid_item:hover {
  cursor: pointer;
}
.index_threenews .grid_box .grid_item:hover .tit {
  color: #004DA1;
}
.index_threenews .grid_box .grid_item:hover .icon .icon2 {
  display: block;
}
.index_threenews .grid_box .grid_item:hover .icon .icon1 {
  display: none;
}
.list_about_core {
  padding: 6.25rem 0 3.75rem;
  position: relative;
}
.list_about_core .all_title {
  position: absolute;
}
.list_about_core .left {
  width: 53%;
  position: relative;
}
.list_about_core .left .text {
  background: #004DA1;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 2.625rem 3.4375rem;
}
.list_about_core .left .text ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.list_about_core .left .text ul li {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  position: relative;
}
.list_about_core .left .text ul li:not(:nth-child(3n))::before {
  content: '';
  display: block;
  width: 1px;
  height: 1.3125rem;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 0;
  top: 0.3125rem;
}
.list_about_core .right {
  width: 47%;
  padding-left: 6.25rem;
  color: rgba(23, 27, 23, 0.7);
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.5rem;
}
.list_about_core .right h3 {
  color: rgba(23, 27, 23, 0.7);
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.6875rem;
  font-weight: 500;
  line-height: 2.5rem;
  margin-bottom: 1.125rem;
}
.list_about_core .right h3 span {
  color: #004DA1;
}
.fancybox__backdrop {
  background: #F2F5FF;
}
