@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;
  --phone_img: 30px;
  --bors: 1.25rem;
  --bgf8: #F9F9F9;
  --header_cf: #fff;
  --swiper_pag_c: #444;
  outline: none;
  font-weight: 500;
}
.bgf8 {
  background: var(--bgf8);
}
.p_top {
  position: absolute;
  top: -6.25rem;
}
@media (max-width: 990px) {
  .p_top {
    top: -60px;
  }
}
.bg {
  background: #024FB1;
}
.c {
  color: #024FB1;
}
.bg2 {
  background: #f08200;
}
.c2 {
  color: #f08200;
}
.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;
}
@media (max-width: 767px) {
  .pagination > li {
    width: 30px;
    height: 30px;
  }
}
.pagination > li.active,
.pagination > li:hover {
  background: #024FB1;
  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: #024FB1;
}
.search_more:hover::before {
  background: #024FB1;
}
.search_more::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #E5E5E5;
}
video {
  display: block;
}
.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: 50%;
  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) translateX(-50%);
  transform-origin: top center;
  opacity: 0;
  border-radius: 0 0 8px 8px;
}
.er-ul-pro {
  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;
}
.er-ul-pro .left {
  width: 30.625rem;
  background: #F7F7F7;
  padding-top: 2.5rem;
}
.er-ul-pro .left ul li {
  line-height: 5.625rem;
}
.er-ul-pro .left ul li a {
  padding-left: var(--container);
  color: #555;
  font-size: 1.25rem;
  position: relative;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  z-index: 9;
  overflow: hidden;
}
.er-ul-pro .left ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, rgba(2, 79, 177, 0) 0%, #024FB1 100%);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.er-ul-pro .left ul li.active a,
.er-ul-pro .left ul li:hover a {
  color: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.er-ul-pro .left ul li.active a::before,
.er-ul-pro .left ul li:hover a::before {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  left: 0;
}
.er-ul-pro .right {
  width: calc(100% - 30.625rem);
  padding-top: 2.5rem;
  padding-left: 2.3125rem;
  padding-bottom: 4rem;
}
.er-ul-pro .right > div {
  display: none;
}
.er-ul-pro .right > div.active {
  display: block;
}
.er-ul > li {
  line-height: 2.25rem;
  text-align: center;
  font-size: 0.875rem;
}
.er-ul > li:hover a {
  color: #024FB1;
}
.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 .center > ul > li:hover .er-ul-pro {
  transform: scaleY(1);
  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-left: 0;
}
.container.container_p {
  padding-top: var(--header_h);
}
.container.container_r {
  padding-right: 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.nobor .social-share li {
  width: auto;
  height: auto;
  margin-right: 1.5rem;
}
.fenxiang.nobor .social-share li:hover a {
  background: transparent;
  color: #024FB1;
}
.fenxiang.nobor .social-share li a {
  border: none;
}
.fenxiang .social-share li {
  float: left;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.375rem;
  border-radius: 50%;
  margin-right: 0.875rem;
  text-align: center;
}
.fenxiang .social-share li:hover a {
  border-color: #024FB1;
  color: #fff;
  background: #024FB1;
}
.fenxiang .social-share li a {
  margin: 0;
  width: 100%;
  height: 100%;
  line-height: 2.375rem;
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  border: 1px solid rgba(129, 129, 129, 0.5);
}
.serbtn {
  background: #024FB1;
}
.searchbox {
  border-color: #024FB1;
}
@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: var(--phone_img);
}
.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: #024FB1;
}
.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-size: 1.125rem;
  line-height: 1.35rem;
  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: #024FB1;
  font-size: 1rem;
  line-height: 1.5rem;
}
.ss-list li .xw-nycont .datea {
  color: #999999;
  font-size: 0.95rem;
  line-height: 1.5rem;
}
.ss-list li .xw-nycont .p {
  color: #999999;
  font-size: 1rem;
  line-height: 1.5rem;
  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: var(--phone_img);
}
.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: #024FB1;
  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: #024FB1;
}
.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 {
  text-align: left;
}
.sjj_nav .top .ta img {
  height: var(--phone_img);
}
.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: #024FB1;
}
.rightfix li:hover .iconfont {
  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);
  }
}
.show_header {
  padding-top: var(--header_h);
}
.show_header header {
  animation: none !important;
}
header.active,
header:hover,
header.white {
  background: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  --color: #444;
}
header.active .logo img,
header:hover .logo img,
header.white .logo img,
header.active .ds1 img,
header:hover .ds1 img,
header.white .ds1 img,
header.active .lanuage img,
header:hover .lanuage img,
header.white .lanuage img {
  filter: brightness(1) invert(0);
}
header.active .center > ul > li:hover > a,
header:hover .center > ul > li:hover > a,
header.white .center > ul > li:hover > a,
header.active .center > ul > li.active > a,
header:hover .center > ul > li.active > a,
header.white .center > ul > li.active > a {
  color: #024FB1;
}
header.active .center > ul > li:hover > a::before,
header:hover .center > ul > li:hover > a::before,
header.white .center > ul > li:hover > a::before,
header.active .center > ul > li.active > a::before,
header:hover .center > ul > li.active > a::before,
header.white .center > ul > li.active > a::before {
  background: #024FB1;
}
header {
  position: fixed;
  line-height: 6.25rem;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  --color: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
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: 2.6875rem;
  filter: brightness(0) invert(1);
}
header .ds1 img,
header .lanuage img {
  filter: brightness(0) invert(1);
  height: 1.5625rem;
  cursor: pointer;
}
header .lanuage {
  margin: 0 2.1875rem 0 1.25rem;
}
header .lanuage a {
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--color);
}
header .lanuage a.c {
  color: #024FB1;
}
header .center > ul > li {
  float: left;
  padding: 0 2.5rem;
}
header .center > ul > li > a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color);
  position: relative;
}
header .center > ul > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color);
  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::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: 55%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
.banner .hover .p1 {
  color: #000;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 4.5rem;
}
.banner .hover .p2 {
  color: #000;
  font-size: 1.75rem;
  line-height: 3rem;
  margin-top: 0.3125rem;
}
.banner .hover .more {
  margin-top: 1.5rem;
  border-color: #000;
}
.banner .hover .more div {
  color: #000;
}
.banner .hover .more:hover div {
  color: #fff;
}
.banner .swiper-slide.swiper-slide-active .img img {
  -webkit-animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
}
.banner .hover2 {
  position: absolute;
  bottom: 3.75rem;
  left: 0;
  width: 100%;
  z-index: 9;
}
.banner .hover2 .container {
  padding: 0 6.25rem;
}
.banner .pagination1 {
  z-index: 20;
}
.banner .pagination1 .list {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  opacity: 1;
  width: auto;
  height: 2rem;
  background: transparent;
  border-radius: 0;
  outline: 0;
}
.banner .pagination1 button {
  position: relative;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: #024FB1;
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}
.banner .pagination1 button svg{
  stroke: #024FB1;
}
.banner .pagination1 .list + .list {
  margin-left: 2.5rem !important;
}
.banner .pagination1 button svg {
  position: absolute;
  width: 2rem;
  height: 2rem;
  stroke: #024FB1;
  fill: none;
  stroke-width: 2;
  stroke-dashoffset: 100;
  stroke-dasharray: 100;
  left: 72%;
  top: 72%;
  transform: translate(-50%, -50%);
}
.banner .pagination1 .swiper-pagination-bullet-active button svg {
  animation-name: circ;
  animation-duration: 6.5s;
  -webkit-animation-name: circ;
  -webkit-animation-duration: 6.5s;
  stroke-dashoffset: 0\0;
  stroke-dasharray: 0\0;
}
.banner .pagination1 .list:nth-child(1).swiper-pagination-bullet-active button svg {
  animation-name: circ;
  animation-duration: 9.5s;
  stroke-dashoffset: 0\0;
  stroke-dasharray: 0\0;
}
@keyframes circ {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.banner video,
.banner img {
  height: 100vh;
  object-fit: cover;
  width: 100vw;
}
.banner .scroll {
  position: absolute;
  bottom: 3.25rem;
  left: 50%;
  z-index: 9;
  text-align: center;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5rem;
  animation: xiangxia 2s infinite;
  cursor: pointer;
  transform: translateX(-50%);
}
.banner .scroll img {
  height: 0.875rem;
  width: auto;
}
@keyframes xiangxia {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 0.625rem);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
.nyban .hover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
.nyban .hover .p2 {
  font-size: 2rem;
  line-height: 3rem;
  color: #fff;
}
.nyban .hover .p1 {
  color: #FFF;
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 4rem;
}
@media (max-width: 1280px) {
  .nyban .hover .p1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 990px) {
  .nyban .hover .p1 {
    font-size: 32px;
    line-height: 40px;
  }
  .nyban .hover .p2 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .nyban .hover .p1 {
    font-size: 24px;
    line-height: 30px;
  }
  .nyban .hover .p2 {
    font-size: 14px;
    line-height: 26px;
  }
}
.nyban .nyerji {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.nyban .nyerji ul {
  background: #fff;
  display: flex;
  justify-content: space-between;
}
.nyban .nyerji ul li {
  display: flex;
  align-items: center;
  flex: 1 0 0;
}
.nyban .nyerji ul li a {
  display: block;
  line-height: 1;
  color: #555;
  font-size: 1.125rem;
  position: relative;
  text-align: center;
  width: 100%;
  line-height: 6.25rem;
}
.nyban .nyerji ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0.25rem;
  background: #024FB1;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.nyban .nyerji ul li.active a,
.nyban .nyerji ul li:hover a {
  color: #024FB1;
}
.nyban .nyerji ul li.active a::after,
.nyban .nyerji ul li:hover a::after {
  width: calc(100% - 1.875rem - 1.875rem);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.nyban .nyerji ul li:not(:last-child) a::before {
  content: "";
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.875rem;
  background: #D9D9D9;
}
.bread {
  font-size: 1rem;
  color: #757575;
  display: flex;
  align-items: center;
  line-height: 1.25rem;
  padding: 1.5625rem 0 2.5rem;
}
.bread a {
  color: #757575;
}
.bread a:hover {
  color: #024FB1;
}
.bread img {
  height: 1.25rem;
  margin-right: 0.625rem;
  position: relative;
  margin-top: -0.125rem;
}
.bread span {
  margin: 0 0.625rem;
}
.bread span:last-child {
  display: none;
}
.number_ul {
  --num_cor: #024FB1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.number_ul li {
  text-align: center;
  flex: 1 0 0;
}
.number_ul li .num {
  line-height: 1;
  position: relative;
}
.number_ul li .num span {
  color: var(--num_cor);
  font-size: 3rem;
  font-weight: 600;
}
.number_ul li .num sub {
  color: var(--num_cor);
  font-size: 3rem;
  margin-left: 0.25rem;
  bottom: 0;
  font-weight: 600;
}
.number_ul li .num sub sub {
  margin-left: -0.5rem;
  bottom: -0.125rem;
}
.number_ul li .num sup {
  color: var(--num_cor);
  font-size: 3rem;
  margin-left: 0.25rem;
  top: 0;
  font-weight: 600;
}
.number_ul li .font20 {
  margin: 0.5rem 0 0 !important;
}
.number_ul li > div {
  display: inline-block;
}
.text {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.75rem;
}
.swiper_pag.color .swiper-pagination-bullet {
  background: var(--swiper_pag_c);
}
.swiper_pag.color .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}
.swiper_pag .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  opacity: 1;
  background: rgba(0, 0, 0, 0.25);
  margin: 0 0.375rem;
}
.swiper_pag .swiper-pagination-bullet-active {
  background: #024FB1;
}
.swiper_btn {
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
  border-radius: 50%;
  border: 1px solid #D9D9D9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.swiper_btn:hover {
  background: #024FB1;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.swiper_btn:hover .iconfont {
  color: #fff;
}
.swiper_btn .iconfont {
  font-size: 1.125rem;
  color: #D9D9D9;
}
.more {
  width: 10rem;
  line-height: 3.375rem;
  border-radius: 3.125rem;
  border: 1px solid var(--more_c);
  display: inline-block;
  --more_c: #024FB1;
  position: relative;
  z-index: 9;
}
.more::before {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: calc(100% - 0.25rem);
  height: calc(100% - 0.25rem);
  transform: scale(0);
  background: #024FB1;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  border-radius: 3.125rem;
  z-index: -1;
}
.more:hover {
  border-color: #024FB1;
}
.more:hover div {
  color: #fff;
}
.more:hover div .iconfont {
  transform: translateX(0.375rem);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.more:hover::before {
  transform: scale(1);
}
.more > div {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--more_c);
  font-size: 1rem;
}
.more > div .iconfont {
  font-weight: 600;
  display: block;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  margin-left: 0.5rem;
  font-size: 1rem;
}
.more.bgg {
  border-color: #F08200;
  background: #F08200;
}
.more.bgg div {
  color: #fff;
}
.more.bgg::before {
  background: #fff;
}
.more.bgg:hover div {
  color: #F08200;
}
.more.borf {
  border-color: #fff;
}
.more.borf div {
  color: #fff;
}
.more.borf:hover {
  border-color: #024FB1;
}
.more.bgf {
  background: #fff;
  border-color: #fff;
}
.more.bgf div {
  color: #024FB1;
}
.more.bgf:hover div {
  color: #fff;
}
@media (max-width: 767px) {
  .more {
    width: 130px;
    line-height: 40px;
  }
}
.title {
  color: #333;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 3rem;
}
.title.cf {
  color: #fff;
}
.title.cf div::before {
  background: #fff;
}
.title.cf div img {
  filter: brightness(0) invert(1);
}
.title div {
  position: relative;
  padding-bottom: 1.125rem;
  display: inline-block;
}
.title div img {
  width: 1.3125rem;
  height: 1.3125rem;
}
.title div::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0.8125rem;
  background: #024FB1;
}
.title p {
  padding-top: 0.625rem;
}
.subtitle {
  color: #ACACAC;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.875rem;
  letter-spacing: 0.225rem;
  text-transform: uppercase;
}
.alignc {
  align-items: center;
}
.bor20 {
  border-radius: var(--bors);
}
.leftimg_righttext > li:nth-child(even) .left {
  order: 2;
}
.leftimg_righttext > li:nth-child(even) .right {
  order: 1;
}
.fixright_li_last {
  display: none;
  cursor: pointer;
}
.fixright_li_last > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #024FB1;
  border-radius: 50%;
}
.ptb {
  padding: 6.25rem 0;
}
.ptb.pt0 {
  padding-top: 0;
}
.ptb.pb0 {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .ptb {
    padding: 30px 0;
  }
}
.sjj_nav.white {
  background: #fff;
}
.sjj_nav.white .top {
  background: #fff;
}
.sjj_nav.white .bot > li > div > a {
  color: #353535;
}
.sjj_nav.white .bot > li .list .left a {
  color: #818181;
  font-size: 14px;
  font-weight: 500;
}
.sjj_nav.white .top .fr img {
  filter: brightness(1) invert(1);
  opacity: 0.8;
}
.section01 {
  z-index: 8;
}
.section01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38.75rem;
  height: 100%;
  background: #024FB1;
  z-index: -1;
}
.section01 .swiper-pagination-bullet {
  width: 1.25rem;
  height: 1.25rem;
  text-align: center;
  line-height: 1.25rem;
  font-size: 0.75rem;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}
.section01 .swiper-pagination-bullet-active {
  color: #fff;
  background: #024FB1;
}
.section01 .bottom {
  margin-top: 2.1875rem;
}
.section01 .bottom .left {
  width: 10rem;
}
.section01 .bottom .left ul li {
  cursor: pointer;
}
.section01 .bottom .left ul li > div {
  display: inline-block;
  width: 5rem;
  text-align: center;
}
.section01 .bottom .left ul li .icon {
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section01 .bottom .left ul li .icon img {
  width: 3rem;
  height: 3rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.section01 .bottom .left ul li .name {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.section01 .bottom .left ul li:not(:last-child) {
  margin-bottom: 0.625rem;
}
.section01 .bottom .left ul li.active .icon {
  background: #f08200;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.section01 .bottom .left ul li.active .icon img {
  width: 1.875rem;
  height: 1.875rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.section01 .bottom .left ul li.active .name {
  color: #f08200;
}
.section01 .bottom .right {
  width: calc(100% - 10rem);
}
.section01 .bottom .right > div {
  height: 0;
  overflow: hidden;
}
.section01 .bottom .right > div.active {
  height: auto;
}
.section01 .bottom .right > div.active .swiper-slide {
  visibility: visible !important;
}
.section01 .swiper_pag {
  height: 1.625rem;
}
.text {
  color: #7A7A7A;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.tj {
  text-align: justify;
}
.squera_pro_row {
  margin: -1.125rem;
}
.squera_pro {
  padding: 1.125rem;
}
.squera_pro a {
  padding: 1.875rem 2rem 1.875rem 0.625rem;
  background: #fff;
  border-radius: var(--bors);
  border: 1px solid #FFF;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(180deg, #FFF 0%, #B7D3F6 100%);
  box-shadow: 0px 0px 1.875rem 0px rgba(0, 0, 0, 0.05);
}
.squera_pro .name {
  color: #333;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.875rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.squera_pro .text {
  margin: 0.125rem 0 1.375rem;
}
.squera_pro .jiantou {
  line-height: 1;
}
.squera_pro .jiantou img {
  width: 1.875rem;
  opacity: 0.5;
  filter: brightness(0);
}
.squera_pro:hover .jiantou img {
  opacity: 1;
  filter: brightness(1);
}
.squera_pro:hover .over img {
  transform: scale(1.1);
}
.squera_pro:hover .name {
  color: #024FB1;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.squera_pro .l {
  width: 9.375rem;
  height: 9.1875rem;
}
.squera_pro .l img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.squera_pro .r {
  width: calc(100% - 9.375rem);
  padding-left: 0.625rem;
  padding-top: 1.5rem;
}
.section02 {
  background: #F3F3F4;
}
.section02 .swiper-container {
  margin-top: 3.25rem;
}
.section02 .swiper-slide {
  background: rgba(2, 79, 177, 0.94);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.section02 .swiper-slide:hover {
  background: rgba(1, 66, 151, 0.94);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.section02 .swiper-slide:hover > div {
  transform: translateY(-0.625rem);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.section02 .swiper-slide > div {
  padding: 3.375rem 2.5rem 3rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.section02 .swiper-slide .name {
  color: #FFF;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 2.5rem;
}
.section02 .swiper-slide .text {
  color: #FFF;
  font-size: 1.125rem;
  text-align: justify;
  font-weight: 400;
  line-height: 1.875rem;
  margin: 0.3125rem 0 1.5625rem;
}
.section02 .bgg {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - var(--container) - (100% - (var(--container) * 2)) / 3);
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.section02 .bgg div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  opacity: 0;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  background-size: cover;
  background-position: center center;
}
.section02 .bgg div.active {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.more_a {
  width: 2.875rem;
  height: 2.875rem;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more_a .iconfont {
  font-size: 1.25rem;
  color: #fff;
  display: block;
}
.section03 .left {
  padding-right: 1.5625rem;
}
.section03 .left a {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.08);
  border-radius: var(--bors);
  overflow: hidden;
}
.section03 .left a img {
  height: 23.5625rem;
  object-fit: cover;
}
.section03 .left a:hover img {
  transform: scale(1.1);
}
.section03 .left a:hover .data,
.section03 .left a:hover .name {
  color: #f08200;
}
.section03 .left .content {
  background: #fff;
  padding: 1.25rem 3.125rem 1.875rem;
}
.section03 .left .content .data {
  color: #024FB1;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.875rem;
}
.section03 .left .content .name {
  color: #333;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5rem;
}
.section03 .right {
  padding-left: 1.5625rem;
}
.section03 .right ul li:hover a .over img {
  transform: scale(1.1);
}
.section03 .right ul li:hover a .data p,
.section03 .right ul li:hover a .data div {
  color: #f08200;
}
.section03 .right ul li:hover a .more_ {
  transform: scale(1) translateY(-50%);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.section03 .right ul li:not(:last-child) {
  margin-bottom: 1.25rem;
}
.section03 .right ul li a {
  display: flex;
  align-items: center;
}
.section03 .right ul li a .over {
  width: 12.5rem;
}
.section03 .right ul li a .over img {
  height: 9.125rem;
  object-fit: cover;
}
.section03 .right ul li a .data {
  width: 8.375rem;
  text-align: center;
  position: relative;
}
.section03 .right ul li a .data::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 5.6875rem;
  background: #d0d0d0;
}
.section03 .right ul li a .data div {
  color: #024FB1;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 3.75rem;
}
.section03 .right ul li a .data p {
  color: #024FB1;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
}
.section03 .right ul li a .name {
  width: calc(100% - 12.5rem - 8.375rem);
  padding-left: 1.5625rem;
  color: #333;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5rem;
}
.section03 .right ul li .more_ {
  width: 2.75rem;
  height: 1.875rem;
  border-radius: 3.125rem;
  background: #f08200;
  position: absolute;
  top: 50%;
  transform: scale(0) translateY(-50%);
  right: -1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.section03 .right ul li .more_ img {
  width: 0.5rem !important;
  height: 0.5rem !important;
  object-fit: contain;
}
.section04 .aaa {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9;
}
.section04 .hover {
  opacity: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.section04 .hover .font20 {
  color: #515151;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
  text-transform: uppercase;
  margin: 1.5625rem 0 3.75rem;
}
.section04 .padding {
  padding: 0 10rem;
}
.section05 .top {
  height: calc(100vh - 36.75rem);
  background: #024FB1;
  padding-top: var(--header_h);
  display: flex;
  align-items: center;
}
.section05 .top ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section05 .top ul li {
  flex: 1 0 0;
  text-align: center;
}
.section05 .top ul li .icon img {
  height: 4.375rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.section05 .top ul 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;
}
.section05 .top ul li .text {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25rem;
  margin-top: 1.25rem;
}
.section05 footer {
  height: 36.75rem;
}
footer {
  background: #F7F7F7;
}
footer .flex2 {
  padding: 6.25rem 0 11rem;
}
footer .flex2 .left {
  width: 34.75rem;
}
footer .flex2 .left .logo {
  margin-bottom: 2.1875rem;
}
footer .flex2 .left .logo img {
  height: 2.625rem;
}
footer .flex2 .left .ul1 {
  margin-bottom: 1.5rem;
}
footer .flex2 .left .ul1 li {
  display: flex;
  align-items: center;
}
footer .flex2 .left .ul1 li:nth-child(1) .icon {
  top: 0.125rem;
  position: relative;
}
footer .flex2 .left .ul1 li:not(:last-child) {
  margin-bottom: 1rem;
}
footer .flex2 .left .ul1 li .icon {
  width: 1.25rem;
  height: 1.25rem;
}
footer .flex2 .left .ul1 li .icon img {
  width: 100%;
  height: 100%;
  display: block;
}
footer .flex2 .left .ul1 li .con {
  width: calc(100% - 1.25rem);
  color: #024FB1;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.25rem;
  padding-left: 0.5rem;
}
footer .flex2 .left .ul2 {
  display: flex;
  justify-content: flex-start;
}
footer .flex2 .left .ul2 li {
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
}
footer .flex2 .left .ul2 li .icon {
  width: 100%;
  height: 100%;
  border-radius: 0.3125rem;
  background: #686868;
}
footer .flex2 .left .ul2 li .hover {
  position: absolute;
  top: 110%;
  left: 0;
  width: 6.25rem;
  height: 6.25rem;
  border: 1px solid #ddd;
  transform: scaleY(0);
  transform-origin: top center;
  opacity: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
footer .flex2 .left .ul2 li:hover .hover {
  transform: scaleY(1);
  opacity: 1;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
footer .flex2 .left .ul2 li:not(:last-child) {
  margin-right: 0.875rem;
}
footer .flex2 .name {
  color: #555;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.875rem;
  margin-bottom: 0.875rem;
}
footer .flex2 .right {
  width: calc(100% - 34.75rem);
}
footer .flex2 .right ul {
  display: flex;
  justify-content: space-between;
}
footer .flex2 .right ul li .text {
  color: #555;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
}
footer .flex2 .right ul li .text:hover {
  color: #024FB1;
}
footer .beian {
  border-top: 1px solid #EBEBEB;
  padding: 1.5625rem 0;
  display: flex;
  justify-content: space-between;
  color: #555;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  flex-wrap: wrap;
}
footer .beian a {
  color: #555;
}
footer .beian .right span:last-child {
  display: none;
}
footer .beian .right a:hover {
  color: #024FB1;
}
.nyban .hover .p1 {
  color: #FFF;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}
.nyban .hover .p2 {
  color: #FFF;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.list_product {
  display: flex;
}
.list_product .left {
  border-right: 1px solid #C7C7C7;
  background: #F0F7FF;
  width: 25rem;
}
.list_product .left .ul {
  position: sticky;
  top: 6.25rem;
  padding-bottom: 5rem;
}
.list_product .left .ul > li.active ul {
  display: block;
}
.list_product .left .ul > li.active > a {
  background: #024FB1;
  color: #fff;
}
.list_product .left .ul > li.active > a .iconfont {
  color: #fff;
}
.list_product .left .ul > li.active > a .iconfont:nth-child(1) {
  display: none;
}
.list_product .left .ul > li.active > a .iconfont:nth-child(2) {
  display: block;
}
.list_product .left .ul > li > a {
  display: flex;
  align-items: center;
  padding-left: 8rem;
  line-height: 4.375rem;
  color: #555;
  font-size: 1.25rem;
}
.list_product .left .ul > li > a div {
  width: calc(100% - 3rem);
}
.list_product .left .ul > li > a p {
  width: 3rem;
}
.list_product .left .ul > li > a p .iconfont {
  font-size: 1.25rem;
  font-weight: 400;
}
.list_product .left .ul > li > a p .iconfont:nth-child(2) {
  display: none;
}
.list_product .left .ul > li ul {
  display: none;
  background: #FFF;
}
.list_product .left .ul > li ul li {
  padding-left: 3rem;
}
.list_product .left .ul > li ul li:hover a,
.list_product .left .ul > li ul li.active a,
.list_product .left .ul > li ul li:hover .iconfont,
.list_product .left .ul > li ul li.active .iconfont {
  color: #024FB1;
}
.list_product .left .ul > li ul li a {
  display: flex;
  border-bottom: 1px solid #F2F2F2;
  align-items: center;
  padding-left: 5rem;
  color: #555;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 4.375rem;
}
.list_product .left .ul > li ul li a div {
  width: calc(100% - 3rem);
}
.list_product .left .ul > li ul li a p {
  width: 3rem;
}
.list_product .left .ul > li ul li a p .iconfont {
  color: #D9D9D9;
  font-size: 0.875rem;
}
.list_product .right {
  width: calc(100% - 25rem);
  padding: 3.125rem var(--container) 6.25rem 4.6875rem;
}
.list_product .right .ul {
  margin: -1.25rem;
}
.list_product .right .font20 {
  margin: 1.375rem 0 1.5rem;
}
.font20 {
  color: #515151;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
  text-transform: uppercase;
}
.squera_pro1 {
  padding: 1.25rem;
}
.squera_pro1 a {
  border-radius: var(--bors);
  border: 1px solid #F5F5F5;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(180deg, #FFF 0%, #B7D3F6 100%);
  box-shadow: 0px 0px 1.875rem 0px rgba(0, 0, 0, 0.05);
  padding: 2.5rem 1.25rem 2.5rem 2.5rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.squera_pro1 a .img {
  padding: 0 2.75rem 0 1.25rem;
}
.squera_pro1 .name1 {
  color: #555;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.875rem;
  margin: 2.5rem 0 0.5rem;
}
.squera_pro1 .text1 {
  color: #7A7A7A;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.squera_pro1:hover a {
  box-shadow: 0px 0px 1.875rem 0px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.squera_pro1:hover a .over img {
  transform: scale(1.1);
}
.squera_pro1:hover a .name1 {
  color: #024FB1;
}
.show_product {
  border-top: 1px solid #D0D0D0;
  background: #F7F7F7;
  padding-bottom: 4rem;
}
.show_product .font20 {
  margin: 1.25rem 0 2rem;
}
.show_product .left {
  display: flex;
  justify-content: space-between;
  padding-right: 3.125rem;
}
@media (max-width: 990px) {
  .show_product .left {
    padding-right: 15px;
  }
}
.show_product .left .content {
  border-radius: var(--bors);
  border: 1px solid #F5F5F5;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(180deg, #FFF 0%, #B7D3F6 100%);
  background: #fff;
}
.show_product .left .swiper-button-prev,
.show_product .left .swiper-button-next {
  width: 9.375rem;
  height: 1.5rem;
  text-align: center;
  border-radius: 0.625rem;
  margin-top: 0;
  left: 22.5px;
  right: auto;
  background-image: none;
}
.show_product .left .swiper-button-prev {
  top: 0;
}
.show_product .left .swiper-button-next {
  bottom: 0;
  top: auto;
}
.show_product .left .swiper_pro_left {
  width: 9.375rem;
  height: 24rem;
  margin-top: 1.8125rem;
}
.show_product .left .swiper_pro_left .swiper-slide {
  border-radius: var(--bors);
  border: 1px solid #F5F5F5;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(180deg, #FFF 0%, #B7D3F6 100%);
  background: #fff;
}
.show_product .left .swiper_pro_left .swiper-slide.swiper-slide-thumb-active {
  border-color: #024FB1;
}
.show_product .left .swiper_pro_left .swiper-slide .over {
  height: 100%;
  padding: 1.25rem;
}
.show_product .left .swiper_pro_left .swiper-slide .over img {
  max-height: 100%;
  object-fit: contain;
}
.show_product .left .swiper_pro_right {
  width: calc(100% - 9.375rem - 1.875rem);
  border-radius: var(--bors);
  border: 1px solid #F5F5F5;
}
.show_product .left .swiper_pro_right .swiper-slide {
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(180deg, #FFF 0%, #B7D3F6 100%);
  box-shadow: 0px 0px 1.875rem 0px rgba(0, 0, 0, 0.05);
  background: #fff;
  height: 27.625rem;
}
.show_product .left .swiper_pro_right .swiper-slide .over {
  padding: 2.5rem 4rem;
  height: 100%;
}
.show_product .left .swiper_pro_right .swiper-slide .over img {
  max-height: 100%;
  object-fit: contain;
}
.show_product .right {
  padding-left: 3.125rem;
}
@media (max-width: 990px) {
  .show_product .right {
    padding-left: 15px;
  }
}
.show_product .right ul {
  margin-bottom: 1.5625rem;
}
.show_product .right ul li {
  color: #515151;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
  /*height: 5rem;*/
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.show_product .right ul li div {
  width: 10.6875rem;
}
.show_product .right ul li p {
  width: calc(100% - 10.6875rem);
}
.qiehuan {
  background: #F7F7F7;
  padding-top: 1rem;
  position: sticky;
  top: 6.25rem;
  z-index: 99;
}
.qiehuan ul {
  display: flex;
  justify-content: flex-start;
}
.qiehuan ul li {
  color: #515151;
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}
.qiehuan ul li a {
  color: #515151;
  position: relative;
  padding: 0 1.75rem 1rem;
  display: block;
}
.qiehuan ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  left: 0;
  background: #024FB1;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.qiehuan ul li.active a,
.qiehuan ul li:hover a {
  color: #024FB1;
}
.qiehuan ul li.active a::before,
.qiehuan ul li:hover a::before {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  width: 100%;
}
.content_box .content {
  padding: 4.375rem 0;
}
.content_box .content .left {
  color: #515151;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2rem;
  /* 100% */
  text-transform: uppercase;
}
.show_product_two ul {
  display: flex;
  justify-content: flex-start;
}
.show_product_two ul li {
  width: 16.6%;
  text-align: center;
}
.show_product_two ul li img {
  height: 2.9375rem;
}
.show_product_two ul li .name {
  color: #515151;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 4.375rem;
}
.show_product_three .margin {
  margin: -1.25rem -1.25rem 0;
}
.show_product_three .margin .squera_pro1 > a {
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(180deg, #FFF 0%, #B7D3F6 100%);
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #F5F5F5;
}
.list_solution .ul2,
.list_dzkf .ul2 {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 8;
}
.list_solution .ul2::before,
.list_dzkf .ul2::before {
  content: "";
  position: absolute;
  top: 3.4375rem;
  left: 6.5rem;
  width: calc(100% - 6.5rem * 2);
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.list_solution .ul2 li,
.list_dzkf .ul2 li {
  cursor: pointer;
  position: relative;
  z-index: 88;
  flex: 1 0 0;
}
.list_solution .ul2 li:not(:last-child)::before,
.list_dzkf .ul2 li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 2.95rem;
  right: -0.3125rem;
  background: url(../img/jt2.svg) no-repeat;
  background-size: contain;
  width: 1.5rem;
  height: 1rem;
}
.list_solution .ul2 li .icon,
.list_dzkf .ul2 li .icon {
  width: 6.875rem;
  height: 6.875rem;
  border-radius: 50%;
  background: #024FB1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_solution .ul2 li .icon img,
.list_dzkf .ul2 li .icon img {
  width: 2.9375rem;
  height: 2.9375rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_solution .ul2 li .name,
.list_dzkf .ul2 li .name {
  color: #7B7B7B;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  margin-top: 1rem;
}
.list_solution .ul2 li:hover .icon,
.list_dzkf .ul2 li:hover .icon {
  background: #f08200;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_solution .ul2 li:hover .icon img,
.list_dzkf .ul2 li:hover .icon img {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transform: rotateY(180deg);
}
.list_solution .ul2 li:hover .name,
.list_dzkf .ul2 li:hover .name {
  color: #f08200;
}
.list_solution .ul > li:first-child {
  padding-top: 0;
}
.list_solution .ul > li:nth-child(even) {
  background: #F9F9F9;
}
.list_solution .ul > li.active .top .left .over::before,
.list_solution .ul > li.active .top .left .over::after {
  left: 100%;
}
.list_solution .ul > li .top {
  border-radius: var(--bors);
  background: rgba(255, 255, 255, 0.47);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.07);
}
.list_solution .ul > li .top .left {
  padding-right: 1.875rem;
}
.list_solution .ul > li .top .left .over {
  overflow: hidden;
  position: relative;
}
.list_solution .ul > li .top .left .over::before,
.list_solution .ul > li .top .left .over::after {
  content: "";
  display: block;
  width: 101%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.list_solution .ul > li .top .left .over::before {
  background-color: #f1f3f6;
  transition: 0.5s ease-in-out 0s;
  z-index: 2;
}
.list_solution .ul > li .top .left .over::after {
  z-index: 1;
  background-color: #eff0f0;
  transition: 0.5s ease-in-out 0.1s;
  opacity: 0.8;
}
.list_solution .ul > li .top .right {
  padding-left: 1.875rem;
  padding-right: 4rem;
}
.list_solution .ul > li .top .left .over,
.list_solution .ul > li .top .left .over img {
  border-radius: 1.25rem 0 0 1.25rem;
}
.list_solution .ul > li .text {
  color: #7B7B7B;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  margin: 1rem 0 1.75rem;
}
.list_solution .ul > li .padding {
  padding: 4.375rem 0 0;
}
.list_service .ul {
  margin: 0 -1.5625rem;
}
.list_service .ul li {
  padding: 0 1.5625rem;
  margin-bottom: 2.8125rem;
}
.list_service .ul li:hover .over img {
  transform: scale(1.1);
}
.list_service .ul li:hover > div {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_service .ul li .over,
.list_service .ul li .over img {
  border-radius: 1.25rem 1.25rem 0 0;
}
.list_service .ul li > div {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  border-radius: var(--bors);
  background: rgba(255, 255, 255, 0.47);
  box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.07);
}
.list_service .ul li .over img {
  height: 20.5rem;
  object-fit: cover;
}
.list_service .ul li .title {
  position: absolute;
  bottom: 1.375rem;
  left: 0;
  width: 100%;
  padding: 0 3.125rem;
  font-size: 2.5rem;
  font-weight: 500;
}
.list_service .ul li .content {
  padding: 2.5rem 2rem 3.4375rem;
}
.list_service .ul li .content .flex2 {
  justify-content: flex-start;
}
.list_service .ul li .content .flex2 > div:not(:last-child) {
  margin-right: 3rem;
}
.list_service .ul li .text {
  color: #7B7B7B;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  position: relative;
  padding-left: 1.125rem;
}
.list_service .ul li .text::before {
  content: "";
  position: absolute;
  top: 47%;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: #7B7B7B;
}
.list_bread .last ul li,
.list_tech ul li {
  padding: 0 1.25rem;
  text-align: center;
}
.list_bread .last ul li:hover > div,
.list_tech ul li:hover > div {
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_bread .last ul li:hover .icon img,
.list_tech ul li:hover .icon img {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transform: rotateY(180deg);
}
.list_bread .last ul li > div,
.list_tech ul li > div {
  padding: 4rem 2.5rem 2.5rem;
  border-radius: var(--bors);
  background: #FFF;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.05);
}
.list_bread .last ul li .icon,
.list_tech ul li .icon {
  width: 6.875rem;
  height: 6.875rem;
  border-radius: 50%;
  margin: 0 auto;
  background: #024FB1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_bread .last ul li .icon img,
.list_tech ul li .icon img {
  height: 2.9375rem;
  width: 2.9375rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_bread .last ul li .name,
.list_tech ul li .name {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  margin: 1rem 0 0.75rem;
  text-align: center;
}
.list_bread .last ul li .text,
.list_tech ul li .text {
  color: #7B7B7B;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  height: 6rem;
}
.list_tech ul {
  margin: 3.75rem -1.25rem 0;
}
.list_bread .top {
  align-items: flex-end;
}
.list_bread .name {
  font-size: 1.875rem;
  text-align: justify;
  font-weight: 400;
  line-height: 3.125rem;
  color: #7B7B7B;
}
.list_bread .bot {
  padding: 5.625rem 7.8125rem 0;
}
.list_bread .bot .hover {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}
.list_bread .last ul {
  margin: -5.625rem -1.25rem 0;
  align-items: baseline;
}
.list_news {
  padding-bottom: 4rem;
}
.list_news .content {
  border-radius: var(--bors);
  background: rgba(255, 255, 255, 0.47);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.07);
}
.list_news .data {
  color: #A0A0A0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.list_news .name {
  color: #5E5E5E;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 2rem;
  margin-top: 0.625rem;
}
.list_news .text {
  color: #7B7B7B;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  margin: 0.875rem 0 1.25rem;
}
.list_news .right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_news .right > div {
  padding: 0 3.125rem;
}
.list_news .over,
.list_news .over img {
  border-radius: 1.25rem 0 0 1.25rem;
}
.list_news .swiper-slide:hover .over img {
  transform: scale(1.1);
}
.list_news .swiper-slide:hover .name {
  color: #024FB1;
}
.list_news_two {
  padding-top: 4rem;
}
.list_news_two .ul {
  margin: 0 -1.25rem;
}
.list_news_two .ul li {
  padding: 0 1.25rem;
  margin-bottom: 2.5rem;
}
.list_news_two .ul li .content {
  padding: 1.375rem 1.5625rem 2.8125rem;
}
.list_news_two .ul li a {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  border-radius: var(--bors);
  background: rgba(255, 255, 255, 0.47);
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.1);
}
.list_news_two .ul li .data {
  color: #A0A0A0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.list_news_two .ul li .tag {
  border-radius: 3.125rem;
  line-height: 1.875rem;
  text-align: center;
  width: 5.625rem;
  color: #003B84;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #003B84;
  margin: 0.75rem 0 1.125rem;
}
.list_news_two .ul li .name {
  color: #5E5E5E;
  text-align: justify;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2rem;
}
.list_news_two .ul li .over,
.list_news_two .ul li .over img {
  border-radius: 1.25rem 1.25rem 0 0;
  height: 17.125rem;
  object-fit: cover;
}
.list_news_two .ul li:hover .over img {
  transform: scale(1.1);
}
.list_news_two .ul li:hover .name {
  color: #024FB1;
}
.list_news_two .ul li:hover > a {
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.15);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.show_news_top .padding,
.show_news_bot .padding {
  padding: 0 12.5rem;
}
.show_news_bot {
  padding: 5.5rem 0;
}
.show_news_bot .shangxia {
  padding-top: 2.5rem;
  border-top: 1px solid #D0D0D0;
  margin-top: 4.6875rem;
  color: #404040;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.show_news_bot .shangxia svg {
  height: 0.625rem;
}
.show_news_bot .shangxia > div,
.show_news_bot .shangxia > a {
  display: flex;
  align-items: center;
}
.show_news_bot .shangxia > div:hover,
.show_news_bot .shangxia > a:hover {
  color: #024FB1;
}
.show_news_bot .shangxia > div:hover svg path,
.show_news_bot .shangxia > a:hover svg path {
  stroke: #024FB1;
}
.show_news_bot .shangxia .shang svg {
  margin-right: 1rem;
}
.show_news_bot .shangxia .xia svg {
  margin-left: 1rem;
}
.show_news_top {
  padding: 4rem 0 5rem;
}
.show_news_top .tag {
  border-radius: 3.125rem;
  line-height: 1.875rem;
  text-align: center;
  width: 5.625rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #fff;
  margin: 0.75rem 0 1.125rem;
}
.show_news_top .name {
  color: #FFF;
  font-size: 2.875rem;
  font-weight: 500;
  line-height: 3.6rem;
}
.show_news_top .data {
  display: flex;
  justify-content: space-between;
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.125rem;
  margin-top: 0.625rem;
}
.show_news_top .data .fenxiang .social-share li {
  width: 2.125rem;
  height: 2.125rem;
}
.show_news_top .data .fenxiang .social-share li a {
  line-height: 1;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.show_news_top .data .fenxiang .social-share li:hover a {
  background: #fff;
  color: #024FB1;
}
.list_join .name {
  color: #737373;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.5rem;
  margin-top: 1.5625rem;
}
.list_join .job-a1b1 li {
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  .list_join .job-a1b1 li {
    margin-top: 1.5rem;
  }
}
.list_join .job-a1b1 li i {
  display: block;
  font-size: 0;
  width: 55.14285714%;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .list_join .job-a1b1 li i {
    width: 100%;
    border-radius: 1rem;
  }
}
.list_join .job-a1b1 li i img {
  width: 100%;
}
.list_join .job-a1b1 li .cont-p {
  width: 36.57142857%;
}
@media (max-width: 768px) {
  .list_join .job-a1b1 li .cont-p {
    width: 100%;
    margin-top: 1rem;
  }
}
.list_join .job-a1b1 li .cont-p .tit {
  color: #555555;
  font-size: 2rem;
  line-height: 1.5em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .list_join .job-a1b1 li .cont-p .tit {
    font-size: 1.5rem;
  }
}
.list_join .job-a1b1 li .cont-p .p {
  color: #555;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .list_join .job-a1b1 li .cont-p .p {
    font-size: 1rem;
  }
}
.list_join .job-a1b1 li:nth-child(2n) i {
  -webkit-order: 1;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (max-width: 768px) {
  .list_join .job-a1b1 li:nth-child(2n) i {
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}
.job-cont2 {
  background: #F7F7F7;
  padding: 5rem 0;
}
.job-cont2 ul li img {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.job-cont2 ul li:hover img {
  transform: rotateY(180deg);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
@media (max-width: 768px) {
  .job-cont2 {
    padding: 2rem 0;
  }
}
.job-cont2 .lx-a2list1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .job-cont2 .lx-a2list1 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
  }
}
.job-cont2 .lx-a2list1 li {
  text-align: center;
}
.job-cont2 .lx-a2list1 li i {
  display: block;
  font-size: 0;
  width: 6.0625rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .job-cont2 .lx-a2list1 li i {
    width: 4rem;
  }
}
.job-cont2 .lx-a2list1 li i img {
  width: 100%;
}
.job-cont2 .lx-a2list1 li .tit {
  color: #323232;
  font-size: 1.5rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .job-cont2 .lx-a2list1 li .tit {
    font-size: 1.125rem;
  }
}
.job-cont3 {
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .job-cont3 {
    padding: 2rem 0;
  }
}
.job-cont3 .sslaz {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .job-cont3 .sslaz {
    margin-top: 0;
  }
}
.job-cont3 .sslaz .dts1 {
  width: 31.42857143%;
}
@media (max-width: 768px) {
  .job-cont3 .sslaz .dts1 {
    width: 100%;
    margin-top: 1rem;
  }
}
.job-cont3 .sslaz .dts1 .weha-a {
  color: #484848;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 0.5rem;
}
.job-cont3 .sslaz .dts1 .weha-a span {
  color: #D83D15;
}
.job-cont3 .sslaz .dts1 select {
  border: 1px solid #ADABAB;
  color: #ADABAB;
  font-size: 1rem;
  line-height: 3.125rem;
  height: 3.125rem;
  width: 100%;
  border-radius: 0.375rem;
  padding: 0 1em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/jtax.svg) no-repeat 96% center #fff;
  -o-background-size: 1.25rem auto;
  background-size: 1.25rem auto;
}
.job-cont3 .sslaz .dts1 .sskz {
  width: 100%;
  border: 1px solid #ADABAB;
  border-radius: 0.625rem;
  overflow: hidden;
}
.job-cont3 .sslaz .dts1 .sskz input {
  width: -webkit-calc(95.625%);
  width: -moz-calc(95.625%);
  width: calc(100% - 4.375rem);
  color: #ADABAB;
  font-size: 1rem;
  line-height: 3.125rem;
  height: 3.125rem;
  padding: 0 1em;
}
.job-cont3 .sslaz .dts1 .sskz input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #ADABAB;
}
.job-cont3 .sslaz .dts1 .sskz input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #ADABAB;
}
.job-cont3 .sslaz .dts1 .sskz input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #ADABAB;
}
.job-cont3 .sslaz .dts1 .sskz input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ADABAB;
}
.job-cont3 .sslaz .dts1 .sskz button {
  width: 4.375rem;
  border: none;
  background: transparent;
}
.job-cont3 .sslaz .dts1 .sskz button i {
  font-size: 1.125rem;
  line-height: 3.125rem;
  color: #595757;
}
.job-cont3 .job-list1a {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
  margin-top: 2.6rem;
}
.job-cont3 .job-list1a li:hover {
  cursor: pointer;
}
@media (max-width: 768px) {
  .job-cont3 .job-list1a {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 1.25rem;
  }
}
.job-cont3 .job-list1a li {
  border-radius: 1.25rem;
  background: #F7F7F7;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.job-cont3 .job-list1a li:hover {
  box-shadow: 0px 0px 0.875rem 0px rgba(0, 0, 0, 0.15);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.job-cont3 .job-list1a li .cont-sdsd {
  padding: 2rem 8%;
}
@media (max-width: 768px) {
  .job-cont3 .job-list1a li .cont-sdsd {
    padding: 1.5rem 6%;
  }
}
.job-cont3 .job-list1a li .cont-sdsd .name {
  color: #3E3A39;
  font-size: 1.375rem;
  line-height: 1.5em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .job-cont3 .job-list1a li .cont-sdsd .name {
    font-size: 1.25rem;
  }
}
.job-cont3 .job-list1a li .cont-sdsd .cont-ax1 {
  padding: 1.5rem 0 2rem;
}
@media (max-width: 768px) {
  .job-cont3 .job-list1a li .cont-sdsd .cont-ax1 {
    padding: 1rem 0 1.5rem;
  }
}
.job-cont3 .job-list1a li .cont-sdsd .cont-ax1 .p {
  padding-right: 2.5rem;
}
@media (max-width: 768px) {
  .job-cont3 .job-list1a li .cont-sdsd .cont-ax1 .p {
    padding-right: 1rem;
  }
}
.job-cont3 .job-list1a li .cont-sdsd .cont-ax1 .p + .p {
  border-left: 1px solid #CDCDCD;
  padding-left: 2.5rem;
}
@media (max-width: 768px) {
  .job-cont3 .job-list1a li .cont-sdsd .cont-ax1 .p + .p {
    padding-left: 1rem;
  }
}
.job-cont3 .job-list1a li .cont-sdsd .cont-ax1 .p b {
  color: #3E3A39;
  font-size: 1rem;
  line-height: 2rem;
  display: block;
  font-weight: 500;
}
.job-cont3 .job-list1a li .cont-sdsd .cont-ax1 .p p {
  color: #888887;
  font-size: 1rem;
  line-height: 1.5em;
  display: block;
}
.layui-layer.job-tanc {
  width: 42.65625% !important;
  border-radius: 1.25rem;
  background: #FFF;
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.05);
  padding: 2rem 2rem 1.5rem;
}
@media (max-width: 768px) {
  .layui-layer.job-tanc {
    width: 92% !important;
    padding: 1.5rem 1.5rem 0;
    border-radius: 1rem;
  }
}
.layui-layer.job-tanc .layui-layer-close {
  right: 2rem;
  top: 1.5rem;
  background: none;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  width: 1.875rem;
  height: 1.875rem;
}
@media (max-width: 768px) {
  .layui-layer.job-tanc .layui-layer-close {
    top: 0.5rem;
    right: 1rem;
  }
}
.hidden {
  display: none;
}
.layui-layer.job-tanc .layui-layer-close::before {
  content: "\e624";
  font-family: "iconfont" !important;
  font-size: 2rem;
  display: block;
}
.layui-layer.job-tanc .layui-layer-close:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.layui-layer.job-tanc .pead-cont > dt {
  color: #3E3A39;
  font-size: 1.875rem;
  margin-bottom: 1rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .layui-layer.job-tanc .pead-cont > dt {
    font-size: 1.5rem;
  }
}
.layui-layer.job-tanc .pead-cont .asghrt1 {
  background: #F5F5F5;
  border-radius: 1rem;
  padding: 1rem;
}
.layui-layer.job-tanc .pead-cont .asghrt1 .p {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  -webkit-flex: auto;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
@media (max-width: 768px) {
  .layui-layer.job-tanc .pead-cont .asghrt1 .p {
    -webkit-flex: none;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
    margin-bottom: 1rem;
  }
}
.layui-layer.job-tanc .pead-cont .asghrt1 .p + .p {
  border-left: 1px solid #CDCDCD;
}
@media (max-width: 768px) {
  .layui-layer.job-tanc .pead-cont .asghrt1 .p:nth-child(2n-1) {
    border-left: none !important;
  }
}
.layui-layer.job-tanc .pead-cont .asghrt1 .p b {
  color: #3E3A39;
  font-size: 1rem;
  line-height: 1.5em;
  display: block;
  font-weight: 500;
}
.layui-layer.job-tanc .pead-cont .asghrt1 .p p {
  color: #888887;
  font-size: 1rem;
  line-height: 1.5em;
  display: block;
}
.layui-layer.job-tanc .pead-cont .p2 dl {
  margin-top: 1.5rem;
}
.layui-layer.job-tanc .pead-cont .p2 dl dt {
  color: #3E3A39;
  font-size: 1.125rem;
  line-height: 1.5em;
}
.layui-layer.job-tanc .pead-cont .p2 dl .pd {
  color: #888887;
  font-size: 1rem;
  line-height: 1.65em;
  margin-top: 0.5rem;
}
.layui-layer.job-tanc .pead-cont .p3 {
  color: #024FB1;
  font-size: 1.125rem;
  line-height: 1.5em;
  border-top: 1px solid #CDCDCD;
  margin-top: 1rem;
  padding: 1rem 0;
}
.layui-layer.job-tanc .pead-cont .p3 a {
  color: #024FB1;
}
.layui-layer.job-tanc .pead-cont .p3 img {
  height: 1.625rem;
  margin-right: 0.5rem;
}
.list_contact .left {
  width: 37.5%;
}
.list_contact .left .name {
  color: #666;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.25rem;
  margin-bottom: 1.5rem;
}
.list_contact .left ul li {
  display: flex;
  align-items: center;
}
.list_contact .left ul li:hover .con,
.list_contact .left ul li:hover a {
  color: #f08200;
}
.list_contact .left ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.list_contact .left ul li .icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #024FB1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_contact .left ul li .icon img {
  height: 1.25rem;
}
.list_contact .left ul li .con {
  width: calc(100% - 2.5rem);
  padding-left: 0.8125rem;
  color: #666;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.25rem;
}
.list_contact .right {
  width: 62.5%;
}
.list_contact .right img {
  height: 22.5rem;
  object-fit: cover;
}
.msg-cont4 {
  padding: 4.5rem 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .msg-cont4 {
    padding: 2rem 0;
  }
}
@media (max-width: 768px) {
  .msg-cont4 form {
    margin-top: 1rem;
  }
}
.msg-cont4 form label {
  margin-bottom: 0;
}
.msg-cont4 form .m_label1 {
  color: #484848;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.msg-cont4 form .m_label1 span {
  color: #E50012;
  margin-right: 0.375rem;
}
.msg-cont4 form .msg-a1 .inpt {
  width: 47.92857143%;
  margin-top: 1.75rem;
}
@media (max-width: 768px) {
  .msg-cont4 form .msg-a1 .inpt {
    width: 100%;
    margin-top: 20px;
  }
}
.msg-cont4 form .msg-a1 .inpt input {
  border: 1px solid #ADABAB;
  background: #fff;
  width: 100%;
  color: #ADABAB;
  font-size: 1rem;
  line-height: 3.75rem;
  padding: 0 2.125rem;
  font-weight: 500;
  border-radius: 5rem;
  color: #4e4e4e;
}
.msg-cont4 form .msg-a1 .inpt input::placeholder {
  color: #ADABAB;
}
@media (max-width: 768px) {
  .msg-cont4 form .msg-a1 .inpt input {
    line-height: 45px;
  }
}
.msg-cont4 form .msg-a2 .msg-a2-ca1 {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .msg-cont4 form .msg-a2 .msg-a2-ca1 {
    margin-top: 0.25rem;
  }
}
.msg-cont4 form .msg-a2 .msg-a2-ca1 label {
  color: #484848;
  font-size: 1rem;
  line-height: 1.5em;
  margin-right: 1.5rem;
}
.msg-cont4 form .msg-a2 .msg-a2-ca1 label input {
  margin-right: 0.25rem;
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid #CECBCB;
  -webkit-transform: translateY(0.1em);
  -moz-transform: translateY(0.1em);
  -ms-transform: translateY(0.1em);
  -o-transform: translateY(0.1em);
  transform: translateY(0.1em);
}
.msg-cont4 form .msg-a3 {
  margin-top: 1.75rem;
}
@media (max-width: 768px) {
  .msg-cont4 form .msg-a3 {
    margin-top: 0.75rem;
  }
}
.msg-cont4 form .msg-a3 textarea {
  border: 1px solid #ADABAB;
  background: #fff;
  width: 100%;
  color: #4e4e4e;
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0.75em 2.125rem;
  border-radius: 1.25rem;
  height: 8.125rem;
  font-weight: 500;
}
.msg-cont4 form .msg-a3 textarea::placeholder {
  color: #ADABAB;
}
.msg-cont4 form .div_aghgha {
  margin-top: 2.25rem;
}
@media (max-width: 768px) {
  .msg-cont4 form .div_aghgha {
    margin-top: 1rem;
  }
}
.msg-cont4 form .div_aghgha button {
  border: none;
}
.list_tech_two .name {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}
.list_tech_two .text {
  color: #7B7B7B;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  margin-top: 0.625rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_tech_two .right {
  display: flex;
  align-items: center;
}
.list_tech_two ul li {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.list_tech_two ul li.active .text {
  height: 4rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_tech_two ul {
  padding: 0 2.5rem 0 1.25rem;
}
.list_tech_two .over,
.list_tech_two .over img {
  border-radius: 1.25rem 0 0 1.25rem;
}
.list_tech_two .content {
  margin-top: 3.75rem;
  border-radius: var(--bors);
  background: rgba(255, 255, 255, 0.47);
  box-shadow: 0px 0px 6.25rem 0px rgba(0, 0, 0, 0.07);
}
.list_download .left .name {
  color: #555;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 4.375rem;
}
.list_download .left .ul1 li.active > a div,
.list_download .left .ul1 li.active > a p .iconfont {
  color: #024FB1;
}
.list_download .left .ul1 li > a {
  display: flex;
  align-items: center;
}
.list_download .left .ul1 li > a div {
  width: 60%;
  color: #555;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 4.375rem;
}
.list_download .left .ul1 li > a p {
  width: 40%;
}
.list_download .left .ul1 li > a p img {
  height: 0.5rem;
  width: 0.75rem;
}
.list_download .left .ul1 li.active ul {
  display: block;
}
.list_download .left .ul1 li ul {
  display: none;
  padding-left: 1.5625rem;
}
.list_download .left .ul1 li ul li {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 3.125rem;
}
.list_download .left .ul1 li ul li a {
  color: #555;
  padding-left: 1.25rem;
  position: relative;
}
.list_download .left .ul1 li ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  background: #555555;
  border-radius: 50%;
}
.list_download .left .ul1 li ul li:hover a,
.list_download .left .ul1 li ul li.active a {
  color: #024FB1;
}
.list_download .left .ul1 li ul li:hover a::before,
.list_download .left .ul1 li ul li.active a::before {
  background: #024FB1;
}
.list_download .right {
  position: relative;
  margin-top: -2rem;
}
.list_download .right .ul {
  margin: 3.4375rem -1.25rem 0;
}
.list_download .right .ul li {
  padding: 0 1.25rem;
  margin-bottom: 2.5rem;
}
.list_download .right .ul li:hover a {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_download .right .ul li a {
  display: flex;
  align-items: center;
  border-radius: var(--bors);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  background: #F7F7F7;
  padding: 4.375rem 3rem 4.375rem 4rem;
  height: 100%;
}
.list_download .right .ul li a .l {
  width: 4.1875rem;
}
.list_download .right .ul li a .r {
  width: calc(100% - 4.1875rem);
  padding-left: 2.8125rem;
}
.list_download .right .ul li a .r .name {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.875rem;
}
.list_download .right .ul li a .r .data {
  color: #515151;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin-top: 0.5rem;
}
.list_dzkf .padding {
  padding: 0 12.5rem;
}
.list_dzkf .font24 {
  color: #515151;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.5rem;
  margin: 2.5rem 0 1.875rem;
}
.list_dzkf .more {
  width: auto;
  padding: 0 3.25rem;
  margin-bottom: 6.25rem;
}
.list_dzkf .more div {
  font-size: 1.5rem;
}
.fp-is-overflow .fp-overflow.fp-auto-height-responsive,
.fp-is-overflow .fp-overflow.fp-auto-height,
.fp-is-overflow > .fp-overflow {
  overflow-y: hidden;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.zd_erha {
  position: fixed;
  right: 1rem;
  bottom: 3.125rem;
  z-index: 999;
}
.zd_erha .aat_list {
  width: 2.875rem;
  border-radius: 3rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .zd_erha .aat_list {
    display: none;
  }
}
.zd_erha .aat_list li {
  position: relative;
  margin-bottom: 0.625rem;
}
.zd_erha .aat_list li:hover > a {
  background: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
}
.zd_erha .aat_list li:hover > a img {
  filter: brightness(1) invert(0);
}
.zd_erha .aat_list li > a {
  display: block;
  width: 100%;
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  position: relative;
  background: #f08200;
}
.zd_erha .aat_list li > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -18%;
  width: 18%;
  height: 100%;
}
.zd_erha .aat_list li > a i {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.zd_erha .aat_list li > a i img {
  width: 1.625rem;
  filter: brightness(0) invert(1);
}
.zd_erha .aat_list li > a p {
  color: #116AAF;
  font-size: 0.75rem;
  line-height: 1.25em;
  text-align: center;
  padding: 0.25em 0;
}
.zd_erha .aat_list li .erghgsa {
  position: absolute;
  z-index: -1;
  padding: 0.25em;
  width: auto;
  text-align: center;
  right: calc(110% + 5px);
  top: 10%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(110%);
  transition: all 0.7s;
  box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
  color: #333;
  font-size: 1rem;
  background: #fff;
  border-radius: 0.4rem;
  white-space: nowrap;
}
.zd_erha .aat_list li .erghgsa.aa {
  padding: 0.75rem;
  top: 0 !important;
}
.zd_erha .aat_list li .erghgsa.tl {
  text-align: left;
  top: -1rem;
}
.zd_erha .aat_list li .erghgsa strong {
  color: #024FB1;
}
.zd_erha .aat_list li .erghgsa img {
  width: 6.25rem;
  height: 6.25rem;
  max-width: 6.25rem;
}
.zd_erha .aat_list li .erghgsb {
  width: 7rem;
  padding: 0.3rem;
}
.zd_erha .aat_list li .erghgsb img {
  width: 100%;
}
.zd_erha .aat_list li:hover .erghgsa {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sjj_nav .bot > li .list .right {
  width: 90%;
}
.sjj_nav .bot > li .list .right a {
  color: #818181;
}
