@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;
}
@font-face {
  font-family: "HarmonyOS Sans SC";
  font-weight: 700;
  src: url('../fonts/HarmonyOS_SansSC_Bold.ttf') format("truetype"), /* 尝试使用本地字体 */;
}
@font-face {
  font-family: "HarmonyOS Sans SC";
  font-weight: 500;
  src: url('../fonts/HarmonyOS_SansSC_Regular.ttf') format("truetype"), /* 尝试使用本地字体 */;
}
@font-face {
  font-family: "HarmonyOS Sans SC";
  font-weight: 300;
  src: url('../fonts/HarmonyOS_SansSC_Thin.ttf') format("truetype"), /* 尝试使用本地字体 */;
}
body {
  --header_h: 6.25rem;
  --container: 16.25rem;
  outline: none;
  font-family: 'HarmonyOS Sans SC', 'Inter' !important;
}
.p_top {
  position: absolute;
  top: -6.25rem;
}
.bg {
  background: #192E78;
}
.c {
  color: #192E78;
}
.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: #192E78;
  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: #192E78;
  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: #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: #192E78;
}
.search_more:hover::before {
  background: #192E78;
}
.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: 8.125rem;
  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;
}
.er-ul li {
  line-height: 2.25rem;
  text-align: center;
  font-size: 0.875rem;
}
.er-ul li:hover a {
  color: #192E78 !important;
}
.er-ul li:hover .er-ul {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
}
.er-ul li:nth-child(1) {
  padding-top: 0.625rem;
}
.er-ul li:last-child {
  padding-bottom: 0.625rem;
}
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;
}
body {
  --container: 16.25rem;
}
@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: #192E78;
}
.searchbox {
  border-color: #192E78;
}
@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.5008px;
  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.5008px 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 {
  color: rgba(0, 0, 0, 0.6);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  padding: 1.875rem 0 0;
}
@media (max-width: 767px) {
  .ajhhsd {
    padding-top: 10px;
  }
  .ajhhsd svg {
    width: 1rem !important;
    height: 1rem !important;
  }
}
.ajhhsd a {
  color: rgba(0, 0, 0, 0.6);
}
.ajhhsd a:hover {
  color: #192E78;
}
.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) {
  .list_two .accordion-swiper .swiper-slide,
  .list_two .accordion-swiper .active {
    width: 100%;
  }
  .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: #192E78;
  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 / 100);
  }
  .container {
    padding: 0 var(--container);
  }
}
@media (max-width: 1366px) {
  body,
  html {
    font-size: calc(100vw / 95);
  }
}
@media (max-width: 1280px) {
  body,
  html {
    font-size: calc(100vw / 100);
  }
}
@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;
  text-align: center;
}
.phone .center img {
  height: 40px;
}
.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: #192E78;
  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: #192E78;
}
.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);
  
}
.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.9008px;
  color: #EBEBEC;
  float: left;
}
.sjj_nav .bot > li .list .left a {
  color: #EBEBEC;
  font-size: 14px;
  line-height: 2.3;
}
.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.375rem;
  height: 3.375rem;
  border-radius: 50%;
  line-height: 3.375rem;
  padding: 0;
  border: none;
  background: transparent;
  margin-bottom: 1.25rem;
  position: relative;
  border: none !important;
}
.rightfix li .iconfont {
  font-size: 1.375rem;
  display: block;
  color: #fff;
  border-radius: 50%;
  background: #0074CA;
}
.rightfix li:hover .iconfont {
  background: #ec8402;
  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: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
}
header:hover,
header.active,
header.active2 {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
}
header:hover .center .ul > li > a,
header.active .center .ul > li > a,
header.active2 .center .ul > li > a {
  color: #121212;
  font-weight: 400;
}
header:hover .center .ul > li > a::before,
header.active .center .ul > li > a::before,
header.active2 .center .ul > li > a::before {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #192E78;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header:hover .center .ul > li.active > a,
header.active .center .ul > li.active > a,
header.active2 .center .ul > li.active > a,
header:hover .center .ul > li:hover > a,
header.active .center .ul > li:hover > a,
header.active2 .center .ul > li:hover > a {
  color: #192E78;
  font-weight: 700;
}
header:hover .lanuage a,
header.active .lanuage a,
header.active2 .lanuage a {
  color: #000;
}
header:hover .ds1 .iconfont,
header.active .ds1 .iconfont,
header.active2 .ds1 .iconfont {
  color: #000;
}
header:hover .ds1:hover,
header.active .ds1:hover,
header.active2 .ds1:hover {
  cursor: pointer;
}
header:hover .albb,
header.active .albb,
header.active2 .albb {
  filter: unset;
}
header:hover .logo img,
header.active .logo img,
header.active2 .logo img {
  filter: unset;
}
header.active {
  animation: sticky 0.65s;
}
@media (max-width: 990px) {
  header {
    display: none;
  }
}
header .logo img {
  height: 3.9375rem;
  filter: brightness(0) invert(1);
}
header .albb {
  width: 6.75rem;
  margin-left: 1rem;
  filter: brightness(0) invert(1);
}
header .ds1 {
  margin-left: 1.75rem;
}
header .ds1 .iconfont {
  font-size: 1.75rem;
  display: block;
  font-weight: 500;
  color: #fff;
}
header .lanuage {
  margin-left: 1.875rem;
  display: block;
}
header .lanuage a {
  font-size: 1.125rem;
  color: #fff;
  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: #192E78;
}
header .center > ul > li {
  float: left;
  padding: 0 1.25rem;
}
header .center > ul > li > a {
  font-size: 1.125rem;
  color: #FFF;
  position: relative;
  font-weight: 400;
}
header .center > ul > li > a::before {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  z-index: 1000;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header .center > ul > li:hover > a {
  color: #192E78;
}
header .center > ul > li:hover > a::before {
  opacity: 1;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header .center > ul > li .sec {
  position: absolute;
  top: calc(100% + 1px);
  width: 15.625rem;
  max-width: inherit;
  left: 50%;
  background: #f9f9f9;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: 400ms ease-in-out;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  padding: 1.0625rem 2.3125rem 1.8125rem 2rem;
  text-align: center;
}
header .center > ul > li .sec.sec1 {
  width: 58.875rem;
  left: auto;
  right: -130%;
  padding: 1.6rem 2.5rem 2.5rem;
}
header .center > ul > li .sec.sec1 .secat1 dl {
  flex: 1;
  text-align: left;
}
header .center > ul > li .sec.sec1 .secat1 dl a {
  display: block;
}
header .center > ul > li .sec.sec1 .secat1 dl > a {
  color: #555555;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5em;
  padding: 0.45rem 0;
}
header .center > ul > li .sec.sec1 .secat1 dl .asrcxa a {
  color: #575757;
  font-size: 1rem;
  line-height: 1.85em;
}
header .center > ul > li .sec.sec1 .secat1 dl .asrcxa a:hover {
  color: #555555;
}
header .center > ul > li .sec > a {
  color: rgba(34, 34, 34, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 3.125rem;
  display: flex;
  justify-content: center;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header .center > ul > li .sec > a:hover {
  color: #192E78;
  font-weight: 600;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header .center > ul > li:hover .sec {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scaleY(1);
}
header .center > ul > li:hover .sec.sec1 {
  transform: translateY(0);
}
header .center > ul > li:hover .sec_box {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
}
header .center > ul > li.active > a {
  color: #FFF;
  font-weight: 700;
}
header .center > ul > li.active > a::before {
  opacity: 1;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.sec_box {
  position: absolute;
  top: 6.25rem;
  left: 50%;
  width: 100%;
  opacity: 0;
  transition: 400ms ease-in-out;
  transform: scaleY(0) translateX(-50%);
  transform-origin: top center;
  background: #fff;
  overflow: hidden;
}
.sec_box .left {
  width: 37%;
  height: 100%;
  background: #F9F9F9;
  padding-left: var(--container);
  padding-right: 2.0625rem;
  padding-top: 1.4375rem;
  padding-bottom: 3.0625rem;
}
.sec_box .left .ul .li {
  position: relative;
}
.sec_box .left .ul .li::before {
  content: '';
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #192E78 0%, rgba(25, 46, 120, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.sec_box .left .ul .li a {
  color: #000;
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 3rem;
  display: flex;
  position: relative;
  z-index: 2;
  padding-left: 1.375rem;
}
.sec_box .left .ul .li:hover::before,
.sec_box .left .ul .li.active::before {
  width: 100%;
}
.sec_box .left .ul .li:hover a,
.sec_box .left .ul .li.active a {
  color: #fff;
  font-weight: 700;
}
.sec_box .right {
  flex: 1;
  padding: 4.5625rem var(--container) 4.5625rem 3.125rem;
}
.sec_box .right .pro_con_box .pro_item {
  display: none;
}
.sec_box .right .pro_con_box .pro_item .title h3 {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3rem;
}
.sec_box .right .pro_con_box .pro_item .title h3 span {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 3rem;
}
.sec_box .right .pro_con_box .pro_item .title p {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.625rem;
  font-weight: 300;
  line-height: 2.625rem;
  /* 161.538% */
}
.sec_box .right .pro_con_box .pro_item.active {
  display: flex;
  justify-content: space-between;
}
.sec_box .right .pro_con_box .pro_item .over {
  width: 23.75rem;
}
.sec_box .right .pro_con_box .pro_item .over img {
  height: 100%;
  width: auto;
}
footer {
  background: #1E283B;
  padding-top: 4.6875rem;
}
footer .foot_tt {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
footer .foot_tt .logo {
  width: 20.625rem;
  filter: brightness(0) invert(1);
}
footer .foot_tt .ri {
  width: 48%;
}
footer .foot_tt .ri li {
  display: flex;
  align-items: center;
}
footer .foot_tt .ri li .icon {
  width: 2rem;
  height: 2rem;
  margin-right: 0.625rem;
}
footer .foot_tt .ri li .icon img {
  filter: brightness(0) invert(1);
}
footer .foot_tt .ri li p {
  color: #FFF;
  font-family: Poppins;
  font-size: 1.125rem;
  font-weight: 700;
}
footer .foot_top {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
footer .foot_top .footnav {
  display: flex;
  justify-content: space-between;
}
footer .foot_top .footnav .tt {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 700;
}
footer .foot_top .footnav .subfootnav {
  margin-top: 0.8125rem;
}
footer .foot_top .footnav .subfootnav .subfootli > a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
}
footer .foot_top .footnav .subfootnav .subfootli > a:hover {
  font-weight: 600;
}
footer .foot_top .footnav .lastli {
  width: 20%;
}
footer .foot_top .footnav .lastli .cont {
  margin-top: 1rem;
}
footer .foot_top .footnav .lastli .cont .contact2 {
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 3.125rem;
  overflow: hidden;
}
footer .foot_top .footnav .lastli .cont .contact2 .inpt {
  flex: 1;
  height: 3.125rem;
}
footer .foot_top .footnav .lastli .cont .contact2 .inpt input {
  background-color: unset;
  border: none;
  height: 100%;
  padding: 0 0.625rem;
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
}
footer .foot_top .footnav .lastli .cont .contact2 .inpt input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
}
footer .foot_top .footnav .lastli .cont .contact2 button {
  width: 4.375rem;
  height: 3.125rem;
  border-radius: 0 0.25rem 0.25rem 0;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  background: #192E78;
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 700;
}
footer .copyright {
  color: rgba(255, 255, 255, 0.5);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75rem;
  /* 175% */
  padding: 1.125rem 0 1.3125rem;
}
footer .copyright a {
  color: rgba(255, 255, 255, 0.5);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75rem;
}
footer .copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75rem;
}
footer .copyright .left span:nth-last-child(1) {
  display: none;
}
.fx_box {
  display: flex;
  justify-content: end;
  align-items: center;
}
.fx_box .fx {
  margin: 0 0.3125rem;
  position: relative;
}
.fx_box .fx:hover .img {
  display: block;
}
.fx_box .fx i {
  display: inline-block;
  width: 1.8125rem;
  height: 1.8125rem;
  line-height: 1.8125rem;
  border-radius: 50%;
  border: 1px solid #787e89;
  color: #787e89;
  font-size: 1.0625rem;
  text-align: center;
}
.fx_box .fx .img {
  display: none;
  position: absolute;
  left: -2rem;
  bottom: -7rem;
  width: 6rem;
  height: 6rem;
  border-radius: 0.625rem;
  background: #FFF;
  padding: 0.1875rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.fx_box .fx .img::before {
  content: '';
  display: block;
  background-color: #fff;
  width: 0.625rem;
  height: 0.4375rem;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  top: -0.4rem;
  left: 2.5rem;
}
@-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 {
  position: relative;
}
.banner .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.banner .hover .p1 {
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 4.25rem;
  font-weight: 700;
}
.banner .hover .p2 {
  color: #FFF;
  font-family: "HarmonyOS Sans SC Thin";
  font-size: 2.125rem;
  font-weight: 300;
}
.banner ul {
  width: 100%;
  position: absolute;
  bottom: 1.875rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 2;
}
.banner ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner ul li:not(:nth-last-child(1)) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.banner ul li .icon {
  width: 5rem;
}
.banner ul li h3 {
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 3rem;
  font-weight: 700;
}
.banner ul li h3 sup {
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 700;
  top: -1.5em;
}
.banner ul li .tt {
  margin-left: 1rem;
  color: #FFF;
  font-family: Inter;
  font-size: 1.25rem;
  font-weight: 700;
}
.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;
  justify-content: start;
  bottom: 10.375rem;
  padding-left: var(--container);
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
.banner .swiper-pagination-bullet {
  width: 1.875rem;
  height: 0.1875rem;
  margin-right: 0.625rem;
  border: 1px solid #fff;
  opacity: 0.3;
  background: #fff;
}
.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;
  justify-content: center;
}
.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: 1.875rem;
  height: 0.1875rem;
  border-radius: unset;
  border: unset;
  opacity: 0.3;
  background: #000;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #192E78;
  opacity: 1;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.neibanner {
  position: relative;
}
.neibanner .neibanner_txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.neibanner .neibanner_txt.neibanner_txt2 {
  top: 45%;
}
.neibanner .neibanner_txt h3 {
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 4.25rem;
  font-weight: 500;
}
.neibanner .neibanner_txt h3 b {
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 2.5rem;
  font-weight: 300;
}
@media (max-width: 767px) {
  .neibanner .neibanner_txt h3 {
    font-size: 24px;
  }
}
.neibanner .neibanner_txt p {
  margin-top: 1rem;
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 2.125rem;
  font-weight: 300;
  line-height: 2.625rem;
}
@media (max-width: 767px) {
  .neibanner .neibanner_txt p {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 5px;
  }
}
.neibanner ul {
  width: 100%;
  position: absolute;
  bottom: 1.875rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.neibanner ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.neibanner ul li:not(:nth-last-child(1)) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.neibanner ul li .icon {
  width: 5rem;
}
.neibanner ul li h3 {
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 3rem;
  font-weight: 700;
}
.neibanner ul li h3 sup {
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 700;
  top: -1.5em;
}
.neibanner ul li .tt {
  margin-left: 1rem;
  color: #FFF;
  font-family: Inter;
  font-size: 1.25rem;
  font-weight: 700;
}
.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: 20px;
  color: #000;
  font-weight: 700;
}
.all_title h3 {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 3rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .all_title h3 {
    font-size: 24px;
  }
}
.all_title p {
  margin-top: 0.875rem;
  color: rgba(0, 0, 0, 0.7);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
}
@media (max-width: 767px) {
  .all_title p {
    font-size: 16px;
    margin-top: 0;
  }
}
.all_title.white h3,
.all_title.white p {
  color: #fff;
}
.list_conatct_one {
  padding-bottom: 8.4375rem;
  background: linear-gradient(180deg, #F9F9F9 0%, #FFF 100%);
}
@media (max-width: 767px) {
  .list_conatct_one {
    padding-bottom: 30px;
  }
}
.list_conatct_one .content .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .list_conatct_one .content .grid_box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.list_conatct_one .content .grid_box .grid_item {
  border-radius: 1.875rem;
  border: 1px solid rgba(25, 46, 120, 0.1);
  background: linear-gradient(180deg, #F3F6FF 0%, #FFF 100%), linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(180deg, #FFF 0%, #F3F6FF 100%);
  padding: 3.75rem 2.8125rem 3.125rem;
}
@media (max-width: 767px) {
  .list_conatct_one .content .grid_box .grid_item {
    padding: 20px 15px;
  }
}
.list_conatct_one .content .grid_box .grid_item .tit {
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 2rem;
  padding-bottom: 2.125rem;
  border-bottom: 1px solid rgba(25, 46, 120, 0.1);
  position: relative;
}
@media (max-width: 767px) {
  .list_conatct_one .content .grid_box .grid_item .tit {
    font-size: 22px;
    line-height: 1.5;
    padding-bottom: 20px;
  }
}
.list_conatct_one .content .grid_box .grid_item .tit::before {
  content: '';
  display: block;
  width: 4.375rem;
  height: 0.25rem;
  background-color: #192E78;
  position: absolute;
  left: 0;
  bottom: -2px;
  border-radius: 0.25rem;
}
.list_conatct_one .content .grid_box .grid_item .cont {
  padding-top: 2.3125rem;
}
.list_conatct_one .content .grid_box .grid_item .cont ul li {
  display: flex;
  margin-bottom: 1.4375rem;
}
.list_conatct_one .content .grid_box .grid_item .cont ul li .icon {
  width: 1.75rem;
  height: 1.75rem;
}
.list_conatct_one .content .grid_box .grid_item .cont ul li .tt {
  flex: 1;
  padding-left: 1.0625rem;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
}
.list_conatct_one .content .grid_box .grid_item .cont ul li .tt a {
  font-weight: 700;
}
.list_conatct_one .content .grid_box .grid_item .cont .ewm_box {
  display: flex;
  gap: 1.375rem;
}
@media (max-width: 767px) {
  .list_conatct_one .content .grid_box .grid_item .cont .ewm_box {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.list_conatct_one .content .grid_box .grid_item .cont .ewm_box .ewm {
  width: 7.5rem;
}
@media (max-width: 767px) {
  .list_conatct_one .content .grid_box .grid_item .cont .ewm_box .ewm {
    width: 100%;
  }
}
.list_conatct_one .content .grid_box .grid_item .cont .ewm_box .ewm img {
  border-radius: 0.625rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
}
.list_conatct_one .content .grid_box .grid_item .cont .ewm_box .ewm p {
  padding-top: 0.9375rem;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75rem;
}
.list_conatct_one .content .grid_box .grid_item .cont .bot_box {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(25, 46, 120, 0.1);
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.75rem;
}
.list_conatct_one .content .grid_box .grid_item .cont .bot_box p {
  margin-bottom: 0.9375rem;
}
.list_contact_two {
  padding-top: 7.6875rem;
  padding-bottom: 7.6875rem;
  background-size: cover;
}
@media (max-width: 767px) {
  .list_contact_two {
    padding: 30px 0;
  }
}
.list_contact_two .left {
  padding-right: 1.5625rem;
}
@media (max-width: 767px) {
  .list_contact_two .left {
    padding-right: 15px;
  }
}
.list_contact_two .left .msg-a1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.list_contact_two .left .msg-a1.msg-aa {
  margin-top: 1.25rem;
  grid-template-columns: 1fr;
}
@media (max-width: 767px) {
  .list_contact_two .left .msg-a1 {
    grid-template-columns: 1fr;
  }
}
.list_contact_two .left .msg-a1 .inpt {
  display: flex;
  align-items: center;
  border-radius: 0.625rem;
  border: 1px solid rgba(25, 46, 120, 0.15);
  background: #FFF;
  overflow: hidden;
  padding: 0 0.625rem;
  height: 3.125rem;
}
.list_contact_two .left .msg-a1 .inpt.sele_inpt {
  position: relative;
  padding-right: 1rem;
}
.list_contact_two .left .msg-a1 .inpt p {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
  white-space: nowrap;
}
.list_contact_two .left .msg-a1 .inpt p span {
  color: #E60000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.25rem;
}
.list_contact_two .left .msg-a1 .inpt input {
  max-width: 70%;
  flex: 1;
  background: none;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-left: 0.625rem;
}
.list_contact_two .left .msg-a1 .inpt select {
  padding-left: 0.625rem;
  flex: 1;
  background: none;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
}
.list_contact_two .left .msg-a1 .inpt i {
  color: #192E78;
  font-weight: 600;
  font-size: 0.75rem;
}
.list_contact_two .left .msg-a2 .inpt {
  border-radius: 0.625rem;
  border: 1px solid rgba(25, 46, 120, 0.15);
  background: #FFF;
  padding: 0.625rem;
  display: flex;
  align-items: start;
}
.list_contact_two .left .msg-a2 .inpt p {
  text-wrap: nowrap;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
}
.list_contact_two .left .msg-a2 .inpt p span {
  color: #E60000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.25rem;
}
.list_contact_two .left .msg-a2 .inpt textarea {
  flex: 1;
  color: rgba(0, 0, 0, 0.3);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
  background: none;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
}
.list_contact_two .left .div_aghgha button {
  width: 8.75rem;
  height: 3.125rem;
  border-radius: 1.875rem;
  background: #192E78;
  border: 2px solid #192E78;
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.625rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_contact_two .left .div_aghgha button i {
  font-size: 1rem;
  vertical-align: middle;
}
.list_contact_two .left .div_aghgha button:hover {
  background-color: unset;
  color: #192E78;
}
.list_contact_two .right {
  padding-left: 2.1875rem;
}
@media (max-width: 767px) {
  .list_contact_two .right {
    padding-left: 15px;
    padding-top: 20px;
  }
}
.list_contact_two .right .over {
  border-radius: 1.875rem;
}
.list_topnews {
  background-size: cover;
  padding-top: 14.0625rem;
  padding-bottom: 6.3125rem;
}
.list_topnews .swiper_newstop {
  margin: 0 -1.75rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 3rem;
}
.list_topnews .swiper_newstop .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
.list_topnews .swiper_newstop .swiper-pagination-bullet {
  border-color: #fff;
  background: #fff;
}
.list_topnews .swiper_newstop .swiper-slide {
  padding: 0 1.75rem;
}
.list_topnews .swiper_newstop .swiper-slide:hover .newstop_box {
  background: linear-gradient(180deg, rgba(25, 46, 120, 0) 0%, rgba(25, 46, 120, 0.3) 43.27%), #FFF;
}
.list_topnews .swiper_newstop .swiper-slide:hover .newstop_box .tit {
  color: #192E78;
}
.list_topnews .swiper_newstop .swiper-slide:hover .newstop_box .dd {
  height: 0;
  margin-top: 0;
}
.list_topnews .swiper_newstop .swiper-slide:hover .newstop_box .over {
  bottom: 0;
}
.list_topnews .swiper_newstop .swiper-slide .newstop_box {
  overflow: hidden;
  height: 32.5rem;
  padding: 3.0625rem 2.3125rem 4.3125rem;
  border-radius: 1.875rem;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}
.list_topnews .swiper_newstop .swiper-slide .newstop_box .tit {
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 2.625rem;
  /* 150% */
}
.list_topnews .swiper_newstop .swiper-slide .newstop_box .dd {
  margin-top: 1.8125rem;
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
  /*height: 22.25rem;*/
  transition: all 0.4s;
  -webkit-line-clamp: 4;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  /* 177.778% */
}
.list_topnews .swiper_newstop .swiper-slide .newstop_box .time {
  color: #FFF;
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2.25rem;
  position: absolute;
  bottom: 4.3125rem;
}
.list_topnews .swiper_newstop .swiper-slide .newstop_box .more {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1.875rem;
  background: #192E78;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
}
.list_topnews .swiper_newstop .swiper-slide .newstop_box .more i {
  color: #fff;
  font-size: 0.875rem;
}
.list_topnews .swiper_newstop .swiper-slide .newstop_box .over {
  width: 100%;
  border-radius: 1.875rem;
  position: absolute;
  left: 0;
  bottom: -100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_news_two .title {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 3rem;
  font-weight: 500;
}
.list_news_two form {
  width: 45%;
}
.list_news_two .input_box {
  padding-left: 1.25rem;
  height: 4.375rem;
  display: flex;
  border-radius: 2.5rem;
  border: 1px solid rgba(26, 31, 61, 0.2);
  background: #FFF;
  overflow: hidden;
}
.list_news_two .input_box input {
  flex: 1;
  height: 100%;
  color: rgba(0, 0, 0, 0.6);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
}
.list_news_two .input_box button {
  border-radius: 2.5rem;
  background: #192E78;
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.375rem;
  font-weight: 500;
  padding: 0 1.8125rem;
  border: none;
}
.list_news_two .tabul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.list_news_two .tabul .tabli {
  flex: 1;
}
.list_news_two .tabul .tabli a {
  height: 4.5rem;
  display: block;
  width: 100%;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 4.5rem;
  text-align: center;
  border-radius: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_news_two .tabul .tabli a::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #192E78;
  position: absolute;
  left: -100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_news_two .tabul .tabli a span {
  position: relative;
  z-index: 2;
}
.list_news_two .tabul .tabli.active a,
.list_news_two .tabul .tabli:hover a {
  color: #FFF;
  font-weight: 700;
}
.list_news_two .tabul .tabli.active a::before,
.list_news_two .tabul .tabli:hover a::before {
  left: 0;
}
.list_news_two .swiper_newslist {
  position: relative;
  overflow: hidden;
  padding-bottom: 3.125rem;
}
.list_news_two .swiper_newslist .newslist .over {
  width: 50%;
  border-radius: 1.875rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.list_news_two .swiper_newslist .newslist .ri {
  width: 50%;
  padding-left: 5rem;
}
.list_news_two .swiper_newslist .newslist .ri .tit {
  color: #000;
  font-family: "HarmonyOS Sans SC";
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.5;
}
.list_news_two .swiper_newslist .newslist .ri .dd,
.list_news_two .swiper_newslist .newslist .ri .time {
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2.25rem;
}
.all_more {
  position: relative;
  width: 8.75rem;
  height: 3.125rem;
  border-radius: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 700;
  overflow: hidden;
  border: 2px solid #192E78;
  box-sizing: border-box;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.all_more::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #192E78;
  position: absolute;
  left: 0%;
  top: 0%;
  bottom: 0;
  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: 2;
}
.all_more i {
  margin-left: 0.3125rem;
  font-size: 1rem;
}
.all_more:hover {
  color: #192E78;
}
.all_more:hover::before {
  left: 100%;
}
.all_more2 {
  position: relative;
  width: 8.75rem;
  height: 3.125rem;
  border-radius: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 700;
  overflow: hidden;
  border: 2px solid #192E78;
  box-sizing: border-box;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.all_more2::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #192E78;
  position: absolute;
  left: 0%;
  top: 0%;
  bottom: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.all_more2 span {
  position: relative;
  z-index: 2;
}
.all_more2 i {
  margin-left: 0.3125rem;
  font-size: 1rem;
}
.all_more2:hover {
  color: #fff;
  border-color: #fff;
}
.all_more2:hover::before {
  left: 100%;
}
.list_news_three {
  background: #F9F9F9;
}
.list_news_three .title {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 3rem;
  font-weight: 500;
}
.list_news_three .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.9375rem 3.4375rem;
}
.list_news_three .grid_box .grid_item .over {
  border-radius: 1.875rem;
}
.list_news_three .grid_box .grid_item .tit {
  padding-top: 0.9375rem;
  color: #000;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 3.5rem;
}
.list_news_three .grid_box .grid_item .dd {
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2rem;
}
.list_news_three .grid_box .grid_item .time {
  margin-top: 0.875rem;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2.25rem;
}
.list_news_three .grid_box .grid_item:hover .tit,
.list_news_three .grid_box .grid_item:hover .time {
  color: #192E78;
}
.list_messag {
  background: #F3F6FF;
}
.list_messag .msg-a1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .list_messag .msg-a1 {
    grid-template-columns: 1fr;
  }
}
.list_messag .msg-a1 .inpt {
  display: flex;
  align-items: center;
  border-radius: 0.625rem;
  border: 1px solid rgba(25, 46, 120, 0.15);
  background: #FFF;
  overflow: hidden;
  padding: 0 0.625rem;
  height: 3.125rem;
}
.list_messag .msg-a1 .inpt:nth-last-child(1) {
  grid-row: 2/3;
  grid-column: 2/4;
}
.list_messag .msg-a1 .inpt.sele_inpt {
  position: relative;
  padding-right: 1rem;
}
.list_messag .msg-a1 .inpt p {
  text-wrap: nowrap;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
  white-space: nowrap;
}
.list_messag .msg-a1 .inpt p span {
  color: #E60000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.25rem;
}
.list_messag .msg-a1 .inpt input {
  max-width: 70%;
  background: none;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-left: 0.625rem;
}
.list_messag .msg-a1 .inpt select {
  padding-left: 0.625rem;
  flex: 1;
  background: none;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
}
.list_messag .msg-a1 .inpt i {
  color: #192E78;
  font-weight: 600;
  font-size: 0.75rem;
}
.list_messag .msg-a2 .inpt {
  border-radius: 0.625rem;
  border: 1px solid rgba(25, 46, 120, 0.15);
  background: #FFF;
  padding: 0.625rem;
  display: flex;
  align-items: start;
}
.list_messag .msg-a2 .inpt p {
  text-wrap: nowrap;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
}
.list_messag .msg-a2 .inpt p span {
  color: #E60000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.25rem;
}
.list_messag .msg-a2 .inpt textarea {
  flex: 1;
  color: rgba(0, 0, 0, 0.3);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
  background: none;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
}
.list_messag .div_aghgha button {
  margin: 0 auto;
  width: 8.75rem;
  height: 3.125rem;
  border-radius: 1.875rem;
  background: #192E78;
  border: 2px solid #192E78;
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.625rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_messag .div_aghgha button i {
  font-size: 1rem;
  vertical-align: middle;
}
.list_messag .div_aghgha button:hover {
  background-color: unset;
  color: #192E78;
}
.news_show_box .flex_box {
  display: flex;
  justify-content: space-between;
}
.news_show_box .flex_box .left {
  flex: 1;
  padding-right: 6.25rem;
}
.news_show_box .flex_box .left .title {
  padding-bottom: 1.125rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.news_show_box .flex_box .left .title h3 {
  color: #000;
  font-family: "HarmonyOS Sans SC";
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 3.5rem;
}
.news_show_box .flex_box .left .title .subtit {
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2.25rem;
  display: flex;
  align-items: center;
}
.news_show_box .flex_box .left .title .subtit .ri {
  width: 30%;
}
.news_show_box .flex_box .left .content {
  padding-top: 2.8125rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2rem;
}
.news_show_box .flex_box .left .content strong {
  font-weight: 700;
}
.news_show_box .flex_box .left .content ul li {
  position: relative;
  padding-left: 1.25rem;
}
.news_show_box .flex_box .left .content ul li::before {
  content: '';
  display: block;
  width: 0.1875rem;
  height: 0.1875rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  left: 0.625rem;
  top: 0.875rem;
}
.news_show_box .flex_box .left .shangxia_p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news_show_box .flex_box .left .shangxia_p .shangxia {
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2rem;
}
.news_show_box .flex_box .left .shangxia_p .shangxia span,
.news_show_box .flex_box .left .shangxia_p .shangxia i {
  opacity: 0.5;
}
.news_show_box .flex_box .left .shangxia_p .shangxia .coo span,
.news_show_box .flex_box .left .shangxia_p .shangxia .coo i {
  opacity: 1;
}
.news_show_box .flex_box .left .shangxia_p .shangxia .coo:hover {
  color: #192E78;
}
.news_show_box .flex_box .left .shangxia_p .shangxia .coo:hover i {
  background-color: #192E78;
  color: #fff;
  border-color: #192E78;
}
.news_show_box .flex_box .left .shangxia_p .shangxia i {
  font-size: 0.875rem;
  color: #000;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  border-radius: 1.5625rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.1);
}
.news_show_box .flex_box .right {
  width: 24.875rem;
  position: sticky;
  top: 6.875rem;
  height: 100%;
}
.news_show_box .flex_box .right .title {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 2.5rem;
  font-weight: 500;
}
.news_show_box .flex_box .right ul {
  margin-top: 2.375rem;
}
.news_show_box .flex_box .right ul li {
  border-top: 1px solid #DDE3F2;
  padding: 1.25rem 0;
}
.news_show_box .flex_box .right ul li:nth-last-child(1) {
  border-bottom: 1px solid #DDE3F2;
}
.news_show_box .flex_box .right ul li h3 {
  color: #000;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 3.5rem;
}
.news_show_box .flex_box .right ul li p {
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2rem;
}
.news_show_box .flex_box .right ul li p.p1 {
  margin-top: 0.875rem;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2.25rem;
}
.news_show_box .flex_box .right .sq_message {
  margin-top: 2.5rem;
  border-radius: 1.875rem;
  background: #F3F6FF;
  padding: 3.0625rem 2.25rem 3.625rem;
}
.news_show_box .flex_box .right .sq_message .msg-a1 {
  display: grid;
  gap: 1.25rem;
}
.news_show_box .flex_box .right .sq_message .msg-a1 .inpt {
  display: flex;
  align-items: center;
  border-radius: 0.625rem;
  border: 1px solid rgba(25, 46, 120, 0.15);
  background: #FFF;
  overflow: hidden;
  padding: 0 0.625rem;
  height: 3.125rem;
}
.news_show_box .flex_box .right .sq_message .msg-a1 .inpt.sele_inpt {
  position: relative;
  padding-right: 1rem;
}
.news_show_box .flex_box .right .sq_message .msg-a1 .inpt p {
  text-wrap: nowrap;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
}
.news_show_box .flex_box .right .sq_message .msg-a1 .inpt p span {
  color: #E60000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.25rem;
}
.news_show_box .flex_box .right .sq_message .msg-a1 .inpt input {
  flex: 1;
  background: none;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-left: 0.625rem;
}
.news_show_box .flex_box .right .sq_message .msg-a1 .inpt select {
  padding-left: 0.625rem;
  flex: 1;
  background: none;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
}
.news_show_box .flex_box .right .sq_message .msg-a1 .inpt i {
  color: #192E78;
  font-weight: 600;
  font-size: 0.75rem;
}
.news_show_box .flex_box .right .sq_message .msg-a2 .inpt {
  border-radius: 0.625rem;
  border: 1px solid rgba(25, 46, 120, 0.15);
  background: #FFF;
  padding: 0.625rem;
  display: flex;
  align-items: start;
}
.news_show_box .flex_box .right .sq_message .msg-a2 .inpt p {
  text-wrap: nowrap;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
}
.news_show_box .flex_box .right .sq_message .msg-a2 .inpt textarea {
  flex: 1;
  color: rgba(0, 0, 0, 0.3);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
  background: none;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
}
.news_show_box .flex_box .right .sq_message .div_aghgha button {
  width: 8.75rem;
  height: 3.125rem;
  border-radius: 1.875rem;
  background: #192E78;
  border: 2px solid #192E78;
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.625rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.news_show_box .flex_box .right .sq_message .div_aghgha button i {
  font-size: 1rem;
  vertical-align: middle;
}
.news_show_box .flex_box .right .sq_message .div_aghgha button:hover {
  background-color: unset;
  color: #192E78;
}
.news_show_box .flex_box .right .sq_message .cont_box {
  border-top: 1px solid #DDE3F2;
  padding-top: 1.875rem;
}
.news_show_box .flex_box .right .sq_message .cont_box .tt {
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}
.news_show_box .flex_box .right .sq_message .cont_box ul {
  margin-top: 0;
}
.news_show_box .flex_box .right .sq_message .cont_box ul li {
  border: unset;
  display: flex;
  padding: 0;
  margin-top: 1.4375rem;
}
.news_show_box .flex_box .right .sq_message .cont_box ul li .icon {
  width: 1.75rem;
  height: 1.75rem;
}
.news_show_box .flex_box .right .sq_message .cont_box ul li .tt {
  padding-left: 1rem;
  flex: 1;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.75rem;
}
.list_hyyy {
  padding-top: 6rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.list_hyyy .ajhhsd {
  color: #fff;
}
.list_hyyy .ajhhsd svg {
  filter: brightness(0) invert(1);
}
.list_hyyy .ajhhsd a {
  color: #fff;
}
.list_hyyy .cont {
  position: relative;
}
.list_hyyy .cont .yuan {
  width: 49.0625rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: bigamin2 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  opacity: 0;
}
.list_hyyy .cont .rtt {
  width: 24.0625rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  /* 涟漪的基础样式 */
  /* 设置动画延迟，形成层叠扩散效果 */
  /* 定义动画序列 */
}
.list_hyyy .cont .rtt .yy .y {
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
}
.list_hyyy .cont .rtt .yy .y.active {
  opacity: 1;
}
.list_hyyy .cont .rtt .yy .y:nth-child(1) {
  top: 44%;
  left: 48%;
}
.list_hyyy .cont .rtt .yy .y:nth-child(2) {
  top: 37%;
  left: 57%;
}
.list_hyyy .cont .rtt .yy .y:nth-child(3) {
  top: 19%;
  left: 50%;
}
.list_hyyy .cont .rtt .yy .y:nth-child(4) {
  top: 25%;
  left: 50%;
}
.list_hyyy .cont .rtt .yy .y:nth-child(5) {
  top: 4%;
  left: 48%;
}
.list_hyyy .cont .rtt .yy .y:nth-child(6) {
  top: 30%;
  left: 50%;
}
.list_hyyy .cont .rtt .yy .y:nth-child(7) {
  top: 61%;
  left: 58%;
}
.list_hyyy .cont .rtt .yy .y:nth-child(8) {
  top: 35%;
  left: 40%;
}
.list_hyyy .cont .rtt .yy .y:nth-child(9) {
  top: 26%;
  left: 52%;
}
.list_hyyy .cont .rtt .yy .y:nth-child(10) {
  top: 51%;
  left: 79%;
}
.list_hyyy .cont .rtt .yy .y:nth-child(11) {
  top: 57%;
  left: 55%;
}
.list_hyyy .cont .rtt .ripple {
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-color: #3fb0ff;
  border-radius: 50%;
  opacity: 0;
  /* 触发动画：时长3秒，线性，无限循环 */
  animation: ripple-effect 3s linear infinite;
}
.list_hyyy .cont .rtt .ripple:nth-child(2) {
  animation-delay: 1s;
}
.list_hyyy .cont .rtt .ripple:nth-child(3) {
  animation-delay: 2s;
}
@keyframes ripple-effect {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes txtshowt {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes txtshow {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes txtshowr {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bigamin2 {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.list_hyyy ul li {
  display: flex;
  align-items: center;
  position: absolute;
  opacity: 0;
}
.list_hyyy ul li:nth-child(even) {
  animation: txtshow 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
.list_hyyy ul li:nth-child(even) .icon {
  order: 2;
}
.list_hyyy ul li:nth-child(even) .tt {
  text-align: right;
}
.list_hyyy ul li:nth-child(odd) {
  animation: txtshowr 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
.list_hyyy ul li:nth-child(1) {
  top: 13%;
  right: 15%;
  animation-delay: 1s;
}
.list_hyyy ul li:nth-child(2) {
  top: 13%;
  left: 15%;
  animation-delay: 1s;
}
.list_hyyy ul li:nth-child(3) {
  top: 25%;
  right: 9%;
  animation-delay: 1.1s;
}
.list_hyyy ul li:nth-child(4) {
  top: 25%;
  left: 9%;
  animation-delay: 1.1s;
}
.list_hyyy ul li:nth-child(5) {
  top: 39%;
  right: 6%;
  animation-delay: 1.2s;
}
.list_hyyy ul li:nth-child(6) {
  top: 39%;
  left: 6%;
  animation-delay: 1.2s;
}
.list_hyyy ul li:nth-child(7) {
  top: 54%;
  right: 7%;
  animation-delay: 1.3s;
}
.list_hyyy ul li:nth-child(8) {
  top: 54%;
  left: 7%;
  animation-delay: 1.3s;
}
.list_hyyy ul li:nth-child(9) {
  top: 68%;
  right: 10%;
  animation-delay: 1.4s;
}
.list_hyyy ul li:nth-child(10) {
  top: 68%;
  left: 10%;
  animation-delay: 1.4s;
}
.list_hyyy ul li:nth-child(11) {
  top: 80%;
  right: 18%;
  animation-delay: 1.5s;
}
.list_hyyy ul li.active,
.list_hyyy ul li:hover {
  cursor: pointer;
}
.list_hyyy ul li.active .icon,
.list_hyyy ul li:hover .icon {
  background-color: #fff;
  border-color: #555a6d;
}
.list_hyyy ul li.active .icon img,
.list_hyyy ul li:hover .icon img {
  filter: unset;
}
.list_hyyy ul li.active .tt,
.list_hyyy ul li:hover .tt {
  color: #fff;
}
.list_hyyy ul li .icon {
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 50%;
  background: #3fb0ff;
  border: 0.375rem solid #004C82;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_hyyy ul li .icon img {
  width: 60%;
  filter: brightness(0) invert(1);
}
.list_hyyy ul li .tt {
  width: 9.0625rem;
  color: #3FB0FF;
  text-align: left;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 1rem;
}
.list_hyyy .swiper_box {
  border-radius: 1.875rem;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.4688rem);
  height: 25rem;
}
.list_hyyy .swiper_box .swiper_item {
  padding: 2rem 3.0625rem 0 3.1875rem;
  display: none;
}
.list_hyyy .swiper_box .swiper_item .swiper-button-prev,
.list_hyyy .swiper_box .swiper_item .swiper-button-next {
  width: 3.25rem;
  height: 3.25rem;
  line-height: 3.25rem;
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.2);
}
.list_hyyy .swiper_box .swiper_item .swiper-button-prev i,
.list_hyyy .swiper_box .swiper_item .swiper-button-next i {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
.list_hyyy .swiper_box .swiper_item.active {
  display: block;
}
.list_hyyy .swiper_box .swiper_item .title {
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 2.625rem;
  font-weight: 300;
  line-height: 3.625rem;
}
.list_hyyy .swiper_box .swiper_item .title span {
  color: #FFF;
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 3rem;
  font-weight: 500;
  line-height: 3.625rem;
}
.list_hyyy .swiper_box .swiper_item .swiper {
  position: relative;
  margin: 1.875rem -1rem 0;
  overflow: hidden;
  padding-bottom: 4rem;
}
.list_hyyy .swiper_box .swiper_item .swiper .swiper-pagination-bullet {
  background-color: #fff;
}
.list_hyyy .swiper_box .swiper_item .swiper .swiper-slide {
  padding: 0 1rem;
}
.list_hyyy .swiper_box .swiper_item .swiper .swiper-slide .pro_box .over {
  border-radius: 1.875rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  padding: 1rem;
  height: 8.75rem;
  text-align: center;
}
.list_hyyy .swiper_box .swiper_item .swiper .swiper-slide .pro_box .over img {
  height: 100%;
  width: auto;
}
.list_hyyy .swiper_box .swiper_item .swiper .swiper-slide .pro_box .tit {
  padding-top: 1.8125rem;
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.375rem;
  font-weight: 400;
  text-align: center;
}
.list_hyyy_two {
  padding-top: 6.25rem;
  padding-bottom: 7.5rem;
}
.list_hyyy_two .swiper_cpjjfa {
  position: relative;
  overflow: hidden;
  padding-bottom: 3.75rem;
  margin: 0 -1.75rem;
}
.list_hyyy_two .swiper_cpjjfa .swiper-slide {
  padding: 0 1.75rem;
}
.list_hyyy_two .swiper_cpjjfa .swiper-slide .news_box .over {
  border-radius: 1.875rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.list_hyyy_two .swiper_cpjjfa .swiper-slide .news_box .text {
  padding: 0.9375rem 0 0;
}
.list_hyyy_two .swiper_cpjjfa .swiper-slide .news_box .text h3 {
  color: #000;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 3.5rem;
}
.list_hyyy_two .swiper_cpjjfa .swiper-slide .news_box .text p {
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2rem;
}
.list_hyyy_two .swiper_cpjjfa .swiper-slide .news_box .text .time {
  margin-top: 0.875rem;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2.25rem;
}
.list_custom_one .content .flex_box {
  display: flex;
}
.list_custom_one .content .left {
  width: calc(100% - 26.25rem);
}
.list_custom_one .content .left .swiper_hxfw {
  position: relative;
  overflow: hidden;
}
.list_custom_one .content .left .swiper_hxfw .hxfw_box .over {
  border-radius: 1.875rem;
  height: 35rem;
}
.list_custom_one .content .left .swiper_hxfw .hxfw_box .over img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list_custom_one .content .left .swiper_hxfw .hxfw_box .text {
  padding: 2.75rem 0 0;
}
.list_custom_one .content .left .swiper_hxfw .hxfw_box .text h3 {
  color: #192E78;
  font-family: "HarmonyOS Sans SC";
  font-size: 2.25rem;
  font-weight: 700;
}
.list_custom_one .content .left .swiper_hxfw .hxfw_box .text .dd {
  margin-top: 0.625rem;
  color: #000;
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2.25rem;
}
.list_custom_one .content .right {
  width: 26.25rem;
  margin-left: -1.875rem;
}
.list_custom_one .content .right ul {
  padding: 3.125rem 0 3.75rem;
  border-radius: 0 1.875rem 1.875rem 0;
  background: #F9F9F9;
  height: 35rem;
}
.list_custom_one .content .right ul li {
  color: #000;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.625rem;
  font-weight: 300;
  line-height: 5.375rem;
  padding-left: 3rem;
  margin: 0.2188rem 0;
  position: relative;
  display: flex;
  align-items: center;
}
.list_custom_one .content .right ul li::before {
  content: '';
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #192E78;
  position: absolute;
  right: 0;
  z-index: 2;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_custom_one .content .right ul li i {
  display: inline-block;
  width: 5rem;
  height: 0.0625rem;
  background-color: #fff;
  position: relative;
  z-index: 3;
  margin-right: 1.1875rem;
  opacity: 0;
}
.list_custom_one .content .right ul li span {
  position: relative;
  z-index: 3;
}
.list_custom_one .content .right ul li.active,
.list_custom_one .content .right ul li:hover {
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 2rem;
  font-weight: 700;
}
.list_custom_one .content .right ul li.active::before,
.list_custom_one .content .right ul li:hover::before {
  width: 100%;
}
.list_custom_one .content .right ul li.active i,
.list_custom_one .content .right ul li:hover i {
  opacity: 1;
}
.list_custom_two {
  background: #F3F6FF;
}
.list_custom_two .gjg_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4.25rem 7.875rem;
}
.list_custom_two .gjg_grid .hjg_box .text {
  padding-top: 0.9375rem;
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
}
.list_custom_two .swiper_hjg {
  position: relative;
  overflow: hidden;
  padding-bottom: 4.375rem;
}
.list_custom_two .swiper_hjg .swiper-slide {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4.25rem 7.875rem;
}
.list_custom_two .swiper_hjg .swiper-slide .hjg_box .text {
  padding-top: 0.9375rem;
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
}
.list_custom_three .grid_box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.1875rem 2.375rem;
}
.list_custom_three .grid_box .grid_item .over {
  border-radius: 1.875rem;
  background: #F9F9F9;
  padding: 3.375rem 1.9375rem;
}
.list_custom_three .swiper_zsj {
  position: relative;
  overflow: hidden;
  padding-bottom: 3.75rem;
}
.list_custom_three .swiper_zsj .swiper-slide {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.1875rem 2.375rem;
}
.list_custom_three .swiper_zsj .swiper-slide .grid_item .over {
  border-radius: 1.875rem;
  background: #F9F9F9;
  padding: 3.375rem 1.9375rem;
}
.list_custom_four {
  background: #F9F9F9;
}
.list_custom_four .grid_box {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4.25rem 2rem;
}
.list_custom_four .grid_box .grid_item .over {
  width: 8.125rem;
  height: 8.125rem;
  padding: 0.9375rem;
  margin: 0 auto;
}
.list_custom_four .grid_box .grid_item .text {
  padding-top: 0.9375rem;
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
}
.list_custom_four .swiper_khcp {
  position: relative;
  overflow: hidden;
  padding-bottom: 4.375rem;
}
.list_custom_four .swiper_khcp .swiper-slide {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4.25rem 7.875rem;
}
.list_custom_four .swiper_khcp .swiper-slide .grid_item .over {
  padding: 0.9375rem;
}
.list_custom_four .swiper_khcp .swiper-slide .grid_item .text {
  padding-top: 0.9375rem;
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
}
.list_custom_five {
  padding-bottom: 6.0625rem;
  padding-top: 7.5rem;
  background: #F3F6FF;
}
.list_custom_five .grid_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.625rem;
}
.list_custom_five .grid_box .grid_item {
  height: 22.5rem;
  padding-top: 4.0625rem;
  padding-left: 1.875rem;
  position: relative;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_custom_five .grid_box .grid_item::after {
  content: '';
  display: block;
  width: 0%;
  height: 100%;
  background-color: #192E78;
  border-radius: 1.875rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_custom_five .grid_box .grid_item:hover {
  cursor: pointer;
}
.list_custom_five .grid_box .grid_item:hover::after {
  width: 100%;
}
.list_custom_five .grid_box .grid_item:hover .icon {
  filter: brightness(0) invert(1);
}
.list_custom_five .grid_box .grid_item:hover .text h3,
.list_custom_five .grid_box .grid_item:hover .text .pp {
  color: #fff;
}
.list_custom_five .grid_box .grid_item .icon {
  width: 5rem;
  height: 5rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_custom_five .grid_box .grid_item .text {
  padding-top: 1.5625rem;
  position: relative;
  z-index: 2;
}
.list_custom_five .grid_box .grid_item .text h3 {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 2.125rem;
  font-weight: 400;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_custom_five .grid_box .grid_item .text .pp {
  margin-top: 1.25rem;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_custom_six {
  padding-top: 7.4375rem;
  padding-bottom: 6.3125rem;
}
.list_custom_six .content ul li {
  border-radius: 1.875rem;
  border: 1px solid rgba(25, 46, 120, 0.2);
  background: #FFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5625rem 2.5625rem 2.5625rem 1.875rem;
  margin-bottom: 1.25rem;
}
.list_custom_six .content ul li.active {
  background: #F3F6FF;
  border: 1px solid rgba(25, 46, 120, 0.2);
}
.list_custom_six .content ul li.active .tit .pp {
  min-height: 1.875rem;
}
.list_custom_six .content ul li .tit h3 {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.5rem;
  font-weight: 400;
}
.list_custom_six .content ul li .tit .pp {
  margin-top: 0.5rem;
  color: #192E78;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2rem;
  height: 0;
  min-height: 0;
  overflow: hidden;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_custom_six .content ul li .icon {
  width: 2.6875rem;
  height: 2.6875rem;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_custom_six .content ul li .icon i {
  font-size: 1.125rem;
  color: #000;
}
.channel_pro {
  padding-bottom: 7.5rem;
}
.channel_pro .tt {
  color: #192E78;
  font-family: "HarmonyOS Sans SC";
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 3.5rem;
}
.channel_pro .tit {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 3.5rem;
}
.channel_pro .desc {
  width: 45%;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2rem;
}
.channel_pro .content {
  margin-top: 6.125rem;
}
.channel_pro .content .grid_box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4.625rem 1rem;
}
.channel_pro .content .grid_box .grid_item .icon {
  width: 7.5rem;
  height: 7.5rem;
  margin: 0 auto;
}
.channel_pro .content .grid_box .grid_item .text {
  text-align: center;
  padding-top: 1rem;
}
.channel_pro .content .grid_box .grid_item .text h3 {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
}
.channel_pro .content .grid_box .grid_item .text p {
  margin-top: 0.4375rem;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
}
.channel_pro_two {
  position: relative;
}
.channel_pro_two .content {
  position: absolute;
  top: 8.9375rem;
}
.channel_pro_three {
  padding-top: 7.375rem;
  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: #072BAD;
  filter: blur(6.25rem);
  position: absolute;
  bottom: 4.75rem;
  left: 50%;
  transform: translateX(-50%);
}
.channel_pro_three .content {
  position: relative;
  overflow: hidden;
}
.channel_pro_three .content .m_show {
  display: none;
}
.channel_pro_three .content .picMarquee-left1 {
  -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: 6.75rem;
  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:hover {
  border-color: rgba(25, 46, 120, 0.5);
}
.channel_pro_three .content .swiper_coop,
.channel_pro_three .content .swiper_coop2 {
  position: relative;
  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;
  box-shadow: 0px 0.25rem 0.9375rem 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 5.625rem;
  text-align: center;
  padding: 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: #192E78;
}
.list_zlbj {
  padding-bottom: 9.1875rem;
  background: linear-gradient(180deg, #FFF 43.2%, #F3F6FF 100%);
}
.list_zlbj .img {
  margin-top: -2.5rem;
  position: relative;
}
.list_zlbj .img ul li {
  position: absolute;
  display: flex;
  align-items: center;
}
.list_zlbj .img ul li:hover {
  cursor: pointer;
}
.list_zlbj .img ul li:hover .i .ripple {
  /* 触发动画：时长3秒，线性，无限循环 */
  animation: ripple-effect 3s linear infinite;
}
.list_zlbj .img ul li .i {
  margin-right: 0.3125rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #0F3FE8;
  /* 涟漪的基础样式 */
  /* 设置动画延迟，形成层叠扩散效果 */
}
.list_zlbj .img ul li .i .ripple {
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #0F3FE8;
  border-radius: 50%;
  opacity: 0;
}
.list_zlbj .img ul li .i .ripple:nth-child(2) {
  animation-delay: 1s;
}
.list_zlbj .img ul li .i .ripple:nth-child(3) {
  animation-delay: 2s;
}
.list_zlbj .img ul li .tt {
  color: #0F3FE8;
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 400;
}
.list_zlbj .img ul li:nth-child(1) {
  top: 32%;
  right: 20%;
  flex-wrap: wrap;
}
.list_zlbj .img ul li:nth-child(1) .tt {
  width: 100%;
  order: 1;
}
.list_zlbj .img ul li:nth-child(1) .i {
  order: 2;
  margin: 0 auto;
}
.list_zlbj .img ul li:nth-child(2) {
  top: 34.5%;
  right: 22.35%;
}
.list_zlbj .img ul li:nth-child(2) .tt {
  order: 1;
}
.list_zlbj .img ul li:nth-child(2) .i {
  order: 2;
}
.list_zlbj .img ul li:nth-child(3) {
  top: 37%;
  left: 21%;
}
.list_zlbj .img ul li:nth-child(4) {
  top: 37%;
  right: 17%;
}
.list_zlbj .img ul li:nth-child(5) {
  opacity: 0;
}
.list_zlbj .img ul li:nth-child(6) {
  top: 41.7%;
  left: 23.3%;
}
.list_zlbj .grid_box {
  margin-top: -21.875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem 3.4375rem;
  position: relative;
  z-index: 8;
}
.list_zlbj .grid_box .grid_item {
  border-radius: 1.875rem;
  border: 1px solid rgba(25, 46, 120, 0.1);
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(180deg, #FFF 0%, #F3F6FF 100%);
  box-shadow: 0 0.25rem 0.9375rem 0 rgba(25, 46, 120, 0.1);
  padding: 3.125rem 3.25rem 2.75rem;
}
.list_zlbj .grid_box .grid_item .over {
  width: 8.75rem;
  height: 8.75rem;
  border-radius: 50%;
  margin: 0 auto;
}
.list_zlbj .grid_box .grid_item .text {
  padding-top: 1.25rem;
}
.list_zlbj .grid_box .grid_item .text h3 {
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}
.list_zlbj .grid_box .grid_item .text .p {
  margin-top: 0.5rem;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.75rem;
}
.list_ys_two {
  background-color: #192E78;
}
.list_ys_two .swiper_aboutnum {
  position: relative;
  overflow: hidden;
  padding-bottom: 4.375rem;
}
.list_ys_two .swiper_aboutnum .swiper-pagination-bullet {
  background-color: #fff;
}
.list_ys_two .swiper_aboutnum .num_box .tt h3 {
  color: #FFF;
  font-family: Inter;
  font-size: 6.125rem;
  font-weight: 700;
}
.list_ys_two .swiper_aboutnum .num_box .tt h3 sup {
  color: #FFF;
  font-size: 2.375rem;
  font-weight: 500;
  top: -1.5em;
  text-transform: uppercase;
}
.list_ys_two .swiper_aboutnum .num_box .pp {
  color: #FFF;
  font-family: Inter;
  font-size: 1.75rem;
  font-weight: 500;
}
.list_ys_three {
  background: linear-gradient(180deg, #FFF 0%, #F3F6FF 100%);
}
.list_ys_three .left {
  padding-right: 6.25rem;
}
.list_ys_three .right .over {
  border-radius: 1.875rem;
}
.list_ys_three .desc {
  color: rgba(0, 0, 0, 0.7);
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2rem;
}
.list_ys_three .desc strong {
  font-weight: 600;
}
.list_ys_three .desc p {
  margin-bottom: 1.25rem;
}
.list_ys_three .swiper_box .swiper_gsld {
  position: relative;
  overflow: hidden;
  padding-bottom: 4.375rem;
  margin: 0 -1.875rem;
}
.list_ys_three .swiper_box .swiper_gsld .swiper-slide {
  padding: 0 1.875rem;
}
.list_ys_three .swiper_box .swiper_gsld .gsld_box {
  border-radius: 1.875rem;
  border: 1px solid rgba(25, 46, 120, 0.1);
  background: linear-gradient(180deg, #F3F6FF 0%, #FFF 100%);
  padding: 5rem 4.6875rem 3.5625rem;
  height: 37rem;
}
.list_ys_three .swiper_box .swiper_gsld .gsld_box .tit {
  padding-bottom: 1.125rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
}
.list_ys_three .swiper_box .swiper_gsld .gsld_box .tit::before {
  content: '';
  display: block;
  width: 7rem;
  height: 0.125rem;
  background-color: #192E78;
  position: absolute;
  bottom: 0;
  left: 0;
}
.list_ys_three .swiper_box .swiper_gsld .gsld_box .tit h3 {
  color: #192E78;
  font-family: "HarmonyOS Sans SC";
  font-size: 3rem;
  font-weight: 500;
  line-height: 2rem;
}
.list_ys_three .swiper_box .swiper_gsld .gsld_box .tit h3 span {
  color: #000;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 2rem;
  margin-left: 1.25rem;
}
.list_ys_three .swiper_box .swiper_gsld .gsld_box .cont {
  padding-top: 2.25rem;
}
.list_ys_three .swiper_box .swiper_gsld .gsld_box .cont ul li {
  color: #000;
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2rem;
  margin-bottom: 1rem;
  padding-left: 1.875rem;
  position: relative;
}
.list_ys_three .swiper_box .swiper_gsld .gsld_box .cont ul li::before {
  content: '';
  display: block;
  width: 0.1875rem;
  height: 0.1875rem;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  left: 0.625rem;
  top: 0.875rem;
}
.list_about_one {
  padding-bottom: 6.25rem;
}
.list_about_one .left {
  flex: 1;
  padding-right: 6.9375rem;
}
.list_about_one .left .title {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 3.5rem;
  font-weight: 500;
}
.list_about_one .left .desc {
  margin-top: 2.1875rem;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2rem;
}
.list_about_one .left .desc p {
  margin-bottom: 1.125rem;
}
.list_about_one .right .over {
  width: 37.5rem;
  height: 37.5rem;
  border-radius: 50%;
}
.list_about_one .about_num {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9.0625rem;
}
.list_about_one .about_num .about_item {
  display: flex;
  align-items: center;
}
.list_about_one .about_num .about_item .icon {
  width: 4.8125rem;
  margin-right: 1.5rem;
}
.list_about_one .about_num .about_item .text h3 {
  color: #192E78;
  font-family: Inter;
  font-size: 4.25rem;
  font-weight: 700;
}
.list_about_one .about_num .about_item .text p {
  color: rgba(0, 0, 0, 0.8);
  font-family: Inter;
  font-size: 1.25rem;
  font-weight: 400;
}
.list_about_two {
  padding-top: 7.5rem;
  background: #F3F6FF;
}
.list_about_two .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}
.list_about_two .grid_box .grid_item {
  border-radius: 1.875rem;
  border: 1px solid rgba(25, 46, 120, 0.1);
  background: #FFF;
  padding: 3.75rem 2rem 4.0625rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_about_two .grid_box .grid_item .icon {
  width: 5.625rem;
  height: 5.625rem;
}
.list_about_two .grid_box .grid_item .icon img {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_about_two .grid_box .grid_item .text {
  padding-top: 1.25rem;
}
.list_about_two .grid_box .grid_item .text h3 {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 2.125rem;
  font-weight: 400;
}
.list_about_two .grid_box .grid_item .text .cont {
  padding-top: 1.25rem;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2.75rem;
}
.list_about_two .grid_box .grid_item .text .cont p {
  padding-left: 1.375rem;
  position: relative;
}
.list_about_two .grid_box .grid_item .text .cont p::before {
  content: '';
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 0.25rem;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  left: 0.625rem;
  top: 1.125rem;
}
.list_about_three {
  padding-top: 7.375rem;
}
.list_about_three .grid_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.3125rem;
}
.list_about_three .grid_box .grid_item {
  border-radius: 1.875rem;
  background: #F3F6FF;
  padding: 4.1875rem 1.875rem 2.8125rem 2.3125rem;
}
.list_about_three .grid_box .grid_item .icon {
  width: 4.4375rem;
  height: 4.4375rem;
}
.list_about_three .grid_box .grid_item .icon img {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_about_three .grid_box .grid_item .text {
  padding-top: 1.5rem;
}
.list_about_three .grid_box .grid_item .text h3 {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.5rem;
  font-weight: 400;
}
.list_about_three .grid_box .grid_item .text .cont {
  padding-top: 0.9375rem;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 2.75rem;
}
.list_about_four {
  padding-top: 7.625rem;
  padding-bottom: 5.3125rem;
  background: linear-gradient(0deg, #F9F9F9 0%, #F9F9F9 100%), #0E2243;
}
.list_about_four .content .swiper_btn {
  position: relative;
  overflow: hidden;
  margin-top: 5.5rem;
}
.list_about_four .content .swiper_btn::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 50%;
  top: 1.1rem;
  transform: translateX(-50%);
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
}
.list_about_four .content .swiper_btn .swiper_btn_li {
  text-align: center;
}
.list_about_four .content .swiper_btn .swiper_btn_li .yuan {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #ADADAD;
  margin: 0.625rem auto 0;
}
.list_about_four .content .swiper_btn .swiper_btn_li .text {
  margin-top: 0.5625rem;
  color: #000;
  font-family: Inter;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.125rem;
}
@keyframes seamlessSpread {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
.list_about_four .content .swiper_btn .swiper-slide-thumb-active .yuan {
  background-color: #192E78;
  position: relative;
}
.list_about_four .content .swiper_btn .swiper-slide-thumb-active .yuan::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #192E78;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.6;
  animation: seamlessSpread 2s infinite ease-out;
}
.list_about_four .content .swiper_btn .swiper-slide-thumb-active .yuan::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #192E78;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.3;
  animation: seamlessSpread 2s infinite ease-out 0.5s;
}
.list_about_four .content .swiper_history {
  margin-top: 4.0625rem;
  overflow: hidden;
  margin: 0 -1.25rem;
}
.list_about_four .content .swiper_history .swiper-slide {
  padding: 0 1.25rem;
}
.list_about_four .content .swiper_history .history_box {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.list_about_four .content .swiper_history .history_box .left {
  width: 38%;
}
.list_about_four .content .swiper_history .history_box .left .tit {
  color: #192E78;
  font-family: Inter;
  font-size: 7.5rem;
  font-weight: 700;
  line-height: 1;
}
.list_about_four .content .swiper_history .history_box .left .titen {
  color: #192E78;
  font-family: "HarmonyOS Sans SC";
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.5;
}
.list_about_four .content .swiper_history .history_box .right {
  width: 62%;
}
.list_about_four .content .swiper_history .history_box .right .cont {
  flex: 1;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2.25rem;
}
.list_about_four .content .swiper_history .history_box .right .cont ul li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 1.375rem;
}
.list_about_four .content .swiper_history .history_box .right .cont ul li::before {
  content: '';
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border: 1px solid #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.75rem;
}
.list_about_four .content .swiper_history .history_box .right .himg_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}
.list_about_four .content .swiper_history .history_box .right .himg_box .over {
  height: 5rem;
  background-color: #fff;
  border-radius: 1.125rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_about_four .content .swiper_history .history_box .right .himg_box .over img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.list_about_four .content .swiper-button-next,
.list_about_four .content .swiper-button-prev {
  border: unset;
}
.list_about_four .content .swiper-button-prev,
.list_about_four .content .swiper-container-rtl .swiper-button-next {
  background-image: unset;
  left: -6.25rem;
  right: auto;
  top: 83%;
  margin-top: 0;
  width: 3.25rem;
  height: 3.25rem;
  line-height: 3.25rem;
  border-radius: 50%;
  background-color: unset;
  text-align: center;
  z-index: 99;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
}
.list_about_four .content .swiper-button-prev i,
.list_about_four .content .swiper-container-rtl .swiper-button-next i {
  font-weight: 600;
  font-size: 1rem;
  color: #000000;
  line-height: 3.25rem;
}
.list_about_four .content .swiper-button-next,
.list_about_four .content .swiper-container-rtl .swiper-button-prev {
  background-image: unset;
  left: auto;
  right: -6.25rem;
  top: 83%;
  margin-top: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: unset;
  text-align: center;
  z-index: 99;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.list_about_four .content .swiper-button-next i,
.list_about_four .content .swiper-container-rtl .swiper-button-prev i {
  font-weight: 600;
  font-size: 1rem;
  color: #000000;
  line-height: 3.25rem;
}
.list_about_four .content .history_ul .history_li {
  margin-top: 15px;
}
.list_about_four .content .history_ul .history_li h3 {
  font-size: 20px;
  font-weight: 600;
  color: #192E78;
}
.list_about_four .content .history_ul .history_li p {
  font-size: 14px;
}
.list_about_four .content .history_ul .history_li .himg_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}
.list_about_four .content .history_ul .history_li .himg_box .over {
  height: 5rem;
  background-color: #fff;
  border-radius: 1.125rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_about_four .content .history_ul .history_li .himg_box .over img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.list_one {
  padding-top: 6.6875rem;
  padding-bottom: 7.75rem;
}
.list_one .content .grid_box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4.625rem 1rem;
}
.list_one .content .grid_box .grid_item .icon {
  width: 7.5rem;
  height: 7.5rem;
  margin: 0 auto;
}
.list_one .content .grid_box .grid_item .text {
  text-align: center;
  padding-top: 1rem;
}
.list_one .content .grid_box .grid_item .text h3 {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
}
.list_one .content .grid_box .grid_item .text p {
  margin-top: 0.4375rem;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
}
.list_two {
  background: #F3F6FF;
  /* 激活状态：变宽 */
  /* 文字内容动画 */
}
.list_two .accordion-swiper {
  width: 100%;
  height: 40rem;
  margin: 0 1.25rem;
}
.list_two .accordion-swiper .swiper-slide {
  /* 默认状态：窄柱状 */
  width: 13%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 1.875rem;
  overflow: hidden;
}
.list_two .accordion-swiper .swiper-slide::before {
  content: '';
  display: block;
  width: 2.9375rem;
  height: 1.9375rem;
  background-color: #F3F6FF;
  z-index: 99;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.list_two .accordion-swiper .active {
  width: 44%;
  /* 展开后的宽度 */
}
.list_two .accordion-swiper .active::before {
  content: '';
  display: block;
  width: 2.9375rem;
  height: 1.9375rem;
  background-color: #F3F6FF;
  z-index: 99;
  position: absolute;
  top: 0;
  left: 3.125rem;
  transform: unset;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.list_two .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  color: #fff;
  transition: all 0.4s 0.2s;
}
.list_two .overlay .cont_box {
  position: absolute;
  bottom: 0;
  height: 100%;
  padding: 3.125rem;
}
.list_two .overlay .tit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: start;
}
.list_two .overlay .tit span {
  display: inline-block;
  width: 100%;
  color: #FFF;
  font-family: Inter;
  font-size: 2.625rem;
  font-weight: 500;
  text-align: center;
}
.list_two .overlay .tit i {
  margin: 2.6875rem 0 2.8125rem;
  display: inline-block;
  width: 0.125rem;
  height: 10rem;
  background-color: #fff;
}
.list_two .overlay .tit p {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 2.25rem;
  writing-mode: vertical-lr;
  text-align: center;
  letter-spacing: 0.1em;
}
.list_two .overlay .pp {
  width: 100%;
  height: 0;
  opacity: 0;
  min-height: 0;
  transition: all 2s;
}
.list_two .active .overlay {
  background: linear-gradient(180deg, rgba(25, 46, 120, 0) 36.97%, rgba(25, 46, 120, 0.5) 68.48%, #192E78 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.06) 100%);
}
.list_two .active .overlay .cont_box {
  height: auto;
  transform: translateY(0);
}
.list_two .active .overlay .tit {
  justify-content: start;
}
.list_two .active .overlay .tit span {
  text-align: left;
}
.list_two .active .overlay .tit i {
  width: 3.375rem;
  height: 0.125rem;
  margin: 0.5625rem 0 1.5625rem;
}
.list_two .active .overlay .tit p {
  writing-mode: unset;
  justify-content: start;
}
.list_two .active .overlay .pp {
  margin-top: 0.75rem;
  opacity: 1;
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.65;
  min-height: 6.25rem;
}
.list_three .grid_box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5625rem;
}
.list_three .grid_box .grid_item {
  padding: 2.8125rem;
  border-radius: 1.25rem;
  background: #F3F6FF;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_three .grid_box .grid_item::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #192E78;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 1.25rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_three .grid_box .grid_item .icon {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.list_three .grid_box .grid_item .text {
  margin-top: 1.125rem;
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.list_three .grid_box .grid_item:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
.list_three .grid_box .grid_item:hover .icon img {
  filter: brightness(0) invert(1);
}
.list_three .grid_box .grid_item:hover .text {
  color: #fff;
}
.list_four {
  padding-top: 9.875rem;
  padding-bottom: 9.875rem;
  background-size: cover;
}
.list_four .row {
  align-items: center;
}
.list_four .left {
  padding-right: 1.875rem;
}
.list_four .left .title {
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 3.5rem;
  font-weight: 500;
}
.list_four .left .desc {
  color: #FFF;
  text-align: justify;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_four .left .coop_box2 {
  width: 100%;
}
.list_four .left .coop_box2 .picMarquee-left {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.list_four .left .coop_box2 .picList li {
  width: 10rem;
}
.list_four .left .coop_box2 .picList .pic {
  margin: 0.9375rem 0.4688rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  height: 3.75rem;
  padding: 0.4375rem;
  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_four .left .coop_box2 .picList .pic img {
  filter: brightness(0) invert(1);
  height: 100%;
  width: auto;
  object-fit: contain;
}
.list_four .left .coop_box2 .picList .pic:hover {
  transform: translateY(-0.625rem);
}
.list_four .left .coop_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.125rem 1.1875rem;
}
.list_four .left .coop_box .coop_item {
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  height: 3.75rem;
  padding: 0.4375rem;
  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_four .left .coop_box .coop_item img {
  filter: brightness(0) invert(1);
  height: 100%;
  width: auto;
  object-fit: contain;
}
.list_four .left .coop_box .coop_item:hover {
  transform: translateY(-0.625rem);
}
.list_four .right {
  padding-left: 7.375rem;
  position: relative;
}
.list_four .right ul li {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.list_four .right ul li.active {
  display: block;
}
.list_four .right ul li .tt {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 7.5rem;
  font-weight: 700;
  line-height: 1;
}
.list_four .right ul li .tt sup {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 2.5rem;
  font-weight: 500;
  top: -1.5em;
}
.list_four .right ul li .bb {
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_four .right ul li .bb .icon {
  width: 3rem;
  height: 3rem;
}
.list_four .right ul li .bb .icon img {
  filter: brightness(0) invert(1);
}
.list_four .right ul li .bb .text {
  margin-left: 1rem;
  color: #FFF;
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.5rem;
  font-weight: 500;
}
.list_four .right .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6875rem 2.3125rem;
}
.list_four .right .grid_box .grid_item {
  position: relative;
}
.list_four .right .grid_box .grid_item .bgimga {
  display: none;
}
.list_four .right .grid_box .grid_item:hover .bgimg,
.list_four .right .grid_box .grid_item.active .bgimg {
  display: none;
}
.list_four .right .grid_box .grid_item:hover .bgimga,
.list_four .right .grid_box .grid_item.active .bgimga {
  display: block;
}
.list_four .right .grid_box .grid_item .con {
  position: absolute;
}
.list_four .right .grid_box .grid_item .icon {
  width: 3rem;
  height: 3rem;
  filter: brightness(0) invert(1);
}
.list_four .right .grid_box .grid_item .text {
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.5rem;
  font-weight: 500;
}
.list_four .right .grid_box .grid_item:nth-child(1) {
  grid-row: 1/2;
  grid-column: 1/3;
  width: 31.8125rem;
  height: 8.75rem;
  margin: 0 auto;
}
.list_four .right .grid_box .grid_item:nth-child(1) .con {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.list_four .right .grid_box .grid_item:nth-child(2) {
  width: 17.7191rem;
  height: 27.2697rem;
}
.list_four .right .grid_box .grid_item:nth-child(2) .con {
  top: 45%;
  left: 25%;
}
.list_four .right .grid_box .grid_item:nth-child(3) {
  width: 17.7191rem;
  height: 27.2697rem;
}
.list_four .right .grid_box .grid_item:nth-child(3) .con {
  top: 45%;
  right: 25%;
}
.zd_erha {
  position: fixed;
  right: 1.82292%;
  bottom: 12%;
  z-index: 999;
  width: 3.375rem;
  background: #192E78;
  box-shadow: 0.125rem 0.1875rem 0.375rem rgba(150, 148, 148, 0.25);
  border-radius: 1.875rem;
  padding-top: 2px;
}
@media (max-width: 768px) {
  .zd_erha {
    display: none;
  }
}
.zd_erha .aat_list li {
  position: relative;
  z-index: 2;
}
.zd_erha .aat_list li + li:after {
  content: "";
  width: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.hidden {
  display: none;
}
.zd_erha .aat_list li > a {
  display: block;
  width: 2.25rem;
  height: 3.75rem;
  position: relative;
  margin: 0 auto;
  border-radius: 50%;
  -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.zd_erha .aat_list li > a span {
  color: #5E5E5E;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.zd_erha .aat_list li > a i {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.zd_erha .aat_list li > a svg {
  width: 1.75rem;
  height: 1.75rem;
}
.zd_erha .aat_list li .cbl-cont {
  position: absolute;
  z-index: -1;
  padding: 0.5em 1rem;
  width: auto;
  right: -webkit-calc(115%);
  right: -moz-calc(115%);
  right: calc(110% + 1.5rem);
  top: -40%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(110%);
  -moz-transform: translateX(110%);
  -ms-transform: translateX(110%);
  -o-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
  box-shadow: 0 0.25rem 1.25rem 0.25rem rgba(0, 20, 60, 0.2);
  color: #333;
  font-size: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  white-space: nowrap;
}
.zd_erha .aat_list li .cbl-cont::before {
  content: '';
  display: block;
  width: 1.9375rem;
  height: 2.3125rem;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.cbl-cont2 {
  position: absolute;
  z-index: -1;
  padding: 0.5em 1rem;
  right: -webkit-calc(115%);
  right: -moz-calc(115%);
  right: calc(110% + 5px);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(110%);
  -moz-transform: translateX(110%);
  -ms-transform: translateX(110%);
  -o-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
  box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
  color: #333;
  font-size: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  white-space: nowrap;
  width: 21.875rem;
  padding: 1.25rem;
  top: -16rem;
}
.cbl-cont2 .close_btn {
  cursor: pointer;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  box-shadow: 0 0.25rem 1rem 0.25rem rgba(0, 20, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -0.9375rem;
  top: -1rem;
  background: #fff;
}
.cbl-cont2 .title {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.cbl-cont2 .msg-a1 {
  display: grid;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .cbl-cont2 .msg-a1 {
    grid-template-columns: 1fr;
  }
}
.cbl-cont2 .msg-a1 .inpt {
  display: flex;
  align-items: center;
  border-radius: 0.625rem;
  border: 1px solid rgba(25, 46, 120, 0.15);
  background: #FFF;
  overflow: hidden;
  padding: 0 0.625rem;
  height: 3rem;
}
.cbl-cont2 .msg-a1 .inpt.sele_inpt {
  position: relative;
  padding-right: 1rem;
}
.cbl-cont2 .msg-a1 .inpt p {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
  white-space: nowrap;
}
.cbl-cont2 .msg-a1 .inpt p span {
  color: #E60000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.25rem;
}
.cbl-cont2 .msg-a1 .inpt input {
  max-width: 70%;
  flex: 1;
  background: none;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-left: 0.625rem;
}
.cbl-cont2 .msg-a1 .inpt select {
  padding-left: 0.625rem;
  flex: 1;
  background: none;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
}
.cbl-cont2 .msg-a1 .inpt i {
  color: #192E78;
  font-weight: 600;
  font-size: 0.75rem;
}
.cbl-cont2 .msg-a2 .inpt {
  border-radius: 0.625rem;
  border: 1px solid rgba(25, 46, 120, 0.15);
  background: #FFF;
  padding: 0.625rem;
  display: flex;
  align-items: start;
}
.cbl-cont2 .msg-a2 .inpt p {
  text-wrap: nowrap;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
}
.cbl-cont2 .msg-a2 .inpt p span {
  color: #E60000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.25rem;
}
.cbl-cont2 .msg-a2 .inpt textarea {
  flex: 1;
  color: rgba(0, 0, 0, 0.3);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.25rem;
  background: none;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
}
.cbl-cont2 .div_aghgha button {
  width: 8.75rem;
  height: 3.125rem;
  border-radius: 1.875rem;
  background: #192E78;
  border: 2px solid #192E78;
  color: #FFF;
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.625rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.cbl-cont2 .div_aghgha button i {
  font-size: 1rem;
  vertical-align: middle;
}
.cbl-cont2 .div_aghgha button:hover {
  background-color: unset;
  color: #192E78;
}
.zd_erha .aat_list li .cbl-cont.erghgsb {
  width: 9.375rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.zd_erha .aat_list li .cbl-cont.erghgsb img {
  width: 100%;
}
.zd_erha .aat_list li:hover .cbl-cont,
.zd_erha .aat_list li.active .cbl-cont2 {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  border-radius: 1.25rem;
}
.zd_erha .aat_list li:hover .cbl-cont .p,
.zd_erha .aat_list li.active .cbl-cont2 .p {
  color: rgba(0, 0, 0, 0.9);
  text-align: right;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 300;
}
.zd_erha .aat_list li:hover .cbl-cont a,
.zd_erha .aat_list li.active .cbl-cont2 a {
  color: #192E78;
  font-family: Inter;
  font-size: 1.625rem;
  font-weight: 600;
}
.zd_erha .aat_list li:hover .cbl-cont .a,
.zd_erha .aat_list li.active .cbl-cont2 .a {
  color: #192E78;
  font-family: Inter;
  font-size: 2.625rem;
  font-weight: 600;
}
.list_product .list_product_box .row {
  position: relative;
}
.list_product .list_product_box:nth-child(even) {
  background: #F9F9F9;
}
.list_product .list_product_box:nth-child(even) .right {
  order: 1;
  padding-left: 0.9375rem;
  padding-right: 5rem;
}
.list_product .list_product_box:nth-child(even) .left {
  order: 2;
}
.list_product .list_product_box .left .table {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  /* 增加平滑过渡效果 */
}
.list_product .list_product_box .left .table.expanded {
  max-height: none !important;
}
.list_product .list_product_box .left .showMoreBtn {
  border: none;
  background-color: unset;
  margin: 1rem auto 0;
  color: rgba(0, 0, 0, 0.7);
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 300;
}
.list_product .list_product_box .left .showMoreBtn:hover {
  color: #192E78;
}
.list_product .list_product_box .right {
  padding-left: 5rem;
  position: sticky;
  top: 6.875rem;
  height: 100%;
}
.list_product .list_product_box .tt {
  color: #000;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.5rem;
  font-weight: 400;
  position: relative;
  padding-left: 2.1875rem;
}
.list_product .list_product_box .tt::before {
  content: '';
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: 1rem;
  left: 0.625rem;
}
.list_product .list_product_box .cont .table {
  overflow-x: auto;
}
.list_product .list_product_box .cont .table table {
  width: 100%;
}
.list_product .list_product_box .cont .table table.table11 tr:nth-child(1) td {
  font-size: 1rem;
  line-height: 1.5;
}
.list_product .list_product_box .cont .table table.table11 tr td {
  font-size: 1rem;
  line-height: 1.5;
}
.list_product .list_product_box .cont .table table.table11 tr td:nth-child(1) {
  font-size: 1rem;
  line-height: 1.5;
}
.list_product .list_product_box .cont .table table tr td {
  border: 1px solid #DDE3F2;
  vertical-align: middle;
  color: #000;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2rem;
  padding: 0.4375rem 1.6875rem !important;
  background-color: #fff;
}
.list_product .list_product_box .cont .table table tr td:nth-child(1) {
  color: #192E78;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2rem;
}
.list_product .list_product_box .cont .table table tr:nth-child(odd) td {
  background: #F3F6FF;
}
.list_product .list_product_box .cont .table table tr:nth-child(1) td {
  color: #192E78;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2rem;
}
.list_product .list_product_box .swiper_moreimg {
  position: relative;
  overflow: hidden;
  border-radius: 1.875rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
}
.list_product .list_product_box .swiper_moreimg .swiper-slide {
  height: 31.25rem;
  text-align: center;
}
.list_product .list_product_box .swiper_moreimg .swiper-slide .over {
  width: 100%;
  height: 100%;
}
.list_product .list_product_box .swiper_moreimg .swiper-slide .over img {
  width: auto;
  height: 100%;
}
.list_product .list_product_box .swiper_moreimg .swiper-pagination {
  bottom: 1.875rem;
}
.list_product .list_product_box .right p {
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  text-align: center;
  padding-top: 1.25rem;
}
.list_product .list_product_box .t {
  color: #192e78;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  position: relative;
  padding-left: 2.1875rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.list_product .list_product_box ul {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 2rem;
}
.list_product .list_product_box ul li {
  width: 6.875rem;
  height: 6.875rem;
  border-radius: 50%;
  background-color: #f3f6ff;
  color: #192E78;
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 0.875rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4375rem;
  position: relative;
}
.list_product .list_product_box ul li::before {
  content: '';
  width: calc(100% + 0.6rem);
  height: calc(100% + 0.6rem);
  border-radius: 50%;
  border: 1px dashed #192e78;
  position: absolute;
}
.list_product .list_product_box .icon_box {
  display: flex;
  gap: 2.75rem;
}
.list_product .list_product_box .icon_box .icon_item .icon {
  width: 2.875rem;
  height: 2.875rem;
  margin: 0 auto;
}
.list_product .list_product_box .icon_box .icon_item .h {
  padding-top: 1.25rem;
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
}
.list_product_two {
  background: #F9F9F9;
}
.list_product_two .swiper_cptj {
  position: relative;
  margin: 0 -1.25rem;
  overflow: hidden;
  padding-bottom: 5rem;
}
.list_product_two .swiper_cptj .swiper-slide {
  padding: 0 1.25rem;
}
.list_product_two .swiper_cptj .swiper-slide .over {
  height: 20.25rem;
  text-align: center;
  border-radius: 1.875rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  padding: 1.875rem;
}
.list_product_two .swiper_cptj .swiper-slide .over img {
  width: auto;
  height: 100%;
}
.list_product_two .swiper_cptj .swiper-slide .text {
  padding-top: 2.5rem;
  color: rgba(0, 0, 0, 0.8);
  font-family: "HarmonyOS Sans SC";
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.list_ys .content .img {
  padding-right: 4rem;
  padding-left: 5rem;
}
.list_ys .content ul li {
  display: inline-block;
  position: absolute;
}
.list_ys .content ul li:nth-child(1) {
  right: 19%;
  top: 46%;
}
.list_ys .content ul li:nth-child(2) {
  right: 23%;
  top: 45%;
}
.list_ys .content ul li:nth-child(2) .t {
  order: 1;
  padding-right: 0.625rem;
}
.list_ys .content ul li:nth-child(2) .i {
  order: 2;
}
.list_ys .content ul li:nth-child(3) {
  left: 18%;
  top: 42.4%;
}
.list_ys .content ul li:nth-child(4) {
  right: 17.5%;
  top: 48.3%;
}
.list_ys .content ul li:nth-child(5) {
  right: 16.5%;
  top: 46%;
}
.list_ys .content ul li:nth-child(5) .flex {
  display: none;
}
.list_ys .content ul li:nth-child(6) {
  left: 23.5%;
  top: 52%;
}
.list_ys .content ul li:nth-child(6) .pp {
  left: -20.2rem;
}
.list_ys .content ul li .i {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #0F3FE8;
  /* 涟漪的基础样式 */
  /* 设置动画延迟，形成层叠扩散效果 */
  /* 定义动画序列 */
}
.list_ys .content ul li .i .ripple {
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #0F3FE8;
  border-radius: 50%;
  opacity: 0;
  /* 触发动画：时长3秒，线性，无限循环 */
  animation: ripple-effect 3s linear infinite;
}
.list_ys .content ul li .i .ripple:nth-child(2) {
  animation-delay: 1s;
}
.list_ys .content ul li .i .ripple:nth-child(3) {
  animation-delay: 2s;
}
@keyframes ripple-effect {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
.list_ys .content ul li .t {
  padding-left: 0.5rem;
  flex: 1;
  color: #0F3FE8;
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 400;
}
.list_ys .content .pp_box .pp {
  position: absolute;
  width: 11.875rem;
  height: 3.4375rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(25, 46, 120, 0.1);
  background: #FFF;
  box-shadow: 0 0.25rem 0.9375rem 0 rgba(0, 0, 0, 0.05);
  color: #0F3FE8;
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_ys .content .pp_box .pp::before {
  content: '';
  display: block;
  background-color: #0F3FE8;
}
.list_ys .content .pp_box .pp:nth-child(1),
.list_ys .content .pp_box .pp:nth-child(2),
.list_ys .content .pp_box .pp:nth-child(3),
.list_ys .content .pp_box .pp:nth-child(4),
.list_ys .content .pp_box .pp:nth-child(5) {
  right: 0;
}
.list_ys .content .pp_box .pp:nth-child(1) {
  top: 15%;
}
.list_ys .content .pp_box .pp:nth-child(1)::before {
  width: 13rem;
  height: 1px;
  right: 76%;
  top: 210%;
  position: absolute;
  transform: rotate(-56deg);
}
.list_ys .content .pp_box .pp:nth-child(2) {
  top: 25%;
}
.list_ys .content .pp_box .pp:nth-child(2)::before {
  width: 10.1rem;
  height: 1px;
  right: 88%;
  top: 150%;
  position: absolute;
  transform: rotate(-45deg);
}
.list_ys .content .pp_box .pp:nth-child(3) {
  top: 35%;
}
.list_ys .content .pp_box .pp:nth-child(3)::before {
  width: 8.1rem;
  height: 1px;
  right: 97%;
  top: 99%;
  position: absolute;
  transform: rotate(-25deg);
}
.list_ys .content .pp_box .pp:nth-child(4) {
  top: 45%;
}
.list_ys .content .pp_box .pp:nth-child(4)::before {
  width: 8.1rem;
  height: 1px;
  right: 101%;
  top: 35%;
  position: absolute;
  transform: rotate(5deg);
}
.list_ys .content .pp_box .pp:nth-child(5) {
  top: 55%;
}
.list_ys .content .pp_box .pp:nth-child(5)::before {
  width: 9rem;
  height: 1px;
  right: 96%;
  top: -2%;
  position: absolute;
  transform: rotate(25deg);
}
.list_ys .content .pp_box .pp:nth-child(6) {
  top: 40%;
}
.list_ys .content .pp_box .pp:nth-child(6)::before {
  width: 3.625rem;
  height: 1px;
  background-color: #0F3FE8;
  position: absolute;
  left: 100%;
}
.list_ys .content .pp_box .pp:nth-child(7) {
  top: 49.5%;
}
.list_ys .content .pp_box .pp:nth-child(7)::before {
  width: 8.6875rem;
  height: 1px;
  background-color: #0F3FE8;
  position: absolute;
  left: 100%;
}
.list_hjg {
  padding-bottom: 8.375rem;
  background-size: cover;
}
.list_hjg .content .grid_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem 0;
}
.list_hjg .content .hx_box .icon {
  width: 11.6875rem;
  margin: 0 auto;
  height: 4.5625rem;
  display: flex;
  align-items: center;
}
.list_hjg .content .hx_box .icon img {
  width: 100%;
}
.list_hjg .content .h {
  color: #FFF;
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.625rem;
}
.swiper_mclpro {
  position: relative;
  margin: 2.5rem -1rem 0;
  overflow: hidden;
  padding-bottom: 4rem;
}
.swiper_mclpro .swiper-pagination-bullet {
  background-color: #192E78;
}
.swiper_mclpro .swiper-slide {
  padding: 0 1rem;
}
.swiper_mclpro .swiper-slide .pro_box .over {
  border-radius: 1.875rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  text-align: center;
}
.swiper_mclpro .swiper-slide .pro_box .over img {
  height: 100%;
  width: auto;
}
.swiper_mclpro .swiper-slide .pro_box .tit {
  padding-top: 1.8125rem;
  color: #000;
  font-family: "HarmonyOS Sans SC";
  font-size: 1.375rem;
  font-weight: 400;
  text-align: center;
}
