@charset "utf-8";

/* 这个css是初始化的css，在任何项目里面都可以使用 */
/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  --header_h: 6.25rem;
  --container: 14.8125rem;
  outline: none;
  font-weight: 500;
}

.p_top {
  position: absolute;
  top: -6.25rem;
}

@media (max-width: 990px) {
  .p_top {
    top: -60px;
  }
}

.bg {
  background: #00A0E9;
}

.c {
  color: #00A0E9;
}

.phone_show_990,
.phone_show_767 {
  display: none;
}

.pagination {
  display: flex;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
  justify-content: center;
  flex-wrap: wrap;
}

.pagination>li {
  margin: 0 5px;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  border: 1px solid #DBDBDB;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}

.pagination>li.active,
.pagination>li:hover {
  background: #00A0E9;
  color: #fff;
}

.pagination>li.active a,
.pagination>li:hover a {
  color: #fff;
}

.pagination>li.disabled:hover {
  color: #333;
  background: #FFF;
}

.foot-fot {
  background: #2D3333;
}

/* 禁止缩放表单 */
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: #00A0E9;
}

.search_more:hover::before {
  background: #00A0E9;
}

.search_more::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #E5E5E5;
}

.line1 {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.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: 100%;
  left: 0%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  right: 0;
  top: 100%;
  z-index: 999;
  background: #fff;
  transition: 400ms ease-in-out;
  transform: scaleY(0);
  transform-origin: top center;
  opacity: 0;
  border-radius: 0 0 8px 8px;
}

.er-ul>li {
  line-height: 2.25rem;
  text-align: center;
  font-size: 0.875rem;
}

.er-ul>li:hover a {
  color: #00A0E9;
}

.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: 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: 14.8125rem;
}

@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;
  }

  .pagination>li {
    margin: 0 3px 5px;
  }
}

.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 {
  position: relative;
  padding-left: 1.5625rem;
  margin-left: 1.5625rem;
}

.fenxiang .flex {
  justify-content: flex-start;
}

.fenxiang .social-share li {
  float: left;
  width: auto;
  height: auto;
  border-radius: 50%;
  text-align: center;
}

.fenxiang .social-share li:not(:last-child) {
  margin-right: 0.875rem;
}

.fenxiang .social-share li:hover a {
  color: #00A0E9 !important;
  background: transparent !important;
}

.fenxiang .social-share li a {
  margin: 0 !important;
  width: 100%;
  height: 100%;
  color: #9B9B9B !important;
  border: none !important;
  font-size: 1rem;
}

.serbtn {
  background: #00A0E9;
}

.searchbox {
  border-color: #00A0E9;
}

@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: 991px) {
  .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 .phone_lanu {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 65px;
}

.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-nav .aniut.aniut_son {
  height: 35px;
  line-height: 35px;
}

.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 .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 "helvetica";
  margin-left: 63%;
  position: relative;
  z-index: 9;
}

.m-bm-head .mrhgxt i {
  font-size: 1.125rem;
  margin-right: 0.25em;
}

.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;
  font-family: "sourcehansans";
  padding: 0 4%;
  font-weight: 600;
}

.m-bm-nav>li>a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "sourcehansans";
  font-weight: 500;
}

.m-bm-nav>li .sec {
  display: none;
  padding: 10px 15px;
  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 .aniut {
  position: absolute;
  width: 40px;
  height: 50px;
  line-height: 50px;
  right: 2%;
  top: 0;
  text-align: center;
  z-index: 9;
}

.m-bm-nav .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: #777;
  font: 500 1rem/1.5em "sourcehansans";
  padding: 1em 0;
}

.ajhhsd a {
  color: #777;
}

.ajhhsd a:hover {
  color: #00A0E9;
}

.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;
}

@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 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em "montserrat";
}

@media (max-width: 768px) {
  .xw_ny_banner h2 {
    font-size: 1.8rem;
  }
}

.ssy-sskaa {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .ssy-sskaa {
    margin-bottom: 1.5rem;
  }
}

.ssy-sskaa .searchsa form {
  width: 50%;
  border: 1px solid #999;
  padding: 0 1.5em;
  border-radius: 2rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .ssy-sskaa .searchsa form {
    width: 90%;
  }

  .pc_show_767 {
    display: none;
  }

  .phone_show_767 {
    display: block;
  }
}

.ssy-sskaa .searchsa form input {
  width: 70%;
  font: 500 1.25rem/4rem "sourcehansans";
  background: transparent;
  color: #999;
}

@media (max-width: 768px) {
  .ssy-sskaa .searchsa form input {
    font-size: 1.125rem;
    line-height: 3rem;
  }
}

.ssy-sskaa .searchsa form button {
  width: auto;
  outline: none;
  border: none;
  background: transparent;
}

.ssy-sskaa .searchsa form button i {
  font: 500 1.6rem/4rem "sourcehansans";
  color: #333;
}

@media (max-width: 768px) {
  .ssy-sskaa .searchsa form button i {
    font-size: 1.35rem;
    line-height: 3rem;
  }
}

.sssjga {
  color: #333;
  font: 600 1.25rem/1.5em "sourcehansans";
  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%;
}

@media (max-width: 768px) {
  .ss-list li div.img {
    width: 100%;
  }
}

.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.w100 {
  width: 100%;
}

@media (max-width: 768px) {
  .ss-list li .xw-nycont {
    width: 100%;
    margin-top: 1.2em;
  }
}

.ss-list li .xw-nycont h2 a {
  display: block;
  color: #656363;
  font: 500 1.25rem/1.35em "sourcehansans";
  overflow: hidden;
  margin-bottom: 0.2em;
}

@media (max-width: 768px) {
  .ss-list li .xw-nycont h2 a {
    font-size: 1.125rem;
  }
}

.ss-list li .xw-nycont span {
  color: #00A0E9;
  font: 500 1rem/1.5em "montserrat";
}

.ss-list li .xw-nycont .datea {
  color: #999999;
  font: 500 0.95rem/1.5em "montserrat";
}

.ss-list li .xw-nycont .p {
  color: #999999;
  font: 500 1rem/1.5em "sourcehansans";
  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 / 90);
  }
}

@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,
.phone .right {
  width: 20%;
}

.phone .left {
  text-align: right;
}

.phone .left img {
  height: 22px;
}

.phone .right {
  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: 60%;
  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: #00A0E9;
  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: #00A0E9;
}

.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: 12px;
  color: #a7a7a7;
  line-height: 28px;
  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: 14px;
  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 {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  line-height: 3.375rem;
  padding: 0;
  border: none;
  background: transparent;
  margin-bottom: 1.25rem;
}

.rightfix li .iconfont {
  font-size: 1.375rem;
}

.rightfix li::before {
  display: none;
}

.fixright_li_last {
  display: none;
}

.rightfix li {
  position: relative;
  border: none !important;
}

.rightfix li .iconfont {
  font-size: 1.375rem;
  display: block;
  color: #fff;
  border-radius: 50%;
  background: #00A0E9;
}

.rightfix li:hover .iconfont {
  background: #000;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.rightfix li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: #DEDDDD;
  width: 1.1875rem;
}

.rightfix li:last-child::before {
  display: none;
}

.right_div.img {
  min-width: 7.5rem !important;
}

.right_div.img img {
  height: 7.5rem;
  object-fit: contain;
}

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-moz-keyframes sticky {
  0% {
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -moz-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-o-keyframes sticky {
  0% {
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-webkit-keyframes banscaleDraw {

  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }

  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    /*放大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);
  }
}

.rd_body header {
  animation: none !important;
}

header {
  position: fixed;
  line-height: 6.25rem;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}

header>.container {
  padding: 0 6.25rem;
}

header:hover,
header.active {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.04);
}

header.active {
  animation: sticky 0.65s;
}

@media (max-width: 990px) {
  header {
    display: none;
  }
}

header .logo img {
  height: 4.6875rem;
}

header .ds1 .iconfont {
  font-size: 1.25rem;
  display: block;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

header .lanuage {
  margin: 0 1.5rem 0 1.5rem;
}

header .lanuage a {
  color: #000;
  font-size: 1rem;
  font-style: italic;
  padding: 0 0.875rem;
  position: relative;
  display: flex;
  align-items: center;
}

header .lanuage a .iconfont {
  font-size: 0.875rem;
  display: block;
  margin-left: 0.625rem;
}

header .lanuage a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.5625rem;
  background: #B8B8B8;
}

header .lanuage a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.5625rem;
  background: #B8B8B8;
}

header .lanuage a.c {
  color: #00A0E9;
}

header .center>ul>li {
  float: left;
  padding: 0 1.6875rem;
}

header .center>ul>li>a {
  font-size: 1.125rem;
  color: #000;
  position: relative;
}

header .center>ul>li>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #00A0E9;
  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: #00A0E9;
}

header .center>ul>li:hover>a::before,
header .center>ul>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;
}

.banner .hover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}

.banner .hover .p1 {
  color: #FFF;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3.75rem;
  width: 80%;
  margin: 0 auto;
}

.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 .swiper-pagination-bullet {
  width: 15px;
  height: 4px;
  border-radius: 0;
  background: #fff;
  opacity: 1;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.banner .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.banner video,
.banner img {
  height: auto;
  object-fit: cover;
  width: 100vw;
}

.banner .hover2 {
  position: absolute;
  bottom: 4.375rem;
  left: 0;
  width: 100%;
  z-index: 8;
}

.banner .hover2 .container {
  padding: 0 6.25rem;
}

.banner .hover2 p {
  color: #FFF;
  text-align: right;
  font-size: 16px;
  font-style: italic;
  margin-top: 1.5625rem;
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.banner .hover2 p::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.banner .hover2 p:hover::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.banner .hover2 .flex {
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2.625rem;
}

.banner .hover2 .flex>div {
  position: static;
  margin-top: 0;
  width: 4.0625rem;
  height: 4.0625rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.875rem;
  background-image: none;
}

.banner .hover2 .flex>div .iconfont {
  font-size: 1rem;
  color: #fff;
}

.nyban .hover {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}

.nyban .hover .p1 {
  color: #FFF;
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 4rem;
}

.show_header {
  background: linear-gradient(180deg, rgba(3, 98, 198, 0) 0%, rgba(3, 98, 198, 0.4) 188.04%);
  padding-top: 6.25rem;
}

.show_header .bread {
  background: rgba(0, 91, 187, 0.05);
  position: static;
  padding: 0.625rem 0;
  color: #949494;
}

.show_header .bread .tr {
  justify-content: flex-start;
}

.show_header .bread .tr img {
  filter: invert(57%) sepia(47%) saturate(0%) hue-rotate(261deg) brightness(98%) contrast(100%);
  opacity: 0.8;
}

.show_header .bread a {
  color: #949494;
}

.bread {
  font-size: 1rem;
  color: #FFF;
  line-height: 1.875rem;
  position: absolute;
  bottom: 1.875rem;
  width: 100%;
}

.bread .tr {
  display: flex;
  justify-content: flex-end;
}

.bread .tr img {
  margin-right: 0.625rem;
  margin-top: 2px;
}

.bread .tr a:hover {
  color: #00A0E9;
}

.bread .tr span {
  margin: 0 0.5rem;
}

.bread a {
  color: #FFF;
}

.bread img {
  height: 1.5rem;
}

.bread span:last-child {
  display: none;
}

.index_about {
  background: linear-gradient(180deg, rgba(3, 98, 198, 0) 0%, rgba(3, 98, 198, 0.4) 188.04%);
  padding: 5rem 0 6.25rem;
}

.index_about .left {
  padding-top: 2rem;
}

.index_about .number_ul {
  margin: 3.4375rem 0 3.125rem;
}

.index_about .container {
  padding-right: 3.125rem;
}

.index_about .right {
  padding-left: 5rem;
}

.index_about>img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: none;
}

.subtitle {
  color: #212121;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin-bottom: 1.875rem;
}

.title {
  color: #262626;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 3rem;
}

.text {
  color: #7B7B7B;
  font-size: 1rem;
  line-height: 1.875rem;
  font-weight: 400;
}

.number_ul .counter {
  color: #00A0E9;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.125rem;
}

.number_ul sub {
  color: #00A0E9;
  bottom: 0;
  font-size: 1.125rem;
}

.number_ul .text {
  color: #00A0E9;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin-top: 0.25rem;
}

.more {
  width: 10.625rem;
  line-height: 3.4375rem;
  border-radius: 3.125rem;
  text-align: center;
  border: 1px solid #00A0E9;
  color: #00A0E9;
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  font-style: italic;
}

.more:hover {
  background: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  color: #fff;
}

.more.borf {
  border-color: #fff;
  color: #fff;
}

.index_two {
  position: relative;
  z-index: 4;
  padding-top: 18rem;
  padding-bottom: 3rem;
}

.index_two::before {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  left: 33.3%;
  background: rgba(0, 0, 0, 0.15);
  z-index: -1;
}

.index_two::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  left: 66.6%;
  background: rgba(0, 0, 0, 0.15);
  z-index: -1;
}

.index_two .swiper-slide .name {
  color: #353535;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.5rem;
  margin-bottom: 2.5rem;
}

.index_two .swiper-slide:hover .name {
  color: #00A0E9;
}

.index_two .swiper-slide:hover .over img {
  transform: scale(1.1);
}

.index_two .swiper-slide:hover svg g path {
  fill: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.index_two .swiper-slide:hover svg>path {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  fill: #fff;
}

.index_two .swiper-slide svg {
  position: relative;
  margin-top: -2.75rem;
}

.index_two .hover {
  position: absolute;
  top: 0;
  height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

footer {
  background: #262C3C;
}

footer .top,
footer .bot {
  display: flex;
}

footer .top .left,
footer .bot .left {
  width: 28.75rem;
}

footer .top .right,
footer .bot .right {
  width: calc(100% - 28.75rem);
}

footer .top {
  padding: 2.8125rem 0 1.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  align-items: center;
}

footer .top img {
  height: 3.375rem;
  filter: brightness(0) invert(1);
}

footer .top .right ul {
  display: flex;
  justify-content: flex-end;
  color: #FFF;
  font-size: 1.125rem;
  line-height: 1.875rem;
  justify-content: space-between;
}

footer .top .right ul a {
  color: #fff;
}

footer .top .right ul a:hover {
  color: #00A0E9;
}

footer .bot {
  padding: 2.8125rem 0 4.375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

footer .bot .left ul {
  display: flex;
  margin-top: 1.875rem;
}

footer .bot .left ul li {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

footer .bot .left ul li:hover {
  background: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

footer .bot .agree {
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.875rem;
  color: #AFAFAF;
}

footer .bot .agree label {
  line-height: 1.75rem;
  display: inline-block;
  margin-left: 0.3125rem;
  margin-right: 1rem;
  margin-bottom: 0;
  width: calc(100% - 1.75rem);
  padding-left: 0.625rem;
  margin: 0;
}

footer .bot .agree label a {
  color: #afafaf;
}

footer .bot .agree .radio_type {
  width: 1.75rem;
  height: 1.75rem;
  appearance: none;
  position: relative;
  border-bottom: none;
}

footer .bot .agree .radio_type:before {
  content: '';
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid #7d7d7d;
  display: inline-block;
  border-radius: 50%;
  vertical-align: middle;
  position: absolute;
}

footer .bot .agree .radio_type:checked:before {
  content: '';
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid #00A0E9;
  background: #00A0E9;
  display: inline-block;
  border-radius: 50%;
  vertical-align: middle;
  position: absolute;
}

footer .bot .agree .radio_type:checked:after {
  content: '';
  width: 0.625rem;
  height: 0.3125rem;
  border: 2px solid white;
  border-top: transparent;
  border-right: transparent;
  text-align: center;
  display: block;
  position: absolute;
  top: 36%;
  left: 50%;
  vertical-align: middle;
  transform: rotate(-45deg) translate(-50%, -50%);
}

footer .bot .name {
  color: #AFAFAF;
  font-size: 1.125rem;
  line-height: 2.8125rem;
}

footer .bot .left a {
  color: #AFAFAF;
}

footer .bot .left .tel {
  color: #FFF;
  font-size: 1.875rem;
  font-style: italic;
  line-height: 2.8125rem;
}

footer .bot input[type='text'] {
  width: 100%;
  line-height: 3.4375rem;
  border: none;
  background: #fff;
  border-radius: 3.75rem;
  padding: 0 1.25rem;
  color: #494949;
}

footer .bot button {
  width: 10.625rem;
  line-height: 3.4375rem;
  border-radius: 3.125rem;
  border: 1px solid #fff;
  text-align: center;
  color: #FFF;
  font-size: 1.125rem;
  background: transparent;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

footer .bot button:hover {
  background: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

footer .bot form {
  margin-top: 1.25rem;
}

footer .bot form p {
  font-size: 1rem;
  color: #AFAFAF;
  line-height: 2.8125rem;
}

.beian {
  background: #262C3C;
  padding: 1.25rem 0;
}

.beian .left {
  color: #FFF;
  font-size: 1rem;
  line-height: 1.875rem;
}

.beian .right {
  color: #FFF;
  font-size: 1rem;
  line-height: 1.875rem;
}

.beian .right a {
  color: #FFF;
}

.beian .right a:hover {
  color: #00A0E9;
}

.beian .right span:last-child {
  display: none;
}

.p120 {
  padding: 7.5rem 0;
}

.p120.pt0 {
  padding-top: 0;
}

.p120.pb0 {
  padding-bottom: 0;
}

.alignc {
  align-items: center;
}

.list_about {
  position: relative;
  background: linear-gradient(180deg, rgba(3, 98, 198, 0) 0%, rgba(3, 98, 198, 0.4) 188.04%);
}

.list_about>img {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
}

.list_about .left {
  padding-top: 1.875rem;
}

.list_about .left .margin {
  margin: 1.375rem 0 2.75rem;
}

.list_about .left .num {
  font-style: italic;
}

.list_about .right .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 8;
}

.list_about .right .hover img {
  height: 4.625rem;
}

.list_about .right a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.bor20 {
  border-radius: 1.25rem;
}

.list_about_two {
  padding: 11.875rem 0 14.375rem;
}

.list_about_two ul {
  margin-top: 3.75rem;
}

.list_about_two ul li>div {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2px);
  text-align: center;
  padding: 3.75rem 0 2.8125rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_about_two ul li>div .icon img {
  height: 4.0625rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_about_two ul li>div .text {
  color: #4D4D4D;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 3.125rem;
  margin-top: 1rem;
}

.list_about_two ul li:hover>div {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.219);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_about_two ul li:hover>div .icon img {
  transform: rotateY(180deg);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.tuxing {
  display: none;
  position: absolute;
}

.tuxing.h10 {
  height: 10rem;
}

.tuxing.t {
  top: 0;
}

.tuxing.b {
  bottom: 0;
}

.tuxing.l {
  left: 0;
}

.tuxing.r {
  right: 0;
}

.list_about_three .left ul {
  margin-top: 1.875rem;
}

.list_about_three .left ul li {
  color: #7B7B7B;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
  padding: 1rem 0 0.5rem;
}

.list_about_three .left ul li:hover,
.list_about_three .left ul li.active {
  color: #00A0E9;
}

.list_about_three .left ul li:hover div::before,
.list_about_three .left ul li.active div::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_about_three .left ul li div {
  position: relative;
  cursor: pointer;
  padding-bottom: 0.625rem;
  display: inline-block;
}

.list_about_three .left ul li div::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_about_three .right>div {
  display: none;
}

.list_about_three .right>div.active {
  display: block;
}

.list_about_three .right .l {
  width: 46.25rem;
  position: relative;
  padding-bottom: 0;
}

.list_about_three .right .l>img {
  position: absolute;
  bottom: 1.875rem;
  left: 0;
}

.list_about_three .right .l .swiper-slide {
  text-align: center;
}

.list_about_three .right .l .swiper-slide img {
  max-width: 32rem;
  margin: 0 auto;
}

.list_about_three .right .l .name {
  color: #414141;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
  margin-top: 6rem;
}

.list_about_three .right .swiper-pagination {
  margin-top: 1.125rem;
  color: #414141;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.25rem;
  position: static;
}

.list_about_three .right .swiper-button-prev,
.list_about_three .right .swiper-button-next {
  background-image: none;
  width: calc(100% - 46.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.list_about_three .right .swiper-button-prev {
  top: 0;
  right: 0;
  left: auto;
}

.list_about_three .right .swiper-button-next {
  bottom: 7.25rem;
  right: 0;
  left: auto;
  top: auto;
}

.list_about_three .right .r {
  width: calc(100% - 46.25rem);
}

.list_about_three .right .r .swiper-container {
  height: 16.25rem;
  margin: 5rem 0;
  text-align: center;
}

.list_about_three .right .r .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.4375rem;
  cursor: pointer;
}

.list_about_three .right .r .swiper-slide-thumb-active .text {
  color: #00A0E9;
}

.list_about_three .right .r .swiper-slide-thumb-active .text::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_about_three .right .r .text {
  color: #7B7B7B;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  display: inline-block;
  padding: 0 1.25rem 0.5rem;
  position: relative;
}

.list_about_three .right .r .text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_about_three .right .r .text:hover {
  color: #00A0E9;
}

.list_about_three .right .r .text:hover::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_news .ul li {
  margin-bottom: 1.875rem;
}

.list_news .ul li:hover .over img {
  transform: scale(1.1);
}

.list_news .ul li:hover a {
  box-shadow: 0px 0px 1rem 0px rgba(0, 91, 187, 0.3);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_news .ul li:hover .name {
  color: #00A0E9;
}

.list_news .ul li a {
  background: #FFF;
  box-shadow: 0px 0px 1.5625rem 0px rgba(0, 91, 187, 0.15);
  padding: 1rem 1rem 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_news .ul li a .data {
  display: flex;
  align-items: center;
  color: #7C7C7C;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5rem;
}

.list_news .ul li a .data .iconfont {
  font-size: 1.125rem;
  margin-right: 0.625rem;
  display: block;
  position: relative;
  top: -0.125rem;
}

.list_news .ul li a .name {
  color: #1D1D1D;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin: 0.75rem 0 0.25rem;
}

.list_news .ul li a .content {
  padding: 1.25rem 1.125rem 2.375rem;
}

.show_news {
  padding: 4.375rem 0 8.125rem;
}

.show_news .content {
  background: #FFF;
  padding: 4.375rem 2.8125rem;
}

.show_news .content .name {
  color: #1D1D1D;
  text-align: center;
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 2.5rem;
}

.show_news .text {
  padding: 3.75rem 0 4.375rem;
  border-bottom: 1px solid #E9E9E9;
  font-size: 1rem;
}

.show_news .content {
  position: relative;
  z-index: 9;
}

.show_news .data {
  color: #B7B7B7;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 2rem;
  border-bottom: 1px solid #E9E9E9;
}

.show_news .data .iconfont {
  font-size: 1.125rem;
  margin-right: 0.625rem;
}

.show_news .shangxia .content {
  border-top: 1px solid #DBDBDB;
  padding-top: 2.1875rem;
  display: flex;
  align-items: center;
}

.show_news .shangxia .content .c {
  width: 16rem;
  text-align: center;
}

.show_news .shangxia .content .c .more {
  margin: 0 auto;
}

.show_news .shangxia .content .r {
  justify-content: flex-end;
}

.show_news .shangxia .content .l,
.show_news .shangxia .content .r {
  width: calc(50% - 8rem);
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #7B7B7B;
}

.show_news .shangxia .content .l span,
.show_news .shangxia .content .r span {
  color: #000;
  white-space: nowrap;
}

.show_news .shangxia .content .l a,
.show_news .shangxia .content .r a {
  color: #7B7B7B;
}

.show_news .shangxia .content .l a:hover,
.show_news .shangxia .content .r a:hover {
  color: #00A0E9;
}

.show_news .shangxia .more .iconfont {
  font-size: 0.875rem;
}

.show_news .shangxia .more {
  width: 10rem;
  line-height: 3.75rem;
  border-radius: 0.25rem;
  border: 1px solid #00A0E9;
  text-align: center;
  background: transparent;
  border-radius: 3.125rem;
  font-weight: 500;
  color: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.show_news .shangxia .more .iconfont {
  font-size: 1.125rem;
  margin-left: 1rem;
}

.show_news .shangxia .more:hover {
  background: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  color: #fff;
}

.show_news .more.aa::before {
  background: #fff;
}

.flex_left_right li .name {
  color: #000;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 2.1875rem;
}

.flex_left_right li:not(:last-child) {
  margin-bottom: 3.4375rem;
}

.flex_left_right li:nth-child(even) .right {
  order: 1;
  padding-left: 15px;
  padding-right: 3.125rem;
}

.flex_left_right li:nth-child(even) .left {
  order: 2;
}

@media (max-width: 990px) {
  .flex_left_right li:nth-child(even) .right {
    order: 2;
  }

  .flex_left_right li:nth-child(even) .left {
    order: 1;
  }
}

.flex_left_right .row_w .right {
  padding-left: 3.125rem;
  padding-top: 2.1875rem;
}

.flex_left_right .text {
  color: #797979;
  margin: 1.25rem 0 0;
  text-align: justify;
  color: #7B7B7B;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.flex_left_right .text p {
  position: relative;
  padding-left: 2.75rem;
  margin-bottom: 1rem;
}

.flex_left_right .text p::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 15px;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: #D9D9D9;
}

.list_join_three {
  background: #F6F9FD;
}

.list_join_three .job_list1 {
  margin-top: 3.125rem;
}

.list_join_three .job_list1>li:not(:last-child) {
  margin-bottom: 2.625rem;
}

.list_join_three .job_list1>li.active .top {
  background: #00A0E9;
  --cf: #fff;
}

.list_join_three .job_list1>li.active .top .left div,
.list_join_three .job_list1>li.active .top .left p {
  color: #fff !important;
}

.list_join_three .job_list1>li.active .top .left img {
  filter: brightness(0) invert(1);
}

.list_join_three .job_list1>li.active .top .right .jiantou img {
  transform: rotate(180deg);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_join_three .job_list1>li.active .wehha-job {
  display: block;
}

.list_join_three .job_list1 .top {
  background: #fff;
  display: flex;
  align-items: center;
  --cf: #515151;
  cursor: pointer;
  padding: 1.5rem 0;
}

.list_join_three .job_list1 .top .left {
  display: flex;
  align-items: center;
  width: 24.125rem;
  color: var(--cf);
  font-size: 1.5rem;
  line-height: normal;
  padding: 0 1rem 0 4rem;
}

.list_join_three .job_list1 .top .left>div:nth-child(1) {
  width: 3.625rem;
}

.list_join_three .job_list1 .top .left>div:nth-child(2) {
  width: calc(100% - 3.625rem);
  padding-left: 1.75rem;
}

.list_join_three .job_list1 .top .left>div:nth-child(2) div {
  color: #5C5C5C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin-top: 0.5rem;
}

.list_join_three .job_list1 .top .right {
  width: calc(100% - 24.125rem);
  color: var(--cf);
  font-size: 1.125rem;
  line-height: 2.5rem;
  padding: 0 3.75rem 0 3.75rem;
  display: flex;
  align-items: center;
  border-left: 1px solid #DADADA;
  font-weight: 400;
}

.list_join_three .job_list1 .top .right ul {
  padding-right: 0;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 3rem);
}

.list_join_three .job_list1 .top .right ul li:nth-child(1) {
  width: 40%;
}

.list_join_three .job_list1 .top .right ul li:nth-child(2) {
  width: 30%;
}

.list_join_three .job_list1 .top .right ul li:nth-child(3) {
  width: 30%;
}

.list_join_three .job_list1 .top .right .jiantou {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_join_three .job_list1 .top .right .jiantou img {
  height: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_join_three .job_list1 .wehha-job {
  background: #fff;
  padding: 3.125rem 3.125rem 4.375rem;
  display: none;
}

.list_join_three .job_list1 .wehha-job .more {
  border-radius: 0.3125rem;
  line-height: 3.4375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #154F96;
  width: 10rem;
  color: #154F96;
  font-size: 1.125rem;
  background: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  border-radius: 3.125rem;
  font-style: normal;
}

.list_join_three .job_list1 .wehha-job .more .iconfont {
  margin-left: 0.5rem;
  font-size: 1rem;
}

.list_join_three .job_list1 .wehha-job .more:hover {
  background: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  color: #fff;
}

.list_join_three .job_list1 .text {
  color: #5C5C5C;
}

.list_join_three .job_list1 .text strong {
  color: #272727;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 0.375rem;
  line-height: 1.875rem;
}

.list_contact {
  position: relative;
  z-index: 9;
}

.list_contact .content {
  background: linear-gradient(180deg, #EAF4FF 0%, #FFF 100%);
  border-top: 0.375rem solid #00A0E9;
  margin-top: 2.8125rem;
}

.list_contact .content li:not(:last-child) {
  border-right: 1px solid rgba(218, 37, 28, 0.1);
}

.list_contact .content li:hover .icon img {
  transform: rotateY(180deg);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_contact .content li>div {
  padding: 3rem 0 3.4375rem;
  height: 100%;
}

.list_contact .content li .icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  margin: 0 auto;
  background: #00A0E9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.list_contact .content li .icon img {
  height: 1.875rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_contact .content li .name {
  color: #393939;
  font-size: 1.125rem;
  line-height: 1.875rem;
}

.list_contact .content li .text {
  color: #595959;
  font-size: 1rem;
  line-height: 1.875rem;
  padding: 0 2rem;
}

.list_map {
  position: relative;
  margin-top: -7.1875rem;
  z-index: 1;
}

.list_responsibity ul {
  margin-top: 2.375rem;
}

.list_responsibity ul li .name {
  color: #1D1D1D;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin: 1.25rem 0 0.25rem 0;
}

.list_responsibity ul li img {
  width: 100%;
}

.list_responsibity ul li .content {
  padding: 0 1.125rem;
}

.list_responsibity ul li .text {
  color: #7B7B7B;
}

.list_responsibity ul li>div {
  background: #FFF;
  box-shadow: 0px 0px 1.5625rem 0px rgba(0, 91, 187, 0.15);
  padding: 1rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  height: 100%;
}

.list_responsibity ul li:hover>div {
  box-shadow: 0px 0px 1rem 0px rgba(0, 91, 187, 0.3);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_responsibity ul li:hover>div .over img {
  transform: scale(1.1);
}

.list_responsibity_two {
  background: linear-gradient(180deg, rgba(3, 98, 198, 0) -1.72%, rgba(3, 98, 198, 0.4) 186.33%);
}

.list_responsibity_two .flex_left_right li .text {
  font-size: 1rem;
  line-height: 1.875rem;
}

.list_responsibity_three ul {
  margin-top: 1.875rem;
}

.list_responsibity_three ul li {
  display: flex;
  align-items: center;
  border: 1px solid #E9E9E9;
  height: 5.625rem;
}

.list_responsibity_three ul li:not(:last-child) {
  margin-bottom: 1.875rem;
}

.list_responsibity_three ul li .left {
  width: 8rem;
  text-align: center;
  position: relative;
}

.list_responsibity_three ul li .left::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 2.875rem;
  background: #CCC;
}

.list_responsibity_three ul li .center {
  width: calc(100% - 8rem - 12.875rem);
  padding-left: 2.1875rem;
  color: #777;
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-weight: 400;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_responsibity_three ul li .right {
  width: 12.875rem;
}

.list_responsibity_three ul li .right a {
  display: flex;
  font-weight: 400;
  align-items: center;
  color: #777;
  font-size: 1.125rem;
}

.list_responsibity_three ul li .right a div {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #E3E3E3;
  margin-left: 1.25rem;
}

.list_responsibity_three ul li .right a div img {
  height: 1.375rem;
}

.list_responsibity_three ul li:hover .right a {
  color: #00A0E9;
}

.list_responsibity_three ul li:hover .right a img {
  filter: brightness(0) invert(1);
}

.list_responsibity_three ul li:hover .right a div {
  background: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_responsibity_three ul li:hover .center {
  transform: translateX(0.625rem);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  color: #00A0E9;
}

table {
  margin-top: 2.1875rem;
}

table tr td {
  padding: 1.375rem !important;
  color: #747474;
  font-size: 1rem;
  text-align: center;
  border: 1px solid #fff;
  vertical-align: middle !important;
}

table tr:nth-child(1) {
  background: #00A0E9;
  color: #FFF;
}

table tr:nth-child(1) td {
  color: #fff;
}

table tr:nth-child(even) {
  background: #F0F0F0;
}

.list_product .ul>li {
  border-bottom: 1px solid #e0e0e0;
}

.list_product .ul>li.pro124 .right li {
  width: 33.3%;
}

.list_product .ul>li.pro124 .right li:nth-child(1) {
  width: 100%;
}

.list_product .ul>li .row {
  margin: 0 -1.875rem;
}

.list_product .ul>li .row>div {
  padding: 0 1.875rem;
}

.list_product .ul>li>img {
  opacity: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_product .ul>li .right .title {
  padding-top: 1.875rem;
}

.list_product .ul>li .right ul {
  margin: 0.5rem -1.125rem 0;
  display: flex;
  flex-wrap: wrap;
}

.list_product .ul>li .right ul li {
  width: 33.3%;
  padding: 0 1.125rem;
}

.list_product .ul>li .right ul li div {
  color: #7B7B7B;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 4rem;
  padding-left: 1.6875rem;
  position: relative;
  border-bottom: 1px solid #CECECE;
  cursor: pointer;
}

.list_product .ul>li .right ul li div::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #D9D9D9;
}

.list_product .ul>li .right ul li div::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_product .ul>li .right ul li div:hover {
  color: #00A0E9;
}

.list_product .ul>li .right ul li div:hover::after {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_product .ul>li .right ul li div:hover::before {
  background: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_product .ul>li:hover {
  background: linear-gradient(180deg, rgba(3, 98, 198, 0) 0%, rgba(3, 98, 198, 0.4) 188.04%);
}

.list_product .ul>li:hover .title {
  color: #00A0E9;
}

.list_product .ul>li:hover .left img {
  transform: scale(1.1);
}

.list_product .ul>li:hover>img {
  opacity: 1;
}

.list_product .ul>li.active {
  background: linear-gradient(180deg, rgba(3, 98, 198, 0) 0%, rgba(3, 98, 198, 0.4) 188.04%);
}

.list_product .ul>li.active>img {
  opacity: 1;
}

.list_product .ul>li.active .right .text {
  margin: 1.25rem 0 0;
}

.list_product .ul>li.active .right .more {
  font-style: normal;
}

.tj {
  text-align: justify;
}

.show_product .swiper-container {
  margin: 1.5rem -0.9375rem 0;
}

.show_product .swiper_btn {
  margin-top: -2.5rem;
}

.show_product ul li {
  padding: 0 0.9375rem;
  position: relative;
}

.show_product ul li a:focus {
  outline: none;
}

.show_product ul li .over,
.show_product ul li .over img {
  border-radius: 0.625rem;
  width: 100%;
}

.show_product ul li .over {
  border: 1px solid #f5f5f5;
}

.show_product ul li .name {
  color: #3A3A3A;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin-top: 1.25rem;
}

.index_three {
  background: #F6F9FD;
}

.index_three .content {
  margin-top: 2.1875rem;
}

.index_three .swiper-container {
  padding-right: 30rem;
  overflow: visible;
}

.index_three .data {
  color: #7B7B7B;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
  border-bottom: 0.3125rem solid #DCE9F7;
  margin-bottom: 2.1875rem;
  position: relative;
  padding-bottom: 0.625rem;
}

.index_three .data::before {
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  width: 0;
  height: 0.3125rem;
  background: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.index_three .swiper-slide:hover svg g path {
  fill: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.index_three .swiper-slide:hover svg>path {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  fill: #fff;
}

.index_three .swiper-slide:hover .data::before,
.index_three .swiper-slide.swiper-slide-active .data::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.index_three .swiper-slide:hover .right .name,
.index_three .swiper-slide.swiper-slide-active .right .name {
  color: #00A0E9;
}

.index_three .swiper-slide:hover .over img,
.index_three .swiper-slide.swiper-slide-active .over img {
  transform: scale(1.1);
}

.index_three .swiper-slide .left {
  padding-right: 1.875rem;
}

.index_three .swiper-slide .name {
  color: #353535;
  margin-top: 1.125rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.index_three .swiper-slide svg {
  left: -1rem;
  position: relative;
}

.index_three .swiper-slide .text {
  color: #7B7B7B;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin: 1rem 0 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.index_three .swiper-pagination {
  margin-top: 1.875rem;
  position: relative;
  text-align: left;
}

.index_three .swiper-pagination .swiper-pagination-bullet {
  width: 0.875rem;
  height: 0.875rem;
  margin: 0 0.3125rem;
  background: transparent;
}

.index_three .swiper-pagination .swiper-pagination-bullet img {
  display: block;
}

body {
  overflow-x: visible;
}

.index_four .left .p120 {
  position: sticky;
  top: 10em;
  left: 0;
}

.index_four .right ul {
  margin: 0 -1.875rem;
}

.index_four .right ul li {
  padding: 0 1.875rem;
  margin-bottom: 1.875rem;
}

.index_four .right ul li:nth-child(odd) {
  top: 3.75rem;
}

.index_four .right ul li>div {
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  padding: 2.1875rem 2.625rem 2.8125rem;
}

.index_four .right ul li>div .name {
  color: #353535;
  margin-top: 5rem;
  font-size: 1.125rem;
  line-height: 1.875rem;
  height: 3.75rem;
}

.list_development .title {
  margin-bottom: 2.75rem;
}

.list_development ul {
  margin: 5rem 0;
}

.list_development ul li {
  margin-bottom: 3.125rem;
}

.list_development ul li .row>div {
  margin-bottom: 1.875rem;
}

.list_development ul li .over {
  border: 1px solid #ddd;
}

.list_development ul li .over,
.list_development ul li .over img {
  border-radius: 1.25rem;
  width: 100%;
}

.list_deve_twp {
  background: #F6F9FD;
}

.list_deve_twp .left {
  width: 28.75rem;
  padding-right: 3.75rem;
}

.list_deve_twp .left .sum>div {
  display: none;
}

.list_deve_twp .left .sum>div.active {
  display: block;
}

.list_deve_twp .left ul li {
  height: 5.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  color: #262626;
  font-size: 1.625rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.list_deve_twp .left ul li::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background: #00A0E9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_deve_twp .left ul li:hover,
.list_deve_twp .left ul li.active {
  color: #00A0E9;
}

.list_deve_twp .left ul li:hover::before,
.list_deve_twp .left ul li.active::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_deve_twp .swiper-button-next,
.list_deve_twp .swiper-button-prev {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.3125rem;
  border: 1px solid #D0D0D0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  margin-top: 0;
  background-image: none;
  margin-right: 1rem;
}

.list_deve_twp .swiper-button-next .iconfont,
.list_deve_twp .swiper-button-prev .iconfont {
  font-size: 1.5rem;
  color: #D0D0D0;
}

.list_deve_twp .flex2 {
  margin-top: 2.5rem;
  justify-content: flex-start;
}

.list_deve_twp .right {
  width: calc(100% - 28.75rem);
}

.list_deve_twp .right .swiper {
  padding-right: 40rem;
}

.list_deve_twp .right .over,
.list_deve_twp .right .over img {
  border-radius: 1.25rem;
  width: 100%;
}

.list_deve_twp .right>div {
  display: none;
  overflow: hidden;
}

.list_deve_twp .right>div img {
  width: 100%;
}

.list_deve_twp .right>div.active {
  display: block;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper_btn {
  width: 3.125rem;
  height: 3.125rem;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
}

.swiper_btn .iconfont {
  color: #ddd;
}

.swiper_btn:hover {
  background: #00A0E9;
}

.swiper_btn:hover .iconfont {
  color: #fff;
}

.margin .swiper-button-next {
  right: -5rem;
}

.margin .swiper-button-prev {
  left: -5rem;
}

.swiper_pag .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin: 0 0.375rem;
}

.swiper_pag .swiper-pagination-bullet-active {
  background: #00A0E9;
}

.list_rd_one .vide {
  display: none !important;
}

.list_rd_one video,
.list_rd_one .vide {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100vh;
  object-fit: cover;
}

@media (max-width: 990px) {
  .list_rd_one .vide {
    display: block !important;
  }
}

.list_rd_one .hover li {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_rd_one .hover li .text {
  margin-top: 2.125rem;
  font-size: 1.125rem;
  line-height: 1.875rem;
  text-align: justify;
}

.list_rd_two {
  background: #fff;
}

.list_rd_two .font18 {
  color: #7B7B7B;
  line-height: 1.875rem;
  margin-top: 1.875rem;
}

.list_rd_two .img {
  margin-top: 3rem;
}

.list_rd_three {
  background: url(../img/50.png) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_rd_three .text {
  font-size: 1.125rem;
  line-height: 1.875rem;
  text-align: justify;
  margin-top: 2.1875rem;
  text-align-last: center;
}

.list_rd_three .name {
  color: #FFF;
  text-align: center;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 2rem;
  margin-top: 2.8125rem;
}

.list_rd_four {
  position: relative;
  width: 100%;
  height: 100vh;
}

.list_rd_four .summary-content {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100vh;
  transform: translate(-50%, 0);
}

.list_rd_four .summary-content video {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.list_rd_four .hover {
  top: 0;
  left: 0;
  width: 100%;
}

.hover_four {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hover_four .text2 {
  color: #FFF;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 3.125rem;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
}

footer .bot .agree label span:last-child {
  display: none;
}

.list_rd_five {
  background: #fff;
  color: #7B7B7B;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
  text-align: justify;
}

.list_rd_five .swiper-pagination {
  position: absolute;
  bottom: 2.25rem;
  right: 3.25rem;
  z-index: 9;
}

.list_rd_five .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

.list_rd_five .swiper-pagination .swiper-pagination-bullet-active {
  background: #00A0E9;
}

.list_rd_five .row {
  margin: 0 -1.5625rem;
}

.list_rd_five .row>div {
  padding: 0 1.5625rem;
}

.list_rd_six .text {
  text-align: justify;
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.875rem;
}

.list_rd_six .row {
  margin: 0 -1.5625rem;
}

.list_rd_six .row>div {
  padding: 0 1.5625rem;
}

.list_rd_six .name {
  color: #FFF;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 2.1875rem;
}

.list_rd_six .name:nth-child(3) {
  margin-top: 3.125rem;
}

.list_rd_six .row {
  margin-top: 4rem;
}

.list_rd_seven .text {
  font-weight: 400;
  color: #7B7B7B;
  font-size: 1.125rem;
  line-height: 1.875rem;
  margin-top: 1.875rem;
}

.list_rd_seven .text span {
  color: #00A0E9;
  font-size: 1.625rem;
}

.list_rd_seven {
  background: #fff;
}

.list_rd_eight {
  background: url(https://imgs-data-brwq.bcdn8.com/zhifu0910/uploads/20241107/51f074136aaa05b228e4411e3299e3c4.png) no-repeat;
  background-size: cover;
}

.list_rd_eight .text {
  color: #FFF;
  text-align: center;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin: 1.875rem 0 3.125rem;
}

.list_rd_ten ul {
  margin-top: 3.125rem;
}

.list_rd_ten li img {
  height: 8rem;
}

.list_rd_ten li .name {
  color: #FFF;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin-top: 2.1875rem;
}

.show_product_six ul {
  display: flex;
  flex-wrap: wrap;
  margin: 2.5rem -1rem 0;
}

.show_product_six ul li {
  flex: 1 0 0;
  text-align: center;
  padding: 0 1rem;
}

.show_product_six ul li .icon {
  width: 5rem;
  height: 5rem;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
}

.show_product_six ul li .icon img {
  width: 3rem;
}

.show_product_six ul li .name {
  font-size: 1.375rem;
  color: #333;
  line-height: 2rem;
  margin: 1rem 0 0.5rem;
}

.show_product_six ul li .text {}

@media (max-width: 768px) {
  .show_product_six ul li {
    display: flex;
    width: 100%;
    flex: none;
    text-align: left;
  }

  .show_product_six ul li:not(:last-child) {
    margin-bottom: 20px;
  }

  .show_product_six ul li .icon {
    width: 4rem;
    height: 4rem;
  }

  .show_product_six ul li .con {
    width: calc(100% - 5rem);
    padding-left: 15px;
  }

  .show_product_six ul li .name {
    margin-top: 0;
    font-size: 16px;
    margin: 0 0   0;
  }.show_product_six ul { 
    margin: 1rem -1rem 0;
}
}