@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;
}
:root {
  --header_h: 5rem;
  --container: 12.5rem;
  --phone_img: 30px;
  --bors: 1.25rem;
  --bgf8: #f8f8f8;
  --header_cf: #fff;
  --swiper_pag_c: #444;
  --color: #2f9ed1;
  --con: 18.125rem;
}
@font-face {
  font-family: "Alibaba-PuHuiTi-Regular";
  src: url(../fonts/AlibabaPuHuiTi-3-55-Regular.woff);
}
@font-face {
  font-family: "AlibabaPuHuiTi-3-45-Light";
  src: url(../fonts/AlibabaPuHuiTi-3-45-Light.ttf);
}
body {
  outline: none;
  font-weight: 500;
  font-family: "Alibaba-PuHuiTi-Regular" !important;
}
.bg {
  background: var(--color);
}
.c {
  color: var(--color);
}
.bgf8 {
  background: var(--bgf8);
}
body {
  outline: none;
  font-weight: 500;
}
.p_top {
  position: absolute;
  top: calc(-1 * var(--header_h));
}
@media (max-width: 990px) {
  .p_top {
    top: -60px;
  }
}
.box_s {
  box-shadow: 0px 0px 1rem 0.1875rem rgba(0, 0, 0, 0.05);
}
.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: var(--color);
  color: #fff;
}
.pagination > li.active a,
.pagination > li:hover a {
  color: #fff;
}
.pagination > li.disabled:hover {
  color: #333;
  background: #fff;
}
.foot-fot {
  background: #2d3333;
}
.foot-fot.white {
  background: #f7f7f7;
}
.foot-fot.white .m-bm-nav > li {
  border-bottom: 1px solid #ededed;
}
.foot-fot.white .m-bm-nav > li > a,
.foot-fot.white .m-bm-nav .aniut i {
  color: rgba(0, 0, 0, 0.8);
}
.foot-fot.white .m-bm-nav > li .sec {
  padding-left: 40px;
}
.foot-fot.white .m-bm-nav > li .sec a {
  color: rgba(0, 0, 0, 0.7);
}
/* 禁止缩放表单 */
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: var(--color);
}
.search_more:hover::before {
  background: var(--color);
}
.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: 21rem;
  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 > li {
  line-height: 2.25rem;
  text-align: center;
  font-size: 0.875rem;
}
.er-ul > li:nth-child(1) {
  padding-top: 0.625rem;
}
.er-ul > li:last-child {
  padding-bottom: 0.625rem;
}
.er-ul > li:hover > a {
  color: var(--color);
}
header .center > ul > 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 > 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: 12.5rem;
}
@media (max-width: 1600px) {
  body {
    --container: 10rem;
  }
}
@media (max-width: 1440px) {
  body {
    --container: 8rem;
  }
}
@media (max-width: 1280px) {
  body {
    --container: 6rem;
  }
}
@media (max-width: 990px) {
  body {
    --container: 15px;
  }
  .pagination > li {
    margin: 0 3px 5px;
  }
}
.container {
  padding: 0 var(--container);
  width: 100%;
  max-width: 100%;
}
.container.container_l {
  padding: 0 0 0 var(--container);
}
.container.container_r {
  padding: 0 var(--container) 0 0;
}
/* 搜索 */
.search {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* background: #000; */
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
}
.search-box {
  width: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25%;
}
.inp {
  width: 100%;
  height: 6.25rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}
.inp::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.bu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  z-index: 9999;
}
.bu .iconfont {
  font-size: 3.125rem;
}
.search-con {
  position: absolute;
  right: 7%;
  top: 7%;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.search-con .iconfont {
  font-size: 2.125rem;
  font-weight: 100;
}
.ds {
  cursor: pointer;
}
.fenxiang {
  --fenxiangwidth: 2.5rem;
}
.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: var(--color);
}
.fenxiang.nobor .social-share li a {
  border: none;
}
.fenxiang .social-share li {
  float: left;
  width: var(--fenxiangwidth);
  height: var(--fenxiangwidth);
  line-height: calc(var(--fenxiangwidth) - 2px);
  border-radius: 50%;
  margin-right: 0.875rem;
  text-align: center;
}
.fenxiang .social-share li:hover a {
  border-color: var(--color);
  color: #fff;
  background: var(--color);
}
.fenxiang .social-share li a {
  margin: 0;
  width: 100%;
  height: 100%;
  line-height: calc(var(--fenxiangwidth) - 2px);
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  border: 1px solid rgba(129, 129, 129, 0.5);
}
.serbtn {
  background: var(--color);
}
.searchbox {
  border-color: var(--color);
}
@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: var(--color);
}
.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: var(--color);
  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: 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;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--color);
  box-shadow: none;
}
.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: var(--color);
  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: var(--color);
}
.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;
  border-bottom: 1px solid #ddd;
}
.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: 0 0 0;
  margin-top: 60px;
  height: calc(100% - 60px);
  overflow: scroll;
}
.sjj_nav .bot > li {
  padding: 0 40px;
}
.sjj_nav .bot > li:first-child {
  margin-bottom: 0;
}
.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: 1px solid #ddd;
  margin-bottom: 0;
  padding: 16px 20px;
}
.sjj_nav .bot > li.yuyan {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sjj_nav .bot > li.yuyan > div {
  width: auto;
  padding: 0 30px;
}
.sjj_nav .bot > li > div {
  padding-bottom: 0;
}
.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: 0;
  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: var(--color);
}
.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;
}
.form-group {
  position: relative;
  height: 3.25rem;
  border-radius: 3.125rem;
  border: 1px solid #d9d9d9;
  margin-bottom: 0;
  overflow: hidden;
}
.form-group.mb15 {
  margin-bottom: 1rem;
}
.form-group label {
  color: #797979;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem;
}
.form-group label span {
  color: #c6a362;
}
.form-group select {
  background-image: url("../img/jt.svg") !important;
  background-size: 1.25rem 1.25rem !important;
  background-repeat: no-repeat !important;
  background-position: right !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-position-x: 95% !important;
}
.form-group input:disabled {
  background: #f2f2f2;
  height: 100%;
}
.form-group input,
.form-group select {
  line-height: 1.5rem;
  border: none;
  font-weight: 500;
  color: #797979;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 1.375rem 1.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  outline: none;
}
.form-group.textarea {
  height: 13.875rem;
  border-radius: 1.25rem;
}
.form-group.textarea label {
  top: 1rem;
  transform: translateY(0);
}
.form-group textarea {
  padding: 1.375rem 1.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  outline: none;
  width: 100%;
  border: none;
  display: block;
  height: 13.875rem;
  color: #797979;
  line-height: 1.5rem;
}
.form-group label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 1.5rem;
  color: #797979;
  font-size: 0.875rem;
  transition: all 0.25s ease;
  pointer-events: none;
}
.form-group.is-focus label,
.form-group.has-value label {
  top: 0.25rem;
  transform: none;
  font-size: 0.75rem;
  color: #404040;
}
.form_btn {
  font-size: 1.125rem;
  color: #fff;
  border: none;
  background: var(--color);
  width: 100%;
  line-height: 3.25rem;
  text-align: center;
  border-radius: 3.125rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.form_btn:hover {
  opacity: 0.8;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.danxuan_radio {
  display: flex;
  align-items: center;
}
.danxuan_radio .div {
  color: #797979;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem;
}
.danxuan_radio .div span {
  color: #c6a362;
}
.danxuan_radio ul {
  display: flex;
  padding-left: 0.875rem;
}
.danxuan_radio ul li {
  /* 隐藏原生 radio */
  /* 自定义圆 */
  /* 选中状态 */
  /* hover（可选） */
}
.danxuan_radio ul li:not(:last-child) {
  margin-right: 0.625rem;
}
.danxuan_radio ul li label {
  color: #404040;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem;
  margin-bottom: 0;
}
.danxuan_radio ul li .radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.875rem;
  color: #333;
}
.danxuan_radio ul li .radio span {
  position: relative;
  padding-left: 1.5rem;
}
.danxuan_radio ul li .radio input {
  display: none;
}
.danxuan_radio ul li .radio span::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
  transition: all 0.2s ease;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.danxuan_radio ul li .radio input:checked + span::before {
  border-color: var(--color);
  background-color: var(--color);
}
.danxuan_radio ul li .radio input:checked + span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.25rem;
  background: #fff;
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
}
.danxuan_radio ul li .radio:hover span::before {
  border-color: var(--color);
}
.zd_erha {
  position: fixed;
  right: 1rem;
  bottom: 5%;
  z-index: 999;
  width: 2.75rem;
  background: var(--color);
  box-shadow: 0.125rem 0.1875rem 0.375rem rgba(150, 148, 148, 0.25);
  border-radius: 5rem;
}
.zd_erha .ad_sts {
  text-align: center;
}
.zd_erha .ad_sts i img {
  height: 1.5rem !important;
}
.zd_erha .ad_sts .name {
  font-size: 0.625rem;
  line-height: 0.75rem;
  color: #fff;
  margin-top: 0.3125rem;
  white-space: nowrap;
  display: none;
}
.zd_erha .ad_sts.aa .name {
  margin-left: -0.375rem;
}
.zd_erha .aat_list li {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.zd_erha .aat_list li:nth-last-child(2) {
  border-bottom: none;
}
.zd_erha .aat_list li:nth-last-child(1) {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
}
.zd_erha .aat_list li > a {
  display: block;
  width: 2.25rem;
  position: relative;
  margin: 0 auto;
  padding: 0.5rem 0.3125rem;
  border-radius: 50%;
  -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.zd_erha .aat_list li > a img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}
.zd_erha .aat_list li .cbl-cont {
  position: absolute;
  z-index: -1;
  padding: 0.75rem 1rem;
  width: auto;
  right: -webkit-calc(115%);
  right: -moz-calc(115%);
  right: calc(110% + 5px);
  top: 10%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(110%);
  -moz-transform: translateX(110%);
  -ms-transform: translateX(110%);
  -o-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
  box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
  color: #333;
  font-size: 0.875rem;
  background: #fff;
  border-radius: 0.5rem;
  white-space: nowrap;
}
.zd_erha .aat_list li .cbl-cont.erghgsb {
  width: 8rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.zd_erha .aat_list li .cbl-cont.erghgsb img {
  width: 100%;
}
.zd_erha .aat_list li:hover .cbl-cont {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
@media (max-width: 768px) {
  .zd_erha {
    display: none;
  }
}
.hidden {
  display: none;
}
@-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: rgba(255, 255, 255, 0.8);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  --color1: #000000;
}
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: var(--color);
}
header {
  position: fixed;
  line-height: 5rem;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  --color1: #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.0625rem;
}
header .left {
  width: 15%;
}
header .right {
  width: 12%;
}
header .lanuage > div {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 1rem;
  font-weight: 300;
}
header .lanuage > div span {
  margin: 0 0.625rem;
}
header .lanuage img:nth-child(1) {
  height: 1.875rem;
  cursor: pointer;
}
header .lanuage img:last-child {
  width: 0.625rem;
  height: 0.625rem;
}
header .lanuage {
  position: relative;
}
header .lanuage > div {
  display: flex;
  align-items: center;
  color: var(--color1);
  justify-content: flex-end;
}
header .lanuage:hover ul {
  transform: scaleY(1);
  opacity: 1;
}
header .lanuage ul {
  position: absolute;
  top: 100%;
  right: -1.125rem;
  width: 8.0625rem;
  text-align: center;
  padding: 0.75rem 0;
  background: #fff;
  transition: 400ms ease-in-out;
  transform: scaleY(0);
  transform-origin: top center;
  opacity: 0;
}
header .lanuage ul li {
  line-height: 1.5rem;
}
header .lanuage ul li a {
  color: #000000;
  font-size: 1rem;
}
header .lanuage ul li:hover a {
  color: var(--color);
}
header .center {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
header .center > ul > li {
  float: left;
  padding: 0 1.875rem;
}
header .center > ul > li:first-child {
  padding-left: 0;
}
header .center > ul > li:last-child {
  padding-right: 0;
}
header .center > ul > li > a {
  color: #333;
  font-size: 1.5rem;
  font-weight: 400;
}
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,
header .center > ul > li.active > a {
  color: var(--color);
}
header .center > ul > li:hover > a::before,
header .center > ul > li.active > a::before {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.banner {
  overflow: hidden;
}
.banner .hover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 23.5rem;
  left: 0;
  width: 100%;
}
.banner .hover .p1 {
    font-size: 2.375rem;
    line-height: 1.375;
    font-family: "AlibabaPuHuiTi-3-45-Light";
    font-weight: 300;
    letter-spacing: 0.05rem;
}
.banner .hover .p1 strong {
  font-weight: 600;
}
.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;
}
.nyban .more1 {
  width: 11.25rem;
  line-height: 3.4375rem;
  border-radius: 0.5rem;
  margin-top: 4rem;
  background: linear-gradient(128deg, #67c5f0 3.54%, #2f9ed1 75.99%);
  color: #fff;
  font-size: 1.5rem;
  display: inline-block;
  text-align: center;
}
.nyban .p1 p {
  font-size: 2.25rem;
  letter-spacing: 0.05rem;
}
.nyban .p1 p strong {
  letter-spacing:0.05rem;
}
.nyban.show .img {
  position: relative;
}
.nyban.show .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) -8.8%,
    rgba(47, 158, 209, 0.8) 91.2%
  );
}
.nyban.show .img img {
  width: 100%;
}
.nyban.show .hover {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  right: 0;
  z-index: 99;
}
.nyban.show .hover .container {
  text-align: right;
}
.nyban.show .hover .container > div {
  text-align: left;
  display: inline-block;
}
.nyban.show .hover .container > div p {
  padding: 0 1.5625rem;
  line-height: 3.375rem;
  background: var(--color);
  text-align: center;
  font-size: 1.5rem;
  color: #fff; 
  display: inline-block;
  border-radius: 3.125rem;
  font-family: "AlibabaPuHuiTi-3-45-Light";
  margin-bottom: 1.25rem;
}
.nyban.show .hover .container > div .p1 div {
  font-size: 3.375rem;
  letter-spacing: 0.75rem;
}
.nyban.show .hover2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 7;
  height: 100%;
}
.nyban.show .hover2 .container {
  height: 100%;
}
.nyban.show .hover2 .pr {
  display: inline-block;
  height: 100%;
}
.nyban.show .hover2 .pr > img {
  position: absolute;
  bottom: 5.875rem;
  width: 14.0625rem;
  height: 13.8125rem;
  right: -9rem;
  z-index: 1;
}
.nyban.show .hover2 .img2 {
  position: relative;
  z-index: 9;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.nyban.show .hover2 .img2 img {
  max-height: calc(100% - var(--header_h) - 1.875rem);
  object-fit: contain;
  object-position: bottom;
}
.bread {
  font-size: 1rem;
  color: #262626;
}
.bread a {
  color: #262626;
}
.bread img {
  height: 1.5rem;
}
.bread span:last-child {
  display: none;
}
.number_ul {
  --num_cor: rgba(0, 0, 0, 0.8);
  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: 3.75rem;
  font-weight: 600;
}
.number_ul li .num sub {
  color: var(--num_cor);
  font-size: 1.5rem;
  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: 1.5rem;
  margin-left: 0.25rem;
  top: -1.5625rem;
  font-weight: 600;
}
.number_ul li .text {
  font-size: 1rem;
  line-height: 1.625rem;
  margin: 0.5rem 0 0;
  text-transform: uppercase;
}
.number_ul li > div {
  display: inline-block;
}
.text {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.75rem;
}
.swiper_pag .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  opacity: 1;
  background: transparent;
  border: 1px solid var(--color);
}
.swiper_pag .swiper-pagination-bullet-active {
  background: var(--color);
}
.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: var(--color);
  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: 14.1875rem;
  line-height: 3.625rem;
  background: rgba(194, 194, 194, 0.1);
  display: inline-block;
  position: relative;
  font-size: 1.25rem;
  color: #999;
  text-align: center;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  z-index: 9;
}
.more.active,
.more:hover {
  color: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  background: var(--color);
}
.title {
  color: #333;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.5rem;
  position: relative;
  padding-left: 5.625rem;
  position: absolute;
  top: 0;
  left: 0;
}
.title::before {
  width: 4.875rem;
  height: 0.25rem;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: var(--color);
}
.subtitle {
  color: rgba(47, 158, 209, 0.1);
  font-size: 4rem;
  font-weight: 600;
  line-height: 0.95;
  padding-left: 5.625rem;
}
.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: var(--color);
  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;
  }
}
.show_news .name {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 2.6875rem;
  color: rgba(0, 0, 0, 0.9);
}
.show_news .text {
  font-size: 1rem;
  line-height: 1.75rem;
  text-align: justify;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
}
.show_news a.text:hover {
  color: var(--color);
}
.show_news .margin.text {
  border-top: 1px solid #e7e7e7;
  margin-bottom: 2rem;
  padding: 1.875rem 0;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
}
.show_news .data {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #999999;
  justify-content: center;
  margin: 2rem 0;
}
.show_news .data .fenxiang {
  margin-left: 1.875rem;
}
.show_news .left {
  padding-right: 5rem;
}
.show_news .rightt ul li .over {
  display: none;
}
.show_news .rightt ul li a {
  padding: 1.375rem 0;
  border-bottom: 1px solid #dbdbdb;
  position: relative;
}
.show_news .rightt ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.show_news .rightt ul li:hover a::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.show_news .rightt ul li:hover .over,
.show_news .rightt ul li.active .over {
  display: block;
}
.show_news .rightt ul li:hover .over img,
.show_news .rightt ul li.active .over img {
  transform: scale(1.1);
}
.show_news .rightt ul li:hover .name,
.show_news .rightt ul li.active .name {
  color: var(--color);
}
.show_news .rightt ul li .name1 {
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75rem;
}
.show_news .rightt ul li .text {
  margin: 0 0 0.4375rem;
}
.show_news .rightt ul li .over {
  margin-bottom: 1.25rem;
}
.show_news .rightt ul li .data {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  line-height: 1.75rem;
  margin: 0;
}
.show_news .shangxia {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
  border-top: 1px solid #e7e7e7;
  padding-top: 3.125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.show_news .shangxia .l {
  width: calc(100% - 11rem);
}
.show_news .shangxia .r {
  width: 11rem;
}
.show_news .shangxia .l a {
  color: rgba(0, 0, 0, 0.8);
}
.show_news .shangxia .l a:hover {
  color: var(--color);
}
@media (max-width: 990px) {
  .show_news .name {
    line-height: 30px;
    font-size: 22px;
  }
  .show_news .left {
    padding-right: 15px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .show_news .name {
    line-height: 26px;
    font-size: 18px;
  }
  .show_news .data .fenxiang {
    margin-left: 0.5rem;
  }
  .show_news .data .social-share li {
    margin-right: 8px !important;
  }
  .show_news .data {
    margin: 5px 0;
  }
  .show_news .margin.text {
    margin-top: 0;
    padding-top: 15px;
    padding-bottom: 25px;
    margin-bottom: 15px;
  }
  .show_news .shangxia {
    flex-wrap: wrap;
    padding-top: 20px;
  }
  .show_news .shangxia .l {
    width: 100%;
    margin-bottom: 20px;
  }
  .show_news .shangxia .r {
    width: 100%;
    text-align: center;
  }
  .show_news .shangxia .tr {
    text-align: left;
  }
}
.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;
}
.index_one {
  padding: 5.625rem 0 4.6875rem;
}
.index_one .top {
  margin-bottom: 2.5rem;
}
.index_one .top ul {
  display: flex;
  justify-content: flex-end;
}
.index_one .top ul li .more {
    width: auto;
        white-space: nowrap;
    padding: 0 1.5rem;
}
.index_one .top ul li:not(:first-child) {
  margin-left: 2.5rem;
}
.index_one .top ul li.active .more {
  color: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  background: var(--color);
}
.suqera_pro {
  padding-left: calc(var(--container) + 5.625rem);
}
.suqera_pro .pro {
  background: rgba(47, 158, 209, 0.06);
  padding: 0 10.25rem 0 6.25rem;
}
.suqera_pro .pro:hover .name {
  color: var(--color);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.suqera_pro .pro:hover .over img {
  transform: scale(1.1);
}
.suqera_pro .pro:hover .more_a::after {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.suqera_pro .pro .name {
  color: #333;
  font-size: 1.5rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  line-height: 1.875rem;
}
.suqera_pro .pro .right {
  padding-left: 5rem;
}
.suqera_pro .pro .text {
  color: #666;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.375rem;
  height: calc(1.375rem * 4);
  margin: 4rem 0 5.625rem; 
}
.suqera_pro .pro .more_a {
  position: relative;
  padding-top: 4.9375rem;
}
.suqera_pro .pro .more_a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d0d0d0;
}
.suqera_pro .pro .more_a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  height: 1px;
  background: var(--color);
}
.suqera_pro .pro .more_a a {
  color: #666;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}
.suqera_pro .pro .more_a:hover a {
  color: var(--color);
}
footer {
  background: url(../img/footer.png) no-repeat;
  background-size: cover;
  padding-top: 4.375rem;
}
footer .container {
  padding: 0 18.75rem;
}
footer .logo {
  padding-bottom: 3.75rem;
  display: block;
}
footer .logo img {
  filter: brightness(0) invert(1);
  height: 2.0625rem;
}
footer .bot { 
  padding-bottom: 3.25rem;
  display: flex;
  justify-content: space-between;
}
footer .bot .left {
  width: calc(100% - 18.875rem);
  padding-right: 10.5625rem;
}
footer .bot .left ul {
  display: flex;
  justify-content: space-between;
}
footer .bot .left ul li .name {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 2.375rem;
}
footer .bot .left ul li .text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.75rem;
  font-family: "AlibabaPuHuiTi-3-45-Light";
}
footer .bot .left ul li .text:not(:last-child) {
  margin-bottom: 1.375rem;
}
footer .bot .left ul li a.text:hover {
  text-decoration: underline;
}
footer .bot .right {
  width: 18.75rem;
}
footer .bot .right ul {
  display: flex;
  justify-content: space-between;
}
footer .bot .right ul li {
  text-align: center;
}
footer .bot .right ul li img {
  width: 7.1875rem;
}
footer .bot .right ul li .name {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.875rem;
  margin-top: 0.5rem;
  font-family: "AlibabaPuHuiTi-3-45-Light";
}
footer .beian {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.25rem;
  padding: 2.8125rem 0;
  border-top: 1px solid #fff;
  text-align: center;
  font-family: "AlibabaPuHuiTi-3-45-Light";
}
footer .beian a {
  color: #fff;
}
.index_two {
  background: #fbfbfb;
  padding: 1.875rem 0 3.25rem;
}
.index_two .right {
  padding-left: 2.25rem;
}
.index_two .right ul li:not(:last-child) {
  margin-bottom: 0.6875rem;
}
.index_two .right ul li a {
  display: flex;
}
.index_two .right ul li:hover a .over img {
  transform: scale(1.1);
}
.index_two .right ul li:hover a .name {
  color: var(--color);
}
.index_two .right ul li .over {
  width: 13.625rem;
}
.index_two .right ul li .over img {
  width: 100%;
  height: 9.325rem;
  object-fit: cover;
}
.index_two .right ul li .con {
  width: calc(100% - 13.625rem);
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.index_two .right ul li .con .text {
  color: #666;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.125rem;
}
.index_two .name {
  color: #333;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.875rem;
}
.index_two .data {
  color: #c0c0c0;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.125rem;
}
.index_two .left {
  padding-right: 0;
}
.index_two .left:hover .over img {
  transform: scale(1.1);
}
.index_two .left:hover .content .name {
  color: var(--color);
}
.index_two .left .over img {
  height: 22.5rem;
  object-fit: cover;
}
.index_two .left > a {
  background: #fff;
  box-shadow:
    37px 47px 17px 0 rgba(194, 194, 194, 0),
    24px 30px 15px 0 rgba(194, 194, 194, 0.01),
    13px 17px 13px 0 rgba(194, 194, 194, 0.05),
    6px 7px 10px 0 rgba(194, 194, 194, 0.09),
    1px 2px 5px 0 rgba(194, 194, 194, 0.1);
}
.index_two .left .content {
  padding: 1.5rem 1.5rem 1.125rem;
}
.index_two .left .content .data {
  margin-top: 1.25rem;
}
.index_two .more_a {
  text-align: center;
  margin-top: 3.125rem;
}
.index_two .more_a a {
  color: #333;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.index_two .more_a a:hover {
  color: var(--color);
}
.index_three {
  padding: 6.25rem 0;
}
.index_three .row {
  align-items: flex-end;
}
.index_three .text {
     margin-top: 1.875rem;
    padding-left: 5.625rem;
    color: #333; 
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}
.index_three .text p:not(:last-child) {
  margin-bottom: 1.125rem;
}
.index_three .left {
  padding-right: 8.4375rem;
}
.index_three .right {
  padding-left: 0;
}
.index_three .right .over,
.index_three .right .over img {
  border-radius: 3.75rem 0;
}
.list_product ul {
  margin-top: 2.5rem;
}
.list_product ul li {
  display: none;
}
.list_product ul li:not(:last-child) {
  margin-bottom: 3.75rem;
}
.list_product ul li .more {
    white-space: nowrap;
    width: auto;
    padding: 0 1rem;
}
.list_product ul li:nth-child(1),
.list_product ul li:nth-child(2),
.list_product ul li:nth-child(3) {
  display: block;
}
.nysanji {
  margin: 3.75rem 0;
}
.nysanji ul {
  display: flex;
  justify-content: center;
}
.nysanji ul li {
  margin: 0 1.25rem;
}
.nysanji ul li:hover a {
  color: var(--color);
}
.nysanji ul li.active a {
  color: #fff;
  background: linear-gradient(183deg, #5ac7f9 -28.98%, #2f9ed1 117.11%);
  box-shadow:
    0 51px 14px 0 rgba(9, 91, 119, 0),
    0 33px 13px 0 rgba(9, 91, 119, 0.01),
    0 18px 11px 0 rgba(9, 91, 119, 0.05),
    0 8px 8px 0 rgba(9, 91, 119, 0.09),
    0 2px 5px 0 rgba(9, 91, 119, 0.1);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.nysanji ul li a {
      text-align: center;
    display: inline-block;
    width: auto;
    line-height: 4rem;
    border-radius: 0.625rem;
    background: linear-gradient(180deg, #eee 37.74%, #ccc 135.34%);
    box-shadow: 0 51px 14px 0 rgba(204, 204, 204, 0), 0 33px 13px 0 rgba(204, 204, 204, 0.01), 0 18px 11px 0 rgba(204, 204, 204, 0.05), 0 8px 8px 0 rgba(204, 204, 204, 0.09), 0 2px 4px 0 rgba(204, 204, 204, 0.1);
    color: #999;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    padding: 0 1rem;
}
.show_product .container {
  padding-left: var(--con);
}
.show_product .content {
  padding: 1.875rem 0 2rem 2.375rem;
  background: rgba(47, 158, 209, 0.06);
}
.show_product .content .swiper_pro_bot {
  margin-top: 0.6875rem;
}
.show_product .content .swiper_pro_bot .swiper-slide {
  border: 1px solid #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.show_product .content .swiper_pro_bot .swiper-slide.swiper-slide-thumb-active {
  border-color: var(--color);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.show_product .content .swiper-pagination-bullet {
  border-color: #d9d9d9;
  margin: 0 0.3125rem;
}
.show_product .content .swiper-pagination-bullet-active {
  background: #d9d9d9;
}
.show_product .content .left {
  padding-right: 7.5rem;
}
.show_product .content .right {
  padding-left: 0;
  padding-top: 1.25rem;
  padding-right: var(--con);
}
.show_product .content .right .name {
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.875rem;
  padding-bottom: 1rem;
  margin-bottom: 4.375rem;
  border-bottom: 1px solid #d0d0d0;
}
.show_product .content .right .text {
  color: #666;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.375rem;
  min-height: 4.125rem;
  margin-bottom: 5rem;
}
.show_product .content .right .more_aa {
     width: auto;
    line-height: 2.75rem;
    border-radius: 0.25rem;
    background: var(--color);
    display: inline-block;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    padding: 0 1rem;
}
.show_product .content .right .more_aa:hover {
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.25);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.show_product .content .right .more_aa > div {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}
.show_product .content .right .more_aa > div img {
  width: 1.5625rem;
  margin-right: 0.5rem;
}
.tags1 {
  margin-bottom: 2.5rem;
}
.tags1 div {
    display: inline-block;
    width: auto;
    line-height: 3.125rem;
    text-align: center;
    background: var(--color);
    color: #fff;
    font-size: 1.5rem;
    padding: 0 1rem;
}
.tags2 {
  margin: 0 auto;
}
.tags2 div {
  display: inline-block;
  width: auto;
  padding: 0 1rem;
  line-height: 2.5625rem;
  text-align: center;
  background: var(--color);
  color: #fff;
  font-size: 1.25rem;
}
.tags2.tl div {
  padding-left: 5rem;
  text-align: left;
}
.show_product_two {
  padding: 4.1875rem 0;
}
.show_product_two .container {
  padding: 0 var(--con);
}
.show_product_two .list1 {
  margin: 0 -2rem;
}
.show_product_two .list1 .aa {
  padding: 0 2rem;
}
.show_product_two .list1 .aa:hover .over img {
  transform: scale(1.1);
}
.show_product_two .list1 .aa > div {
  border-radius: 0.625rem;
  background: #f4f4f4;
  padding: 2.625rem 4.6875rem 2.8125rem;
}
.show_product_two .list1 .aa > div p {
  color: #333;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625rem;
  white-space: nowrap;
}
.show_product_two .list1 .aa > div .img {
  margin: 1.5rem 1.25rem 0.875rem;
}
.show_product_two .list1 .aa > div .img img {
  width: 100%;
}
.show_product_two .list1 .aa > div a {
  width: 100%;
  line-height: 2.5rem;
  border-radius: 0.375rem;
  background: #fff;
  color: #333;
  font-size: 1.25rem;
  text-align: center;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.show_product_two .list1 .aa > div a:hover {
  background: var(--color);
  color: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.show_product_two .list2 .row {
  margin: 0 -0.625rem;
}
.show_product_two .list2 .row > div {
  padding: 0 0.625rem;
}
.show_product_two .list2 .row > div > div {
  border-radius: 0.625rem;
  border: 1px solid #c0c0c0;
  height: 100%;
  padding: 3.75rem 5.75rem 7.25rem 6.875rem;
}
.show_product_two .list2 .row > div > div .text {
  margin-top: 2.1875rem;
  color: #333;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;  
}
.show_product_two .list3 .name {
  color: #333;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 1.5rem;
}
.show_product_two .list3 .over {
  margin: 1.875rem 5.875rem 0;
}
.show_product_two .list3 .over img {
  width: 100%;
}
.show_product_two .list4 .content {
  margin-top: 3.125rem;
  padding: 0 3.125rem;
}
.show_product_two .list4 .content .row {
  margin: 0 -1.4375rem;
}
.show_product_two .list4 .content .row > div {
  padding: 0 1.4375rem;
}
.show_product_two .list4 .content .row > div > div {
  padding: 5.125rem 1.25rem 3.875rem;
  border-radius: 1.25rem;
  background: rgba(47, 158, 209, 0.25);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  height: 100%;
}
.show_product_two .list4 .content .row > div > div:hover {
  box-shadow: 0 0 0.625rem #ddd;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.show_product_two .list4 .content .row > div > div .icon img {
  width: 8.75rem;
}
.show_product_two .list4 .content .row > div > div p {
  color: #333;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 2.375rem;
}
.show_product_two .list5 img {
    width: 100%;
}
.show_product_two .list5 ul {
  margin-top: 2.5rem;
}
.show_product_two .list5 ul li > div {
  border-radius: 1.25rem;
  border: 1px solid #2f9ed1;
  background: #fff;
  box-shadow:
    0 104px 29px 0 rgba(199, 199, 199, 0),
    0 67px 27px 0 rgba(199, 199, 199, 0.02),
    0 38px 23px 0 rgba(199, 199, 199, 0.08),
    0 17px 17px 0 rgba(199, 199, 199, 0.13),
    0 4px 9px 0 rgba(199, 199, 199, 0.15);
  overflow: hidden;
  position: relative;
}
.show_product_two .list5 ul li > div .hover2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.show_product_two .list5 ul li > div .hover2 .row {
  height: 100%;
}
.show_product_two .list5 ul li > div .hover2 .row > div {
  height: 100%;
}
.show_product_two .list5 ul li > div .hover2 p {
  width: 5.375rem;
  margin: 0 auto;
  border-radius: 3.125rem;
  background: var(--color);
  color: #fff;
  line-height: 1.75rem;
  font-size: 1rem;
  text-align: center;
}
.show_product_two .list5 ul li > div .hover2 p:nth-child(1) {
  position: absolute;
  top: 1.4375rem;
  right: 3rem;
}
.show_product_two .list5 ul li > div .hover2 p:nth-child(2) {
  position: absolute;
  bottom: 4.25rem;
  left: 5rem;
}
.show_product_two .list5 ul li > div img {
  width: 100%;
}
.show_product_two .list5 ul li > div .hover {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  text-align: center;
  width: 100%;
  color: #2f9ed1;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  z-index: 8;
}
.show_product_two .list5 ul li > div .hover p {
  width: 8.75rem;
  margin: 0 auto;
  border-radius: 3.125rem;
  background: var(--color);
  color: #fff;
  line-height: 1.75rem;
  font-size: 1rem;
}
.show_product_two .list5 ul li > div .hover .l {
  padding-left: 2.5rem;
}
.show_product_two .list5 ul li > div .hover .r {
  padding-right: 2.5rem;
}
.show_product_two .list5 .tags2 div {
  width: 100%;
}
.show_product_two .list5 .bot {
  margin: 0 -0.375rem;
}
.show_product_two .list5 .bot > div {
  padding: 0 0.375rem;
  margin-top: 1.875rem;
}
.show_product_two .list5 .bot > div .tags2 div {
  line-height: 3rem;
  font-size: 1.5rem;
}
.show_product_two .list5 .bot > div.aaa .tags2 div {
  background: rgba(47, 158, 209, 0.3);
  color: #2179a2;
}
.font24 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.list_news .ul {
  margin: 2.5rem -1.25rem 0;
}
.list_news .ul li {
  margin-top: 1.875rem;
  padding: 0 1.25rem;
}
.list_news .ul li a {
  background: #fff;
  box-shadow:
    37px 47px 17px 0 rgba(194, 194, 194, 0),
    24px 30px 15px 0 rgba(194, 194, 194, 0.01),
    13px 17px 13px 0 rgba(194, 194, 194, 0.05),
    6px 7px 10px 0 rgba(194, 194, 194, 0.09),
    1px 2px 5px 0 rgba(194, 194, 194, 0.1);
}
.list_news .ul li:hover .over img {
  transform: scale(1.1);
}
.list_news .ul li:hover .content .name {
  color: var(--color);
}
.list_news .ul li .content {
  padding: 1.0625rem 1.25rem 1.5625rem;
}
.list_news .ul li .content .name {
  color: #333;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
}
.list_news .ul li .content .data {
  color: #c0c0c0;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 1.25rem;
}
.list_about .content {
  padding: 0 5.625rem;
}
.list_about .ul {
  margin: 2.1875rem -1.4375rem 0;
}
.list_about .ul li {
  padding: 0 1.4375rem;
}
.list_about .ul li:hover .over img {
  transform: scale(1.1);
}
.list_about .hover {
  position: absolute;
  bottom: 5.625rem;
  left: 0;
  width: 100%;
  padding: 0 3.75rem;
}
.list_about .hover div {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
.list_about .hover p {
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  margin-top: 2.5rem;
  line-height: 1.25rem;
  height: calc(1.125rem * 3);
}
.list_about_two {
  padding: 4.5625rem 0 3.75rem;
}
.list_about_two form {
  margin-top: 2.8125rem;
  padding: 0 15.625rem;
}
.list_about_two form .row {
  margin: 0 -2rem;
}
.list_about_two form .row > div {
  padding: 0 2rem;
}
.list_about_two form .name {
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.list_about_two form input {
  width: 100%;
  line-height: 2.875rem;
  border-radius: 0.5rem;
  border: 1px solid #d4e0e5;
  padding: 0 1.5rem;
  font-size: 1rem;
  color: #000;
}
.list_about_two form input::placeholder {
  color: #d4e0e5;
}
.list_about_two form textarea {
  width: 100%;
  display: block;
  height: 6.25rem;
  border-radius: 0.5rem;
  border: 1px solid #d4e0e5;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: #000;
}
.list_about_two form textarea::placeholder {
  color: #d4e0e5;
}
.list_about_two form button {
  border-radius: 0.625rem;
  border: none;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  background: #2f9ed1;
  padding: 0 1.625rem;
  line-height: 2.875rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_about_two form button:hover {
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.205);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_about_three {
  padding-bottom: 10rem;
}
.list_about_three .content {
  padding-right: 12.8125rem;
  position: relative;
}
.list_about_three .content > div {
  background: url(../img/message.png) no-repeat;
  background-size: cover;
  background-position: right;
  padding: 4rem 2rem 4rem 15.625rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.25;
}
.list_about_three .content > div > div:not(:last-child) {
  margin-bottom: 1.75rem;
}
.list_about_three .content > div > div i {
  font-family: "AlibabaPuHuiTi-3-45-Light";
  font-weight: 300;
}
.list_about_three .content::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 18.4375rem;
  height: 9.5625rem;
  background: var(--color);
  z-index: 90;
}
.title2 {
  color: #999;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.375;
  margin-top: 0.75rem;
}
.title3 {
  color: #333;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
}
.list_zhaoshang {
  padding: 5.3125rem 0;
}
.list_zhaoshang .content {
  padding: 4.6875rem 10.8125rem 0;
}
.list_zhaoshang .content .ul {
  margin-top: -7.875rem;
  margin-left: -1.875rem;
  margin-right: -1.875rem;
}
.list_zhaoshang .content .ul > div {
  margin-top: 7.875rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
.list_zhaoshang .content .ul > div > div {
  display: flex;
}
.list_zhaoshang .content .ul > div > div .icon {
  width: 4.5625rem;
  height: 4.5625rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color);
}
.list_zhaoshang .content .ul > div > div .icon img {
  width: 3rem;
}
.list_zhaoshang .content .ul > div > div .con {
  width: calc(100% - 4.5625rem);
  padding-left: 1.8125rem;
}
.list_zhaoshang .content .ul > div > div .con div {
  color: #2f9ed1;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 3.75rem;
  padding: 0.375rem 0;
}
.list_zhaoshang .content .ul > div > div .con p {
  color: #333;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.75rem;
  margin-top: 0.75rem;
}
.list_zhaoshang_two {
  margin-bottom: 6.25rem;
}
.list_zhaoshang_two .content {
  padding: 4.125rem 9.375rem 4.6875rem 7.5rem;
  border-radius: 1.25rem;
  background: rgba(47, 158, 209, 0.7);
  box-shadow: 0 10px 24.3px 0 rgba(153, 161, 178, 0.38);
}
.list_zhaoshang_two .content .left ul li:not(:last-child) {
  margin-bottom: 4.9375rem;
}
.list_zhaoshang_two .content .left ul li .p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.875rem;
  margin-bottom: 1.375rem;
}
.list_zhaoshang_two .content .left ul li div {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  padding-left: 3.75rem;
}
.list_zhaoshang_two .content .left ul li div p {
  margin-bottom: 0;
  font-weight: 400;
}
.list_zhaoshang_two .content .left ul li div p:not(:last-child) {
  margin-bottom: 1.5rem;
}
.list_zhaoshang_two .content .right {
  padding-left: 5rem;
  padding-top: 2.0625rem;
}
.list_zhaoshang_two .content .right ul {
  display: flex;
  justify-content: space-between;
}
.list_zhaoshang_two .content .right ul li {
  text-align: center;
}
.list_zhaoshang_two .content .right ul li .img {
  width: 10rem;
}
.list_zhaoshang_two .content .right ul li .img img {
  width: 100%;
}
.list_zhaoshang_two .content .right ul li .name {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 300;
  margin-top: 1.125rem;
  font-family: "AlibabaPuHuiTi-3-45-Light";
}
.list_zhaoshang_three {
  background: url(../img/zhaoshang.png) no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 9.0625rem 0 6.25rem;
}
.list_zhaoshang_three .title2 {
  color: #666;
  font-size: 1.5rem;
}
.list_zhaoshang_three .swiper-container {
  margin-top: 14.375rem;
}
.list_zhaoshang_three .swiper-container .swiper-slide {
  border-right: 1px solid #c0c0c0;
  height: auto;
}
.list_zhaoshang_three .swiper-container .swiper-slide > div {
  height: 100%;
  padding: 0 1.5rem;
}
.list_zhaoshang_three .swiper-container .name {
      color: #333;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.8125rem;
    text-align: center;
    height: calc(1.8125rem * 3);
}
.list_zhaoshang_three .swiper-container .text {
  color: #333; 
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75rem;
  margin-top: 4.375rem;
  font-family: "AlibabaPuHuiTi-3-45-Light";
}
.layui-layer-btn .layui-layer-btn0 {
  border-color: var(--color) !important;
  background-color: var(--color) !important;
}
