@charset "utf-8";
/* 这个css是初始化的css，在任何项目里面都可以使用 */
/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
}
body {
  --header_h: 6.25rem;
  --container: 14.8125rem;
  outline: none;
  font-weight: 500;
  font-family: 'Raleway', "Noto Sans SC" !important;
}
@font-face {
  font-family: 'Raleway';
  font-weight: 300;
  src: url('../font/raleway_thin_0.ttf') format("truetype");
}
@font-face {
  font-family: 'Raleway';
  font-weight: 400;
  src: url('../font/Raleway-Regular.ttf') format("truetype");
}
@font-face {
  font-family: 'Raleway';
  font-weight: 700;
  src: url('../font/Raleway-Bold.ttf') format("truetype");
}
.pt120 {
  padding-top: 7.5rem;
}
.pb100 {
  padding-bottom: 6.25rem;
}
.p_top {
  position: absolute;
  top: -6.25rem;
}
.bg {
  background: #F8B508;
}
.bgfff {
  background-color: #fff;
}
.c {
  color: #F8B508;
}
.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;
  position: relative;
  z-index: 2;
}
.pagination > li {
  margin: 0 0.3125rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid #DBDBDB;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1C1F3E;
  font-family: Raleway;
  font-size: 2rem;
  font-weight: 500;
}
.pagination > li a,
.pagination > li span {
  width: 100%;
  height: 100%;
}
.pagination > li:hover {
  background: #F8B508;
  color: #fff;
  text-align: center;
}
.pagination > li:hover a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
}
.pagination > li.active {
  background: #F8B508;
  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: #F8B508;
}
.search_more:hover::before {
  background: #F8B508;
}
.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: 18rem;
  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: #F8B508 !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: #F8B508;
}
.searchbox {
  border-color: #F8B508;
}
@media (max-width: 990px) {
  body {
    padding-bottom: 0;
    overflow: hidden;
  }
}
@media (max-width: 990px) {
  .pc-hidden {
    display: none;
  }
  .pc_show_990 {
    display: none;
  }
  .phone_show_990 {
    display: block;
  }
}
.m-hidden {
  display: none;
}
@media (max-width: 990px) {
  .m-hidden {
    display: block;
  }
}
.foot1-m {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1;
}
/*手机底部*/
@media (max-width: 990px) {
  .foot1-m {
    display: block;
  }
}
/*手机端头部*/
.m-bm-head {
  position: fixed;
  top: 0;
  z-index: 999999;
  left: 0;
  right: 0;
  background: #000;
}
.m-bm-head .m-bm-head-box {
  position: relative;
  height: 60px;
}
.m-bm-head .m-bm-head-box .m-bm-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto 4%;
  max-width: 100%;
  height: 34px;
}
.m-bm-head .m-bm-head-box .m-bm-logo h1,
.m-bm-head .m-bm-head-box .m-bm-logo a {
  display: inline;
  font-size: 0;
}
.m-bm-head .m-bm-head-box .m-bm-logo img {
  height: 40px;
  width: 120px;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 4% auto 0;
  width: 20px;
  height: 15px;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span,
.m-bm-head .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: 4.5px 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  content: '';
  -webkit-transform-origin: 7.5%;
  -moz-transform-origin: 7.5%;
  -ms-transform-origin: 7.5%;
  -o-transform-origin: 7.5%;
  transform-origin: 7.5%;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked span {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.m-bm-head .phone_lanu {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 65px;
}
.m-bm-head .m-bm-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  height: 100vh;
  background: #050505;
}
.m-bm-head .m-bm-menu .m-bm-menu-box {
  height: -webkit-calc(40vh);
  height: -moz-calc(40vh);
  height: calc(100vh - 60px);
  overflow: auto;
  padding-bottom: 80px;
}
.m-bm-head .mrhgxt {
  color: #fff;
  font: 500 1.125rem/60px;
  margin-left: 63%;
  position: relative;
  z-index: 9;
}
.m-bm-head .mrhgxt i {
  font-size: 1.125rem;
  margin-right: 0.25em;
}
.m-bm-nav .aniut.aniut_son {
  height: 35px;
  line-height: 35px;
}
.m-bm-nav > li {
  border-bottom: 1px solid rgba(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: #FFF;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1em 0;
}
.ajhhsd a {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 500;
}
.ajhhsd a:hover {
  color: #F8B508;
}
.ajhhsd span {
  padding: 0 0.3em;
}
.ajhhsd span:last-child {
  display: none;
}
.xw_ny_banner {
  background: #333;
  -o-background-size: cover;
  background-size: cover;
  padding: 13.5rem 0 7.25rem;
}
.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em;
}
@media (max-width: 990px) {
  .xw_ny_banner {
    padding: 7.25rem 0;
  }
}
@media (max-width: 768px) {
  .xw_ny_banner {
    padding: 4rem 0;
  }
  .xw_ny_banner h2 {
    font-size: 1.8rem;
  }
}
.ssy-sskaa {
  margin-bottom: 2rem;
}
.ssy-sskaa .searchsa form {
  width: 50%;
  border: 1px solid #999;
  padding: 0 1.5em;
  border-radius: 2rem;
  margin: 0 auto;
}
.ssy-sskaa .searchsa form input {
  width: 70%;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 4rem;
  background: transparent;
  color: #999;
}
.ssy-sskaa .searchsa form button {
  width: auto;
  outline: none;
  border: none;
  background: transparent;
}
.ssy-sskaa .searchsa form button i {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 4rem;
  color: #333;
}
@media (max-width: 768px) {
  .ssy-sskaa {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .ssy-sskaa .searchsa form {
    width: 90%;
  }
  .pc_show_767 {
    display: none;
  }
  .phone_show_767 {
    display: block;
  }
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form input {
    font-size: 1.125rem;
    line-height: 3rem;
  }
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form button i {
    font-size: 1.35rem;
    line-height: 3rem;
  }
}
.sssjga {
  color: #333;
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-bottom: 1em;
}
.ss-list li + li {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .ss-list li + li {
    margin-top: 1rem;
  }
}
.ss-list li div.img {
  width: 25%;
}
.ss-list li div.img a.img {
  display: block;
  border: 1px solid #f2f2f2;
}
.ss-list li .xw-nycont {
  width: 72%;
}
.ss-list li .xw-nycont h2 a {
  display: block;
  color: #656363;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.35em;
  overflow: hidden;
  margin-bottom: 0.2em;
}
.ss-list li .xw-nycont.w100 {
  width: 100%;
}
@media (max-width: 768px) {
  .ss-list li div.img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont {
    width: 100%;
    margin-top: 1.2em;
  }
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont h2 a {
    font-size: 1.125rem;
  }
}
.ss-list li .xw-nycont span {
  color: #F8B508;
  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 / 110);
  }
}
@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;
  width: 120px;
}
.sjj_nav {
  position: fixed;
  z-index: 9999;
  background: #1D1D1F;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 40px;
  top: 0;
  left: -100%;
  overflow: auto;
  overflow-x: hidden;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.nav_show {
  left: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.sjj_nav > ul > li:first-child {
  overflow: hidden;
  border-top: 0;
}
.sjj_nav > ul > li:first-child > a {
  width: 60%;
}
.sjj_nav > ul > li:first-child .language {
  width: 100%;
  overflow: hidden;
  line-height: 30px;
  margin-top: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
}
.sjj_nav > ul > li:first-child .language a {
  width: 25%;
  float: left;
  border-left: 1px #ddd solid;
  text-align: center;
  color: #999;
  display: inline-block;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.sjj_nav > ul > li:first-child .language a.active {
  background: #F8B508;
  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: #F8B508;
}
.sjj_nav ul li ul li > ul {
  margin-left: 10px;
}
.sjj_nav .top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #1D1D1F;
}
.sjj_nav .top .ta img {
  height: 40px;
  filter: brightness(0) invert(0.8);
  width: 120px;
}
.sjj_nav .top .fr img {
  height: 22px;
}
.sjj_nav .bot {
  padding: 25px 40px 0;
  margin-top: 60px;
  height: calc(100% - 60px);
  overflow: scroll;
}
.sjj_nav .bot > li:first-child {
  margin-bottom: 34px;
}
.sjj_nav .bot > li:first-child input {
  padding-left: 28px;
  width: 100%;
  font-size: 14px;
  color: #a7a7a7;
  line-height: 35px;
  border: 1px solid #A7A7A8;
  background: transparent;
}
.sjj_nav .bot > li:first-child button {
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 28px;
  height: 100%;
  border: none;
}
.sjj_nav .bot > li:first-child button .iconfont {
  position: static;
  text-align: center;
  color: #a7a7a7;
  font-size: 16px;
  padding: 0;
  border: none;
}
.sjj_nav .bot > li {
  font-size: 18px;
  line-height: 20px;
  color: #a7a7a7;
  border-bottom: none !important;
  margin-bottom: 30px;
}
.sjj_nav .bot > li > ul {
  padding-left: 1.25rem;
}
.sjj_nav .bot > li > div > a {
  width: calc(100% - 3.75rem);
}
.sjj_nav .bot > li > a {
  display: inline-block;
}
.sjj_nav .bot > li img {
  height: 30px;
}
.sjj_nav .bot > li .list .left {
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.9px;
  color: #EBEBEC;
  float: left;
}
.sjj_nav .bot > li .list .left a {
  color: #EBEBEC;
}
.sjj_nav .bot > li .list .right.w100 {
  width: 100%;
  float: none;
  padding-bottom: 20px;
}
.sjj_nav .bot > li .list .right {
  width: 80%;
  float: right;
  font-size: 14px;
  color: #EBEBEC;
  line-height: 20px;
}
.sjj_nav .bot > li .list .right a {
  color: #EBEBEC;
  margin-bottom: 18px;
}
.sjj_nav .bot > li ul {
  margin-top: 20px;
}
.sjj_nav .bot > li > div {
  color: #a7a7a7;
  position: relative;
  padding-bottom: 8px;
  line-height: 1.875rem;
  display: flex;
  align-items: center;
}
.sjj_nav .bot > li > div > a {
  color: #a7a7a7;
}
.sjj_nav .bot > li > div .iconfont {
  width: 3.75rem;
  text-align: right;
  display: block;
  font-size: 1rem;
}
.sjj_nav .bot > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  background: #a7a7a7;
}
.sjj_nav .bot > li:hover > a::before,
.sjj_nav .bot > li.active > a::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.sjj_nav .top .container {
  padding: 0 40px;
}
@media (max-width: 767px) {
  .sjj_nav .top .container {
    padding: 0 15px;
  }
}
.rightfix {
  bottom: 10%;
  top: auto;
  transform: translateY(0);
  right: 1.25rem;
  width: auto;
  box-shadow: none;
  border: none;
  background: transparent;
}
.rightfix li {
  cursor: pointer;
  width: 3.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;
  background-color: #F8B508;
}
.rightfix li a img {
  width: 1.875rem;
}
.rightfix li .iconfont {
  font-size: 1.875rem;
  display: block;
  color: #1c1f3e;
  border-radius: 50%;
  background: #F8B508;
}
.rightfix li:hover {
  background: #F8B508;
}
.rightfix li:hover .iconfont {
  color: #fff;
  background: #F8B508;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.rightfix li:hover a img {
  filter: brightness(0) invert(1);
}
.rightfix li:hover .right_div {
  right: 4.375rem;
}
.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 {
  min-width: 13rem;
}
.right_div.img {
  min-width: 7.5rem !important;
  background: unset;
  border: unset;
  box-shadow: unset;
}
.right_div.img .p{
    color: #000;
    font-size: 1rem;
    padding: 5px 0;
    font-weight: 600;
    text-align: center;
}
.right_div.img img {
  height: 7.5rem;
  object-fit: contain;
       border: 1px solid #ddd; 
    background: #fff;
     box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
@-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;
}
header .container {
  padding: 0 7.0625rem;
}
header:hover,
header.active,
header.active2 {
  background: #fff;
}
header:hover .center ul li a,
header.active .center ul li a,
header.active2 .center ul li a {
  color: #000;
}
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;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #F8B508;
  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 {
  color: #F8B508;
}
header:hover .center ul li.active > a::before,
header.active .center ul li.active > a::before,
header.active2 .center ul li.active > a::before {
  width: 0.625rem;
  height: 0.625rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
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 .logo img.act,
header.active .logo img.act,
header.active2 .logo img.act {
  display: inline-block;
}
header:hover .logo img.current,
header.active .logo img.current,
header.active2 .logo img.current {
  display: none;
}
header.active {
  animation: sticky 0.65s;
}
@media (max-width: 990px) {
  header {
    display: none;
  }
}
header .logo img {
  height: 3rem;
}
header .logo img.act {
  display: none;
}
header .ds1 {
  margin-left: 1.5625rem;
}
header .ds1 .iconfont {
  font-size: 1.75rem;
  display: block;
  font-weight: 500;
  color: #fff;
}
header .ds1 .iconfont:hover {
  color: #F8B508;
}
header .lanuage {
  margin-left: 2.5rem;
  display: block;
}
header .lanuage a {
  font-size: 1.125rem;
  color: #fff;
  font-weight: 400;
  display: flex;
  align-items: center;
}
header .lanuage a:hover {
  color: #F8B508;
}
header .lanuage a:hover .iconfont {
  color: #F8B508;
}
header .lanuage a .iconfont {
  font-size: 1.5rem;
  padding-right: 0.4375rem;
}
header .lanuage a.c {
  color: #F8B508;
}
header .login_div {
  margin-left: 1.25rem;
  display: table;
}
header .login_div a {
  display: table-cell;
  vertical-align: middle;
  line-height: 2.25rem;
  display: inline-block;
  width: 5rem;
  height: 2.25rem;
  border-radius: 1.875rem;
  background: #F8B508;
  text-align: center;
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 700;
}
header .login_div a:hover {
  background-color: unset;
  border: 1px solid #F8B508;
  color: #F8B508;
}
header .center > ul > li {
  float: left;
  padding: 0 1.25rem;
}
header .center > ul > li > a {
  font-size: 1.125rem;
  color: #fff;
  position: relative;
}
header .center > ul > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #fff;
  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,
header .center > ul > li.active > a {
  color: #F8B508;
}
header .center > ul > li:hover > a::before,
header .center > ul > li.active > a::before {
  width: 0.625rem;
  height: 0.625rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header .center > ul > li.active > a::before {
  background: #F8B508;
}
footer {
  background: #1A1F3D;
  padding-top: 4.1875rem;
  border-top: 4px solid #F8B508;
  position: relative;
  z-index: 2;
}
footer .foot_top {
  padding-bottom: 2.8125rem;
}
footer .foot_top .logo {
  width: 15rem;
}
footer .foot_top .foot-contact {
  padding-left: 11.125rem;
  flex: 1;
}
footer .foot_top .foot-contact ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .foot_top .foot-contact ul li {
  display: flex;
  align-items: center;
}
footer .foot_top .foot-contact ul li .icon {
  margin-right: 0.625rem;
  width: 2.5625rem;
  height: 2.5625rem;
}
footer .foot_top .foot-contact ul li p {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: Raleway;
  flex: 1;
}
footer .foot_top .foot-contact ul li:nth-child(3) {
  width: 36%;
}
footer .foot_nav {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.3125rem;
  padding-bottom: 3.375rem;
  display: flex;
  justify-content: space-between;
}
footer .foot_nav .footnav {
  padding-right: 6.125rem;
  flex: 1;
  display: flex;
  justify-content: space-between;
}
footer .foot_nav .footnav .tt {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
}
footer .foot_nav .footnav .subfootnav {
  margin-top: 1.25rem;
}
footer .foot_nav .footnav .subfootnav .subfootli > a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
}
footer .foot_nav .footnav .subfootnav .subfootli > a:hover {
  color: #fff;
}
footer .foot_nav .ewm {

  display: flex;
  flex-direction: column;
  align-items: end;
}
footer .foot_nav .ewm .img {
  width: 7rem;
}
footer .foot_nav .ewm .img .p{
    color: #fff;
    font-size: .875rem;
    font-weight: 600;
    padding: 5px 0;
}
footer .foot_nav .ewm .icon {
  margin-top: 2.9375rem;
  width: 2.625rem;
}
footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  text-align: center;
  padding: 1.25rem 0 1.1875rem;
}
footer .copyright a {
  color: rgba(255, 255, 255, 0.6);
}
footer .copyright p {
  color: rgba(255, 255, 255, 0.6);
}
footer .copyright .right span:nth-last-child(1) {
  display: none;
}
@-webkit-keyframes banscaleDraw {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes banscaleDraw {
  /*定义关键帧、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;
  z-index: 2;
  height: 100vh;
  overflow: hidden;
}
.banner .text {
  position: absolute;
  opacity: 0.4;
  color: #FFF;
  font-family: Raleway;
  font-size: 1.25rem;
  font-weight: 900;
  z-index: 2;
  text-align: right;
  top: 6.875rem;
  right: var(--container);
}
.banner .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.banner .hover .p1 {
  color: #F9B50C;
  font-family: "Noto Sans SC";
  font-size: 3.5rem;
  font-weight: 400;
}
.banner .hover .p2 {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 3.5rem;
  font-weight: 700;
}
.banner .hover .p3 {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.75rem;
  font-weight: 500;
}
.banner .hover2 {
  position: absolute;
  right: 10%;
  bottom: 3.125rem;
}
.banner .swiper-slide.swiper-slide-active .img img {
  -webkit-animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
}
.banner .swiper-pagination {
  display: flex;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
.banner .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.625rem;
  border: 1px solid #fff;
  opacity: unset;
  background: unset;
}
.banner .scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 9;
  animation: xiangxia 3s infinite ease-in-out;
}
@keyframes xiangxia {
  0% {
    transform: translateX(-50%) translateY(-1.25rem);
  }
  50% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(-1.25rem);
  }
}
.swiper-pagination {
  display: flex;
}
.swiper-button-next,
.swiper-button-prev {
  width: 3.375rem;
  height: 3.375rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #F8B508;
  border: none;
  line-height: 3.375rem;
  text-align: center;
}
.swiper-button-next i,
.swiper-button-prev i {
  color: #000;
  font-size: 1.875rem;
}
.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: 1rem;
  height: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
  opacity: 1;
  background: unset;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #F8B508;
  border: unset;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.neibanner {
  position: relative;
  z-index: 2;
}
.neibanner .neibanner_txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.neibanner .neibanner_txt img {
  width: 29rem;
}
.neibanner .neibanner_txt h3 {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 3.5rem;
  font-weight: 700;
}
.neibanner .neibanner_txt h3 span {
  color: #F8B508;
}
.neibanner .neibanner_txt p {
  margin-top: 0.3125rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: Raleway;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.3;
  text-transform: capitalize;
}
.neibanner .neibanner_txt .desc {
  margin-top: 1.25rem;
}
.neibanner .neibanner_txt .desc p {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}
.neibanner .mbxdh {
  position: absolute;
  bottom: 0.625rem;
}
.login-div {
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  bottom: 0;
  display: none;
  right: 0;
}
.login-div .tsxx {
  font-size: 0.875rem;
  color: red;
  margin-top: 0.25rem;
  line-height: 1.5em;
}
.login-div .tc-gong {
  width: 90%;
  max-width: 33.8125rem;
  background: #FFF;
}
.login-div .tc-gong .top {
  position: relative;
  width: 100%;
  height: 6.25rem;
}
.login-div .tc-gong .top .close1 {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  cursor: pointer;
}
.login-div .tc-gong .top .close1 i {
  font-size: 1.5rem;
  color: #333;
}
.login-div .tc-gong .top .ligat {
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(../images/jiaobiao.png);
  width: 6.25rem;
  height: 100%;
  text-align: right;
}
.login-div .tc-gong .top .ligat a {
  color: #fff;
  font-size: 1.125rem;
  line-height: 5rem;
  padding: 0.5rem 0;
  position: relative;
  font-weight: 600;
  padding-right: 0.625rem;
}
.login-div .tc-gong .content {
  padding: 0 3.125rem 3.125rem;
}
.login-div .tc-gong .content .title {
  color: #F8B508;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.875rem;
  position: relative;
  padding-bottom: 0.9375rem;
  margin-bottom: 3.125rem;
}
.login-div .tc-gong .content .title::before {
  content: '';
  display: block;
  position: absolute;
  width: 2.5rem;
  height: 0.1875rem;
  background-color: #F8B508;
  bottom: 0;
}
.login-div .tc-gong .content .lgin-box {
  text-align: center;
  padding: 1.5rem 0 0.2rem;
}
.login-div .tc-gong .content .lgin-box a.login {
  display: block;
  font-size: 0;
  width: 212px/541px * 100%;
  margin: 0 auto;
}
.login-div .tc-gong .content .lgin-box a.login img {
  width: 100%;
}
.login-div .tc-gong .content .lgin-box p {
  color: #A4A4A4;
  font-size: 1.5rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .login-div .tc-gong .content .lgin-box p {
    font-size: 1.25rem;
  }
}
.login-div .tc-gong .content .msg-svt {
  padding: 0 66px/541px * 100%;
}
@media (max-width: 768px) {
  .login-div .tc-gong .content .msg-svt {
    padding: 0 7%;
  }
}
.login-div .tc-gong .content .msg-svt .inp-box .inpsk {
  border-bottom: 1px solid #EBEBEB;
  overflow: hidden;
  margin-top: 1.25rem;
}
.login-div .tc-gong .content .msg-svt .inp-box .inpsk .wejxa1 {
  width: 5.625rem;
  text-align: left;
  line-height: 3.125rem;
  padding-left: 0.45rem;
  font-size: 1rem;
}
.login-div .tc-gong .content .msg-svt .inp-box .inpsk input {
  flex: 1;
  color: #000;
  font-size: 1rem;
  line-height: 3.125rem;
  font-weight: 500;
  text-indent: 0.75em;
}
.login-div .tc-gong .content .msg-svt .inp-box .inpsk:has(input:focus) {
  border-color: #F8B508;
}
.login-div .tc-gong .content .msg-svt .checkbox {
  margin-top: 0.625rem;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.875rem;
  /* 214.286% */
}
.login-div .tc-gong .content .msg-svt .checkbox a {
  color: rgba(0, 0, 0, 0.5);
}
.login-div .tc-gong .content .msg-svt a.wjmm {
  display: block;
  text-align: center;
  color: #848484;
  font-size: 1.125rem;
  line-height: 1.5em;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .login-div .tc-gong .content .msg-svt a.wjmm {
    padding: 0.75rem 0;
  }
}
.login-div .tc-gong .content .msg-svt .inp-boxta {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #EBEBEB;
  margin-top: 1.25rem;
}
.login-div .tc-gong .content .msg-svt .inp-boxta .p1 {
  width: 5.625rem;
  text-align: left;
  line-height: 3.125rem;
  padding-left: 0.45rem;
  font-size: 1rem;
}
.login-div .tc-gong .content .msg-svt .inp-boxta input {
  flex: 1;
  color: #000;
  font-size: 1rem;
  line-height: 3rem;
  font-weight: 500;
  text-indent: 1em;
}
.login-div .tc-gong .content .msg-svt .inp-boxta input:focus {
  border-color: #F8B508;
}
.login-div .tc-gong .content .msg-svt .inp-boxta .code-box {
  overflow: hidden;
  display: flex;
  flex: 1;
}
.login-div .tc-gong .content .msg-svt .inp-boxta .code-box .inps {
  width: 65%;
}
.login-div .tc-gong .content .msg-svt .inp-boxta .code-box .inps input {
  border: none;
  border-radius: inherit;
}
.login-div .tc-gong .content .msg-svt .inp-boxta .code-box .code-btn {
  width: 35%;
  text-align: right;
}
.login-div .tc-gong .content .msg-svt .inp-boxta .code-box .code-btn button {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  /* 187.5% */
  border: unset;
  border-left: 1px solid #EBEBEB;
  width: 100%;
  text-transform: capitalize;
  background-color: unset;
}
.login-div .tc-gong .content .msg-svt .inp-boxta .code-box:has(input:focus) {
  border-color: #F8B508;
}
.login-div .tc-gong .content .msg-svt2 {
  padding: 1rem 66px/541px * 100% 2rem;
}
@media (max-width: 768px) {
  .login-div .tc-gong .content .msg-svt2 {
    padding: 0.75rem 7% 1.5rem;
  }
}
.login-div .tc-gong .content .tj-btnys button {
  border-radius: 1.875rem;
  background: #F8B508;
  padding: 0.75rem 0;
  width: 100%;
  border: unset;
  color: #fff;
  font-size: 1.125rem;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .login-div .tc-gong .content .tj-btnys button {
    font-size: 1.35rem;
    line-height: 4rem;
  }
}
.login-div .tc-gong .content .tj-btnys button:hover {
  background: linear-gradient(76deg, #23d5d9 -20.93%, #00acb0 126.57%);
}
.login-div .tc-gong .content .wjmm_box {
  margin-top: 1.875rem;
}
.login-div .tc-gong .content .wjmm_box a {
  color: #F8B508;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.875rem;
  text-decoration-line: underline;
}
.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_more {
  width: 8.75rem;
  height: 3rem;
  border-radius: 1.5rem;
  color: #1A1F3D;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  position: relative;
  border: 1px solid #F8B508;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.all_more span {
  position: relative;
  z-index: 2;
  line-height: 1;
}
.all_more::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #F8B508;
  position: absolute;
  left: 0%;
  top: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.all_more:hover {
  color: #F8B508;
}
.all_more:hover::before {
  left: 100%;
}
.all_title h3 {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 2.875rem;
  font-weight: 700;
}
.all_title p {
  color: #1A1F3D;
  font-family: Raleway;
  font-size: 1.625rem;
  font-weight: 500;
  text-transform: capitalize;
  opacity: 0.4;
}
.all_title.white h3,
.all_title.white p {
  color: #fff;
}
.index_one {
  background-size: cover;
}
.index_one .tab_ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1.875rem;
  border: 1px solid rgba(26, 31, 61, 0.1);
  background: #FFF;
  box-shadow: 0 0.25rem 0.9375rem 0 rgba(26, 31, 61, 0.05);
  position: relative;
  z-index: 2;
}
.index_one .tab_ul .tab_li {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.1875rem 0.625rem;
  position: relative;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_one .tab_ul .tab_li::before {
  content: '';
  display: block;
  width: 3.5rem;
  height: 2.1875rem;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s;
  -webkit-transform: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.index_one .tab_ul .tab_li:not(:nth-last-child(1)) {
  border-right: 1px solid rgba(26, 31, 61, 0.1);
}
.index_one .tab_ul .tab_li:hover,
.index_one .tab_ul .tab_li.active {
  background-color: #F8B508;
}
.index_one .tab_ul .tab_li:hover .icon,
.index_one .tab_ul .tab_li.active .icon {
  border-color: #000;
}
.index_one .tab_ul .tab_li:hover::before,
.index_one .tab_ul .tab_li.active::before {
  opacity: 1;
}
.index_one .tab_ul .tab_li .icon {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #F8B508;
}
.index_one .tab_ul .tab_li .icon img {
  width: 101%;
}
.index_one .tab_ul .tab_li .text {
  padding-left: 1.1875rem;
  flex: 1;
}
.index_one .tab_ul .tab_li .text h3 {
  color: #1A1F3D;
  font-size: 1.75rem;
  font-weight: 500;
}
.index_one .tab_ul .tab_li .text p {
  color: rgba(26, 31, 61, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
}
.index_one .tab_ul .tab_li:nth-child(1) {
  border-radius: 1.875rem 0 0 1.875rem;
}
.index_one .tab_ul .tab_li:nth-child(1)::before {
  background-color: #F8B508;
}
.index_one .tab_ul .tab_li:nth-child(2)::before {
  background-color: #48BDCC;
}
.index_one .tab_ul .tab_li:nth-child(2) .icon {
  border-color: #48BDCC;
}
.index_one .tab_ul .tab_li:nth-child(2):hover,
.index_one .tab_ul .tab_li:nth-child(2).active {
  background-color: #48BDCC;
}
.index_one .tab_ul .tab_li:nth-child(2):hover .icon,
.index_one .tab_ul .tab_li:nth-child(2).active .icon {
  border-color: #000;
}
.index_one .tab_ul .tab_li:nth-child(3) {
  border-radius: 0 1.875rem 1.875rem 0;
}
.index_one .tab_ul .tab_li:nth-child(3)::before {
  background-color: #F8B508;
}
.index_one .cont_box {
  position: relative;
  z-index: 2;
}
.index_one .cont_box .cont_item {
  display: none;
  min-height: 60vh;
}
.index_one .cont_box .cont_item.active {
  display: block;
}
.index_one .cont_box .cont_item .left {
  padding-right: 2.5rem;
}
.index_one .cont_box .cont_item .left ul {
  margin-top: 2.5rem;
  position: relative;
}
.index_one .cont_box .cont_item .left ul::before {
  content: '';
  width: 1px;
  height: 100%;
  border-left: 1px dashed #1A1F3D;
  position: absolute;
  opacity: 0.5;
  left: 0.4375rem;
  top: 1rem;
}
.index_one .cont_box .cont_item .left ul li {
  padding-left: 2.1875rem;
  position: relative;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.index_one .cont_box .cont_item .left ul li .tit {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.75rem;
  font-weight: 500;
  position: relative;
}
.index_one .cont_box .cont_item .left ul li .tit i {
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background-color: #1A1F3D;
  position: absolute;
  left: -2.1875rem;
  top: 50%;
  transform: translateY(-50%);
}
.index_one .cont_box .cont_item .left ul li .tit i::after {
  content: '';
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  border: 0.25rem solid #F8B508;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.index_one .cont_box .cont_item .left ul li .desc {
  color: #1A1F3D;
  text-align: justify;
  font-size: 1.25rem;
  line-height: 2rem;
  opacity: 0;
  height: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_one .cont_box .cont_item .left ul li a.all_more {
  margin-top: 2.1875rem;
  width: 8.75rem;
  height: 3rem;
  display: none;
}
.index_one .cont_box .cont_item .left ul li.active .tit {
  color: #F8B508;
  font-family: "Noto Sans SC";
  font-size: 2.625rem;
  font-weight: 700;
}
.index_one .cont_box .cont_item .left ul li.active .tit i {
  background-color: #fff;
}
.index_one .cont_box .cont_item .left ul li.active .tit i::after {
  opacity: 1;
}
.index_one .cont_box .cont_item .left ul li.active .desc {
  padding-top: 1.25rem;
  min-height: 5.3125rem;
  height: auto;
  opacity: 1;
}
.index_one .cont_box .cont_item .left ul li.active .desc {
  display: block;
}
.index_one .cont_box .cont_item .left ul li.active a.all_more {
  display: flex;
}
.index_one .cont_box .cont_item .right {
  padding-left: 4.375rem;
}
.index_one .cont_box .cont_item .right .ri_bb {
  display: none;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_one .cont_box .cont_item .right .ri_bb.active {
  display: block;
}
.index_one .cont_box .cont_item .right .ri_bb .over {
  border-radius: 1.875rem;
}
.index_one .cont_box .cont_item .right .ri_box {
  border-radius: 1.875rem;
  border: 1px solid rgba(26, 31, 61, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.25rem 0.9375rem 0 rgba(26, 31, 61, 0.05);
  padding: 2.5rem 2.9375rem 3.625rem 1.875rem;
}
.index_one .cont_box .cont_item .right .ri_box .tit {
  color: #1A1F3D;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.75rem;
  font-weight: 700;
}
.index_one .cont_box .cont_item .right .ri_box .en {
  color: #1A1F3D;
  font-family: Raleway;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  opacity: 0.4;
}
.index_one .cont_box .cont_item .right .ri_box .cont {
  margin-top: 1.1875rem;
}
.index_one .cont_box .cont_item .right .ri_box .cont ul {
  position: relative;
}
.index_one .cont_box .cont_item .right .ri_box .cont ul::before {
  content: '';
  display: block;
  width: 1px;
  height: 95%;
  border-right: 1px dashed rgba(26, 31, 61, 0.3);
  position: absolute;
  left: 1.4375rem;
  top: 0.3125rem;
  z-index: 1;
}
.index_one .cont_box .cont_item .right .ri_box .cont ul li {
  display: flex;
  align-items: center;
}
.index_one .cont_box .cont_item .right .ri_box .cont ul li:not(:nth-last-child(1)) {
  margin-bottom: 2.4375rem;
}
.index_one .cont_box .cont_item .right .ri_box .cont ul li .icon {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.index_one .cont_box .cont_item .right .ri_box .cont ul li .icon img {
  width: 45%;
}
.index_one .cont_box .cont_item .right .ri_box .cont ul li .tt {
  flex: 1;
  padding-left: 1.0625rem;
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 1.625rem;
}
.index_one .cont_box .cont_item .right .ri_box .cont ul li:nth-child(1) .icon {
  background-color: #C5D54D;
}
.index_one .cont_box .cont_item .right .ri_box .cont ul li:nth-child(2) .icon {
  background-color: #85519B;
}
.index_one .cont_box .cont_item .right .ri_box .cont ul li:nth-child(3) .icon {
  background-color: #48BDCC;
}
.index_one .cont_box .cont_item .right .ri_box .cont ul li:nth-child(4) .icon {
  background-color: #F1BDC8;
}
.index_one .cont_box .cont_item .cont_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.index_one .cont_box .cont_item .cont_grid .con_item {
  border-radius: 1.875rem;
  border: 1px solid rgba(26, 31, 61, 0.1);
  background: #FFF;
  box-shadow: 0 0.25rem 0.9375rem 0 rgba(26, 31, 61, 0.05);
  padding: 2.5625rem 1.25rem 2.5rem;
}
.index_one .cont_box .cont_item .cont_grid .con_item .icon {
  width: 4.75rem;
  height: 4.75rem;
  margin: 0 auto;
}
.index_one .cont_box .cont_item .cont_grid .con_item .text {
  margin-top: 0.9375rem;
  color: #1A1F3D;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}
.index_two {
  position: relative;
  z-index: 2;
}
.index_two .content {
  position: relative;
}
.index_two .content .swiper-button-prev,
.index_two .content .swiper-button-next {
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  border-radius: 50%;
  background-color: #F8B508;
  border: none;
  z-index: 9;
}
.index_two .content .swiper-button-prev i,
.index_two .content .swiper-button-next i {
  font-size: 2.0625rem;
  color: #1c1f3e;
}
.index_two .content .swiper_indexalzy {
  position: relative;
  overflow: hidden;
  margin: 0 -1.25rem;
  padding-bottom: 4.375rem;
}
.index_two .content .swiper_indexalzy .swiper-pagination {
  justify-content: center;
}
.index_two .content .swiper_indexalzy .swiper-pagination-bullet {
  border: none;
  background: rgba(255, 255, 255, 0.4);
}
.index_two .content .swiper_indexalzy .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #F8B508;
}
.index_two .content .swiper_indexalzy .swiper-slide {
  padding: 0 1.25rem;
}
.index_two .content .swiper_indexalzy .swiper-slide .alzy_box {
  border-radius: 1.875rem;
  overflow: hidden;
}
.index_two .content .swiper_indexalzy .swiper-slide .alzy_box .text {
  background-color: #fff;
  padding: 1.6875rem 2rem 2.1875rem 1.75rem;
}
.index_two .content .swiper_indexalzy .swiper-slide .alzy_box .text h3 {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.375rem;
  font-weight: 700;
}
.index_two .content .swiper_indexalzy .swiper-slide .alzy_box .text p {
  margin-top: 0.625rem;
  color: #1A1F3D;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 1.625rem;
}
.index_two .content .swiper_indexalzy .swiper-slide .alzy_box .text .p1 {
  margin-top: 0.875rem;
  color: rgba(26, 31, 61, 0.8);
  font-family: Raleway;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625rem;
}
.index_three {
  padding-top: 6.25rem;
  background-size: cover;
  position: relative;
  z-index: 2;
}
.index_three .left {
  padding-right: 5.375rem;
}
.index_three .left .desc {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 1.75rem;
}
.index_three .left .desc p {
  margin-bottom: 1.25rem;
  text-indent: 2em;
}
.index_three .right .over {
  position: relative;
  border-radius: 50%;
  border: 0.375rem solid #F8B508;
}
.index_three .about_num {
  display: flex;
  justify-content: space-between;
}
.index_three .about_num .about_item {
  min-width: 10%;
}
.index_three .about_num .about_item h3 span {
  color: #F8B508;
  font-family: Raleway;
  font-size: 3.75rem;
  font-weight: 900;
}
.index_three .about_num .about_item h3 sup {
  color: #F8B508;
  font-family: Raleway;
  font-size: 2.625rem;
  font-weight: 900;
  padding-left: 0.3125rem;
}
.index_three .about_num .about_item h3 sup.min {
  font-size: 1.375rem;
  top: -1.5em;
}
.index_three .about_num .about_item p {
  color: #1A1F3D;
  font-family: Raleway;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}
.icon img {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.icon:hover img {
  transform: rotateY(180deg);
}
.quan_boxy {
  position: relative;
}
.quan_boxy::before {
  content: '';
  display: block;
  width: 48.5141rem;
  height: 48.5141rem;
  border-radius: 50%;
  border: 8px solid rgba(248, 181, 8, 0.2);
  position: fixed;
  top: -2.5rem;
  right: -2.5rem;
  z-index: 1;
}
.quan_boxy::after {
  content: '';
  display: block;
  width: 48.5141rem;
  height: 48.5141rem;
  border-radius: 50%;
  border: 8px solid rgba(248, 181, 8, 0.2);
  position: fixed;
  left: 40%;
  bottom: -14.375rem;
  z-index: 1;
}
.quan_boxy.color1::before,
.quan_boxy.color1::after {
  border-color: rgba(72, 189, 204, 0.2);
}
.list_about_one {
  padding-top: 6.875rem;
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.list_about_one .content .left {
  padding-right: 5rem;
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 2rem;
}
.list_about_one .content .left p {
  margin-bottom: 1.0625rem;
}
.list_about_one .content .right {
  padding: 0;
}
.list_about_one .content .right .over {
  border-radius: 50%;
  border: 6px solid #F8B508;
}
.list_about_one .about_num {
  display: flex;
  justify-content: space-between;
}
.list_about_one .about_num .about_item {
  min-width: 10%;
}
.list_about_one .about_num .about_item h3 span {
  color: #F8B508;
  font-family: Raleway;
  font-size: 3.75rem;
  font-weight: 900;
}
.list_about_one .about_num .about_item h3 sup {
  color: #F8B508;
  font-family: Raleway;
  font-size: 2.625rem;
  font-weight: 900;
  padding-left: 0.3125rem;
}
.list_about_one .about_num .about_item h3 sup.min {
  font-size: 1.375rem;
  top: -1.5em;
}
.list_about_one .about_num .about_item p {
  color: #1A1F3D;
  font-family: Raleway;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}
.list_about_two {
  background-size: cover;
  padding-top: 6.25rem;
  padding-bottom: 10rem;
  position: relative;
  z-index: 2;
}
.list_about_two .grid_box {
  display: grid;
  grid-template-columns: 44% 56%;
}
.list_about_two .grid_box .grid_item:nth-child(1) {
  padding-right: 5.1875rem;
  border-right: 2px dashed #fff;
  display: grid;
  gap: 5.625rem;
}
.list_about_two .grid_box .grid_item:nth-child(2) {
  padding-left: 4.375rem;
}
.list_about_two .grid_box .grid_item .grid_bb .icon {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 50%;
  background-color: #F8B508;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_about_two .grid_box .grid_item .grid_bb .icon img {
  width: 90%;
}
.list_about_two .grid_box .grid_item .grid_bb .text {
  flex: 1;
  padding-left: 1.25rem;
}
.list_about_two .grid_box .grid_item .grid_bb .text h3 {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 2rem;
  font-weight: 700;
}
.list_about_two .grid_box .grid_item .grid_bb .text p {
  margin-top: 0.75rem;
  color: #FFF;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 2rem;
}
.list_about_two .grid_box .grid_item .grid_bb .p {
  color: #FFF;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 3rem;
}
.list_about_two .grid_box .grid_item .grid_bb .p strong {
  font-weight: 700;
}
.list_about_three {
  padding-top: 6.875rem;
  padding-bottom: 6.875rem;
}
.list_about_three .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}
.list_about_three .grid_box .grid_item {
  border-radius: 1.875rem;
  border: 1px solid rgba(28, 31, 62, 0.1);
  background: #FFF;
  box-shadow: 0 0.25rem 0.9375rem 0 rgba(28, 31, 62, 0.1);
  padding: 1.8125rem 1.875rem;
  display: flex;
  align-items: center;
}
.list_about_three .grid_box .grid_item .over {
  width: 9.75rem;
  height: 9.75rem;
  border-radius: 50%;
  border: 0.25rem solid #F8B508;
}
.list_about_three .grid_box .grid_item .text {
  flex: 1;
  padding-left: 1.75rem;
}
.list_about_three .grid_box .grid_item .text h3 {
  color: #271E59;
  font-family: Raleway;
  font-size: 1.5rem;
  font-weight: 700;
}
.list_about_three .grid_box .grid_item .text p {
  margin-top: 0.375rem;
  color: rgba(26, 31, 61, 0.4);
  font-family: Raleway;
  font-size: 1.25rem;
  font-weight: 500;
}
.list_about_three .grid_box .grid_item .text .link_box {
  display: flex;
  justify-content: end;
}
.list_about_three .grid_box .grid_item .text .link {
  margin-top: 0.8125rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.25rem;
  background: #F8B508;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_about_three .grid_box .grid_item .text .link i {
  font-size: 1rem;
  color: #fff;
}
.list_about_four {
  background: #f6fbfc;
  position: relative;
  z-index: 2;
  padding-top: 6.875rem;
}
.list_about_four #world_map {
  width: 100%;
  height: 43.75rem;
}
.list_news_box {
  position: relative;
  padding-top: 6.875rem;
  padding-bottom: 6.5625rem;
}
.list_news_box .swipernews {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.list_news_box .swipernews .swiper-button-prev {
  left: unset;
  right: 34.375rem;
  top: unset;
  margin-top: 0;
  bottom: 0;
}
.list_news_box .swipernews .swiper-button-next {
  right: 30rem;
  top: unset;
  margin-top: 0;
  bottom: 0;
}
.list_news_box .swipernews .news_new_box {
  display: flex;
}
.list_news_box .swipernews .news_new_box .over {
  margin-right: 1.25rem;
  width: 50%;
  border-radius: 1.875rem;
}
.list_news_box .swipernews .news_new_box .right {
  flex: 1;
  padding-left: 3.75rem;
  padding-top: 1.875rem;
}
.list_news_box .swipernews .news_new_box .right h3 {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 2.25rem;
}
.list_news_box .swipernews .news_new_box .right p.p {
  margin-top: 1.25rem;
  color: #1A1F3D;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 2rem;
  /* 160% */
}
.list_news_box .swipernews .news_new_box .right p.p1 {
  margin-top: 2.5rem;
  color: rgba(26, 31, 61, 0.8);
  font-family: Raleway;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.625rem;
  /* 130% */
}
.yyhy_content {
  background: #F8F8F8;
  padding-top: 5rem;
  padding-bottom: 6.375rem;
}
.yyhy_content .contact {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.yyhy_content .conxx {
  display: flex;
  align-items: center;
  justify-content: center;
}
.yyhy_content .rq-cont {
  margin-right: 2.375rem;
  position: relative;
}
.yyhy_content .rq-cont::before {
  content: "\e87e";
  color: #222;
  font-family: 'iconfont';
  font-size: 1.375rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.yyhy_content .rq-cont select {
  background: none;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 19.6875rem;
  height: 4.375rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(26, 31, 61, 0.2);
  background: #FFF;
  padding: 0 1.25rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.25rem;
  font-weight: 500;
}
.yyhy_content .input_flex {
  width: 45%;
  display: flex;
  align-items: center;
  border-radius: 2.5rem;
  border: 1px solid rgba(26, 31, 61, 0.2);
  background: #FFF;
  height: 5rem;
}
.yyhy_content .input_flex .input_box {
  flex: 1;
  height: 100%;
  padding-left: 2.1875rem;
  overflow: hidden;
}
.yyhy_content .input_flex input {
  height: 100%;
  width: 100%;
  color: rgba(26, 31, 61, 0.6);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
}
.yyhy_content .input_flex input::placeholder {
  color: rgba(26, 31, 61, 0.6);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
}
.yyhy_content .input_flex .btt {
  width: 10.125rem;
  height: 4.5rem;
  border-radius: 2.5rem;
  background: #F8B508;
  margin-right: 0.25rem;
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.375rem;
  font-weight: 500;
  border: unset;
}
.yyhy_content .yyhy_con {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}
.yyhy_content .yyhy_con .yyhy_item {
  overflow: hidden;
  border-radius: 1.875rem;
  background: #FFF;
  box-shadow: 0 0.25rem 2.1875rem 0 rgba(26, 31, 61, 0.1);
}
.yyhy_content .yyhy_con .yyhy_item .text {
  padding: 1.75rem 2rem 2.1875rem 1.75rem;
}
.yyhy_content .yyhy_con .yyhy_item .text h3 {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
}
.yyhy_content .yyhy_con .yyhy_item .text p {
  margin-top: 0.625rem;
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 1.625rem;
}
.yyhy_content .yyhy_con .yyhy_item .text .time {
  margin-top: 0.875rem;
  color: rgba(26, 31, 61, 0.8);
  font-family: Raleway;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625rem;
}
.news_show_box .news_content {
  width: 68.75rem;
  margin: 0 auto;
}
.news_show_box .title {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(26, 31, 61, 0.15);
}
.news_show_box .title h3 {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3.5rem;
}
.news_show_box .title .subtit {
  display: flex;
  align-items: center;
}
.news_show_box .title .subtit .time {
  width: 35%;
  color: rgba(26, 31, 61, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
  letter-spacing: 0.0625rem;
}
.news_show_box .title .subtit .time span {
  color: #1A1F3D;
  font-family: Raleway;
  font-size: 1.25rem;
  font-weight: 500;
}
.news_show_box .title .subtit .fx {
  color: rgba(26, 31, 61, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
  letter-spacing: 0.0625rem;
}
.news_show_box .title .subtit .fx ul li {
  position: relative;
}
.news_show_box .title .subtit .fx ul li .img {
  width: 7.5rem;
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
}
.news_show_box .title .subtit .fx ul li .icon {
  width: 3rem;
  height: 3rem;
}
.news_show_box .title .subtit .fx ul li:hover .img {
  opacity: 1;
  visibility: visible;
}
.news_show_box .content {
  padding-top: 2.3125rem;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid rgba(26, 31, 61, 0.15);
  color: rgba(26, 31, 61, 0.8);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.news_show_box .content .title {
  padding-bottom: 1rem;
}
.news_show_box .content .text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}
.news_show_box .content ul li {
  margin-bottom: 0;
  position: relative;
  padding-left: 1.875rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
}
.news_show_box .content ul li::before {
  content: '';
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: rgba(26, 31, 61, 0.8);
  position: absolute;
  left: 0.625rem;
  top: 1rem;
}
.news_show_box .content .left_right_ul .row:nth-child(even) {
  margin-top: 3.125rem;
}
.news_show_box .content .left_right_ul .row:nth-child(even) .order1 {
  order: 2;
}
.news_show_box .content .row_box3 .title {
  font-size: 1.125rem;
  line-height: 1.5;
}
.news_show_box .content .row_box3 .pp {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}
.news_show_box .shangxia_p .shangxia {
  color: rgba(26, 31, 61, 0.8);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}
.list_contact_one {
  padding-top: 7.5rem;
}
.list_contact_one .content {
  padding-bottom: 8.75rem;
}
.list_contact_one .bgimg {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.list_contact_one .title {
  color: #F8B508;
  font-family: Raleway;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
.list_contact_one .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.list_contact_one .grid_box .grid_item {
  padding: 3.125rem 2.5rem 4.375rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  border-radius: 1.25rem;
  border: 1px solid rgba(26, 31, 61, 0.1);
  background: rgba(255, 255, 255, 0.9);
}
.list_contact_one .grid_box .grid_item .img_box{
    position: absolute;
    top: 3.5rem;
    right: 3.75rem;
    width: 8rem;
}
.list_contact_one .grid_box .grid_item .img_box img{
        border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.list_contact_one .grid_box .grid_item .img_box p{
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 5px 0;
    color: #1A1F3D;
}
.list_contact_one .grid_box .grid_item:hover .img_box p{
    color: #fff;
}
.list_contact_one .grid_box .grid_item::before {
  content: '';
  display: block;
  width: 12.8563rem;
  height: 12.8563rem;
  border-radius: 50%;
  border: 0.25rem solid rgba(248, 181, 8, 0.2);
  position: absolute;
  right: -5rem;
}
.list_contact_one .grid_box .grid_item::after {
  content: '';
  display: block;
  width: 12.8563rem;
  height: 12.8563rem;
  border-radius: 50%;
  border: 0.25rem solid rgba(248, 181, 8, 0.2);
  position: absolute;
  top: 11.25rem;
  right: 2.1875rem;
}
.list_contact_one .grid_box .grid_item .tit {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
  /* 100% */
}
.list_contact_one .grid_box .grid_item ul {
  margin-top: 1.875rem;
}
.list_contact_one .grid_box .grid_item ul li {
  display: flex;
  margin-top: 1.0625rem;
}
.list_contact_one .grid_box .grid_item ul li .icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 0.8px solid #1A1F3D;
  margin-top: 0.5rem;
}
.list_contact_one .grid_box .grid_item ul li .tt {
  flex: 1;
  padding-left: 0.9375rem;
  color: #1A1F3D;
  font-family: Montserrat;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.5rem;
}
.list_contact_one .grid_box .grid_item:hover {
  border-radius: 1.25rem;
  border: 1px solid rgba(26, 31, 61, 0.1);
  background: #1A1F3D;
}
.list_contact_one .grid_box .grid_item:hover .tit {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
  /* 100% */
}
.list_contact_one .grid_box .grid_item:hover ul {
  margin-top: 1.875rem;
}
.list_contact_one .grid_box .grid_item:hover ul li {
  display: flex;
  margin-top: 1.0625rem;
}
.list_contact_one .grid_box .grid_item:hover ul li .icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 0.8px solid #fff;
  margin-top: 0.5rem;
  filter: brightness(0) invert(1);
}
.list_contact_one .grid_box .grid_item:hover ul li .tt {
  flex: 1;
  padding-left: 0.9375rem;
  color: #FFF;
  font-family: Montserrat;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.5rem;
}
.list_contact_two {
  padding-top: 7.3125rem;
  padding-bottom: 4.875rem;
  background-size: cover;
}
.list_contact_two .msg-a1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1875rem 2.5rem;
}
.list_contact_two .msg-a1 .inpt2 {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  grid-column: 1/3;
}
.list_contact_two .msg-a1 .inpt2 span {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 700;
  margin-right: 1.875rem;
}
.list_contact_two .msg-a1 .inpt2 input[type="radio"] {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.625rem;
  accent-color: #F8B508;
}
.list_contact_two .msg-a1 .inpt2 input[type="radio"]:checked {
  background-color: #F8B508;
}
.list_contact_two .msg-a1 .inpt2 label {
  display: flex;
  align-items: center;
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
}
.list_contact_two .msg-a1 .inpt2 label:nth-child(2) {
  margin-right: 3.75rem;
}
.list_contact_two .msg-a1 .inpt input {
  padding: 0 1.875rem;
  width: 100%;
  height: 3.75rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0.3125rem);
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 700;
}
.list_contact_two .msg-a1 .inpt input::placeholder {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 700;
}
.list_contact_two .msg-a3 {
  margin-top: 2.25rem;
}
.list_contact_two .msg-a3 .inpt textarea {
  padding: 1.1875rem 1.875rem;
  width: 100%;
  height: 6.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0.3125rem);
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 700;
}
.list_contact_two .msg-a3 .inpt textarea::placeholder {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 700;
}
.list_contact_two .checkbox {
  display: flex;
  align-items: center;
}
.list_contact_two .checkbox input {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.2);
  accent-color: #F8B508;
}
.list_contact_two .checkbox label {
  margin-left: 0.375rem;
  color: #FFF;
  font-family: Raleway;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 0;
}
.list_rencai_one {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
.list_rencai_one .content {
  position: relative;
  z-index: 2;
}
.list_rencai_one .content .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.list_rencai_one .content .grid_box .grid_item {
  border-radius: 1.875rem;
  border: 1px solid rgba(248, 181, 8, 0.1);
  background: #FFF;
  box-shadow: 0 0.25rem 1.5625rem 0 rgba(248, 181, 8, 0.15);
  padding: 2.875rem 3.1875rem 3.125rem 3.1875rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_rencai_one .content .grid_box .grid_item::before {
  content: '';
  display: block;
  width: 15.9312rem;
  height: 15.9312rem;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  right: -1.3125rem;
}
.list_rencai_one .content .grid_box .grid_item::after {
  content: '';
  display: block;
  width: 15.9312rem;
  height: 15.9312rem;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: -6.9375rem;
  right: 7.625rem;
}
.list_rencai_one .content .grid_box .grid_item .tit {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.625rem;
  font-weight: 700;
  padding-bottom: 1.8125rem;
  border-bottom: 1px solid rgba(26, 31, 61, 0.15);
}
.list_rencai_one .content .grid_box .grid_item .cont {
  padding-top: 2.3125rem;
  display: flex;
  justify-content: space-between;
  color: rgba(26, 31, 61, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
}
.list_rencai_one .content .grid_box .grid_item .cont .span {
  color: rgba(26, 31, 61, 0.7);
  font-family: Raleway;
  font-size: 1.25rem;
  font-weight: 600;
}
.list_rencai_one .content .grid_box .grid_item .more {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
  display: flex;
  align-items: center;
}
.list_rencai_one .content .grid_box .grid_item .more .i {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #F8B508;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.75rem;
}
.list_rencai_one .content .grid_box .grid_item .more i {
  font-size: 1.125rem;
  color: #1A1F3D;
}
.list_rencai_one .content .grid_box .grid_item:hover {
  background: #F8B508;
}
.list_rencai_one .content .grid_box .grid_item:hover .cont {
  color: #1A1F3D;
}
.list_rencai_one .content .grid_box .grid_item:hover .more .i {
  background-color: #1A1F3D;
}
.list_rencai_one .content .grid_box .grid_item:hover .more .i i {
  color: #fff;
}
.jrwm {
  display: none;
  width: 62.5rem;
  height: 43.5625rem;
  border-radius: 1.875rem;
  background: #FFF;
  padding: 5rem 4.75rem 4.5rem;
}
.jrwm .tit {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 2.25rem;
  font-weight: 700;
}
.jrwm .cont {
  margin-top: 1.5625rem;
  padding-bottom: 1.75rem;
  display: flex;
  justify-content: space-between;
  color: rgba(26, 31, 61, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(26, 31, 61, 0.15);
}
.jrwm .cont .span {
  color: rgba(26, 31, 61, 0.7);
  font-family: Raleway;
  font-size: 1.25rem;
  font-weight: 500;
}
.jrwm .dd_cont {
  padding-top: 2.5rem;
  color: rgba(26, 31, 61, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  /* 160% */
  padding-right: 1.25rem;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.jrwm .dd_cont::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  background-color: #c9c9c9;
  width: 0.3125rem;
  height: 10.25rem;
  position: absolute;
}
.jrwm .dd_cont::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0.3125rem;
  /*高宽分别对应横竖滚动条的尺寸*/
}
.jrwm .dd_cont::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  display: block;
  width: 0.3125rem;
  height: 2.1875rem;
  background: #F8B508;
}
.jrwm .dd_cont h3 {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5625rem;
}
.jrwm .dd_cont p {
  position: relative;
  padding-left: 1.25rem;
}
.jrwm .dd_cont p::before {
  content: '';
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: rgba(26, 31, 61, 0.7);
  position: absolute;
  left: 0.3125rem;
  top: 0.9375rem;
}
.jrwm .email {
  display: flex;
  align-items: center;
  color: rgba(26, 31, 61, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.jrwm .email .i {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid #1c1f3e;
  margin-right: 0.8125rem;
}
.jrwm .email a {
  color: #F8B508;
  font-family: Raleway;
  font-size: 2rem;
  font-weight: 700;
}
.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: unset;
}
.fancybox__content > .carousel__button.is-close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: #F8B508;
  top: 2.5rem;
  right: 2.5rem;
}
.carousel__button svg {
  stroke: #000;
}
.all_lrbox {
  position: relative;
  z-index: 2;
}
.all_lrbox .row {
  align-items: center;
}
.all_lrbox .row:nth-child(even) .left {
  padding-right: 0.9375rem;
  padding-left: 2.5rem;
  order: 2;
}
.all_lrbox .row:nth-child(even) .right {
  padding-left: 15px;
  padding-right: 2.5rem;
}
.all_lrbox .left {
  padding-right: 2.5rem;
}
.all_lrbox .right {
  padding-left: 2.5rem;
}
.all_lrbox .over {
  border-radius: 50%;
  border: 0.625rem solid #F8B508;
}
.all_lrbox .tit {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 3rem;
  font-weight: 700;
}
.all_lrbox .subtit {
  margin-top: 1.25rem;
  color: #48BDCC;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
  /* 160% */
}
.all_lrbox .desc {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.all_lrbox .desc a {
  color: #F8B508;
  text-decoration: underline;
}
.all_lrbox .desc strong {
  color: #F8B508;
  font-weight: 400;
}
.all_lrbox .btn {
  width: 14.375rem;
  height: 4.0625rem;
  border-radius: 0.625rem;
  background: #F08200;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1F3D;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
  border: 2px solid #F08200;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.all_lrbox .btn:hover {
  background-color: unset;
  color: #F08200;
}
.list_rencai_three {
  padding-bottom: 8.75rem;
}
.list_rencai_three .content {
  position: relative;
  z-index: 2;
}
.list_rencai_three .douhao {
  width: 7.9377rem;
  margin: 0 auto;
}
.list_rencai_three .tit {
  margin-top: 3.125rem;
  color: #1A1F3D;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
}
.list_rencai_three .subtit {
  margin-top: 1.25rem;
  color: #1A1F3D;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.5rem;
}
.list_rencai_three .tit1 {
  margin-top: 2.0625rem;
  color: #F6B308;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 2.5rem;
}
.list_rencai_three .subtit1 {
  margin-top: 0.75rem;
  color: #F6B308;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.5rem;
  /* 166.667% */
}
.list_rencai_three .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.625rem 3.5625rem;
}
.list_rencai_three .grid_box .grid_item .over {
  border-radius: 1.25rem;
}
.list_why {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  position: relative;
  z-index: 2;
}
.list_why.list_why2 .grid_box {
  grid-template-columns: repeat(3, 1fr);
}
.list_why.list_why2 .grid_box .grid_item .icon {
  background-color: #C5D54D;
}
.list_why.list_why2 .grid_box .grid_item .text .p {
  text-align: left;
  margin-top: 0.75rem;
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_why .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.list_why .grid_box .grid_item {
  border-radius: 1.875rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0.25rem 0.9375rem 0 rgba(26, 31, 61, 0.05);
  padding: 3.4375rem 3.125rem 3.6875rem;
}
.list_why .grid_box .grid_item .icon {
  width: 6.25rem;
  height: 6.25rem;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #48BDCC;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_why .grid_box .grid_item .icon img {
  width: 65%;
}
.list_why .grid_box .grid_item .text {
  margin-top: 1.625rem;
}
.list_why .grid_box .grid_item .text h3 {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.375rem;
  font-weight: 700;
}
.list_why .grid_box .grid_item .text p {
  margin-top: 0.75rem;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.pb185 {
  padding-bottom: 11.5625rem;
}
.list_ylqx_three {
  padding-top: 6.875rem;
  padding-bottom: 6.875rem;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.list_ylqx_three .content {
  position: relative;
}
.list_ylqx_three .content .xian {
  width: 80%;
  border-bottom: 1px dashed #1A1F3D;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.list_ylqx_three .content .xian .i {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: var(--progress, 0%);
  /* 由 JS 控制变量 */
  background: #F8B508;
  /* 进度条高亮颜色 */
  transition: width 0.3s ease;
  z-index: 2;
}
.list_ylqx_three .content ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.list_ylqx_three .content ul li .dian {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background-color: #1A1F3D;
  margin: 10.625rem auto 0;
}
.list_ylqx_three .content ul li .kk {
  margin-top: 1.875rem;
  color: #1A1F3D;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.875rem;
  position: relative;
}
.list_ylqx_three .content ul li .kk .svg svg {
  width: 7.5rem !important;
  height: 8.75rem !important;
}
.list_ylqx_three .content ul li .kk span {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.list_ylqx_three .content ul li:hover .kk .svg svg path,
.list_ylqx_three .content ul li.active .kk .svg svg path {
  fill: #F8B508;
}
.list_ylqx_three .content ul li:hover .kk span,
.list_ylqx_three .content ul li.active .kk span {
  color: #fff;
}
.list_ylqx_three .content ul li:nth-child(2) .dian,
.list_ylqx_three .content ul li:nth-child(4) .dian {
  margin: 0 auto 10.625rem;
}
.list_ylqx_three .content ul li:nth-child(2) .kk,
.list_ylqx_three .content ul li:nth-child(4) .kk {
  margin-top: 0;
  margin-bottom: 1.875rem;
}
.list_ylqx_three .content ul li:nth-child(2) .kk span,
.list_ylqx_three .content ul li:nth-child(4) .kk span {
  top: calc(50% - 0.625rem);
}
.list_ylqx_four {
  padding-top: 6.875rem;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.list_ylqx_four .top_flex {
  display: flex;
  justify-content: space-between;
}
.list_ylqx_four .top_flex .le {
  width: 52%;
}
.list_ylqx_four .top_flex .title {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 3.625rem;
}
.list_ylqx_four .top_flex .ri {
  width: 34.375rem;
}
.list_ylqx_four .content .left ul li {
  margin-bottom: 1.25rem;
  height: 6.25rem;
  line-height: 6.25rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(26, 31, 61, 0.15);
  background: #FFF;
  box-shadow: 0 0.25rem 0.9375rem 0 rgba(28, 31, 62, 0.1);
  text-align: center;
  color: #1A1F3D;
  font-family: Raleway;
  font-size: 1.75rem;
  font-weight: 600;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_ylqx_four .content .left ul li.active {
  background-color: #F08200;
  color: #fff;
}
.list_ylqx_four .content .right {
  padding-left: 7rem;
}
.list_ylqx_four .content .right .ri_box .ri_item {
  display: none;
}
.list_ylqx_four .content .right .ri_box .ri_item.active {
  display: block;
}
.list_ylqx_four .content .right .ri_box .ri_item h3 {
  color: #1A1F3D;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1.5625rem;
}
.list_ylqx_four .content .right .ri_box .ri_item p {
  color: #1A1F3D;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 3rem;
  position: relative;
  padding-left: 1.25rem;
}
.list_ylqx_four .content .right .ri_box .ri_item p::before {
  content: '';
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #1A1F3D;
  position: absolute;
  left: 0.3125rem;
  top: 1.5rem;
}
.list_ylqx_six {
  position: relative;
  z-index: 2;
  padding-top: 10.625rem;
  padding-bottom: 11.25rem;
  background-size: cover;
}
.list_ylqx_six .img {
  width: 55%;
}
.list_ylqx_six .title {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 3.625rem;
}
.list_ylqx_six .desc {
  width: 55%;
  color: #FFF;
  font-family: Raleway;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
}
.list_ylqx_eight {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.list_ylqx_eight .content {
  border-radius: 0.625rem;
  border: 1px solid rgba(26, 31, 61, 0.1);
  background: #FFF;
  box-shadow: 0 0.25rem 2.5rem 0 rgba(28, 31, 62, 0.1);
  padding: 4.3125rem 0 4.1875rem;
}
.list_ylqx_eight .left {
  width: 50%;
  position: relative;
}
.list_ylqx_eight .left svg {
  width: 0.0625rem !important;
  height: 100% !important;
  position: absolute;
  right: 0;
  top: 0;
}
.list_ylqx_eight .left .over {
  width: 18.75rem;
  height: 18.75rem;
  border-radius: 50%;
  border: 6px solid #F08200;
  margin: 0 auto;
}
.list_ylqx_eight .left .text {
  margin-top: 2.375rem;
  text-align: center;
}
.list_ylqx_eight .left .text h3 {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 2rem;
  /* 94.118% */
}
.list_ylqx_eight .left .text img {
  margin-top: 2rem;
  margin-bottom: 1.375rem;
  width: 3rem;
}
.list_ylqx_eight .left .text p {
  color: #1A1F3D;
  text-align: center;
  font-family: Raleway;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  /* 160% */
}
.list_ylqx_eight .right {
  width: 50%;
  padding-left: 6rem;
  padding-right: 6.0625rem;
}
.list_ylqx_eight .right .douhao {
  width: 7.3125rem;
}
.list_ylqx_eight .right .desc {
  color: #1A1F3D;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
  /* 160% */
}
.list_ylqx_eight .right .title h3 {
  color: #1A1F3D;
  text-align: justify;
  font-family: Raleway;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2rem;
}
.list_ylqx_eight .right .title p {
  color: #F08200;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2rem;
}
.list_global {
  position: relative;
  z-index: 2;
}
.list_global .row {
  align-items: center;
}
.list_global .left {
  padding-right: 3.75rem;
}
.list_global .left .desc {
  color: #1A1F3D;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  /* 160% */
}
.list_global .right {
  padding-left: 3.75rem;
}
.list_global .right .ri_box {
  border-radius: 1.875rem;
  border: 1px solid rgba(26, 31, 61, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.25rem 0.9375rem 0 rgba(26, 31, 61, 0.05);
  padding: 2.5rem 2.9375rem 3.625rem 1.875rem;
}
.list_global .right .ri_box .tit {
  color: #1A1F3D;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.75rem;
  font-weight: 700;
}
.list_global .right .ri_box .en {
  color: #1A1F3D;
  font-family: Raleway;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  opacity: 0.4;
}
.list_global .right .ri_box .cont {
  margin-top: 1.1875rem;
}
.list_global .right .ri_box .cont ul {
  position: relative;
}
.list_global .right .ri_box .cont ul::before {
  content: '';
  display: block;
  width: 1px;
  height: 95%;
  border-right: 1px dashed rgba(26, 31, 61, 0.3);
  position: absolute;
  left: 1.4375rem;
  top: 0.3125rem;
  z-index: 1;
}
.list_global .right .ri_box .cont ul li {
  display: flex;
  align-items: center;
}
.list_global .right .ri_box .cont ul li:not(:nth-last-child(1)) {
  margin-bottom: 2.4375rem;
}
.list_global .right .ri_box .cont ul li .icon {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.list_global .right .ri_box .cont ul li .icon img {
  width: 45%;
}
.list_global .right .ri_box .cont ul li .tt {
  flex: 1;
  padding-left: 1.0625rem;
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 1.625rem;
}
.list_global .right .ri_box .cont ul li:nth-child(1) .icon {
  background-color: #C5D54D;
}
.list_global .right .ri_box .cont ul li:nth-child(2) .icon {
  background-color: #85519B;
}
.list_global .right .ri_box .cont ul li:nth-child(3) .icon {
  background-color: #48BDCC;
}
.list_global .right .ri_box .cont ul li:nth-child(4) .icon {
  background-color: #F1BDC8;
}
.list_shenji_one {
  position: relative;
  z-index: 2;
  background-size: cover;
}
.list_shenji_one .swiper_sjlc {
  position: relative;
  overflow: hidden;
}
.list_shenji_one .swiper_sjlc::before {
  content: '';
  display: block;
  width: 99.5%;
  height: 0.125rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
}
.list_shenji_one .swiper_sjlc::after {
  content: '';
  display: block;
  width: 0.625rem;
  height: 0.75rem;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 49%;
  right: 0;
}
.list_shenji_one .swiper_sjlc .swiper-slide {
  padding: 0 1rem 0 3rem;
  padding-bottom: 3rem;
  position: relative;
}
.list_shenji_one .swiper_sjlc .swiper-slide::before {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 1.75rem;
  top: 0;
}
.list_shenji_one .swiper_sjlc .swiper-slide::after {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #C5D54D;
  position: absolute;
  bottom: -0.375rem;
  left: 1.25rem;
}
.list_shenji_one .swiper_sjlc .swiper-slide.swiper-slide-active + .swiper-slide {
  margin-top: 15.625rem;
  padding-top: 3.2rem;
  padding-bottom: 1.875rem;
}
.list_shenji_one .swiper_sjlc .swiper-slide.swiper-slide-active + .swiper-slide::after {
  bottom: unset;
  top: -0.375rem;
}
.list_shenji_one .swiper_sjlc .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide {
  padding-top: 3.2rem;
  margin-top: 15.625rem;
  padding-bottom: 1.875rem;
}
.list_shenji_one .swiper_sjlc .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide::after {
  bottom: unset;
  top: -0.375rem;
}
.list_shenji_one .swiper_sjlc .num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #C5D54D;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-family: Raleway;
  font-size: 1.375rem;
  font-weight: 700;
}
.list_shenji_one .swiper_sjlc .tit {
  margin-top: 1rem;
  color: #C5D54D;
  font-family: "Noto Sans SC";
  font-size: 1.375rem;
  font-weight: 700;
}
.list_shenji_one .swiper_sjlc .desc {
  margin-top: 0.625rem;
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 2.25rem;
}
.list_shenji_two {
  position: relative;
  z-index: 2;
}
.list_shenji_two .all_title p {
  margin-top: 1.375rem;
  opacity: 1;
  color: #1A1F3D;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  /* 160% */
}
.list_shenji_two .img {
  width: 64rem;
  margin: 3.125rem auto 0;
}
.list_shenji_three {
  position: relative;
  z-index: 2;
}
.list_shenji_three .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3.4375rem;
}
.list_shenji_three .grid_box .grid_item {
  border-radius: 1.875rem;
  border: 1px solid rgba(26, 31, 61, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.25rem 0.9375rem 0 rgba(26, 31, 61, 0.05);
  padding: 3.4375rem 2.4375rem 2.1875rem;
}
.list_shenji_three .grid_box .grid_item .icon {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  border: 1px solid #C5D54D;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_shenji_three .grid_box .grid_item .icon img {
  width: 60%;
}
.list_shenji_three .grid_box .grid_item .text {
  margin-top: 1.625rem;
}
.list_shenji_three .grid_box .grid_item .text h3 {
  color: #1A1F3D;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.375rem;
  font-weight: 700;
}
.list_shenji_three .grid_box .grid_item .text p {
  margin-top: 0.625rem;
  color: rgba(26, 31, 61, 0.8);
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 2rem;
  /* 160% */
}
.list_support_one {
  position: relative;
  z-index: 2;
  padding-top: 8.75rem;
  padding-bottom: 7.75rem;
}
.list_support_one .row {
  align-items: center;
}
.list_support_one .row .left {
  padding-right: 3.5rem;
}
.list_support_one .row .left .desc {
  color: #1A1F3D;
  font-family: Raleway;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_support_one .row .left .pp {
  opacity: 0.5;
  color: #1A1F3D;
  font-family: Raleway;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_support_one .row .right {
  padding-left: 3.75rem;
}
.list_support_one .row .right .ri_box {
  position: relative;
}
.list_support_one .row .right .ri_box .img {
  position: relative;
}
.list_support_one .row .right .ri_box .img .tt {
  color: #1B1F3D;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.list_support_one .row .right .ri_box ul li {
  position: absolute;
}
.list_support_one .row .right .ri_box ul li:nth-child(1) {
  top: 26%;
  left: 30%;
}
.list_support_one .row .right .ri_box ul li:nth-child(2) {
  top: 21%;
  left: 75%;
}
.list_support_one .row .right .ri_box ul li:nth-child(3) {
  top: 58%;
  left: 88%;
}
.list_support_one .row .right .ri_box ul li:nth-child(3) .tt {
  min-width: 14rem;
}
.list_support_one .row .right .ri_box ul li:nth-child(4) {
  top: 90%;
  left: 62%;
}
.list_support_one .row .right .ri_box ul li:nth-child(4) .tt {
  min-width: 19rem;
}
.list_support_one .row .right .ri_box ul li:nth-child(5) {
  top: 88%;
  left: 33%;
}
.list_support_one .row .right .ri_box ul li:nth-child(5) .tt {
  min-width: 19rem;
}
.list_support_one .row .right .ri_box ul li:nth-child(6) {
  top: 60%;
  left: 7%;
}
.list_support_one .row .right .ri_box ul li:nth-child(6) .tt {
  min-width: 19rem;
}
.list_support_one .row .right .ri_box ul li .dian {
  border-radius: 0.125rem;
  width: 1.625rem;
  height: 1.625rem;
  background-color: #F8B508;
  position: relative;
}
.list_support_one .row .right .ri_box ul li .dian::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 1rem;
  background: #F8B508;
  border: 4px solid #1a1f3d;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.list_support_one .row .right .ri_box ul li .tt {
  min-width: 9.375rem;
  margin-top: 0.625rem;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  background-color: #F8B508;
  display: inline-block;
  border-radius: 0.125rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_support_one .row .right .ri_box ul li:hover .tt {
  display: block;
}
.list_support_two {
  padding-bottom: 10.9375rem;
  position: relative;
  z-index: 2;
  background-size: cover;
}
.list_support_two .all_title p {
  opacity: 1;
}
.list_support_two .all_title .p {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  /* 160% */
}
.list_support_two .grid_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8.4375rem;
}
.list_support_two .grid_box .grid_item .icon {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background-color: #C5D54D;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.list_support_two .grid_box .grid_item .text {
  margin-top: 1.625rem;
}
.list_support_two .grid_box .grid_item .text h3 {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.375rem;
  font-weight: 700;
}
.list_support_two .grid_box .grid_item .text .pp {
  margin-top: 1.25rem;
  color: #FFF;
  font-family: Raleway;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2rem;
  min-height: 10rem;
}
.list_support_two .grid_box .grid_item .all_more {
  margin: 0 auto;
  border-color: #C5D54D;
}
.list_support_two .grid_box .grid_item .all_more:hover {
  color: #C5D54D;
}
.list_support_two .grid_box .grid_item .all_more::before {
  background: #C5D54D;
}
.list_support_two .grid_box .grid_item:nth-child(3) .icon {
  background-color: #48BDCC;
}
.list_support_two .grid_box .grid_item:nth-child(3) .all_more {
  margin: 0 auto;
  border-color: #48BDCC;
}
.list_support_two .grid_box .grid_item:nth-child(3) .all_more:hover {
  color: #48BDCC;
}
.list_support_two .grid_box .grid_item:nth-child(3) .all_more::before {
  background: #48BDCC;
}
.list_support_two .grid_box .grid_item:nth-child(4) .icon {
  background-color: #85519B;
}
.list_support_two .grid_box .grid_item:nth-child(4) .all_more {
  margin: 0 auto;
  border-color: #85519B;
}
.list_support_two .grid_box .grid_item:nth-child(4) .all_more:hover {
  color: #85519B;
}
.list_support_two .grid_box .grid_item:nth-child(4) .all_more::before {
  background: #85519B;
}
.channel_box {
  border-bottom: 1px solid rgba(26, 31, 61, 0.1);
  background: #FFF;
  position: relative;
  z-index: 2;
}
.channel_box .tabul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.channel_box .tabul .tabli {
  flex: 1;
  border-right: 1px solid rgba(26, 31, 61, 0.1);
}
.channel_box .tabul .tabli:nth-child(1) {
  border-left: 1px solid rgba(26, 31, 61, 0.1);
}
.channel_box .tabul .tabli a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 6.25rem;
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  padding: 0 3rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.channel_box .tabul .tabli.active,
.channel_box .tabul .tabli:hover {
  background-color: #F1BDC8;
}
.list_quality_box .list_quality {
  background-size: cover;
  position: relative;
  z-index: 2;
}
.list_quality_box .list_quality .desc {
  color: #1A1F3D;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_quality_box .list_quality .row {
  align-items: center;
}
.list_quality_box .list_quality .row .left {
  padding-right: 2.5rem;
}
.list_quality_box .list_quality .row .right {
  color: #1A1F3D;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  /* 160% */
}
.list_quality_box .list_quality .row .over {
  border-radius: 50%;
  border: 0.625rem solid #F1BDC8;
}
.list_quality_box .list_quality .row .cont h3 {
  color: #F1BDC8;
  font-family: "Noto Sans SC";
  font-size: 2.625rem;
  font-weight: 700;
}
.list_quality_box .list_quality .row .cont ul {
  margin-top: 1.25rem;
}
.list_quality_box .list_quality .row .cont ul li {
  color: #1A1F3D;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 3.25rem;
  position: relative;
  padding-left: 1.875rem;
}
.list_quality_box .list_quality .row .cont ul li::before {
  content: '';
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: #1a1f3d;
  position: absolute;
  left: 0.9375rem;
  top: 1.5rem;
}
.list_quality_box .list_quality:nth-child(even) .desc {
  color: #fff;
}
.list_quality_box .list_quality:nth-child(even) .row .right {
  order: 1;
  padding-left: 0;
  color: #fff;
}
.list_quality_box .list_quality:nth-child(even) .row .left {
  order: 2;
  padding-right: 0;
  padding-left: 2.5rem;
}
.list_quality_box .list_quality:nth-child(even) .row .cont ul li {
  color: #fff;
}
.list_quality_box .list_quality:nth-child(even) .row .cont ul li::before {
  background-color: #fff;
}
.list_yuanliao_one {
  position: relative;
  z-index: 2;
  background: #F9F9F9;
}
.list_yuanliao_one::after {
  content: '';
  display: block;
  width: 100%;
  height: 60%;
  background: #1C1F3E;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.list_yuanliao_one .cont_box {
  position: relative;
  z-index: 3;
}
.list_yuanliao_one .cont_box .top_flex {
  display: flex;
  justify-content: center;
}
.list_yuanliao_one .cont_box .top_flex .all_title.bb {
  margin: 0 3.125rem;
}
.list_yuanliao_one .cont_box .top_flex .all_title.bb.active {
  border-bottom: 1px solid #fff;
}
.list_yuanliao_one .content .cont {
  border-radius: 1.875rem;
  background: #FFF;
  padding: 2.5rem 5rem;
  display: none;
}
.list_yuanliao_one .content .cont.active {
  display: block;
}
.list_yuanliao_two {
  position: relative;
  z-index: 2;
  background: #F9F9F9;
}
.list_yuanliao_two .all_title h3 {
  color: #85519B;
}
.list_yuanliao_two .swiper_hxfw {
  position: relative;
  overflow: hidden;
  margin: 0 -0.8125rem;
  padding-bottom: 3.75rem;
}
.list_yuanliao_two .swiper_hxfw .swiper-pagination {
  justify-content: center;
  bottom: 0.625rem;
}
.list_yuanliao_two .swiper_hxfw .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #85519B;
}
.list_yuanliao_two .swiper_hxfw .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.2);
  border: none;
}
.list_yuanliao_two .swiper_hxfw .swiper-slide {
  padding: 0.8125rem;
}
.list_yuanliao_two .swiper_hxfw .swiper-slide .hxfw_box {
  padding: 3.125rem 1.875rem 2.375rem;
  height: 30rem;
  border-radius: 1.875rem;
  border: 1px solid rgba(26, 31, 61, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.25rem 0.9375rem 0 rgba(26, 31, 61, 0.05);
}
.list_yuanliao_two .swiper_hxfw .swiper-slide .hxfw_box .icon {
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 50%;
  border: 1px solid #85519B;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_yuanliao_two .swiper_hxfw .swiper-slide .hxfw_box .icon img {
  width: 60%;
}
.list_yuanliao_two .swiper_hxfw .swiper-slide .hxfw_box .text {
  margin-top: 1.75rem;
}
.list_yuanliao_two .swiper_hxfw .swiper-slide .hxfw_box .text h3 {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}
.list_yuanliao_two .swiper_hxfw .swiper-slide .hxfw_box .text p {
  margin-top: 0.625rem;
  color: rgba(26, 31, 61, 0.8);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 2.25rem;
}
.list_quality_box2 .list_quality {
  background-size: cover;
  position: relative;
  z-index: 2;
}
.list_quality_box2 .list_quality .desc {
  width: 68%;
  margin: 0 auto;
  color: #1A1F3D;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_quality_box2 .list_quality .row {
  align-items: center;
}
.list_quality_box2 .list_quality .row .left {
  padding-right: 2.5rem;
}
.list_quality_box2 .list_quality .row .right {
  padding-left: 2.5rem;
  color: #1A1F3D;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  /* 160% */
}
.list_quality_box2 .list_quality .row .over {
  border-radius: 50%;
  border: 0.625rem solid #85519B;
}
.list_quality_box2 .list_quality .row .cont h3 {
  color: #85519B;
  font-family: "Noto Sans SC";
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.list_quality_box2 .list_quality .row .cont ul {
  margin-top: 1.25rem;
}
.list_quality_box2 .list_quality .row .cont ul li {
  color: #1A1F3D;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 3.25rem;
  position: relative;
  padding-left: 1.875rem;
}
.list_quality_box2 .list_quality .row .cont ul li::before {
  content: '';
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: #1a1f3d;
  position: absolute;
  left: 0.9375rem;
  top: 1.5rem;
}
.list_quality_box2 .list_quality:nth-child(even) .row .right {
  order: 1;
  padding-left: 0;
  padding-right: 2.5rem;
}
.list_quality_box2 .list_quality:nth-child(even) .row .left {
  order: 2;
  padding-right: 0;
  padding-left: 2.5rem;
}
.list_yuanliao_three {
  padding-bottom: 8.125rem;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.list_yuanliao_three .row {
  align-items: center;
}
.list_yuanliao_three .left ul li {
  color: #1A1F3D;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
  margin-bottom: 2.125rem;
  position: relative;
  padding-left: 2.1875rem;
}
.list_yuanliao_three .left ul li::before {
  content: '';
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #1A1F3D;
  position: absolute;
  left: 0.5rem;
  top: 0.875rem;
}
.list_connect_one {
  position: relative;
  z-index: 2;
}
.list_connect_one .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.list_connect_one .grid_box .grid_item {
  border-radius: 1.875rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #FFF;
  box-shadow: 0 0.25rem 1.25rem 0 rgba(26, 31, 61, 0.1);
  padding: 3.4375rem 5.625rem;
}
.list_connect_one .grid_box .grid_item .icon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.8581rem;
  height: 8.8581rem;
  border-radius: 50%;
  border: 1px solid #F8B508;
}
.list_connect_one .grid_box .grid_item .icon img {
  width: 50%;
}
.list_connect_one .grid_box .grid_item .text {
  margin-top: 1.6875rem;
}
.list_connect_one .grid_box .grid_item .text h3 {
  color: #F8B508;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.375rem;
  font-weight: 700;
}
.list_connect_one .grid_box .grid_item .text p {
  margin-top: 1rem;
  color: #1A1F3D;
  font-family: Raleway;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
.pb145 {
  padding-bottom: 9.0625rem;
}
.pt150 {
  padding-top: 9.375rem;
}
#copy-btn {
  cursor: pointer;
}
