@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: 5.625rem;
  --container: 14.8125rem;
  --phone_img: 30px;
  --bors: 1.25rem;
  --bgf8: #f8f8f8;
  --header_cf: #fff;
  --swiper_pag_c: #444;
  --color: #43AE9A;
}
.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: #080D18;
}
.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: 100%;
  left: 50%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  right: 0;
  top: 100%;
  z-index: 999;
  background: #fff;
  transition: 400ms ease-in-out;
  transform: scaleY(0) translateX(-50%);
  transform-origin: top center;
  opacity: 0;
  border-radius: 0 0 8px 8px;
  padding: 1.875rem 0;
}
.er-ul .row {
  margin: 0 5rem;
}
.er-ul .left .aa > div {
  line-height: 4rem;
  position: relative;
}
.er-ul .left .aa > div a {
  font-size: 1.125rem;
}
.er-ul .left .aa > div a:hover {
  color: var(--color);
}
.er-ul .left .aa > div::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
}
.er-ul .right img {
  height: 18rem;
  object-fit: cover;
}
.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: 14.8125rem;
}
@media (max-width: 1600px) {
  body {
    --container: 10rem;
  }
}
@media (max-width: 1440px) {
  body {
    --container: 8rem;
  }
}
@media (max-width: 1280px) {
  body {
    --container: 6rem;
  }
}
@media (max-width: 990px) {
  body {
    --container: 15px;
  }
  .pagination > li {
    margin: 0 3px 5px;
  }
}
.container {
  padding: 0 var(--container);
  width: 100%;
  max-width: 100%;
}
.container.container_l {
  padding: 0 0 0 var(--container);
}
.container.container_r {
  padding: 0 var(--container) 0 0;
}
/* 搜索 */
.search {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* background: #000; */
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
}
.search-box {
  width: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25%;
}
.inp {
  width: 100%;
  height: 6.25rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}
.inp::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.bu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  z-index: 9999;
}
.bu .iconfont {
  font-size: 3.125rem;
}
.search-con {
  position: absolute;
  right: 7%;
  top: 7%;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.search-con .iconfont {
  font-size: 2.125rem;
  font-weight: 100;
}
.ds {
  cursor: pointer;
}
.fenxiang {
  --fenxiangwidth: 1.875rem;
}
.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: 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: var(--color);
}
.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: 20px 40px;
}
.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.yuyan > div > div {
  padding: 0 1rem;
}
.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;
}
.zd_erha {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  width: 3.4375rem;
  border-radius: 5rem;
  background: transparent;
}
.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);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.zd_erha .aat_list li:not(:last-child) {
  margin-bottom: 0.875rem;
}
.zd_erha .aat_list li.fc {
  border-radius: 3.125rem;
  padding: 0.25rem;
}
.zd_erha .aat_list li.fc a {
  padding: 0;
  width: auto;
}
.zd_erha .aat_list li.fc .name {
  display: block;
  color: #3D3D3D;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
  margin: 0.5rem 0 0.875rem;
}
.zd_erha .aat_list li.fc i {
  width: 2.9375rem;
  height: 2.9375rem;
  background: var(--color);
  border-radius: 50%;
  display: block;
  line-height: 2.9375rem;
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zd_erha .aat_list li.fc i img {
  width: 1.5rem;
}
.zd_erha .aat_list li.fixright_li_last {
  border-radius: 50%;
  display: flex;
  align-items: center;
  height: 3.4375rem;
  justify-content: center;
  display: none;
  line-height: 2.4375rem;
}
.zd_erha .aat_list li.fixright_li_last img {
  height: 1.5rem;
}
.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%;
}
.zd_erha .aat_list li .cbl-cont {
  position: absolute;
  z-index: -1;
  padding: 0.75rem 1rem;
  width: auto;
  right: -webkit-calc(111.5%);
  right: -moz-calc(111.5%);
  right: calc(110% + 1.5rem);
  top: -2rem;
  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: 10.625rem;
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
  color: #3D3D3D;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.zd_erha .aat_list li .cbl-cont.erghgsb::before {
  content: "";
  position: absolute;
  top: 4rem;
  right: -1.125rem;
  width: 0;
  height: 0;
  border-top: 0.625rem solid transparent;
  border-bottom: 0.625rem solid transparent;
  border-left: 0.625rem solid #fff;
  border-right: 0.625rem solid transparent;
}
.zd_erha .aat_list li .cbl-cont.erghgsb a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color);
  line-height: 2.8125rem;
  margin-top: 1.5625rem;
  border-radius: 3.125rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
.zd_erha .aat_list li .cbl-cont.erghgsb a.aa img {
  width: 1.5rem;
  margin-right: 0.3125rem;
}
.zd_erha .aat_list li .cbl-cont.erghgsb .over1 {
  margin: 0.75rem 0;
}
.zd_erha .aat_list li .cbl-cont.erghgsb .over1 img {
  width: 7.0625rem;
}
.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;
}
.show_header header,
header.active,
header:hover,
header.white {
  background: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  --color1: #3F3F3F;
}
.show_header header .center > ul > li:hover > a,
header.active .center > ul > li:hover > a,
header:hover .center > ul > li:hover > a,
header.white .center > ul > li:hover > a,
.show_header header .center > ul > li.active > a,
header.active .center > ul > li.active > a,
header:hover .center > ul > li.active > a,
header.white .center > ul > li.active > a {
  color: var(--color);
}
.show_header header .center > ul > li:hover > a::before,
header.active .center > ul > li:hover > a::before,
header:hover .center > ul > li:hover > a::before,
header.white .center > ul > li:hover > a::before,
.show_header header .center > ul > li.active > 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 {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  background: var(--color);
}
.show_header header .logo img:nth-child(1),
header.active .logo img:nth-child(1),
header:hover .logo img:nth-child(1),
header.white .logo img:nth-child(1) {
  display: none;
}
.show_header header .logo img:nth-child(2),
header.active .logo img:nth-child(2),
header:hover .logo img:nth-child(2),
header.white .logo img:nth-child(2) {
  display: inline-block;
}
.show_header header .logo img,
header.active .logo img,
header:hover .logo img,
header.white .logo img,
.show_header header .ds1 img,
header.active .ds1 img,
header:hover .ds1 img,
header.white .ds1 img,
.show_header header .lanuage img,
header.active .lanuage img,
header:hover .lanuage img,
header.white .lanuage img {
  filter: brightness(1) invert(0);
}
.show_header header .language ul li:hover a,
header.active .language ul li:hover a,
header:hover .language ul li:hover a,
header.white .language ul li:hover a {
  color: var(--color);
}
.show_header header .lanuage > div,
header.active .lanuage > div,
header:hover .lanuage > div,
header.white .lanuage > div {
  color: var(--color1);
}
.show_header header .lanuage > div img,
header.active .lanuage > div img,
header:hover .lanuage > div img,
header.white .lanuage > div img {
  filter: brightness(1) invert(0);
}
.show_header header form input,
header.active form input,
header:hover form input,
header.white form input {
  color: #3F3F3F;
}
.show_header header form input::placeholder,
header.active form input::placeholder,
header:hover form input::placeholder,
header.white form input::placeholder {
  color: var(--color1);
}
.show_header header form button img,
header.active form button img,
header:hover form button img,
header.white form button img {
  filter: brightness(1) invert(0);
}
header {
  position: fixed;
  line-height: 6.25rem;
  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 1rem rgba(0, 0, 0, 0.05);
}
@media (max-width: 990px) {
  header {
    display: none;
  }
}
header > .container {
  padding: 0 6.25rem;
}
header .logo img {
  height: 2.9375rem;
}
header .logo img:nth-child(2) {
  display: none;
}
header .lanuage {
  position: relative;
}
header .lanuage img {
  height: 0.375rem;
  cursor: pointer;
  margin-left: 0.375rem;
}
header .lanuage ul {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 5rem;
  z-index: 9;
  background: #fff;
  transition: 400ms ease-in-out;
  transform: scaleY(0) translateX(-50%);
  transform-origin: top center;
  opacity: 0;
  padding: 0.5rem 0;
}
header .lanuage ul li {
  line-height: 1.875rem;
  text-align: center;
}
header .lanuage ul li:hover a {
  color: var(--color);
}
header .lanuage:hover ul {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
}
header .lanuage {
  margin: 0 0 0 1.25rem;
}
header .lanuage > div {
  display: flex;
  align-items: center;
  color: #fff;
}
header .lanuage > div img {
  filter: brightness(0) invert(1);
}
header .lanuage a {
  font-size: 1rem;
  color: var(--color1);
}
header .lanuage a.c {
  color: var(--color);
}
header form {
  margin-left: 1.875rem;
  position: relative;
}
header form input {
  width: 10.75rem;
  line-height: 2.5rem;
  padding: 0 0 0 1.875rem;
  color: #3F3F3F;
  font-size: 1rem;
  font-weight: 500;
  background: transparent;
}
header form input::placeholder {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
}
header form button {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: none;
  background: transparent;
}
header form button img {
  filter: brightness(0) invert(1);
  height: 1.25rem;
}
header form button .iconfont {
  font-size: 1.25rem;
  color: #fff;
}
header .center > ul > li {
  float: left;
  padding: 0 1.625rem;
}
header .center > ul > li > a {
  font-size: 1.125rem;
  color: var(--color1);
  position: relative;
}
header .center > ul > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0.1875rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  opacity: 0;
  background: #fff;
}
header .center > ul > li:hover > a::before,
header .center > ul > li.active > a::before {
  width: 100%;
  opacity: 1;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.banner::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.11);
  position: absolute;
  z-index: 9;
}
.banner .tempWrap {
  width: 100% !important;
}
.banner video,
.banner img {
  height: 100vh;
  object-fit: cover;
  width: 100vw;
}
#translate {
  display: none;
}
.nyban .hover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
.nyban .hover .p2 {
  font-size: 2rem;
  line-height: 3rem;
  color: #fff;
}
.nyban .hover .p1 {
  color: #FFF;
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 4rem;
}
@media (max-width: 1280px) {
  .nyban .hover .p1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 990px) {
  .nyban .hover .p1 {
    font-size: 32px;
    line-height: 40px;
  }
  .nyban .hover .p2 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .nyban .hover .p1 {
    font-size: 24px;
    line-height: 30px;
  }
  .nyban .hover .p2 {
    font-size: 14px;
    line-height: 26px;
  }
}
.bread {
  font-size: 1rem;
  color: #555555;
  padding-top: 1rem;
}
.bread a {
  color: #555555;
}
.bread a:hover {
  color: var(--color);
}
.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: #737373;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
.swiper_pag .swiper-pagination-bullet {
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
  opacity: 1;
  background: transparent;
  border: 1px solid var(--color);
  margin: 1.875rem 0.3125rem 0;
}
.swiper_pag .swiper-pagination-bullet-active {
  background: var(--color);
}
.swiper_btn {
  width: 6rem;
  height: 3.4375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  background-size: contain !important;
}
.swiper_btn.swiper-button-prev {
  background: url(../img/btnleft.svg) no-repeat;
}
.swiper_btn.swiper-button-next {
  background: url(../img/btnright.svg) no-repeat;
}
.swiper_btn:hover.swiper-button-prev {
  background: url(../img/btnleft1.svg) no-repeat;
}
.swiper_btn:hover.swiper-button-next {
  background: url(../img/btnright1.svg) no-repeat;
}
.swiper_btn:hover .iconfont {
  color: var(--color);
}
.swiper_btn .iconfont {
  font-size: 1.375rem;
  color: #AAAAAA;
}
.more {
  display: block;
  width: 13.4375rem;
  height: 3.4375rem;
  position: relative;
}
.more:hover .iconfont {
  transform: translateX(0.5rem);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.more:hover::after {
  background: url(../img/more3.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
.more:hover div {
  color: var(--color);
}
.more::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/more.png) no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}
.more::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0.25rem;
  width: 1.8125rem;
  height: 2rem;
  background: url(../img/more2.svg) no-repeat;
  background-size: contain;
  background-position: left bottom;
}
.more > div {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #737373;
  font-size: 1rem;
}
.more > div .iconfont {
  margin-left: 0.8125rem;
  font-size: 1.125rem;
  display: block;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.more.bgf div {
  color: #fff;
}
.more.bgf::after {
  filter: brightness(0) invert(1);
}
.title {
  color: #242424;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 3rem;
}
.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 #CCCCCC;
  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;
  margin: 2rem 0;
}
.show_news .data .fenxiang {
  margin-left: 2.5rem;
}
.show_news .left {
  padding-right: 2rem;
}
.show_news .rightt > div {
  background: #F8FAFD;
  padding: 2.625rem 2.1875rem;
}
.show_news .rightt ul {
  margin-top: 1.25rem;
}
.show_news .rightt ul li:not(:last-child) {
  margin-bottom: 1.875rem;
}
.show_news .rightt ul li a {
  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: 0.875rem;
}
.show_news .rightt ul li .data {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.875rem;
  line-height: 1.5rem;
  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 #CCCCCC;
  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;
}
footer {
  padding: 6.6875rem 0 7.75rem;
  background: #080D18;
}
footer .flex {
  align-items: flex-start;
}
footer .flex .social-share li a {
  color: #fff;
  border-color: #FFFFFF;
}
footer .left {
  width: 30%;
}
footer .left .fenxiang {
  margin-top: 1.25rem;
}
footer .left .text {
  color: #fff;
  font-size: 1rem;
  line-height: 2.5rem;
  font-weight: 400;
}
footer .left .text ul li {
  display: flex;
}
footer .left .text ul li .icon {
  width: 1.5rem;
}
footer .left .text ul li .icon img {
  width: 100%;
  height: 100%;
}
footer .left .text ul li .con {
  width: calc(100% - 1.5rem);
  padding-left: 0.375rem;
}
footer .right {
  width: 70%;
}
footer .right ul {
  display: flex;
  justify-content: space-between;
}
footer .right ul .text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
footer .right ul .text:hover {
  color: var(--color);
}
footer .name {
  color: #fff;
  font-size: 1rem;
  line-height: 1.875rem;
  text-transform: capitalize;
  margin-bottom: 0.75rem;
  font-weight: bolder;
}
.beian {
  padding: 1.625rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background: #080D18;
}
.beian .left {
  color: #fff;
  font-size: 1rem;
  line-height: 2.1875rem;
}
.beian .left .fenxiang li:hover {
  border-color: var(--color);
  background: var(--color);
}
.beian .right {
  text-align: right;
  font-size: 1rem;
  line-height: 2.1875rem;
}
.beian .right a {
  color: #ffffff;
}
.beian .right a:not(:last-child) {
  margin-right: 1.875rem;
}
.beian .right a:hover {
  color: var(--color);
}
.index_one {
  padding: 7.5rem 0 8.4375rem;
  background: #F2F9FF;
}
.index_one .left {
  width: 33.25rem;
  padding-right: 1.4375rem;
}
.index_one .left .text {
  margin: 1rem 0 2.5rem;
}
.index_one .swiper-pagination {
  bottom: 1.5625rem;
  right: 1.5625rem;
  width: auto;
}
.index_one .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  margin: 0 0.3125rem;
  border: none;
}
.index_one .swiper-pagination-bullet-active {
  background: var(--color);
}
.index_one .right {
  width: calc(100% - 33.25rem);
  display: flex;
  justify-content: space-between;
}
.index_one .right .l {
  width: calc(100% - 12.6875rem);
}
.index_one .right .l .over img {
  height: 31.1875rem;
  object-fit: cover;
}
.index_one .right .r {
  width: 9.6875rem;
}
.index_one .right .r .swiper-container {
  height: 31.25rem;
}
.index_one .mySwiper2 .swiper-slide {
  opacity: 0 !important;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  height: 31.25rem;
}
.index_one .mySwiper2 .swiper-slide .over {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_one .mySwiper2 .swiper-slide img {
  transform: scale(0);
  width: 0;
  height: 0;
  transition: all 1s;
  -webkit-transform: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
}
.index_one .mySwiper2 .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.index_one .mySwiper2 .swiper-slide.swiper-slide-active img {
  transform: scale(1);
  transition: all 1s;
  -webkit-transform: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  width: 100%;
  height: 100%;
}
.tj {
  text-align: justify;
}
.index_two {
  padding: 6.25rem 0 0;
}
.index_two .top .more {
  margin: 0 0 0 auto;
}
.index_two .bot {
  margin-top: 3.4375rem;
}
.index_two .bot .ul1 {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.index_two .bot .ul1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
}
.index_two .bot .ul1 li {
  flex: 1 0 0;
}
.index_two .bot .ul1 li a {
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #737373;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  position: relative;
}
.index_two .bot .ul1 li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0.125rem;
  background: var(--color);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_two .bot .ul1 li:hover a,
.index_two .bot .ul1 li.active a {
  color: var(--color);
}
.index_two .bot .ul1 li:hover a::before,
.index_two .bot .ul1 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;
}
.index_two .sum > .pr {
  height: 0;
  overflow: hidden;
}
.index_two .sum > .pr.active {
  height: auto;
}
.index_two .sum > .pr .right {
  padding-left: 2.8125rem;
}
.index_two .sum > .pr .name {
  color: #282828;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 2.5rem;
  margin-top: 3.4375rem;
}
.index_two .sum > .pr .text {
  margin: 1.5rem 0 3.4375rem;
}
.index_two .hover_pag {
  margin-top: 3.125rem;
}
.index_two .bot .swiepr_right {
  position: absolute;
  bottom: 0.125rem;
  right: 0;
  width: 22.375rem;
  height: 15.9375rem;
  z-index: 9;
}
.index_two .bot .swiepr_right::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0.675rem;
  width: 2rem;
  height: 2.1875rem;
  background: url(../img/more2.svg) no-repeat;
  background-size: contain;
  background-position: left bottom;
}
.index_two .bot .swiepr_right .swiper-slide {
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(100% 0, 100% 72%, 88% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 72%, 88% 100%, 0 100%, 0 0);
  position: relative;
  opacity: 0 !important;
}
.index_two .bot .swiepr_right .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.index_two .bot .swiepr_right .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hover_pag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hover_pag > div {
  position: static;
  margin-top: 0;
  transform: translateY(0);
}
.hover_pag > div:nth-child(2) {
  display: flex;
  justify-content: space-between;
}
.hover_pag > div:nth-child(2) div {
  position: static;
  margin-top: 0;
  transform: translateY(0);
}
.hover_pag .swiper-button-prev {
  margin-right: -0.875rem;
}
.hover_pag .swiper_btn {
  width: 6rem;
}
.hover_pag .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--color);
}
.hover_pag .swiper-pagination {
  padding-right: 3rem;
  background: rgba(0, 0, 0, 0.15);
  height: 2px;
  width: calc(100% - 6rem * 2 - 0.875rem);
}
.more_a {
  display: inline-block;
  align-items: center;
  position: relative;
  padding-bottom: 0.75rem;
}
.more_a div {
  color: #737373;
  font-size: 1rem;
  font-weight: 400;
}
.more_a div img {
  width: 1.25rem;
  margin-left: 1.5rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.more_a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 2.1875rem;
  height: 0.1875rem;
  background: var(--color);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.more_a:hover::after {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.more_a:hover div {
  color: var(--color);
}
.more_a:hover div img {
  transform: translateX(0.375rem);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.more_a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(67, 174, 154, 0.3);
}
.channel_join {
  overflow: hidden;
}
.channel_join > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 101vh;
  object-fit: cover;
  z-index: 99;
  pointer-events: none;
}
.channel_join .container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
  padding-top: var(--header_h);
}
.channel_join .container .row {
  width: 100%;
}
.channel_join .swiper-container {
  margin-top: 5.5rem;
}
.channel_join .content {
  height: 100vh;
  display: flex;
  align-content: center;
  justify-content: flex-end;
  overflow: hidden;
}
.channel_join .content .bgg div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  opacity: 0;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  background-size: cover;
  background-position: center center;
}
.channel_join .content .bgg div.active {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.channel_join .content .left {
  opacity: 0;
}
.channel_join .content .left .swiper-slide .text {
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin: 1rem 0 2.5rem;
}
.channel_join .content .left .swiper-slide .name {
  color: #FFF;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.channel_join .content .left ul {
  margin-top: 5.5rem;
}
.channel_join .content .left ul li {
  line-height: 3.125rem;
  width: 12rem;
  cursor: pointer;
}
.channel_join .content .left ul li .name {
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.channel_join .content .left ul li .name::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.5rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: #fff;
}
.channel_join .content .left ul li.active .name {
  font-size: 1.25rem;
  color: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.channel_join .content .left .text {
  margin: 1.875rem 0;
  font-weight: 400;
}
.channel_join .content .left .more div {
  color: #fff;
  font-weight: 400;
}
.channel_join .hover {
  position: absolute;
  bottom: 5rem;
  left: 0;
  width: 100%;
  z-index: 99;
}
.channel_join .subtitle {
  color: #727272;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 4rem;
  margin-top: 0.5625rem;
}
.list_news .ul {
  margin: 0 -1.3125rem;
}
.list_news .ul li {
  padding: 0 1.3125rem;
  margin-bottom: 3.4375rem;
}
.squera_news .name {
  color: #282828;
  font-size: 1.375rem;
  line-height: 2.1875rem;
}
.squera_news .data {
  color: #6B6B6B;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
  margin: 1.5625rem 0 0.375rem;
  display: flex;
  align-items: center;
}
.squera_news .data img {
  width: 1.125rem;
  margin-right: 0.625rem;
}
.squera_news .text {
  color: #737373;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.squera_news a {
  position: relative;
}
.squera_news a .over {
  -webkit-clip-path: polygon(100% 0, 100% 80%, 93% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 80%, 93% 100%, 0 100%, 0 0);
}
.squera_news a .over img {
  height: 18.25rem;
  object-fit: cover;
}
.squera_news .more_aa {
  display: flex;
  align-items: center;
  color: #6B6B6B;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin-top: 1rem;
}
.squera_news .more_aa .iconfont {
  margin-left: 0.875rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.squera_news:hover .more_aa {
  color: var(--color);
}
.squera_news:hover .more_aa .iconfont {
  transform: translateX(0.375rem);
  color: var(--color);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.squera_news:hover a::after {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.squera_news:hover .over img {
  transform: scale(1.1);
}
.squera_news:hover .name {
  color: var(--color);
}
.index_three {
  padding: 7.5rem 0 14.6875rem;
}
.index_three .top .more {
  margin: 0 0 0 auto;
}
.index_three .name {
  color: #282828;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
.index_three .data {
  color: #6B6B6B;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.index_three .text {
  color: #737373;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.index_three .bot {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}
.index_three .left {
  width: 33.4375rem;
  padding-bottom: 1.75rem;
  position: relative;
}
.index_three .left ul li {
  display: none;
}
.index_three .left ul li:hover .over img {
  transform: scale(1.1);
}
.index_three .left ul li:hover .name {
  color: var(--color);
}
.index_three .left ul li.active {
  display: block;
}
.index_three .left .over img {
  height: 23.75rem;
  object-fit: cover;
}
.index_three .left::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background: var(--color);
}
.index_three .left .data {
  margin-top: 1.25rem;
}
.index_three .left .name {
  margin: 0.5rem 0 0.5rem;
}
.index_three .left .text {
  margin-top: 1rem;
}
.index_three .right {
  width: calc(100% - 33.4375rem - 2.5rem);
}
.index_three .right .flex {
  margin-top: 5rem;
  justify-content: flex-end;
}
.index_three .right .swiper_btn {
  position: static;
  margin-top: 0;
}
.index_three .right .swiper_btn.swiper-button-prev {
  margin-right: -0.875rem;
}
.index_three .right .data {
  margin: 1.125rem 0 0.375rem;
}
.index_three .right .swiper-slide a {
  padding-bottom: 1.875rem;
  position: relative;
}
.index_three .right .swiper-slide a .pr {
  position: relative;
}
.index_three .right .swiper-slide a .pr::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0.125rem;
  width: 2rem;
  height: 2.1875rem;
  background: url(../img/more2.svg) no-repeat;
  background-size: contain;
  background-position: left bottom;
}
.index_three .right .swiper-slide a .over {
  -webkit-clip-path: polygon(100% 0, 100% 80%, 92% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 80%, 92% 100%, 0 100%, 0 0);
}
.index_three .right .swiper-slide a .over img {
  height: 18.25rem;
  object-fit: cover;
}
.index_three .right .swiper-slide a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #DADADA;
}
.index_three .right .swiper-slide a::after {
  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;
}
.index_three .right .swiper-slide:hover a::after {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_three .right .swiper-slide:hover .over img {
  transform: scale(1.1);
}
.index_three .right .swiper-slide:hover .name {
  color: var(--color);
}
.index_five {
  position: relative;
  margin-bottom: 6.875rem;
}
.index_five::before {
  content: "";
  position: absolute;
  top: -7.25rem;
  left: -23.875rem;
  width: 16rem;
  height: 52.25rem;
  transform: skewX(-25deg);
  background: #2E4F71;
  z-index: 3;
}
.index_five::after {
  content: "";
  position: absolute;
  top: 0;
  left: -11rem;
  width: 7.875rem;
  height: 44.25rem;
  transform: skewX(-25deg);
  background: #43AE9A;
}
.index_five .right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.index_five .right::before {
  content: "";
  position: absolute;
  bottom: -6.875rem;
  right: -19.875rem;
  width: 16rem;
  height: 52.25rem;
  transform: skewX(-25deg);
  background: #2E4F71;
  z-index: 3;
}
.index_five .right::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -11rem;
  width: 13.875rem;
  height: 44.25rem;
  transform: skewX(-25deg);
  background: #43AE9A;
}
.index_five ul {
  display: flex;
}
.index_five ul li {
  width: 35%;
  position: relative;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_five ul li .hover {
  position: absolute;
  bottom: 3.75rem;
  left: 0;
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_five ul li .img {
  transform: skewX(-25deg);
  overflow: hidden;
}
.index_five ul li .img img {
  height: 44.25rem;
  object-fit: cover;
    transform: skewX(25deg) scale(1.5);
}
.index_five ul li .text {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin-top: 1.125rem;
}
.index_five ul li .more {
  margin-top: 6.875rem;
  display: none;
}
.index_five ul li:nth-child(1) {
  left: -3.125rem;
}
.index_five ul li:nth-child(1) .hover {
  padding: 0 0 0 10rem;
}
.index_five ul li:nth-child(2) {
  right: 2rem;
}
.index_five ul li:nth-child(2).active .hover {
  padding: 0 0 0 10rem;
}
.index_five ul li.active {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  width: 65%;
}
.index_five ul li.active .more {
  display: block;
}
.index_five ul li.active .hover {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_about .swiper-pagination {
  bottom: 1.5625rem;
  right: 1.5625rem;
  width: auto;
}
.list_about .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  margin: 0 0.3125rem;
  border: none;
}
.list_about .swiper-pagination-bullet-active {
  background: var(--color);
}
.list_about .left {
  padding-right: 1.5625rem;
}
.list_about .text {
  margin-top: 1.25rem;
}
.list_about .text p {
  text-indent: 2rem;
}
.list_about .r {
  margin-top: 1.375rem;
}
.list_about .r ul {
  display: flex;
  justify-content: space-between;
  margin: 0 -0.5rem;
}
.list_about .r ul li {
  flex: 1 0 0;
  padding: 0 0.5rem;
}
.list_about .mySwiper3 .swiper-slide {
  opacity: 0 !important;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  height: 31.25rem;
}
.list_about .mySwiper3 .swiper-slide .over {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_about .mySwiper3 .swiper-slide img {
  transform: scale(0);
  width: 0;
  height: 0;
  transition: all 1s;
  -webkit-transform: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
}
.list_about .mySwiper3 .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.list_about .mySwiper3 .swiper-slide.swiper-slide-active img {
  transform: scale(1);
  transition: all 1s;
  -webkit-transform: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  width: 100%;
  height: 100%;
}
.list_culture {
  padding: 7.5rem 0 12.5rem;
}
.list_culture .ul {
  margin: 0 -1.25rem;
  padding-top: 4.6875rem;
}
.list_culture .ul li {
  padding: 0 1.25rem;
}
.list_culture .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;
}
.list_culture .ul li .icon {
  width: 6.125rem;
  height: 6.125rem;
  padding: 0.4375rem;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff, #ffffff, transparent);
}
.list_culture .ul li .icon > div {
  border: 1px solid #ddd;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}
.list_culture .ul li .icon > div img {
  height: 2.8125rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_culture .ul li > div {
  position: relative;
  padding-bottom: 5.9375rem;
  z-index: 3;
}
.list_culture .ul li > div::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 2.9375rem);
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}
.list_culture .ul li .name {
  color: #282828;
  text-align: center;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 2.5rem;
  margin-top: 3rem;
}
.list_culture .ul li .text {
  color: #737373;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin-top: 1.375rem;
  padding: 0 1rem;
}
.list_honor .swiper-container {
  margin: 2.1875rem 0 3.4375rem;
  -webkit-mask: -webkit-linear-gradient(right, transparent, #000 30%, #000 100%, transparent);
  mask: linear-gradient(270deg, transparent, #000 30%, #000 100%, transparent);
}
.list_honor .tempWrap {
  width: 100% !important;
  -webkit-mask: -webkit-linear-gradient(right, transparent, #000 30%, #000 100%, transparent);
  mask: linear-gradient(270deg, transparent, #000 30%, #000 100%, transparent);
}
.list_honor .picMarquee-left {
  margin-top: 3.125rem;
}
.list_honor .picList li {
  width: 25%;
  padding: 0 1.25rem;
}
.list_honor .picList li:hover .hover {
  bottom: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_honor .picList li .over {
  border: 1px solid #ddd;
  padding: 1rem;
}
.list_honor .picList li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.list_honor .picList li .hover {
  z-index: 8;
  position: absolute;
  bottom: -105%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  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;
}
.list_honor .picList li .hover > div {
  width: 5rem;
  height: 5rem;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_honor .picList li .hover > div .iconfont {
  font-size: 2rem;
  color: var(--color);
}
.list_honor .swiper-slide {
  padding: 1.375rem;
  border: 1px solid #D9D9D9;
  background: #FFF;
}
.list_honor .swiper-slide:hover .hover {
  bottom: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_honor .swiper-container {
  padding-right: var(--container);
}
.list_honor .hover_pag {
  padding: 0 var(--container);
}
.tj {
  text-align: justify;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.list_application.channel ul li:not(:last-child) {
  margin-bottom: 3rem;
}
.list_application.channel ul li:nth-child(even) .left {
  order: 2;
}
.list_application.channel ul li:nth-child(even) .right {
  order: 1;
}
.list_application .row {
  margin: 0 -1.625rem;
}
.list_application .row > div {
  padding: 0 1.625rem;
}
.list_application .text {
  margin-top: 1.5625rem;
}
.list_application_two {
  background: #F8FAFD;
}
.list_application_two .swiper-container {
  margin-top: 2.1875rem;
}
.list_application_two .swiper-slide:hover .over img {
  transform: scale(1.1);
}
.list_application_two .swiper-slide:hover .name {
  color: var(--color);
}
.list_application_two .swiper-slide .name {
  color: #353535;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2.1875rem;
  margin-top: 2.1875rem;
}
.list_news .squera_news .pr::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0.125rem;
  width: 2rem;
  height: 2.1875rem;
  background: url(../img/more2.svg) no-repeat;
  background-size: contain;
  background-position: left bottom;
}
.show_bread {
  line-height: 3.4375rem;
  background: #F8FAFD;
}
.list_catalog .ul li {
  padding: 0 3.4375rem 0 4.25rem;
  display: flex;
  justify-content: space-between;
}
.list_catalog .ul li > div:nth-child(1) {
  width: 40%;
}
.list_catalog .ul li > div:nth-child(2) {
  width: calc(60% - 13.4375rem);
}
.list_catalog .ul li:not(.li) {
  border-bottom: 1px solid #D9D9D9;
  color: #535353;
  font-size: 1.125rem;
}
.list_catalog .ul li:not(.li) > div {
  height: 7.0625rem;
  display: flex;
  align-items: center;
}
.list_catalog .ul .li {
  line-height: 4.375rem;
  background: var(--color);
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
}
.list_catalog .ul .li > div:nth-child(3) {
  text-align: center;
  width: 14rem;
}
.list_catalog .ul .li > div:nth-child(1) {
  width: 40%;
}
.list_catalog .ul .li > div:nth-child(2) {
  width: calc(60% - 14rem);
}
.list_catalog .more:hover::before {
  background: url(../img/more6.svg) no-repeat;
  background-size: contain;
  background-position: left bottom;
}
.list_catalog .more:hover::after {
  background: url(../img/more5.svg) no-repeat;
  background-size: contain;
  z-index: -1;
  background-position: left bottom;
}
.list_catalog .more:hover div {
  color: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_catalog .more:hover div .iconfont {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  color: #fff;
}
.list_catalog .more:hover .iconfont {
  transform: translate(0, 0.125rem);
}
.sanji {
  display: flex;
  justify-content: flex-end;
}
.sanji a {
  width: 10.3125rem;
  line-height: 4rem;
  border: 1px solid #C9C9C9;
  color: #717171;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.sanji a:not(:last-child) {
  margin-right: 1.5rem;
}
.sanji a.active,
.sanji a:hover {
  background: var(--color);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  color: #fff;
  border-color: var(--color);
}
.list_knowledge .ul li {
  border-bottom: 1px solid #D9D9D9;
}
.list_knowledge .ul li:hover a .name {
  color: var(--color);
}
.list_knowledge .ul li:hover a .icon {
  border-color: var(--color);
  background: var(--color);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_knowledge .ul li:hover a .icon .iconfont {
  color: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_knowledge .ul a {
  display: flex;
  align-items: center;
}
.list_knowledge .ul a .data {
  color: #6B6B6B;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  width: 9.375rem;
  font-style: italic;
}
.list_knowledge .ul a .name {
  height: 7.8125rem;
  display: flex;
  align-items: center;
  color: #282828;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.875rem;
  width: calc(100% - 3.125rem - 9.375rem);
}
.list_knowledge .ul a .icon {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  border: 1px solid #cfcfcf;
  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;
}
.list_knowledge .ul a .icon .iconfont {
  font-size: 1.5rem;
  display: block;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  color: #CFCFCF;
}
.list_video .ul li {
  margin-bottom: 1.875rem;
}
.list_video .ul li .pr a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_video .ul li .pr a div {
  width: 3.125rem;
  height: 3.125rem;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  color: var(--color);
  font-size: 1.25rem;
}
.list_video .ul li .name {
  font-size: 1.25rem;
  margin-top: 1rem;
}
.list_video .ul li:hover .over img {
  transform: scale(1.1);
}
.list_video .ul li:hover .name {
  color: var(--color);
}
.list_contact {
  position: relative;
  z-index: 9;
}
.list_contact .ul {
  margin: 0 -1.25rem;
}
.list_contact .ul li {
  padding: 0 1.25rem;
  text-align: center;
}
.list_contact .ul li > div {
  padding: 4rem 0 4.75rem;
  border: 1px solid #E3E3E3;
}
.list_contact .ul li > div:hover .icon img {
  transform: rotateY(180deg);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_contact .ul li > div .icon img {
  width: 3.4375rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_contact .ul li > div .con {
  margin-top: 1.375rem;
}
.list_contact .ul li > div p {
  color: #383838;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
.list_contact .ul li > div .name {
  color: #5D5D5D;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
.list_contact #map {
  height: 37.5rem;
}
.list_message {
  background: #F8FAFD;
}
.list_message .row {
  margin: 0 -2.1875rem;
}
.list_message .row > div {
  padding: 0 2.1875rem;
}
.list_message .left .over img {
  height: 100%;
  object-fit: cover;
}
.list_message input {
  width: 100%;
  line-height: 4rem;
  border-radius: 0.1875rem;
  border: 1px solid rgba(169, 169, 169, 0.5);
  padding: 0 2rem;
  background: #FFF;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  z-index: 9;
}
.list_message textarea {
  display: block;
  width: 100%;
  height: 10rem;
  padding: 0.5rem 2rem;
  border-radius: 0.1875rem;
  border: 1px solid rgba(169, 169, 169, 0.5);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  position: relative;
  z-index: 9;
}
.list_message .textarea label {
  top: 0.625rem;
  transform: translateY(0);
}
.list_message .subtitle {
  color: #5D5D5D;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin: 1.25rem 0 1.875rem;
}
.list_message label {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 0 2rem;
  width: 100%;
  margin: 0;
  color: #5D5D5D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}
.list_message label span {
  color: #FF1515;
}
.list_message button {
  width: 10.375rem;
  line-height: 3.75rem;
  text-align: center;
  border-radius: 0.1875rem;
  background: var(--color);
  color: #fff;
  font-size: 1.125rem;
  border: none;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_message button:hover {
  opacity: 0.9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_product .container {
  display: flex;
}
.list_product .container .left {
  width: 24rem;
  position: sticky;
  top: calc(var(--header_h) + 8rem);
  height: 100%;
}
.list_product .container .left ul li {
  line-height: 3.75rem;
}
.list_product .container .left ul li:hover a,
.list_product .container .left ul li.active a {
  color: var(--color);
}
.list_product .container .left ul li a {
  padding-left: 3rem;
  font-size: 1.125rem;
  color: #515151;
}
.list_product .container .right {
  width: calc(100% - 24rem);
  padding-left: 2rem;
}
.list_product .ul:not(:last-child) {
  margin-bottom: 5rem;
}
.list_product .ul.l li:nth-child(even) .right {
  order: 1;
}
.list_product .ul.l li:nth-child(even) .left {
  order: 2;
}
.list_product .ul.r li:nth-child(odd) .right {
  order: 1;
}
.list_product .ul.r li:nth-child(odd) .left {
  order: 2;
}
.list_product .ul.r li:nth-child(even) .right {
  order: 2;
}
.list_product .ul.r li:nth-child(even) .left {
  order: 1;
}
.list_product .ul li:hover .right .name {
  color: var(--color);
}
.list_product .ul li:hover .left img {
  transform: scale(1.1);
}
.list_product .ul li .row {
  margin: 0 -1.5625rem;
}
.list_product .ul li .row > div {
  padding: 0 1.5625rem;
}
.list_product .ul li .right {
  padding-bottom: 5rem;
}
.list_product .ul li:not(:last-child) {
  margin-bottom: 5rem;
}
.list_product .ul li .name {
  color: #353535;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.25rem;
}
.list_product .ul li .text {
  color: #515151;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.1875rem;
  margin: 0.5rem 0 1.5rem;
}
.show_product .content {
  padding: 0 4rem 5rem;
  position: relative;
  z-index: 90;
}
.show_product .content .left .swiper-pagination-bullet {
  border-color: #fff;
}
.show_product .content .left .swiper-pagination-bullet-active {
  background: #fff;
}
.show_product .content .left .swiper-slide {
  opacity: 0 !important;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  height: 31.25rem;
}
.show_product .content .left .swiper-slide .over {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.show_product .content .left .swiper-slide img {
  transform: scale(0);
  width: 0;
  height: 0;
  transition: all 1s;
  -webkit-transform: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
}
.show_product .content .left .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.show_product .content .left .swiper-slide.swiper-slide-active img {
  transform: scale(1);
  transition: all 1s;
  -webkit-transform: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  width: 100%;
  height: 100%;
}
.show_product .content .row {
  margin: 0 -2.5rem;
}
.show_product .content .row > div {
  padding: 0 2.5rem;
}
.show_product .content .row > div.right {
  padding-top: 2rem;
}
.show_product .content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 12.8125rem);
  background: var(--color);
  z-index: -1;
}
.show_product .content .more::before {
  filter: brightness(0) invert(1);
}
.show_product .content .right .name {
  color: #242424;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 2.875rem;
  height: calc(2.875rem * 4);
}
.show_product .content .right .text {
  margin-top: 1rem;
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.1875rem;
  margin: 0 0 1rem;
}
.recruit_three ul {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 2.1875rem;
}
.recruit_three ul li:nth-child(1) .clearfix {
  font-size: 1.125rem;
}
.recruit_three ul li .clearfix {
  line-height: 5rem;
  border-bottom: 1px solid #DDDDDD;
  color: #727272;
  font-size: 1rem;
  font-weight: 400;
  padding: 0 1rem 0 3.125rem;
  cursor: pointer;
}
.recruit_three ul li .clearfix > div {
  float: left;
  width: 21.25%;
}
.recruit_three ul li .clearfix > div:last-child {
  width: 5%;
}
.recruit_three ul li .clearfix > div:nth-last-child(2) {
  width: 10%;
}
.recruit_three ul li.active .clearfix > div:last-child .iconfont {
  transform: rotate(180deg);
  display: block;
}
.recruit_three ul li .clearfix > div:nth-child(1) {
  width: 20%;
}
.recruit_three ul li .content {
  padding: 2.25rem 4.375rem 3.4375rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(136, 77, 138, 0.05);
}
.recruit_three ul li .content .email {
  color: #000;
  font-size: 1.25rem;
  line-height: 1.875rem;
  display: flex;
  align-items: center;
  margin-top: 2.0625rem;
}
.recruit_three ul li .content .email a {
  color: var(--color);
  font-size: 1.5rem;
}
.recruit_three ul li .content strong {
  color: var(--color);
  font-weight: 600;
}
.recruit_three .more_2:hover {
  background: #fff;
  transition: all 0.6s;
}
.recruit_three .more_2 {
  border: 1px solid var(--color);
  transition: all 0.6s;
}
.recruit_three .more_2:hover a {
  color: var(--color);
}
.recruit_three ul li .text {
  font-size: 1rem;
  line-height: 1.875rem;
  font-weight: 400;
}
.recruit_three ul li.active .clearfix {
  background-color: var(--color);
  color: #fff;
}
.recruit_three .font18 {
  color: var(--color);
  font-weight: 600;
}
.list_join .left {
  padding-top: 2.5rem;
}
.list_join .row {
  padding: 0 -1.5625rem;
}
.list_join .row > div {
  padding: 0 1.5625rem;
}
.leaflet-popup-content p {
  margin-top: 0 !important;
}
.layui-layer-btn .layui-layer-btn0 {
  border-color: var(--color) !important;
  background-color: var(--color) !important;
}
