<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* 这个css是初始化的css，在任何项目里面都可以使用 */
/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
}
body {
  --header_h: 6.25rem;
  --container: 14.8125rem;
  outline: none;
  font-weight: 500;
}
.p_top {
  position: absolute;
  top: -6.25rem;
}
.bg {
  background: #0E6FB7;
}
.c {
  color: #0E6FB7;
}
.phone_show_990,
.phone_show_767 {
  display: none;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 0 0;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .pagination {
    margin: 0 0 0;
  }
}

.pagination &gt; li {
  display: inline;
}

.pagination a, .pagination span {
  position: relative;
  float: left;
  margin-left: -1px;
  line-height: 2.375rem;
  color: #939393;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  margin: 0 0.2rem;
}

.pagination &gt; li:first-child &gt; a, .pagination &gt; li:first-child &gt; span {
  margin-left: 0;
  line-height: 2.1;
}

.pagination &gt; li:last-child &gt; a, .pagination &gt; li:last-child &gt; span {
  line-height: 2.1;
}

.pagination &gt; li &gt; a:focus, .pagination &gt; li &gt; a:hover, .pagination &gt; li &gt; span:focus, .pagination &gt; li &gt; span:hover {
  z-index: 2;
  color: #0E6FB7;
  background-color: #eee;
  border-color: #ddd;
}

.pagination a.page-num-current, .pagination a.page-num-current:focus, .pagination a.page-num-current:hover, .pagination &gt; .active &gt; span, .pagination &gt; .active &gt; span:focus, .pagination &gt; .active &gt; span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #0E6FB7;
  border-color: #0E6FB7;
  vertical-align: middle;
}

.pagination &gt; .disabled &gt; a, .pagination &gt; .disabled &gt; a:focus, .pagination &gt; .disabled &gt; a:hover, .pagination &gt; .disabled &gt; span, .pagination &gt; .disabled &gt; span:focus, .pagination &gt; .disabled &gt; span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg a, .pagination-lg span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.pagination-lg &gt; li:first-child &gt; a, .pagination-lg &gt; li:first-child &gt; span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pagination-lg &gt; li:last-child &gt; a, .pagination-lg &gt; li:last-child &gt; span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm a, .pagination-sm &gt; li &gt; span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.pagination-sm &gt; li:first-child &gt; a, .pagination-sm &gt; li:first-child &gt; span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination-sm &gt; li:last-child &gt; a, .pagination-sm &gt; li:last-child &gt; span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 2.6875rem 0;
  text-align: center;
  list-style: none;
}

@media (max-width: 768px) {
  .pager {
    margin: 1.5rem 0;
  }
}

.pager li {
  display: inline;
}

.pager  a, .pager span {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 2.375rem;
  height: 2.375rem;
}

.pager a:focus, .pager a:hover {
  text-decoration: none;
  background-color: #eee;
}

.pager .next &gt; a, .pager .next &gt; span {
  float: right;
}

.pager .previous &gt; a, .pager .previous &gt; span {
  float: left;
}

.pager .disabled &gt; a, .pager .disabled &gt; a:focus, .pager .disabled &gt; a:hover, .pager .disabled &gt; span {
  color: #939393;
  cursor: not-allowed;
  background-color: transparent;
}

.pagination {
  display: flex;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination &gt; 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 &gt; li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pagination &gt; li.active,
.pagination &gt; li:hover {
  background: #0E6FB7;
  color: #fff;
}
.pagination &gt; li.active a,
.pagination &gt; li:hover a {
  color: #fff;
}
.pagination &gt; li.disabled:hover {
  color: #333;
  background: #FFF;
}
.foot-fot {
  background: #004385;
}
/* 禁止缩放表单 */
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: #0E6FB7;
}
.search_more:hover::before {
  background: #0E6FB7;
}
.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;
}
.line5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  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: 12rem;
  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;
  padding: 0 0;
}
.er-ul li:first-child {
    padding-top: 1rem;
}.er-ul li:last-child {
    padding-bottom: 1rem;
}
.er-ul ul {
  display: flex;
  justify-content: center;
}
.er-ul ul li {
  padding: 0 2rem;
}
.er-ul li {
  line-height: 2.25rem;
  text-align: center;
  font-size: 0.875rem;
}
.er-ul li a {
  color: #565656;
}
.er-ul li:hover a {
  color: #0E6FB7;
}
 
header .center &gt; ul &gt; li:hover .er-ul {
  transform: scaleY(1) translateX(-50%);
  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 &gt; li &gt; a {
  font-size: 14px;
  padding: 10px 0;
  color: #fff;
}
.phone_weibu .mobMenu &gt; li {
  border-bottom: #424245 1px solid;
}
.phone_weibu .mobMenu &gt; li &gt; .subDepth &gt; li &gt; a {
  font-size: 1em;
  color: #9a9797;
  line-height: 28px;
}
.phone_weibu .mobMenu &gt; li &gt; a::before {
  background-color: #fff;
}
.phone_weibu .mobMenu &gt; li &gt; a::after {
  background-color: #fff;
}
.phone_weibu .mobMenu &gt; li &gt; .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;
  }
}
.container {
  padding: 0 var(--container);
  width: 100%;
  max-width: 100%;
}
.container.container_l {
  padding: 0 0 0 var(--container);
}
.container.container_r {
  padding: 0 var(--container) 0 0;
}
/* 搜索 */
.search {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* background: #000; */
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
}
.search-box {
  width: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25%;
}
.inp {
  width: 100%;
  height: 6.25rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}
.inp::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.bu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  z-index: 9999;
}
.bu .iconfont {
  font-size: 3.125rem;
}
.search-con {
  position: absolute;
  right: 7%;
  top: 7%;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.search-con .iconfont {
  font-size: 2.125rem;
  font-weight: 100;
}
.ds {
  cursor: pointer;
}
.fenxiang .flex {
  justify-content: flex-start;
}
.fenxiang .social-share li {
  float: left;
  margin-right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.375rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
}
.fenxiang .social-share li a {
  margin: 0 !important;
  width: 100%;
  height: 100%;
  line-height: 2.375rem;
  color: rgba(0, 0, 0, 0.5) !important;
  border: none !important;
  font-size: 1rem;
}
.serbtn {
  background: #0E6FB7;
}
.searchbox {
  border-color: #0E6FB7;
}
@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 &gt; li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.m-bm-nav &gt; li &gt; a {
  display: block;
  line-height: 50px;
  font-size: 14px;
  color: #fff;
  font-family: "sourcehansans";
  padding: 0 15px;
  font-weight: 600;
}
.m-bm-nav &gt; li &gt; a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "sourcehansans";
  font-weight: 500;
}
.m-bm-nav &gt; li .sec {
  display: none;
  padding: 10px 15px;
  padding-left: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.m-bm-nav &gt; li .sec a {
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 35px;
}
.m-bm-nav &gt; 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 &gt; li,
.m-bm-head.white .m-bm-nav &gt; li .sec {
  border-color: rgba(51, 51, 51, 0.1);
}
.m-bm-head.white .m-bm-nav &gt; li &gt; a,
.m-bm-head.white .m-bm-nav .aniut i,
.m-bm-head.white .m-bm-nav &gt; 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: #0E6FB7;
}
.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: #0E6FB7;
  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;
  border-bottom: 1px solid #ddd;
}
.phone.white {
  background: #fff;
}
.phone.white .left img {
  filter: brightness(0);
}
@media (max-width: 767px) {
  .phone {
    padding: 0 15px;
  }
}
.phone &gt; .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 &gt; ul &gt; li:first-child {
  overflow: hidden;
  border-top: 0;
}
.sjj_nav &gt; ul &gt; li:first-child &gt; a {
  width: 60%;
}
.sjj_nav &gt; ul &gt; li:first-child .language {
  width: 100%;
  overflow: hidden;
  line-height: 30px;
  margin-top: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
}
.sjj_nav &gt; ul &gt; 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 &gt; ul &gt; li:first-child .language a.active {
  background: #0E6FB7;
  color: #fff !important;
}
.sjj_nav &gt; ul &gt; 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 &gt; ul &gt; 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: #0E6FB7;
}
.sjj_nav ul li ul li &gt; 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(1);
  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 &gt; li:first-child {
  margin-bottom: 34px;
}
.sjj_nav .bot &gt; 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 &gt; li:first-child button {
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 28px;
  height: 100%;
  border: none;
}
.sjj_nav .bot &gt; li:first-child button .iconfont {
  position: static;
  text-align: center;
  color: #a7a7a7;
  font-size: 14px;
  padding: 0;
  border: none;
}
.sjj_nav .bot &gt; li {
  font-size: 18px;
  line-height: 20px;
  color: #a7a7a7;
  border-bottom: none !important;
  margin-bottom: 30px;
}
.sjj_nav .bot &gt; li &gt; ul {
  padding-left: 1.25rem;
}
.sjj_nav .bot &gt; li &gt; div &gt; a {
  width: calc(100% - 3.75rem);
}
.sjj_nav .bot &gt; li &gt; a {
  display: inline-block;
}
.sjj_nav .bot &gt; li img {
  height: 30px;
}
.sjj_nav .bot &gt; li .list .left {
  width: 100%;
  font-size: 14px;
  line-height: 38px;
  letter-spacing: 0.9px;
  color: #EBEBEC;
  float: left;
}
.sjj_nav .bot &gt; li .list .left a {
  color: #EBEBEC;
}
.sjj_nav .bot &gt; li .list .right.w100 {
  width: 100%;
  float: none;
  padding-bottom: 20px;
}
.sjj_nav .bot &gt; li .list .right {
  width: 80%;
  float: right;
  font-size: 14px;
  color: #EBEBEC;
  line-height: 20px;
}
.sjj_nav .bot &gt; li .list .right a {
  color: #EBEBEC;
  margin-bottom: 18px;
}
.sjj_nav .bot &gt; li ul {
  margin-top: 20px;
}
.sjj_nav .bot &gt; li &gt; div {
  color: #a7a7a7;
  position: relative;
  padding-bottom: 8px;
  line-height: 1.875rem;
  display: flex;
  align-items: center;
}
.sjj_nav .bot &gt; li &gt; div &gt; a {
  color: #a7a7a7;
}
.sjj_nav .bot &gt; li &gt; div .iconfont {
  width: 3.75rem;
  text-align: right;
  display: block;
  font-size: 1rem;
}
.sjj_nav .bot &gt; li &gt; 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 &gt; li:hover &gt; a::before,
.sjj_nav .bot &gt; li.active &gt; 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 {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  right: 0.875rem;
  width: auto;
  box-shadow: none;
  border: none;
  background: transparent;
}
.rightfix li.fixright_li_last {
  display: none  ;
}
.rightfix li.fixright_li_last .icon {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rightfix li {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  margin-bottom: 1.25rem;
  background: #0E6FB7;
}
.rightfix li.douyin .right_div {
  min-width: 7.5rem !important;
  padding: 5px;
}
.rightfix li .right_div {
  line-height: 3.375rem;
  min-height: 3.375rem;
}
.rightfix li:hover {
  background: #039743;
}
.rightfix li .icon {
  padding-top: 2px;
}
.rightfix li .icon p {
  line-height: 1rem;
  color: #fff;
  margin-top: 0.3125rem;
  font-size: 0.75rem;
}
.rightfix li .icon img {
  height: 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;
  margin-bottom: 4px;
}
.rightfix li .iconfont {
  font-size: 1.375rem;
  display: block;
  color: #fff;
  border-radius: 50%;
  background: #0074CA;
}
.rightfix li:hover .iconfont {
  background: #ec8402;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.rightfix li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: #DEDDDD;
  width: 1.1875rem;
}
.rightfix li:last-child::before {
  display: none;
}
.right_div.img {
  min-width: 7.5rem !important;
}
.right_div.img img {
  height: 7.5rem;
  object-fit: contain;
}
@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-moz-keyframes sticky {
  0% {
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -moz-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-o-keyframes sticky {
  0% {
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
header {
  position: fixed;
  line-height: 6.25rem;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.04);
}
@media (max-width: 990px) {
  header {
    display: none;
  }
}
header &gt; .container {
  padding: 0 5rem;
}
header:hover,
header.active {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.04);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header .tel {
  margin-left: 2.5rem;
}
header .tel img {
  margin-right: 0.5rem;
}
header.active {
  animation: sticky 0.65s;
}
header .ds img,
header .lanuage img,
header .tel img {
  height: 1.25rem;
}
header .lanuage {
  position: relative;
  margin-right: 1.25rem;
  margin-left: 1.875rem;
}
header .lanuage:hover ul {
  transform: scaleY(1) translateX(0%);
  opacity: 1;
}
header .lanuage ul {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 0.625rem;
  transition: 400ms ease-in-out;
  transform: scaleY(0) translateX(0%);
  transform-origin: top center;
  opacity: 0;
}
header .lanuage ul li {
  line-height: 1.875rem;
  text-align: center;
}
header .lanuage ul a {
  font-size: 0.875rem;
  display: block;
  text-align: center;
}
header .lanuage ul a:hover {
  color: #0E6FB7;
}
header .lanuage img:nth-child(1) {
  margin-right: 0.375rem;
}
header .lanuage img:nth-child(2) {
  margin-left: 0.875rem;
}
header .lanuage a {
  display: flex;
  align-items: center;
  color: #424242;
  font-size: 1rem;
}
header.active .center &gt; ul &gt; li:hover &gt; a,
header:hover .center &gt; ul &gt; li:hover &gt; a,
header.active .center &gt; ul &gt; li.active &gt; a,
header:hover .center &gt; ul &gt; li.active &gt; a {
  color: #0E6FB7;
}
header.active .center &gt; ul &gt; li:hover &gt; a::before,
header:hover .center &gt; ul &gt; li:hover &gt; a::before,
header.active .center &gt; ul &gt; li.active &gt; a::before,
header:hover .center &gt; ul &gt; li.active &gt; a::before {
  background: #0E6FB7;
}
header .logo img {
  height: 4rem;
}
header .ds .iconfont {
  font-size: 1.25rem;
  display: block;
  color: #424242;
}
header .tel {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  color: #282828;
}
header .center &gt; ul &gt; li {
  float: left;
  padding: 0 1.25rem;
  position: relative;
}
header .center &gt; ul &gt; li &gt; a {
  font-size: 1.125rem;
  color: #424242;
  position: relative;
  padding: 0 0.5rem;
}
header .center &gt; ul &gt; li &gt; a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #0E6FB7;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header .center &gt; ul &gt; li:hover &gt; a,
header .center &gt; ul &gt; li.active &gt; a {
  color: #0E6FB7;
}
header .center &gt; ul &gt; li:hover &gt; a::before,
header .center &gt; ul &gt; li.active &gt; a::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
@-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);
  }
}
.banner .hover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
.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 .p1 {
  font-weight: bold;
  font-size: 3.125rem;
  line-height: 4.375rem;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
}
.banner .swiper-button-next,
.banner .swiper-button-prev {
  background-size: 2.25rem 2.25rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.banner .swiper-button-next {
  right: -5rem;
}
.banner .swiper-button-prev {
  left: -5rem;
}
.banner:hover .swiper-button-next {
  right: 5.625rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.banner:hover .swiper-button-prev {
  left: 5.625rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.banner .hover2 {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 9;
}
.banner .hover2 p {
  font-size: 1rem;
  color: #FFFFFF;
  writing-mode: vertical-rl;
  margin-top: 0.9375rem;
  cursor: pointer;
}
.banner .swiper_pag1 {
  position: static;
}
.banner .swiper_pag1 .swiper-pagination-bullet {
  width: 0.3125rem;
  height: 0.3125rem;
  opacity: 1;
  border-radius: 50%;
  display: block;
  background: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  margin: 0 auto 0.375rem;
}
.banner .swiper_pag1 .swiper-pagination-bullet-active {
  height: 2rem;
  border-radius: 1.875rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.banner .swiper-slide img {
  height: calc(100vh - 6.25rem);
  object-fit: cover;
}
.swiper_pag {
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper_pag .swiper-pagination-bullet {
  margin: 0 0.375rem;
  width: 8px;
  height: 8px;
  opacity: 1;
  border-radius: 50%;
  display: block;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  margin: 0 auto 0.375rem;
  background: #616161;
}
.swiper_pag .swiper-pagination-bullet-active {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  background: #0E6FB7;
}
.title {
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 3.125rem;
  color: #000000;
}
.text {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #5B5B5B;
}
.more {
  font-size: 1rem;
  text-transform: uppercase;
  color: #686868;
  display: inline-block;
}
.more.cff p {
  color: #fff;
}
.more.cff:hover div div {
  background: #fff;
}
.more.cff:hover div div .iconfont {
  color: #0E6FB7;
}
.more.cff:hover p {
  color: #fff;
}
.more.cff div div {
  border-color: #fff;
}
.more.cff div div .iconfont {
  color: #fff;
}
.more &gt; div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.more &gt; div div {
  width: 3.4375rem;
  height: 3.4375rem;
  border-radius: 50%;
  border: 1px solid #008BD5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.875rem;
}
.more &gt; div div .iconfont {
  font-size: 1.25rem;
  display: block;
  color: #0E6FB7;
}
.more:hover div &gt; div {
  background: #0E6FB7;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.more:hover div &gt; div .iconfont {
  color: #fff;
}
.more:hover div p {
  color: #0E6FB7;
}
.more a {
  color: #686868;
}
.number_ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.number_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;
}
.number_ul li .icon {
  margin-bottom: 0.875rem;
}
.number_ul li .icon img {
  height: 5rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.number_ul li .num {
  line-height: 1;
  position: relative;
  text-align: left;
}
.number_ul li .num span {
  color: #0E6FB7;
  font-size: 2.75rem;
}
.number_ul li .num sub {
  color: #0E6FB7;
  font-size: 1.25rem;
  bottom: 0;
  margin-left: -0.125rem;
  position: relative;
}
.number_ul li .num sub sub {
  top: -0.25rem;
  margin-left: -4px;
}
.number_ul li .num i {
  color: #0E6FB7;
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: 0.8rem;
}
.index_five .right .flex2,
.index_one .right .flex2 {
  align-items: center;
}
.index_five .right .flex2 .swiper-scrollbar,
.index_one .right .flex2 .swiper-scrollbar {
  width: calc(100% - 2rem - 7rem);
  background: #E1E1E1;
  height: 2px;
}
.index_five .right .flex2 .swiper-scrollbar-drag,
.index_one .right .flex2 .swiper-scrollbar-drag {
  background: #000;
}
.index_five .right .flex2 .aa,
.index_one .right .flex2 .aa,
.index_five .right .flex2 .swiper-pagination-current,
.index_one .right .flex2 .swiper-pagination-current {
  color: #000;
}
.index_five .right .flex2 .zanting .iconfont,
.index_one .right .flex2 .zanting .iconfont {
  font-weight: 600;
  font-size: 1.125rem;
}
.index_five .right .flex2 .swiper-pagination,
.index_one .right .flex2 .swiper-pagination {
  color: #A9A9A9;
  font-size: 1.125rem;
  width: auto;
  margin: 0 1.5rem;
}
.index_five .right .flex2 &gt; div,
.index_one .right .flex2 &gt; div {
  position: static;
}
.index_one .font18 {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #282828;
  margin: 0.75rem 0 3.25rem;
}
.index_one .left {
  padding-right: 8rem;
}
.index_one .left .padding {
  padding-left: 6.25rem;
}
.index_one .left .over img {
  height: 34.375rem;
  object-fit: cover;
}
.index_one .right {
  padding-left: 4.0625rem;
}
.index_one .right .over img {
  height: 23.5rem;
  object-fit: cover;
}
.index_one .right .flex2 {
  margin-top: 3.4375rem;
}
.index_one .right .swiper_btn {
  right: 0.9375rem;
  left: auto;
}
.index_one .right .swiper_btn:hover {
  background: #0E6FB7;
}
.index_one .right .swiper_btn:hover .iconfont {
  color: #fff;
}
.index_one .right .swiper_btn .iconfont {
  font-weight: 600;
  font-size: 0.875rem;
  color: #000;
}
.index_one .right .swiper-button-prev {
  top: 38%;
}
.index_one .right .swiper-button-next {
  top: 26%;
}
.index_one .right .over {
  margin-right: 7.25rem;
}
.index_one .name {
  font-size: 1.5rem;
  line-height: 1.875rem;
  color: #282828;
  margin: 3.375rem 0 0.625rem;
  font-weight: 600;
}
.index_one .text {
  height: 3.75rem;
  margin-bottom: 1.875rem;
}
.p120 {
  padding: 6.25rem 0;
}
.p120.pt0 {
  padding-top: 0;
}
.p120.pb0 {
  padding-bottom: 0;
}
.index_two .swiper_btn {
  background: #fff;
  border: 1px solid #E1E1E1;
}
.index_two .suqera_pro {
  background: #fff;
  border: 1px solid #fff;
  padding: 1.5625rem 1.25rem 2.0625rem;
}
.index_two .suqera_pro .over {
  padding: 0;
}
.index_two .suqera_pro .over img {
  height: 11.25rem;
  object-fit: contain;
}
.index_two .suqera_pro:hover {
  border-color: #009844;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_two .suqera_pro:hover p {
  color: #009844;
}
.index_two .suqera_pro:hover p::before {
  background: #009844;
}
.index_two .suqera_pro:hover .over {
  box-shadow: none;
}
.index_two .suqera_pro .over {
  border: none;
}
.index_three {
  background: #0E6FB7;
}
.index_three .right {
  padding-left: 6rem;
}
.index_three .text {
  font-size: 1.125rem;
  margin: 0.875rem 0 3.75rem;
  text-align: justify;
}
.index_three .left,
.index_three .right {
  width: 50%;
}
.index_four {
  position: relative;
  margin-top: -6.5rem;
  z-index: 9;
}
.index_four::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 6.5rem);
  background: #F6F6F6;
  z-index: -1;
}
.index_four ul {
  position: relative;
  z-index: 11;
  padding: 3.75rem 0;
  background: #fff;
}
.index_four li {
  width: 33.3%;
}
.index_four li:last-child &gt; div::before {
  display: none;
}
.index_four li &gt; div {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
.index_four li &gt; div::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 7.1875rem;
  background: #E1E1E1;
}
.index_four li &gt; div .icon img {
  height: 5.3125rem;
}
.index_four li &gt; div .con {
  margin-left: 1.5625rem;
}
.index_four li &gt; div .num {
  font-size: 1.125rem;
  width: 7.5rem;
  color: #0E6FB7;
}
.index_four li &gt; div .text {
  color: #5B5B5B;
}
.alignc {
  align-items: center;
}
.more_a {
  font-size: 1rem;
  text-transform: uppercase;
  color: #686868;
  display: flex;
  align-items: center;
}
.more_a .icon {
  width: 3.4375rem;
  height: 3.4375rem;
  border-radius: 50%;
  background: #009844;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.25rem;
  border: 1px solid #009844;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.more_a .iconfont {
  font-size: 1.125rem;
  display: block;
  font-weight: 600;
  color: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.more_a:hover {
  color: #009844;
}
.more_a:hover div {
  background: transparent;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.more_a:hover div .iconfont {
  color: #009844;
}
.more_a.cf {
  color: #fff;
}
.more_a.cf div {
  border-color: #fff;
  background: transparent;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.more_a.cf div .iconfont {
  color: #fff;
}
.more_a.cf:hover div {
  background: #009844;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_five .title {
  margin-bottom: 2.5rem;
}
.index_five .left .name {
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #2D2D2D;
}
.index_five .left .text {
  margin: 0.625rem 0 0.75rem;
  height: 5.625rem;
}
.index_five .left .text img {
    display: none;
}
.index_five .left li {
  width: 50%;
}
.index_five .left li:hover .name {
  color: #009844;
}
.index_five .left ul {
  display: flex;
  flex-wrap: wrap;
}
.index_five .left li:nth-child(odd) {
  padding-right: 2.75rem;
  border-right: 1px solid #E1E1E1;
}
.index_five .left li:nth-child(even) {
  padding-left: 2.75rem;
}
.index_five .left li:nth-child(1),
.index_five .left li:nth-child(2) {
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 3.4375rem;
  padding-top: 1rem;
}
.index_five .left li:nth-child(3),
.index_five .left li:nth-child(4) {
  padding-top: 3.4375rem;
  padding-bottom: 1rem;
}
.index_five .right {
  padding-left: 3rem;
}
.index_five .right .swiper-slide:hover img {
  transform: scale(1.1);
}
.index_five .right .swiper-slide:hover .name {
  color: #009844;
}
.index_five .right .name {
  font-size: 1.375rem;
  line-height: 2.1875rem;
  color: #2D2D2D;
  margin: 1.5625rem 0 1.75rem;
}
.squera_news {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  height: 100%;
  padding: 1.25rem;
  background: #F0F0F0;
}
.squera_news:hover {
  box-shadow: 0 0 0.875rem rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.squera_news:hover .name {
  color: #009844;
}
.squera_news:hover .over img {
  transform: scale(1.1);
}
.squera_news .data {
  font-size: 1rem;
  line-height: 2.1875rem;
  color: #939393;
}
.squera_news .more_a {
  margin-top: 1rem;
}
.squera_news .name {
  font-size: 1.5rem;
  line-height: 2.1875rem;
  color: #2D2D2D;
  margin: 0 0 0.25rem 0;
}
.squera_news .name.line2 {
  height: 4.375rem;
}
.squera_news .text.line2 {
  height: 3.75rem;
}
.index_six {
  background: url(../img/12.png) no-repeat;
  background-size: cover;
}
.index_six img {
  height: 3.75rem;
}
.index_six .text {
  font-size: 1.5rem;
  line-height: 2.1875rem;
  color: #F6F6F6;
  margin-bottom: 1rem;
}
.index_six .l {
  position: absolute;
  top: 0;
  left: 11.25rem;
}
.index_six .r {
  position: absolute;
  bottom: 0;
  right: 11.25rem;
}
footer {
  padding: 4.6875rem 0 3.125rem;
  border-top: 1px solid #DCDCDC;
}
footer .name {
  font-size: 1.125rem;
  line-height: 1.875rem;
  margin-bottom: 0.625rem;
  color: #282828;
}
footer .left {
  width: 19.375rem;
}
footer .left2 {
  width: 10rem;
}
footer .left3 {
  width: calc(100% - 18.375rem - 41rem);
  padding-right: 1.125rem;
}
footer .right {
  width: 30rem;
}
footer .right .ewm {
  justify-content: flex-end;
}
footer .text {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #5B5B5B;
}
footer a.text:hover {
  color: #0E6FB7;
}
footer .tel {
  font-weight: bold;
  font-size: 1.875rem;
  line-height: 2.5rem;
  color: #0E6FB7;
  margin: 0.75rem 0;
}
footer .fenxiang .fenxiang_ul {
  margin-top: 1.125rem;
  display: flex;
}
footer .fenxiang .fenxiang_ul li {
  width: 3rem;
  height: 3rem;
  border: 1px solid #6B6B6B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .fenxiang .fenxiang_ul li:not(:last-child) {
  margin-right: 1rem;
}
footer .fenxiang .fenxiang_ul li:hover {
  background: #0E6FB7;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  border-color: #0E6FB7;
}
footer .fenxiang .fenxiang_ul li:hover .iconfont {
  color: #fff;
}
footer .fenxiang .fenxiang_ul li:hover a {
  color: #fff !important;
}
footer .fenxiang .fenxiang_ul li a {
  line-height: 2.75rem;
  font-size: 1.125rem !important;
}
footer .fenxiang .fenxiang_ul li a:hover {
  background: #0E6FB7;
  color: #fff !important;
}
footer .fenxiang .fenxiang_ul li .iconfont {
  font-size: 1.25rem;
  color: #6B6B6B;
}
footer .agree {
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.875rem;
  color: #5B5B5B;
  margin: 0 0 1.5625rem;
}
footer .agree a {
  color: #5B5B5B;
}
footer .agree a:hover {
  color: #0E6FB7;
}
footer .agree label {
  line-height: 20px;
  display: inline-block;
  margin-left: 5px;
  margin-right: 15px;
  color: #5B5B5B;
  margin-bottom: 0;
  width: calc(100% - 20px);
  padding-left: 10px;
  margin: 0;
}
footer .agree .radio_type {
  width: 20px;
  height: 20px;
  appearance: none;
  position: relative;
  border-bottom: none;
}
footer .agree .radio_type:before {
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid #7d7d7d;
  display: inline-block;
  border-radius: 50%;
  vertical-align: middle;
  position: absolute;
}
footer .agree .radio_type:checked:before {
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid #0E6FB7;
  background: #0E6FB7;
  display: inline-block;
  border-radius: 50%;
  vertical-align: middle;
  position: absolute;
}
footer .agree .radio_type:checked:after {
  content: '';
  width: 10px;
  height: 5px;
  border: 2px solid white;
  border-top: transparent;
  border-right: transparent;
  text-align: center;
  display: block;
  position: absolute;
  top: 6px;
  left: 5px;
  vertical-align: middle;
  transform: rotate(-45deg);
}
footer .agree .radio_type:checked + label {
  color: #5B5B5B;
}
footer input {
  line-height: 3.75rem;
}
footer textarea {
  display: block;
  height: 5.625rem;
  border: none;
  padding-top: 1rem;
}
footer input,
footer textarea {
  border-bottom: 1px solid #DCDCDC;
  width: 100%;
  font-weight: 500;
  display: block;
}
body {
  padding-top: 6.25rem;
}
.beian {
  border-top: 1px solid #DCDCDC;
  padding: 1.25rem 0;
}
.beian .text {
  color: #5B5B5B;
}
.beian .text a {
  color: #5B5B5B;
}
.nyban .hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.nyban .hover2 {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  text-align: center;
}
.nyban .hover2 .p1 {
  font-weight: bold;
  font-size: 3.125rem;
  line-height: 3.75rem;
  text-transform: uppercase;
  color: #FFFFFF;
}
.bread {
  padding: 1.125rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 9;
  font-size: 1rem;
  color: #FFFFFF;
}
.bread img {
  height: 2.0625rem;
  margin-right: 1.5625rem;
}
.bread a {
  color: #FFFFFF;
}
.bread a:hover {
  color: #0E6FB7;
}
.bread span {
  margin: 0 0.5rem;
}
.bread span:last-child {
  display: none;
}
.list_about .title {
  margin-bottom: 1.125rem;
}
.list_about .fr {
  width: 49%;
  margin: 0 0 1rem 1rem;
}
.list_about .right .over,
.list_about .right .over img {
  height: 100%;
  object-fit: cover;
}
.list_about_two .row {
  margin: 0 -1.25rem;
}
.list_about_two .row &gt; div {
  padding: 0 1.25rem;
}
.list_about_two ul {
  margin-top: 2rem;
}
.list_about_two ul li {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #5B5B5B;
  position: relative;
  padding-left: 1.875rem;
}
.list_about_two ul li:not(:last-child) {
  margin-bottom: 1.375rem;
}
.list_about_two ul li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #039743;
}
.list_about_three {
  background: url(../img/20.png) no-repeat;
  background-size: cover;
}
.list_about_three .swiper-container {
  padding-top: 6.75rem;
}
.list_about_three .swiper-slide-next + div::before,
.list_about_three .swiper-slide-prev::before {
  display: none;
}
.list_about_three .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 3px;
  background: #0E6FB7;
  top: -1px;
  border-radius: 0.625rem;
}
.list_about_three .swiper-pagination {
  height: 1px;
  width: 100%;
  position: static;
  background: #0E6FB7;
  margin-top: 5.625rem;
}
.list_about_three .swiper-slide {
  height: 14rem;
}
.list_about_three .swiper-slide::before {
  content: "";
  position: absolute;
  top: -3.75rem;
  right: 2.5625rem;
  width: 1px;
  height: 130%;
  background: #008BD5;
  transform: rotate(35deg);
}
.list_about_three .name {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.875rem;
  transform: rotate(-55deg);
  color: #000000;
  display: inline-block;
  padding-left: 1rem;
  position: relative;
  top: 1rem;
}
.list_about_three .text {
  padding-left: 4.375rem;
  color: #565656;
  padding-right: 5rem;
}
.list_about_four .hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.list_about_four .hover .subtitle {
  font-size: 1.625rem;
  line-height: 2.1875rem;
  color: #008BD5;
  margin: 1.5625rem 0;
}
.list_about_four .text {
  margin-top: 1.5625rem;
}
.list_about_four .text p {
  font-size: 1.5rem;
  line-height: 2.1875rem;
  color: #0E6FB7;
}
.list_about_five .margin {
  margin-top: 2rem;
}
.list_about_five .name {
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #5B5B5B;
  height: 4.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_about_five .name::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.1875rem;
  background: #0E6FB7;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_about_five .swiper-slide:hover .over img {
  transform: scale(1.1);
}
.list_about_five .swiper-slide:hover .name {
  color: #0E6FB7;
}
.list_about_five .swiper-slide:hover .name::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_news .data {
  padding-top: 1rem;
}
.list_news li {
  margin-bottom: 2.125rem;
}
.list_news li &gt;div {
  margin: 0 -1.5rem;
}
.list_news li &gt;div .right {
  padding-right: 3rem;
}
.list_news li &gt;div &gt; div {
  padding: 0 1.5rem;
}
.list_news li .name {
  margin: 0.875rem 0 0.5rem;
}
.list_news li .more_a {
  margin-top: 1.875rem;
}
.list_application .text {
  margin: 1.25rem 0 1.5625rem;
}
.flex_more {
  display: flex;
  align-items: center;
  margin: 0 -0.75rem 2.8125rem;
}
.flex_more li {
  padding: 0 0.75rem;
}
.flex_more li.tel {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  color: #282828;
}
.flex_more li.tel div {
  width: 3.4375rem;
  height: 3.4375rem;
  border: 1px solid #282828;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.625rem;
}
.flex_more li.tel div .iconfont {
  font-size: 1.375rem;
  color: #000;
  font-weight: 600;
}
.bgf4 {
  background: #F6F6F6;
}
.suqera_app {
  padding: 0.9375rem;
}
.suqera_app .data {
  font-size: 1rem;
  line-height: 2.1875rem;
  color: #939393;
}
.suqera_app .over img {
  height: 17.5rem;
  object-fit: cover;
}
.suqera_app:hover a {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.suqera_app:hover a .name {
  color: #0E6FB7;
}
.suqera_app:hover a .over img {
  transform: scale(1.1);
}
.suqera_app a {
  padding: 1.25rem 1.25rem 2.75rem;
  background: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.suqera_app a .name {
  font-size: 1.5rem;
  line-height: 2.1875rem;
  color: #2D2D2D;
}
.suqera_app a .name.line2 {
  height: 4.375rem;
}
.suqera_app a .over {
  margin-bottom: 1rem;
}
.suqera_app a .text {
  line-height: 1.875rem;
  height: 3.75rem;
  margin: 0.5rem 0 1rem;
}
.list_application_two .margin {
  margin-top: 2.1875rem;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}
.list_application_two .margin .swiper-slide {
  padding: 0 0.9375rem;
}
.swiper_btn,
.swiper_btn {
  background: none;
}
.swiper_btn .iconfont,
.swiper_btn .iconfont {
  font-size: 2rem;
  color: #939393;
}
.swiper_btn:hover .iconfont,
.swiper_btn:hover .iconfont {
  color: #0E6FB7;
}
.swiper-button-next.swiper_btn {
  right: -5rem;
}
.swiper-button-prev.swiper_btn {
  left: -5rem;
}
.list_message button {
  margin: 0 0 0 auto;
}
.list_message .text {
  margin: 1.125rem 0 2.5rem;
}
.list_message input,
.list_message textarea {
  width: 100%;
  padding: 0 1.25rem;
  line-height: 3.75rem;
  border-radius: 0.3125rem;
  font-size: 1rem;
  color: #3f3f3f;
  border: 1px solid #C8C8C8;
  font-weight: 500;
}
.list_message textarea {
  height: 12.5rem;
  line-height: 1.25rem;
  display: block;
  padding-top: 1rem;
}
.list_message .name {
  font-size: 1rem;
  margin-bottom: 0.625rem;
  line-height: 1.875rem;
  color: #898989;
}
.list_message .name span {
  color: #E01500;
}
.list_message button,
.more {
  width: 10.3125rem;
  line-height: 3.4375rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3125rem;
  background: #0E6FB7;
  font-weight: bold;
  font-size: 1rem;
  color: #FFFFFF;
  z-index: 9;
  border: none;
  position: relative;
}
.list_message button::before,
.more::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  transform: scale(0.6);
  opacity: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  background: #fff;
  z-index: -1;
  border-radius: 0.375rem;
}
.list_message button:hover,
.more:hover {
  color: #0E6FB7;
}
.list_message button:hover::before,
.more:hover::before {
  opacity: 1;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transform: scale(1);
}
.list_message button .iconfont,
.more .iconfont {
  margin-left: 1.125rem;
}
.more {
  border-radius: 3.75rem;
}
.more::before {
  border-radius: 3.125rem;
}
.ewm {
  display: flex;
  margin: 0 -0.75rem;
}
.ewm &gt; div {
  padding: 0 0.75rem;
}
.ewm &gt; div .img {
  border: 1px solid #ddd;
}
.ewm .img {
  padding: 0.375rem;
}
.ewm .img img {
  height: 7.9375rem;
  width: 7.9375rem;
}
.ewm .name {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #232323;
}
.MicrosoftMap .Infobox .infobox-info {
  padding-top: 0 !important;
}
.list_contact .content {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.151);
}
.list_contact .content .right {
  padding: 2.75rem 1.875rem;
}
.list_contact .text {
  margin: 1.25rem 0 1.25rem;
}
.list_contact ul {
  margin-bottom: 1.6875rem;
}
.list_contact ul li {
  display: flex;
  align-items: center;
}
.list_contact ul li:not(:last-child) {
  margin-bottom: 0.625rem;
}
.list_contact ul li .icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
}
.list_contact ul li p {
  width: calc(100% - 2.75rem);
  padding-left: 1.375rem;
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #5B5B5B;
}
aside.right {
  width: calc(100% - 25rem);
  padding-left: 4.0625rem;
}
aside.left {
  width: 25rem;
  background: #EDF7FF;
}
aside.left ul {
  padding: 0 2.8125rem 3.75rem 3.75rem;
  position: sticky;
  top: 8rem;
  height: auto;
}
aside.left ul li {
  margin-bottom: 1.875rem;
}
aside.left ul li a {
  display: flex;
  align-items: center;
}
aside.left ul li a div {
  width: calc(100% - 2rem);
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #424242;
}
aside.left ul li a .iconfont {
  transform: translateX(-0.625rem);
  opacity: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  width: 2rem;
  color: #0E6FB7;
  font-size: 1.125rem;
  display: block;
  text-align: right;
}
aside.left ul li:hover a div,
aside.left ul li.active a div {
  color: #0E6FB7;
}
aside.left ul li:hover a .iconfont,
aside.left ul li.active a .iconfont {
  transform: translateX(0);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  opacity: 1;
}
.suqera_pro .over1 {
  padding: 1.25rem;
  border: 1px solid #DADADA;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.suqera_pro:hover p {
  color: #009844;
}
.suqera_pro:hover p::before {
  background: #009844;
}
.suqera_pro:hover .over1 {
  border-color: #009844;
  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;
}
.suqera_pro:hover .over1 img {
  transform: scale(1.1);
}
.suqera_pro p {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #0E6FB7;
  position: relative;
  padding-bottom: 0.375rem;
  margin: 1.125rem 0 0.625rem;
  text-align: center;
}
.suqera_pro p::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5625rem;
  height: 1px;
  background: #0E6FB7;
}
.suqera_pro .name1 {
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #282828;
}
.show_product .name {
  font-size: 2.5rem;
  line-height: 2.8125rem;
  color: #000000;
}
.show_product .flex_more {
  margin-bottom: 0;
}
.show_product .text {
  font-size: 1rem;
  line-height: 1.875rem;
  margin: 1.875rem 0 2.5rem;
}
.show_product .right .left_l {
  padding-right: 0;
}
.show_product .right .swiper_pag .swiper-pagination-bullet {
  margin: 0 5px;
  opacity: 0.6;
  width: 0.75rem;
  height: 0.75rem;
}
.show_product .right .swiper_pag .swiper-pagination-bullet-active {
  opacity: 1;
}
.show_product .right .right_r {
  padding-left: 4.375rem;
}
.show_product .right .right_r .swiper-container {
  border: 1px solid #DADADA;
}
.show_product .right .right_r .swiper-slide {
  text-align: center;
  padding: 2.5rem;
}
.show_product .right .right_r .swiper-slide img {
  height: 21.875rem;
  object-fit: contain;
  object-position: center;
}
.show_product .right .ul {
  border-top: 1px solid #E5E5E5;
  margin: 2.5rem 0 3.4375rem;
}
.show_product .right .ul li {
  height: 5.9375rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E5E5E5;
}
.show_product .right .ul li div {
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #008BD5;
  width: 10rem;
}
.show_product .right .ul li p {
  width: calc(100% - 10rem);
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #565656;
}
.show_product .right .ul li p img {
  height: 3.75rem;
  filter: invert(39%) sepia(11%) saturate(13%) hue-rotate(39deg) brightness(85%) contrast(91%);
}
.show_product .right .ul2 {
  margin-top: 1.875rem;
}
.show_product .right .ul2 li {
  margin-bottom: 2.1875rem;
}
.show_product .right .ul2 li:nth-child(2) div div {
  background: #6600FF;
}
.show_product .right .ul2 li:nth-child(3) div div {
  background: #FF0000;
}
.show_product .right .ul2 li:nth-child(4) div div {
  background: #FF0000;
}
.show_product .right .ul2 li:nth-child(5) div div {
  background: #CC9900;
}
.show_product .right .ul2 li:nth-child(6) div div {
  background: #FF6600;
}
.show_product .right .ul2 li:nth-child(7) div div {
  background: #003300;
}
.show_product .right .ul2 li:nth-child(8) div div {
  background: #FF00FF;
}
.show_product .right .ul2 li &gt; div {
  padding-left: 1.25rem;
}
.show_product .right .ul2 li &gt; div div {
  width: 2.625rem;
  height: 2.1875rem;
  line-height: 2.1875rem;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #6600FF;
}
.show_product .right .ul2 li &gt; div p {
  height: 4.75rem;
  padding: 0 2.5rem 0 2.3125rem;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  line-height: 1.875rem;
  color: #565656;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
}
.list_join .title {
  margin-bottom: 1.125rem;
}
.list_join_two {
  padding-bottom: 5rem;
}
.list_join_two ul {
  flex-wrap: wrap;
  margin: 2.5rem -0.625rem 0;
}
.list_join_two ul li {
  width: 20%;
  padding: 0 0.625rem;
  margin-bottom: 1.25rem;
}
.list_join_two ul li &gt; div {
  height: 100%;
}
.list_join_two ul li:hover &gt; 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;
}
.list_join_two ul li &gt; div {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 1.5rem 0.625rem;
  text-align: center;
}
.list_join_two ul li &gt; div .icon img {
  height: 3.125rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_join_two ul li &gt; div .name {
  font-size: 1rem;
  margin-top: 0.25rem;
  line-height: 2.1875rem;
  color: #565656;
}
.list_join_four ul li {
  width: 25%;
}
.list_join_four ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.39);
}
.show_detail {
  padding-top: 6.25rem;
}
.show_detail .ul {
  display: none;
}
.show_detail .ul li {
  border: 1px solid #848484;
  color: #848484;
  font-size: 0.875rem;
  float: left;
  margin: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  margin-left: 0.625rem;
  text-align: center;
}
.show_detail .ul li .iconfont {
  display: block;
  font-size: 0.875rem !important;
  color: #848484;
}
.show_detail .ul li:hover {
  background: #0E6FB7;
  border-color: #0E6FB7;
}
.show_detail .ul li:hover .iconfont {
  color: #fff;
}
.show_detail .name {
  font-weight: bold;
  font-size: 1.875rem;
  line-height: 2.5rem;
  color: #000000;
  margin-bottom: 0.8125rem;
}
.show_detail .text {
  color: #898989;
}
.show_detail .left .data {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1rem;
  line-height: 2.5rem;
  color: #848484;
  margin-bottom: 0.75rem;
}
.show_detail .left .data &gt; p {
  margin-right: 2.5rem;
}
.show_detail .left .data &gt; div {
  display: flex;
  align-items: center;
}
.show_detail .left .data &gt; div .iconfont {
  font-size: 1.25rem;
  display: block;
}
.show_detail .left .data &gt; div:hover ul {
  display: flex;
}
.show_detail .left &gt; div {
  background: #FFFFFF;
  padding: 0 0 5rem;
  border-radius: 0.625rem;
}
.show_detail .right {
  padding-left: 0;
}
.show_detail .right .top {
  background: #ffffff;
  padding: 1.875rem 1.875rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.show_detail .right .top .name2 {
  font-size: 1.5rem;
  line-height: 1.875rem;
  margin-bottom: 1.25rem;
}
.show_detail .right .top .ul .list {
  padding: 0.875rem 0;
  position: relative;
  border-bottom: 1px solid #DBDBDB;
}
.show_detail .right .top .ul .list:first-child {
  padding-top: 0;
}
.show_detail .right .top .ul .list:not(:last-child):before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #DBDBDB;
}
.show_detail .right .top .ul .list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #0E6FB7;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.show_detail .right .top .ul .list:hover::after {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  width: 100%;
}
.show_detail .right .top .ul .list:hover a {
  color: #0E6FB7;
}
.show_detail .right .top .ul .list a {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #898989;
}
.show_detail .right .top ul li:not(:last-child) {
  margin-bottom: 1.25rem;
}
.show_detail .right .top ul li:hover p {
  color: #0E6FB7 !important;
}
.show_detail .right .top ul li a {
  display: flex;
  align-items: center;
}
.show_detail .right .top ul li .over {
  width: 8rem;
  border: 1px solid #D1D1D1;
}
.show_detail .right .top ul li .right2 {
  width: calc(100% - 8rem);
  padding-left: 1.25rem;
}
.show_detail .right .top ul li .right2 p {
  font-size: 1rem;
  margin-bottom: 0.625rem;
  color: #686868;
}
.show_detail .right .bot {
  background: #0E6FB7;
  margin-top: 2rem;
  padding: 2.0625rem 1.875rem;
}
.show_detail .right .bot .text {
  padding: 0;
}
.more_show {
  width: 11.25rem;
  height: 3.4375rem;
  line-height: 3.3125rem;
  text-align: center;
  display: inline-block;
  border-radius: 3.125rem;
  background: #0E6FB7;
  color: #fff;
  z-index: 5;
  position: relative;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.more_show div {
  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;
}
.more_show .iconfont {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-left: 0.5rem;
  display: block;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.more_show:hover {
  background: #004385 !important;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  color: #fff;
}
.more_show:hover .iconfont {
  color: #fff;
}
.more_show.bgg {
  border: 1px solid #0E6FB7;
  background: #0E6FB7;
  color: #fff;
}
.more_show.bgg .iconfont {
  color: #fff;
}
.more_show.bgg::before {
  background: #fff;
}
.more_show.bgg:hover {
  color: #0E6FB7;
}
.more_show.bgg:hover .iconfont {
  color: #0E6FB7;
}
.shangxia_p {
  margin: 5rem 0 2.5rem;
}
.shangxia {
  border-top: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
  padding: 1.25rem 0;
  color: #686868;
}
.shangxia p {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #212121;
}
.shangxia a {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #686868;
}
.shangxia a:hover {
  color: #0E6FB7;
}
@media (max-width: 990px) {
  .show_detail {
    padding-bottom: 80px;
  }
  .show_detail .right {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .show_detail {
    padding: 30px 0;
  }
  .show_detail .right {
    display: none;
  }
  .show_detail .left {
    padding-right: 15px;
  }
  .show_detail .left &gt; div {
    padding-bottom: 30px;
  }
  .show_detail .left .shangxia {
    margin-top: 30px;
  }
  .show_detail .left .shangxia .tr {
    text-align: left;
  }
  .show_detail .name {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 4px;
  }
  .show_detail .left .shangxia_p {
    margin-top: 0;
  }
}
.search_b {
  color: #A0A0A0;
}
.search_b img {
  filter: invert(69%) sepia(0%) saturate(1856%) hue-rotate(250deg) brightness(95%) contrast(81%);
  opacity: 0.3;
}
.search_b a {
  color: #A0A0A0;
}
.show_bread {
  background: #F0F0F0;
  color: #A0A0A0;
}
.show_bread a {
  color: #A0A0A0;
}
.list_honor .ul {
  margin: 0 -1.25rem;
}
.list_honor .ul li {
  padding: 0 1.25rem;
  margin-bottom: 2.5rem;
}
.list_honor .ul li &gt; a {
  height: 100%;
  padding: 1.25rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15);
  border-radius: 0.625rem;
}
.list_honor .ul li &gt; a .name {
  font-size: 1.125rem;
  color: #4b4b4b;
  margin-top: 1.125rem;
}
.list_honor .ul li:hover .over img {
  transform: scale(1.1);
}
.list_honor .ul li:hover .name {
  color: #0E6FB7;
}
.list_join_three .margin {
  color: #424242;
  margin: 1.25rem 0 2.5rem;
}
.list_join_three .job_list2a li,
.list_join_three .job_as1 &gt; div {
  width: 12.5%;
}
.list_join_three .job_list2a li:nth-child(1),
.list_join_three .job_as1 &gt; div:nth-child(1) {
  width: 40%;
}
.job-cont2 {
  position: relative;
}
@media (max-width: 768px) {
  .job-cont2 {
    padding: 2rem 0;
  }
}
.job-cont2 .dtad {
  position: absolute;
  right: 18%;
  top: -6.45rem;
  width: 8.9375rem;
}
@media (max-width: 768px) {
  .job-cont2 .dtad {
    right: 4%;
    top: -2rem;
    width: 5rem;
  }
}
.job-cont2 .dtad1 {
  position: absolute;
  left: 20%;
  bottom: -7rem;
  width: 6rem;
}
@media (max-width: 768px) {
  .job-cont2 .dtad1 {
    left: 4%;
    bottom: -3rem;
    width: 3rem;
  }
}
.job-cont2 .wehdxc {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .job-cont2 .wehdxc {
    margin-top: 0.4rem;
  }
}
.job-cont2 .wehdxc dl + dl {
  margin-left: 3em;
}
@media (max-width: 768px) {
  .job-cont2 .wehdxc dl + dl {
    margin-left: 1.5em;
  }
}
.job-cont2 .wehdxc dl dt {
  width: 1.375rem;
}
@media (max-width: 768px) {
  .job-cont2 .wehdxc dl dt {
    width: 1.15rem;
  }
}
.job-cont2 .wehdxc dl dt img {
  width: 100%;
}
.job-cont2 .wehdxc dl dd {
  color: #5b5b5b;
  font: 400 1rem/1.8em;
  margin-left: 1em;
}
@media (max-width: 768px) {
  .job-cont2 .wehdxc dl dd {
    margin-left: 0.5em;
  }
}
.job-cont2 .xw-ss-bj {
  padding: 2.2rem 2.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .job-cont2 .xw-ss-bj {
    margin-top: 1rem;
    padding: 0.85rem 1.5rem 1.5rem;
  }
}
.job-cont2 .job_list2a {
  background-color: #0E6FB7;
}
@media (max-width: 768px) {
  .job-cont2 .job_list2a {
    margin-top: 1.6rem;
  }
}
.job-cont2 .job_list2a li {
  color: #fff;
  flex: 1;
  text-align: center;
  padding: 1.15rem 0;
  font-size: 1.25rem;
}
.job-cont2 .job_list2a li:nth-child(1) {
  flex: 2;
  text-align: left;
  padding-left: 5rem;
}
@media (max-width: 768px) {
  .job-cont2 .job_list2a li:nth-child(1) {
    padding-left: 6%;
  }
}
.job-cont2 .job_list1 {
  text-align: center;
}
.job-cont2 .job_list1 strong {
  display: block;
}
.job-cont2 .job_list1 li {
  width: 100%;
  text-align: left;
}
.job-cont2 .job_list1 li .job_as1 {
  border-bottom: 1px solid #e8e8e8;
  cursor: pointer;
}
.job-cont2 .job_list1 li .job_as1 .as1 {
  color: #424242;
  flex: 1;
  text-align: center;
  padding: 1.15rem 0;
  font-size: 1.125rem;
}
.job-cont2 .job_list1 li .job_as1 .as1 i {
  font-size: 1rem;
}
.job-cont2 .job_list1 li .job_as1 .as1:nth-child(1) {
  flex: 2;
  text-align: left;
  padding-left: 7rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 768px) {
  .job-cont2 .job_list1 li .job_as1 .as1:nth-child(1) {
    padding-left: 6%;
  }
}
.job-cont2 .job_list1 li .wehha-job {
  padding: 2rem 3.75rem 3rem 5rem;
}
@media (max-width: 768px) {
  .job-cont2 .job_list1 li .wehha-job {
    padding: 1.5rem 6%;
  }
}
.job-cont2 .job_list1 li .wehha-job .wehgs-as {
  margin-bottom: 0.75rem;
}
.job-cont2 .job_list1 li .wehha-job .wehgs-as li {
  color: #5b5b5b;
  font-size: 0.875rem;
  line-height: 1.625rem;
  width: 48%;
}
.job-cont2 .job_list1 li .wehha-job .pead-cont strong {
  color: #0E6FB7;
  margin-bottom: 0.25rem;
}
.job-cont2 .job_list1 li .wehha-job a.more-b {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .job-cont2 .job_list1 li .wehha-job a.more-b {
    margin-top: 1rem;
  }
}
.job_list1 li .wehha-job {
  display: none;
}
.job_list1 li:nth-child(1) .wehha-job {
  display: block;
}
.job_list1 li .pead-cont ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1.875rem;
}
.job_list1 li .pead-cont ul li {
  width: auto;
  margin-right: 3.125rem;
  color: #5a5a5a;
}
.job_list1 li .pead-cont ul li &gt; div,
.job_list1 li .pead-cont ul li a {
  display: flex;
  align-items: center;
}
.job_list1 li .pead-cont ul li a:hover {
  color: #0E6FB7;
}
.job_list1 li .pead-cont ul li .iconfont {
  color: #0E6FB7;
  margin-right: 0.625rem;
  font-size: 1rem;
  display: block;
}
.job_list1 li .pead-cont ul li a {
  color: #5a5a5a;
  font-size: 0.875rem;
}
.job_list1 li.active {
  background: rgba(0, 76, 158, 0.05);
}
@media (max-width: 767px) {
  .list_join .right {
    margin-top: 15px;
  }
  .list_join .text {
    font-size: 14px;
    line-height: 26px;
  }
  .list_join_two .swiper-container {
    margin-top: 15px;
  }
  .list_join_two .hover div {
    font-size: 16px;
    line-height: 24px;
  }
  .list_join_three .subtitle {
    width: 100%;
  }
  .job-cont2 .job_list1 li .wehha-job .wehgs-as li {
    width: 33.3%;
    font-size: 1rem;
  }
  .list_join .text {
    margin-top: 5px;
  }
  .list_join_three .margin {
    margin: 5px 0 15px;
  }
}
.swiper_btn {
  background: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid #E1E1E1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper_btn .iconfont {
  font-size: 1.25rem;
  display: block;
}
.margin .swiper-button-prev {
  left: -5.625rem;
}
.margin .swiper-button-next {
  right: -5.625rem;
}
.list_case .ul li {
  margin-bottom: 1.875rem;
}
@media (max-width: 767px) {
  .list_case .ul li {
    margin-bottom: 15px;
  }
}
.list_case .ul li &gt; a .bor {
  padding: 1rem;
  border: 1px solid #ddd;
}
.list_case .ul li &gt; a .name {
  font-size: 1.375rem;
  line-height: 1.875rem;
  margin: 1rem 0 0.5rem;
}
.list_case .ul li:hover &gt; a .bor {
  border-color: #0E6FB7;
}
.list_case .ul li:hover &gt; a .bor img {
  transform: scale(1.1);
}
.list_case .ul li:hover &gt; a .name {
  color: #0E6FB7;
}
.show_news .social-share li {
  border: none !important;
}
.show_news .social-share li a {
  margin: 0;
  border: none;
  font-size: 1rem;
  color: #848484 !important;
  width: 100%;
  height: 100%;
  background: transparent;
}
.show_news .social-share li a:hover {
  background: #0E6FB7;
  color: #fff !important;
}
</pre></body></html>