@charset "utf-8";
/* 这个css是初始化的css，在任何项目里面都可以使用 */
/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
}
body {
  --header_h: 6.25rem;
  --container: 14.8125rem;
  outline: none;
  font-weight: 400;
}
.box_s {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.p_top {
  position: absolute;
  top: -6.25rem;
}
@media (max-width: 990px) {
  .p_top {
    top: -50px;
  }
}
.bg {
  background: #01477F;
}
.c {
  color: #01477F;
}
.bg2 {
  background: #F56824;
}
.c2 {
  color: #F56824;
}
.phone_show_990,
.phone_show_767 {
  display: none;
}
.pagination {
  display: flex;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination > li {
  margin: 0 5px;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  border: 1px solid #DBDBDB;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}
.pagination > li.active,
.pagination > li:hover {
  background: #01477F;
  color: #fff;
}
.pagination > li.active a,
.pagination > li:hover a {
  color: #fff;
}
.pagination > li.disabled:hover {
  color: #333;
  background: #FFF;
}
.foot-fot {
  background: #01477F;
}
/* 禁止缩放表单 */
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: #01477F;
}
.search_more:hover::before {
  background: #01477F;
}
.search_more::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #E5E5E5;
}
.line1 {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.line4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.trans {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.er-ul {
  position: absolute;
  width: 10rem;
  left: 50%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  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:hover a {
  color: #01477F;
}
.er-ul > li:nth-child(1) {
  padding-top: 0.625rem;
}
.er-ul > li:last-child {
  padding-bottom: 0.625rem;
}
header .center > ul > li:hover .er-ul {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
}
.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 .flex {
  justify-content: flex-start;
}
.fenxiang .social-share li {
  float: left;
  margin-right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.375rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
}
.fenxiang .social-share li a {
  margin: 0 !important;
  width: 100%;
  height: 100%;
  line-height: 2.375rem;
  color: rgba(0, 0, 0, 0.5) !important;
  border: none !important;
  font-size: 1rem;
}
.serbtn {
  background: #01477F;
}
.searchbox {
  border-color: #01477F;
}
@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: 30px;
}
.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: #01477F;
}
.ajhhsd span {
  padding: 0 0.3em;
}
.ajhhsd span:last-child {
  display: none;
}
.xw_ny_banner {
  background: #333;
  -o-background-size: cover;
  background-size: cover;
  padding: 13.5rem 0 7.25rem;
}
@media (max-width: 990px) {
  .xw_ny_banner {
    padding: 7.25rem 0;
  }
}
@media (max-width: 768px) {
  .xw_ny_banner {
    padding: 4rem 0;
  }
}
.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em "montserrat";
}
@media (max-width: 768px) {
  .xw_ny_banner h2 {
    font-size: 1.8rem;
  }
}
.ssy-sskaa {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .ssy-sskaa {
    margin-bottom: 1.5rem;
  }
}
.ssy-sskaa .searchsa form {
  width: 50%;
  border: 1px solid #999;
  padding: 0 1.5em;
  border-radius: 2rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .ssy-sskaa .searchsa form {
    width: 90%;
  }
  .pc_show_767 {
    display: none;
  }
  .phone_show_767 {
    display: block;
  }
}
.ssy-sskaa .searchsa form input {
  width: 70%;
  font: 500 1.25rem/4rem "sourcehansans";
  background: transparent;
  color: #999;
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form input {
    font-size: 1.125rem;
    line-height: 3rem;
  }
}
.ssy-sskaa .searchsa form button {
  width: auto;
  outline: none;
  border: none;
  background: transparent;
}
.ssy-sskaa .searchsa form button i {
  font: 500 1.6rem/4rem "sourcehansans";
  color: #333;
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form button i {
    font-size: 1.35rem;
    line-height: 3rem;
  }
}
.sssjga {
  color: #333;
  font: 600 1.25rem/1.5em "sourcehansans";
  margin-bottom: 1em;
}
.ss-list li + li {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .ss-list li + li {
    margin-top: 1rem;
  }
}
.ss-list li div.img {
  width: 25%;
}
@media (max-width: 768px) {
  .ss-list li div.img {
    width: 100%;
  }
}
.ss-list li div.img a.img {
  display: block;
  border: 1px solid #f2f2f2;
}
.ss-list li .xw-nycont {
  width: 72%;
}
.ss-list li .xw-nycont.w100 {
  width: 100%;
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont {
    width: 100%;
    margin-top: 1.2em;
  }
}
.ss-list li .xw-nycont h2 a {
  display: block;
  color: #656363;
  font: 500 1.25rem/1.35em "sourcehansans";
  overflow: hidden;
  margin-bottom: 0.2em;
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont h2 a {
    font-size: 1.125rem;
  }
}
.ss-list li .xw-nycont span {
  color: #01477F;
  font: 500 1rem/1.5em "montserrat";
}
.ss-list li .xw-nycont .datea {
  color: #999999;
  font: 500 0.95rem/1.5em "montserrat";
}
.ss-list li .xw-nycont .p {
  color: #999999;
  font: 500 1rem/1.5em "sourcehansans";
  margin-top: 0.5em;
}
.ss-list li .xw-nycont a.more-msl {
  margin-top: 1em;
}
@media (max-width: 990px) {
  body {
    padding: 50px 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: 50px;
  padding: 0 30px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  background: #000;
}
.phone.white {
  background: #fff;
}
.phone.white .left img {
  filter: brightness(0);
}
@media (max-width: 767px) {
  .phone {
    padding: 0 15px;
  }
}
.phone > .clearfix {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone.noLanuage .center {
  width: 60%;
  text-align: left;
  order: 1;
}
.phone.noLanuage .left {
  width: 40%;
  text-align: right;
  order: 2;
}
.phone.noLanuage .right {
  display: none;
}
.phone .left,
.phone .right {
  width: 20%;
}
.phone .left {
  text-align: right;
}
.phone .left img {
  height: 22px;
}
.phone .right {
  text-align: left;
}
.phone .right span {
  width: 1px;
  height: 10px;
  background: #1D1D1F;
  display: inline-block;
  margin: 0 5px;
  position: relative;
  top: 1px;
}
.phone .right a {
  font-weight: bold;
  font-size: 12px;
  color: #A7A7A8;
}
.phone .right a.c {
  color: #1D1D1F;
}
.phone .center {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}
.phone .center img {
  height: 20px;
}
.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: #01477F;
  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: #01477F;
}
.sjj_nav ul li ul li > ul {
  margin-left: 10px;
}
.sjj_nav .top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #1D1D1F;
}
.sjj_nav .top .ta img {
  height: 17px;
  filter: brightness(0) invert(1);
}
.sjj_nav .top .fr img {
  height: 22px;
}
.sjj_nav .bot {
  padding: 25px 40px 0;
  margin-top: 50px;
  height: calc(100% - 50px);
  overflow: scroll;
}
.sjj_nav .bot > li:first-child {
  margin-bottom: 34px;
}
.sjj_nav .bot > li:first-child input {
  padding-left: 28px;
  width: 100%;
  font-size: 12px;
  color: #a7a7a7;
  line-height: 28px;
  border: 1px solid #A7A7A8;
  background: transparent;
}
.sjj_nav .bot > li:first-child button {
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 28px;
  height: 100%;
  border: none;
}
.sjj_nav .bot > li:first-child button .iconfont {
  position: static;
  text-align: center;
  color: #a7a7a7;
  font-size: 14px;
  padding: 0;
  border: none;
}
.sjj_nav .bot > li {
  font-size: 18px;
  line-height: 20px;
  color: #a7a7a7;
  border-bottom: none !important;
  margin-bottom: 30px;
}
.sjj_nav .bot > li > ul {
  padding-left: 1.25rem;
}
.sjj_nav .bot > li > div > a {
  width: calc(100% - 3.75rem);
}
.sjj_nav .bot > li > a {
  display: inline-block;
}
.sjj_nav .bot > li img {
  height: 30px;
}
.sjj_nav .bot > li .list .left {
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.9px;
  color: #EBEBEC;
  float: left;
}
.sjj_nav .bot > li .list .left a {
  color: #EBEBEC;
}
.sjj_nav .bot > li .list .right.w100 {
  width: 100%;
  float: none;
  padding-bottom: 20px;
}
.sjj_nav .bot > li .list .right {
  width: 80%;
  float: right;
  font-size: 14px;
  color: #EBEBEC;
  line-height: 20px;
}
.sjj_nav .bot > li .list .right a {
  color: #EBEBEC;
  margin-bottom: 18px;
}
.sjj_nav .bot > li ul {
  margin-top: 20px;
}
.sjj_nav .bot > li > div {
  color: #a7a7a7;
  position: relative;
  padding-bottom: 8px;
  line-height: 1.875rem;
  display: flex;
  align-items: center;
}
.sjj_nav .bot > li > div > a {
  color: #a7a7a7;
}
.sjj_nav .bot > li > div .iconfont {
  width: 3.75rem;
  text-align: right;
  display: block;
  font-size: 1rem;
}
.sjj_nav .bot > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  background: #a7a7a7;
}
.sjj_nav .bot > li:hover > a::before,
.sjj_nav .bot > li.active > a::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.sjj_nav .top .container {
  padding: 0 40px;
}
@media (max-width: 767px) {
  .sjj_nav .top .container {
    padding: 0 15px;
  }
}
.rightfix {
  bottom: 10%;
  top: auto;
  transform: translateY(0);
  right: 1.25rem;
  width: auto;
  box-shadow: none;
  border: none;
  background: transparent;
}
.rightfix li {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  line-height: 3.375rem;
  padding: 0;
  border: none;
  background: transparent;
  margin-bottom: 1.25rem;
}
.rightfix li .iconfont {
  font-size: 1.375rem;
}
.rightfix li::before {
  display: none;
}
.fixright_li_last {
  display: none;
}
.rightfix li {
  position: relative;
  border: none !important;
}
.rightfix li .iconfont {
  font-size: 1.375rem;
  display: block;
  color: #fff;
  border-radius: 50%;
  background: #01477F;
}
.rightfix li:hover .iconfont {
  background: #000;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.rightfix li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: #DEDDDD;
  width: 1.1875rem;
}
.rightfix li:last-child::before {
  display: none;
}
.right_div.img {
  min-width: 7.5rem !important;
}
.right_div.img img {
  height: 7.5rem;
  object-fit: contain;
}
@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-moz-keyframes sticky {
  0% {
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -moz-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-o-keyframes sticky {
  0% {
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-webkit-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -moz-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -moz-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -o-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -o-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    /*放大1.1倍*/
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
header {
  position: fixed;
  line-height: 5rem;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  z-index: 1000;
  --color: #fff;
  --shadow: 1px 1px 1px #000000;
}
header:hover .center > ul > li:hover > a {
  color: #fff;
}
header:hover .center > ul > li:hover > a::before {
  background: #fff;
}
header.active {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.04);
  background: #fff;
  --shadow: none;
  --color: #070707;
}
header.active .center > ul > li:hover > a {
  color: #01477F !important;
}
header.active .center > ul > li:hover > a::before {
  background: #01477F !important;
}
header.active .logo img {
  filter: brightness(1) invert(0);
}
header.active .center > ul > li:hover > a,
header.active .center > ul > li.active > a {
  color: #01477F;
}
header.active .center > ul > li:hover > a::before,
header.active .center > ul > li.active > a::before {
  background: #01477F;
}
header.active .center > ul > li > a {
  color: #5a5a5a;
}
header.active {
  animation: sticky 0.65s;
}
@media (max-width: 990px) {
  header {
    display: none;
  }
}
header .logo img {
  height: 1.75rem;
  filter: brightness(0) invert(1);
}
header .ds1 {
  margin-left: 4.375rem;
}
header .ds1 .iconfont {
  font-size: 1.125rem;
  display: block;
  color: var(--color);
  text-shadow: var(--shadow);
}
header .lanuage {
  padding-left: 1.25rem;
  margin-left: 1.25rem;
  position: relative;
}
header .lanuage::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 1rem;
  transform: translateY(-50%);
  background: var(--color);
}
header .lanuage a {
  font-size: 1rem;
  color: var(--color);
  font-style: italic;
  text-shadow: var(--shadow);
}
header .lanuage a:hover {
  color: #01477F;
}
header .center > ul > li {
  float: left;
  padding: 0 1.65rem;
}
header .center > ul > li > a {
  font-size: 1.125rem;
  color: var(--color);
  position: relative;
  font-weight: 500;
  text-shadow: var(--shadow);
}
header .center > ul > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header .center > ul > li:hover > a::before,
header .center > ul > li.active > a::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.banner video {
  display: block;
}
.banner video,
.banner .img img,
.banner .phone_show_990 img {
  height: 100vh;
  object-fit: cover;
}
.banner .hover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
.banner .swiper-slide.swiper-slide-active .img img {
  -webkit-animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
}
.banner .swiper-button-next {
  right: -5rem;
}
.banner .swiper-button-prev {
  left: -5rem;
}
.banner .swiper-button-white {
  background-size: 2.5rem 2.5rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.banner:hover .swiper-button-next {
  right: 4rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.banner:hover .swiper-button-prev {
  left: 4rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.banner .swiper-pagination {
  bottom: 1.875rem;
  width: 100%;
}
.banner .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 1.25rem;
  border-radius: 0;
  height: 3px;
  margin: 0 4px;
}
.banner .swiper-pagination .swiper-pagination-bullet-active {
  background: #F56824;
  width: 3.125rem;
}
@media (max-width: 990px) {
  .banner .swiper-button-white {
    display: none;
  }
  .banner video,
  .banner .img img,
  .banner .phone_show_767 img {
    height: 60vh;
    object-fit: cover;
  }
  .banner .swiper-pagination {
    bottom: 10px;
  }
}
@media (max-width: 767px) {
  .banner video,
  .banner .img img,
  .banner .phone_show_767 img {
    height: auto;
    object-fit: cover;
  }
}
.bor15 {
  border-radius: 0.9375rem;
}
.nyban .hover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
.bread {
  font-size: 1rem;
  color: #7C7C7C;
  margin: 1.875rem 0 2.8125rem;
}
.bread a {
  color: #7C7C7C;
}
.bread a:hover {
  color: #01477F;
}
.bread img {
  height: 1.5rem;
}
.bread span:last-child {
  display: none;
}
.text {
  color: #535353;
  font-size: 1rem;
  line-height: 1.875rem;
}
.title {
  color: #000;
  font-size: 2.25rem;
  line-height: 3.125rem;
  position: relative;
  padding-bottom: 0.625rem;
}
.title.tl::before {
  left: 0;
  transform: translateX(0);
}
.title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2px;
  background: #F56824;
}
.yqlj {
  position: relative;
  bottom: -2rem;
  color: #ECECEC;
  line-height: 1.875rem;
  font-size: 0.875rem;
}
.yqlj a {
  color: #ECECEC;
  line-height: 1.875rem;
  font-size: 0.875rem;
}
.yqlj a:hover {
  color: #fff;
}
footer {
  background: #01477F;
  padding: 4.375rem 0 3.75rem;
}
footer .name {
  color: #FFF;
  font-size: 1.125rem;
  line-height: 1.875rem;
  margin-bottom: 0.75rem;
}
footer .left {
  width: 26.875rem;
}
footer .left .row {
  margin: 0 -0.3125rem;
}
footer .left .row > div {
  padding: 0 0.3125rem;
}
footer .left input {
  width: 100%;
  line-height: 2.5rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 0.625rem;
  font-size: 0.875rem;
  color: #fff;
  background: transparent;
}
footer .left input::placeholder {
  color: #fff;
}
footer .left textarea {
  width: 100%;
  height: 5.625rem;
  padding: 0.625rem;
  font-size: 0.875rem;
  color: #fff;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
  background: transparent;
}
footer .left textarea::placeholder {
  color: #fff;
}
footer .left button {
  width: 5.875rem;
  line-height: 2.5rem;
  border-radius: 5px;
  background: #F56824;
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
  border: none;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
footer .left button:hover {
  background: #fff;
  color: #F56824;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
footer .cenetr {
  width: 20.625rem;
  padding-left: 5.625rem;
}
footer .cenetr ul {
  display: flex;
  flex-wrap: wrap;
}
footer .cenetr ul li {
  width: 50%;
}
footer .cenetr ul li:hover a {
  color: #F56824;
}
footer .cenetr ul li a {
  color: #ECECEC;
  font-size: 1rem;
  line-height: 1.875rem;
  font-size: 0.875rem;
}
footer .right {
  width: calc(100% - 26.875rem - 20.625rem - 16.25rem);
}
footer .right ul li {
  display: flex;
  color: #fff;
  font-size: 1rem;
}
footer .right ul li:not(:last-child) {
  margin-bottom: 0.625rem;
}
footer .right ul li .icon {
  width: 1.25rem;
  height: 1.25rem;
}
footer .right ul li .icon img {
  width: 100%;
}
footer .right ul li p {
  width: calc(100% - 1.25rem);
  padding-left: 0.65rem;
  font-size: 0.875rem;
}
footer .last_right {
  width: 16.25rem;
}
footer .last_right ul {
  display: flex;
  justify-content: flex-end;
  margin: 0 -0.75rem;
}
footer .last_right ul li {
  padding: 0 0.75rem;
  width: 7.1875rem;
  color: #ECECEC;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.875rem;
  margin-top: 0.75rem;
}
footer .last_right ul li img {
  background: #fff;
  width: 100%;
}
.beian {
  background: #01477F;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.9375rem 0;
}
.beian a {
  color: #fff !important;
}
.beian .text {
  font-size: 0.875rem;
}
.list_about .text {
  text-align: justify;
}
.list_about .text .fr {
  width: 50%;
  padding-left: 3.75rem;
}
.list_about_two {
  background: url(?assets/addons/cms/frontend/img/3.png) no-repeat;
  background-size: cover;
}
.list_about_two .ul {
  margin: 2.8125rem -1.25rem 0;
}
.list_about_two li {
  padding: 0 1.25rem;
  text-align: center;
}
.list_about_two li > div {
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 6.75rem 2.1875rem 7.9375rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  height: 100%;
}
.list_about_two 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_about_two li:hover > div {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_about_two .icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
}
.list_about_two .icon img {
  width: 100%;
  height: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_about_two .name {
  margin: 2.1875rem 0 1.125rem;
  color: #000;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.list_about_three ul {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 3.125rem -1.25rem 0;
}
.list_about_three ul li {
  width: 20%;
  padding: 0 1.25rem;
  margin-bottom: 4rem;
  position: relative;
}
.list_about_three ul li:hover .hover2 {
  transform: scale(1);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_about_three .hover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
}
.list_about_three .hover .year {
  color: #F56824;
  font-size: 2.125rem;
  font-style: italic;
  line-height: 2.8125rem;
}
.list_about_three .hover .text {
  margin-top: 0.9375rem;
}
.list_about_three .hover2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  opacity: 1;
}
.list_about_three .hover2 a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.list_about_three .hover2 img {
  height: 100%;
}
.list_about_three .ta a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}
.list_about_three .ta a .iconfont {
  font-size: 1.125rem;
  color: #000;
  margin-right: 0.3125rem;
}
.list_about_three .ta a:hover {
  color: #01477F;
}
.list_about_three .ta a:hover .iconfont {
  color: #01477F;
}
.bgf4 {
  background: #EEF6FF;
}
.list_honor .ul {
  margin: 0 -1.25rem;
}
.list_honor .ul li {
  margin-bottom: 2.5rem;
  padding: 0 1.25rem;
  text-align: center;
}
.list_honor .ul li .text {
  text-align: center;
}
.list_honor .ul li .year {
  margin-top: 0.625rem;
  font-size: 1.5rem;
  color: #F56824;
  font-weight: 600;
}
.list_honor .ul li:hover .hover {
  transform: scale(1);
  opacity: 1;
}
.list_honor .ul li .hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  transform: scale(0.6);
  opacity: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_honor .ul li .hover div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}
.list_honor .ul li .hover div .iconfont {
  font-size: 2rem;
}
.list_news .ul li {
  margin-bottom: 2.5rem;
}
.squera_news {
  border-radius: 0.9375rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  background: #FFF;
}
.squera_news:hover {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.squera_news:hover .name {
  color: #01477F;
}
.squera_news:hover img {
  transform: scale(1.1);
}
.squera_news .over img {
  height: 11.375rem;
  object-fit: cover;
  background: #ddd;
}
.squera_news .data {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  line-height: 1.875rem;
}
.squera_news .data .iconfont {
  font-size: 1rem;
}
.squera_news .content {
  padding: 1.5rem 1.375rem 2rem;
}
.squera_news .name {
  color: #010101;
  font-size: 1rem;
  line-height: 1.875rem;
  margin: 0.375rem 0;
}
.margin40 {
  margin: 0 -1.25rem;
}
.margin40 > li {
  padding: 0 1.25rem;
}
.list_contact .font18 {
  color: #535353;
  font-size: 1.125rem;
  line-height: 2.5rem;
  margin: 1.75rem 0 2.1875rem;
}
.list_contact .row .left .top {
  margin-bottom: 2.5rem;
}
.list_contact .row .left .top li:not(:last-child) {
  margin-bottom: 1rem;
}
.list_contact .row .left .top .icon {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  background: #4D84AE;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_contact .row .left .top .icon img {
  height: 1.25rem;
}
.list_contact .row .left .top li {
  display: flex;
  align-items: center;
}
.list_contact .row .left .top li p {
  width: calc(100% - 3.375rem);
  padding-left: 1.375rem;
  color: #535353;
  font-size: 1.125rem;
  line-height: 1.875rem;
}
.list_contact .row .left .bot {
  display: flex;
  margin: 0 -0.75rem;
}
.list_contact .row .left .bot li {
  padding: 0 0.75rem;
}
.list_contact .row .left .bot li p {
  border: 1px solid #D9D9D9;
}
.list_contact .row .left .bot li p.bor50 {
  border-radius: 50%;
}
.list_contact .row .left .bot li .text {
  margin-top: 0.625rem;
  text-align: center;
}
.list_contact .row .right .img,
.list_contact .row .right #mapmap {
  height: 100% !important;
}
.list_message input,
.list_message select {
  width: 100%;
  height: 3.4375rem;
  line-height: 3.4375rem;
  background: #fff;
  border-radius: 0.625rem;
  padding: 0 1rem;
  font-size: 1rem;
  color: #898989;
  display: block;
}
.list_message textarea {
  width: 100%;
  border: none;
  background: #fff;
  padding: 1rem;
  font-size: 1rem;
  color: #898989;
  height: 7.5rem;
  border-radius: 0.625rem;
}
.list_message .name {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #535353;
  margin-bottom: 0.625rem;
}
.list_message .name span {
  color: #E01500;
}
.list_message .moree {
  border-radius: 0.25rem;
  background: #01477F;
  color: #fff;
  padding: 0 3.4375rem;
  border-radius: 3.125rem;
  line-height: 3.125rem;
  border: none;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_message .moree .iconfont {
  font-weight: 600;
}
.list_message .moree::before {
  background: #fff;
  border-radius: 0.25rem;
}
.list_message .moree:hover {
  background: #F56824;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  color: #fff;
}
@media (max-width: 767px) {
  .list_message input,
  .list_message select {
    height: 42px;
    line-height: 42px;
  }
  .list_message form {
    margin-top: 15px;
  }
}
.aside_left {
  margin-left: 6.25rem;
  width: 18.1875rem;
  padding: 6.125rem 1.875rem;
}
.aside_left.pro .ul > li ul {
  display: none;
}
.aside_left.pro .ul > li ul li:hover a,
.aside_left.pro .ul > li ul li.active a {
  color: #01477F;
}
.aside_left.pro .ul > li.active ul {
  display: block;
}
.aside_left.pro .ul > li > a div {
  opacity: 1;
  transform: translateX(0);
}
.aside_left.pro .ul > li.active > a,
.aside_left.pro .ul > li:hover > a {
  color: #F56824;
}
.aside_left.pro .ul > li.active > a div,
.aside_left.pro .ul > li:hover > a div {
  color: #F56824;
}
.aside_left .ul {
  position: sticky;
  top: 8rem;
}
.aside_left .ul > li {
  border-bottom: 1px solid rgba(0, 79, 139, 0.3);
}
.aside_left .ul > li ul {
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 79, 139, 0.3);
}
.aside_left .ul > li ul li {
  color: #535353;
  font-size: 1rem;
  line-height: 1.875rem;
  margin-bottom: 0.875rem;
}
.aside_left .ul > li ul li a {
  color: #535353;
}
.aside_left .ul > li ul li:hover a,
.aside_left .ul > li ul li.active a {
  color: #01477F;
}
.aside_left .ul > li > a {
  display: flex;
  align-items: center;
  height: 4.375rem;
  color: #535353;
  font-size: 1.125rem;
  line-height: 4.375rem;
}
.aside_left .ul > li > a p {
  width: 80%;
}
.aside_left .ul > li > a div {
  width: 20%;
  text-align: right;
  font-size: 1.25rem;
  opacity: 0;
  transform: translateX(-0.625rem);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.aside_left .ul > li:hover > a,
.aside_left .ul > li.active > a {
  color: #01477F;
}
.aside_left .ul > li:hover > a div,
.aside_left .ul > li.active > a div {
  transform: translateX(0);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  opacity: 1;
}
.aside_right {
  width: calc(100% - 18.1875rem - 6.25rem);
  padding-left: 3.125rem;
  padding-right: var(--container);
}
.aside_right .ul li:nth-child(1) {
  background: #01477F;
  line-height: 3.75rem;
  color: #FFF;
  font-size: 1.25rem;
  display: flex;
  padding: 0 0 0 2.5rem;
  border-bottom: none;
}
.aside_right .ul li:nth-child(1) div:nth-child(1) {
  width: 60%;
  padding-left: 7.75rem;
}
.aside_right .ul li:nth-child(1) div:nth-child(2) {
  width: 20%;
  text-align: center;
}
.aside_right .ul li:nth-child(1) div:nth-child(3) {
  width: 20%;
  text-align: center;
}
.aside_right .ul li {
  display: flex;
  align-items: center;
  padding: 1rem 0 1rem 2.5rem;
  border-bottom: 1px solid #D9D9D9;
}
.aside_right .ul li .div1 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 60%;
  color: #535353;
  font-size: 1.125rem;
  line-height: 1.875rem;
}
.aside_right .ul li .div1 img {
  height: 4.75rem;
  width: 6.25rem;
  border-radius: 0.3125rem;
}
.aside_right .ul li .div1 p {
  padding-left: 1.5rem;
}
.aside_right .ul li .div2 {
  color: #7C7C7C;
  font-size: 1.125rem;
  width: 20%;
  text-align: center;
}
.aside_right .ul li .div3 {
  width: 20%;
  text-align: center;
}
.aside_right .ul li .div3 .more {
  margin: 0 auto;
}
.more {
  line-height: 2.75rem;
  width: 8.75rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 9999px;
  text-align: center;
  color: #646D77;
  display: flex;
  align-items: center;
  z-index: 9;
  position: relative;
  justify-content: center;
  font-size: 0.875rem;
}
.more img {
  margin-left: 0.625rem;
  height: 1rem;
}
.more:hover img {
  filter: brightness(0) invert(1);
}
.more.cf {
  color: #fff;
  border-color: #fff;
  z-index: 1;
}
.more .iconfont {
  font-size: 1rem;
  display: block;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.more.bgg {
  color: #fff;
  border-color: #F56824;
  z-index: 1;
  background: #F56824;
}
.more.bgg::before {
  background: #fff;
  z-index: -1;
}
.more.bgg:hover {
  color: #F56824;
  border-color: #F56824;
}
.more.jc {
  justify-content: center;
}
.more.m0 {
  margin: 0 auto;
}
.more .iconfont {
  margin-left: 0.25rem;
}
.more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  background: #F56824;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  border-radius: 3.125rem;
  z-index: -1;
}
.more:hover,
.more.active {
  border-color: #F56824;
  color: #fff;
}
.more:hover .iconfont,
.more.active .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::before,
.more.active::before {
  transform: scale(0.95, 0.85);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_case .top {
  background: #EEF6FF;
  padding: 1.875rem;
  margin-bottom: 3.4375rem;
}
.list_case .top li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.list_case .top li:not(:last-child) {
  margin-bottom: 1rem;
}
.list_case .top li span {
  color: #535353;
  font-size: 1rem;
  line-height: 2.1875rem;
  display: inline-block;
  width: 5rem;
}
.list_case .top li .a2:hover,
.list_case .top li .a2.active {
  color: #01477F;
}
.list_case .top li .a:hover,
.list_case .top li .a.active {
  background: #F56824;
  color: #fff;
}
.list_case .top li a {
  padding: 0 0.9375rem;
  border-radius: 3px;
  border: 1px solid #E3E3E3;
  background: #FFF;
  line-height: 2.1875rem;
  margin-right: 0.75rem;
}
.squera_case:hover a {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.squera_case:hover a .name {
  color: #F56824;
}
.squera_case:hover a .over img {
  transform: scale(1.1);
}
.squera_case .over img {
  height: 12.5rem;
  object-fit: cover;
}
.squera_case a {
  padding: 1.5rem 1.125rem;
  border-radius: 0.9375rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  overflow: hidden;
  background: #FFF;
  box-shadow: 0px 4px 30px 0px rgba(12, 51, 136, 0.1);
}
.squera_case .name {
  color: #000;
  font-size: 1rem;
  line-height: 1.875rem;
  padding: 0.875rem 0 0.75rem;
  border-bottom: 1px solid #D9D9D9;
}
.squera_case .shengfen {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  margin-top: 0.875rem;
  display: flex;
  align-items: center;
  line-height: 1.875rem;
}
.squera_case .shengfen img {
  height: 1.125rem;
  margin-right: 0.3125rem;
}
.show_case .right .title::before {
  display: none;
}
.show_case .right .data {
  color: #535353;
  font-size: 1rem;
  line-height: 1.875rem;
  padding: 0.9375rem 0 1.1875rem;
  border-bottom: 1px solid #D9D9D9;
}
.show_case .right .text {
  margin: 1.375rem 0 1.5625rem;
}
.show_case .right .p {
  color: #535353;
  font-size: 1rem;
  line-height: 1.875rem;
}
.show_case .right .tel {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.75rem;
}
.show_case .right .tel div {
  display: flex;
  align-items: center;
  color: #004A85;
  margin-right: 4.375rem;
  font-size: 1.375rem;
}
.show_case .right .tel div img {
  height: 2.75rem;
  margin-right: 0.75rem;
}
.show_case .right .tel .more {
  color: #fff;
}
.show_case .right .tel .more:hover {
  background: #F56824;
  color: #F56824;
}
.show_case .right .tel .more::before {
  background: #fff;
}
.shangxia .content {
  border-top: 1px solid #DBDBDB;
  padding-top: 2.1875rem;
  display: flex;
  align-items: center;
}
.shangxia .content .c {
  width: 20%;
}
.shangxia .content .c .more {
  margin: 0 auto;
}
.shangxia .content .l,
.shangxia .content .r {
  width: 40%;
  color: #000;
  font-size: 1rem;
}
.shangxia .content .l a,
.shangxia .content .r a {
  color: #000;
}
.shangxia .content .l a:hover,
.shangxia .content .r a:hover {
  color: #01477F;
}
.shangxia .more .iconfont {
  font-size: 0.875rem;
}
.shangxia .more {
  line-height: 2.4rem;
  width: 7.75rem;
}
.more.aa {
  color: #fff;
}
.more.aa:hover {
  background: #F56824;
  color: #F56824;
}
.more.aa::before {
  background: #fff;
}
.about_case .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about_case .top a {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 1.125rem;
}
.about_case .top a .iconfont {
  margin-right: 0.625rem;
  font-size: 1.125rem;
}
.about_case .top a:hover {
  color: #F56824;
}
.about_case .ul {
  margin-top: 3.125rem;
}
.list_solution .name {
  color: #004F8B;
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 1.5rem 0 0.5rem;
}
.list_solution .name span {
  color: #F56824;
}
.list_solution .row .over {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.list_solution .row .over img {
  width: 100%;
}
.list_solution .text {
  width: 80%;
  margin: 0 auto 3.75rem;
}
.list_zsjm .img {
  margin-top: 3.125rem;
}
.list_zsjm_two .text {
  color: #535353;
  text-align: center;
  font-size: 1.25rem;
  line-height: 2.1875rem;
  margin: 1.8125rem 0 1.5625rem;
}
.list_zsjm_two ul {
  display: flex;
  margin: 0 -1rem;
}
.list_zsjm_two ul li {
  padding: 0 1rem;
  flex: 1;
}
.list_zsjm_two ul li > div {
  padding: 3rem 1rem;
  border-radius: 0.625rem;
  background: rgba(1, 70, 127, 0.205);
  height: 100%;
}
.list_zsjm_two ul li > div .icon {
  width: 5rem;
  height: 5rem;
  background: #01477F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.list_zsjm_two ul li > div .icon img {
  height: 3rem;
  filter: brightness(0) invert(1);
}
.list_zsjm_two ul li > div .text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.875rem;
  margin-bottom: 0;
}
.list_zsjm_three ul {
  display: flex;
  position: relative;
  margin-top: 2.75rem;
  z-index: 4;
}
.list_zsjm_three ul::before {
  content: "";
  position: absolute;
  top: 4.6875rem;
  left: 10%;
  width: 80%;
  height: 1px;
  z-index: -1;
  background: #E6EEF4;
}
.list_zsjm_three ul li {
  width: 20%;
  position: relative;
}
.list_zsjm_three ul li .icon {
  width: 9.375rem;
  height: 9.375rem;
  margin: 0 auto;
  background: #fff;
}
.list_zsjm_three ul li .icon img {
  width: 100%;
  height: 100%;
}
.list_zsjm_three ul li .name {
  color: #535353;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.875rem;
  margin-top: 2.1875rem;
}
.list_zsjm_three ul li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 3.875rem;
  right: -0.875rem;
  width: 1.75rem;
  height: 1.75rem;
  background: url(?assets/addons/cms/frontend/img/13.jpg) no-repeat;
  background-size: contain;
}
.list_zsjm_four ul li .row {
  margin: 0 -1.5625rem;
}
.list_zsjm_four ul li .row > div {
  padding: 0 1.5625rem;
}
.list_zsjm_four ul li .text {
  margin-top: 1.75rem;
}
.list_zsjm_four ul li:nth-child(odd) {
  background: #EEF6FF;
}
.list_zsjm_four ul li:nth-child(even) .left {
  order: 2;
}
.list_zsjm_four ul li:nth-child(even) .right {
  order: 1;
}
.list_zsjm_four ul li .text p {
  color: #535353;
  font-size: 1.125rem;
  line-height: 1.875rem;
  padding-left: 1.6875rem;
  position: relative;
}
.list_zsjm_four ul li .text p span {
  color: #01477F;
}
.list_zsjm_four ul li .text p::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #F56824;
}
.list_zsjm_four ul li .text p:not(:last-child) {
  margin-bottom: 0.5rem;
}
.squer_pro.mb40 {
  margin-bottom: 2.5rem;
}
.squer_pro .over img {
  height: 15.625rem;
  object-fit: contain;
  object-position: center;
}
.squer_pro .img {
  padding: 0.8125rem;
  border-radius: 0.9375rem;
  border: 1px solid #fff;
  background: #FFF;
  box-shadow: 0px 4px 30px 0px rgba(12, 51, 136, 0.1);
}
.squer_pro .name {
  color: #000;
  text-align: center;
  font-size: 1rem;
  line-height: 1.875rem;
  margin-top: 1.5625rem;
}
.squer_pro:hover .name {
  color: #01477F;
}
.squer_pro:hover .img {
  border-color: #01477F;
}
.squer_pro:hover .over img {
  transform: scale(1.1);
}
.show_pro.show_case .row {
  margin: 0 -1.875rem;
}
.show_pro.show_case .row > div {
  padding: 0 1.875rem;
}
.show_pro.show_case .title {
  padding-bottom: 0;
}
.show_pro.show_case .text {
  margin-top: 2.75rem;
  border-top: 1px solid #D9D9D9;
  padding-top: 1.875rem;
  margin-top: 2rem;
}
.show_pro.show_case .text span {
  font-size: 1.125rem;
  color: #01477F;
}
.show_pro.show_case .swiper-button-prev {
  left: 1.25rem;
}
.show_pro.show_case .swiper-button-next {
  right: 1.25rem;
}
.show_pro.show_case .swiper-button-prev,
.show_pro.show_case .swiper-button-next {
  background-image: none;
}
.show_pro.show_case .swiper-button-prev .iconfont,
.show_pro.show_case .swiper-button-next .iconfont {
  font-size: 2rem;
  font-weight: 300;
  color: #01477F;
}
.show_product_two .text {
  margin-top: 2.75rem;
  text-align: justify;
}
.show_product_two video {
  width: 100% !important;
}
.about_case .top {
  margin-bottom: 2.8125rem;
}
.squer_video {
  margin-bottom: 2.5rem;
}
.squer_video:hover img {
  transform: scale(1.1);
}
.squer_video:hover .name {
  color: #01477F;
}
.squer_video > div.pr {
  padding: 0.8125rem 0.875rem 1.25rem;
  background: #fff;
  border-radius: 0.9375rem;
  background: #FFF;
  box-shadow: 0px 4px 30px 0px rgba(12, 51, 136, 0.1);
  height: 100%;
}
.squer_video .name {
  color: #000;
  text-align: center;
  font-size: 1rem;
  line-height: 1.875rem;
  padding-top: 0.875rem;
}
.icon_vid {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.icon_vid .iconfont {
  font-size: 1.5rem;
  display: block;
  color: #01477F;
}
.icon_vid::before {
  content: "";
  position: absolute;
  top: -0.4375rem;
  left: -0.4375rem;
  width: calc(100% + 0.875rem);
  height: calc(100% + 0.875rem);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: cen 2s infinite;
  z-index: -1;
}
@keyframes cen {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.icon_vid::after {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  width: calc(100% + 2.5rem);
  height: calc(100% + 2.5rem);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: cen 2s infinite;
  z-index: -3;
}
.list_history {
  background: url(?assets/addons/cms/frontend/img/h2.png) no-repeat;
  background-size: contain;
  background-position: center;
}
.list_history .left {
  overflow: hidden;
  padding-right: 6.65rem;
}
.list_history .left .img {
  position: relative;
  margin-left: -4rem;
}
.list_history .left .img .hover {
  position: absolute;
  top: 3.5rem;
  left: 3.5rem;
  width: calc(100% - 7rem);
  height: calc(100% - 7rem);
  background: #d9d9d9;
  border-radius: 50%;
}
.list_history .left .img .hover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  opacity: 0;
}
.list_history .left .img .hover img.active {
  opacity: 1 !important;
}
.list_history .left .mySwiper {
  padding: 5rem 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: calc(100% - 3rem);
  right: 0.875rem;
}
.list_history .left .mySwiper .swiper-slide.swiper-slide-next,
.list_history .left .mySwiper .swiper-slide.swiper-slide-prev {
  right: 2.6rem;
}
.list_history .left .mySwiper .swiper-slide {
  cursor: pointer;
}.list_history .left .mySwiper .swiper-slide div{
    width: 100%;
}
.list_history .left .mySwiper .swiper-slide.swiper-slide-next {
  padding-top: 3rem;
}
.list_history .left .mySwiper .swiper-slide.swiper-slide-prev{
  padding-bottom: 3rem;

}
.list_history .left .mySwiper .swiper-slide {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  right: 12.25rem;
}
.list_history .left .mySwiper .swiper-slide {
  color: #919191;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.625rem;
  /* 144.444% */
  display: flex;
  align-items: center;
  font-style: italic;
}
.list_history .left .mySwiper .swiper-slide.swiper-slide-thumb-active {
  color: #F56824;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  /* 92.857% */
  right: 0;
}
.list_history .left .mySwiper .swiper-slide.swiper-slide-thumb-active div {
  padding-left: 2.5rem;
}
.list_history .left .mySwiper .swiper-slide.swiper-slide-thumb-active div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(245, 104, 36, 0.6);
}
.list_history .left .mySwiper .swiper-slide.swiper-slide-thumb-active div::before {
  width: 0.875rem;
  height: 0.875rem;
  background: #F56824;
  left: 0.4rem;
}
.list_history .left .mySwiper .swiper-slide div {
  position: relative;
  padding-left: 1.25rem;
}
.list_history .left .mySwiper .swiper-slide div::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #C8C8C8;
}
.list_history .right {
  padding-left: 5rem;
  padding-top: 4rem;
}
.list_history .right .flex {
  justify-content: flex-start;
  margin: 5rem -0.625rem 0;
}
.list_history .right .flex .swiper_btn {
  position: static;
  transform: translateY(0);
  margin: 0 0.625rem 0;
}
.list_history .right .year {
  font-size: 12.5rem;
  font-weight: 700;
  line-height: 0.8;
  /* 13% */
  font-style: italic;
  opacity: 0.06;
  background: linear-gradient(180deg, #F56824 -75.95%, rgba(138, 90, 53, 0.28) 86.08%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.list_history .right .text {
  margin-top: 1.875rem;
}
.list_history .right .text p:not(:last-child) {
  margin-bottom: 1.375rem;
}
.list_history .right .year1 {
  color: #F56824;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  /* 43.333% */
  font-style: italic;
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
}
.list_history .right .year1::before {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  width: calc(100% - 10rem);
  height: 1px;
  background: #F56824;
  right: 0.5rem;
}
.swiper_btn {
  width: 3.75rem;
  height: 3.75rem;
  border: 1px solid #01477F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  background: transparent;
  top: auto;
  bottom: 2rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.swiper_btn:hover {
  background: #01477F;
  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: 1rem;
  display: block;
  color: #01477F;
}
.show_news .name {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.25rem;
  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: #01477F;
}
.show_news .margin.text {
  margin: 2.125rem 0 3.125rem;
  border-top: 1px solid #DBDBDB;
  margin-bottom: 2rem;
  padding: 2.1875rem 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: 0.625rem 0 1.75rem;
  justify-content: space-between;
}
.show_news .data .fenxiang {
  display: flex;
  align-items: center;
  margin-left: 2.5rem;
}
.show_news .data .social-share li {
  float: left;
  margin-right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(102, 102, 102, 0.3);
  border-radius: 50%;
  margin-right: 1.25rem !important;
}
.show_news .data .social-share li a {
  font-size: 1rem;
}
.show_news .data .social-share li a:hover {
  color: #fff !important;
}
.show_news .data .social-share li:last-child {
  margin-right: 0;
}
.show_news .data .social-share li a {
  margin: 0 !important;
  width: 100%;
  height: 100%;
  line-height: 2.375rem;
  border: rgba(102, 102, 102, 0.3) !important;
  color: rgba(102, 102, 102, 0.5) !important;
}
.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: #01477F;
  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: #01477F;
}
.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;
}
@media (max-width: 990px) {
  .show_news .name {
    line-height: 30px;
    font-size: 22px;
  }
}
@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: 15px 0;
  }
  .show_news .margin.text {
    margin-top: 0;
    padding-top: 15px;
    padding-bottom: 25px;
    margin-bottom: 15px;
  }
  .show_news .shangxia .tr {
    text-align: left;
  }
}
.subcontent {
  width: 40rem !important;
}
.zil_down {
  display: none;
}
.subcontent .f26 {
  font-weight: bold;
  color: #000;
  color: #171717;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2.5rem;
  text-align: center;
  margin-bottom: 1.875rem;
  margin-bottom: 0.625rem;
}
.subcontent .cont {
  padding: 2.1875rem 3.4375rem;
  margin: 0 auto;
  border-radius: 1.25rem;
  background: #fff;
}
.subcontent .cont ul li .txt {
  font-size: 1rem;
  line-height: 1.25rem;
  padding: 0 0 0.625rem 0;
  margin-top: 0.9375rem;
}
.subcontent .cont ul li span {
  color: #F00;
}
.subcontent .cont ul li input {
  font-size: 1rem;
  color: #686868;
  height: 3.375rem;
  line-height: 3.375rem;
  border: 0.0625rem solid #e8e8e8;
  padding-left: 0.9375rem;
  width: 100%;
}
.subcontent .cont ul li .more {
  display: block;
  background: #F56824;
  color: #fff;
  width: 100%;
  border: none;
  border-radius: 0;
}
.subcontent .cont ul li .more::before {
  display: none;
}
.subcontent .cont ul li .more:hover {
  background: #01477F;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.subcontent .cont .circle {
  position: absolute;
  top: -2.0625rem;
  right: -2.0625rem;
  width: 4.125rem;
  height: 4.125rem;
  line-height: 4.125rem;
  text-align: center;
  background: #343464;
  border-radius: 50%;
}
.subcontent .cont .circle .iconfont {
  color: #fff;
  font-size: 1.25rem;
}
.subcontent .layui-layer-ico {
  background-image: none !important;
  width: 4.625rem !important;
  height: 4.625rem !important;
  border-radius: 50%;
  top: -2.3125rem !important;
  right: -2.3125rem !important;
  background: #01477F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subcontent .layui-layer-ico::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.375rem;
  height: 1.375rem;
  background: url(?assets/addons/cms/frontend/img/guanbi.png) no-repeat;
  background-size: contain;
}
.success_popup {
  display: none;
}
.success_pop_con {
  width: 37.5rem !important;
  border-radius: 1.25rem;
  box-shadow: none !important;
  background: transparent !important;
}
.success_pop_con .layui-layer-ico {
  display: none;
}
.success_pop_con .content {
  text-align: center;
}
.success_pop_con .content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 5.3125rem);
  background: #fff;
  border-radius: 0.9375rem;
  z-index: -1;
}
.success_pop_con .img {
  position: relative;
  margin-top: -5.3125rem;
  height: 11.875rem;
  width: 11.875rem;
  margin: 0 auto;
}
.success_pop_con .name {
  color: #171717;
  text-align: center;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2.75rem;
  margin-top: 2.8125rem;
}
.success_pop_con .text {
  color: #7C7C7C;
  font-size: 1.125rem;
  line-height: 1.875rem;
  margin: 1rem 0 1.875rem;
}
.success_pop_con .more {
  margin: 0 auto 4.75rem;
  border-radius: 0;
  background: #F56824;
  color: #fff;
  cursor: pointer;
}
.success_pop_con .more::before {
  display: none;
}
.success_pop_con .more:hover {
  border-color: #01477F;
  background: #01477F;
  color: #fff;
}
.index_two .swiper-button-next,
.index_five .swiper-button-next,
.index_two .swiper-button-prev,
.index_five .swiper-button-prev,
.index_two .swiper-pagination,
.index_five .swiper-pagination {
  position: static;
  margin-top: 0;
}
.index_two .flex,
.index_five .flex {
  padding: 0 1.5625rem;
  margin-top: 1.875rem;
}
.index_two .swiper-button-white,
.index_five .swiper-button-white {
  background-size: 1.25rem 1.25rem;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #01477F;
  margin-left: 1.5rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_two .swiper-button-white:hover,
.index_five .swiper-button-white:hover {
  background-color: #F56824;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_two .swiper-pagination,
.index_five .swiper-pagination {
  width: calc(100% - 3.75rem * 2 - 3rem);
  height: 2px;
  background: rgba(0, 79, 139, 0.2);
}
.index_two .swiper-pagination-progressbar .swiper-pagination-progressbar-fill,
.index_five .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 3px;
  background: #01477F;
  top: -1px;
}
.index_two {
  background: #fff;
}
.index_two .top .right ul {
  display: flex;
  justify-content: flex-end;
}
.index_two .top .right ul li:not(:first-child) {
  margin-left: 3.125rem;
}
.index_two .top .right ul li a {
  padding-left: 1.5rem;
  color: #000;
  font-size: 1.25rem;
  line-height: 1.875rem;
  position: relative;
}
.index_two .top .right ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #B2B2B2;
}
.index_two .top .right ul li:hover a,
.index_two .top .right ul li.active a {
  color: #01477F;
}
.index_two .top .right ul li:hover a::before,
.index_two .top .right ul li.active a::before {
  background: #01477F;
}
.index_two .bot {
  margin: 2.4375rem -1.5625rem 0;
}
.index_two .bot > div {
  height: 0;
  overflow: hidden;
}
.index_two .bot > div.active {
  height: auto;
}
.index_two .bot > div .img {
  margin-top: 1.25rem;
}
.index_two .bot .swiper-slide {
  padding: 1rem 1.5625rem;
}
.index_two .bot .swiper-slide:hover .name {
  color: #01477F;
}
.index_two .bot .swiper-slide:hover .text::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_two .bot .swiper-slide a {
  border-radius: 0.9375rem;
  background: #FFF;
  box-shadow: 0px 4px 1rem 0px rgba(12, 51, 136, 0.1);
  padding: 1.5rem 1.875rem;
}
.index_two .bot .swiper-slide .name {
  color: #000;
  font-size: 1.375rem;
  line-height: 2.125rem;
}
.index_two .bot .swiper-slide .text {
  padding-top: 1.5625rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  height: calc(3.75rem + 1.5625rem);
}
.index_two .bot .swiper-slide .text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #01477F;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_two .bot .swiper-slide .img img {
  height: 16.25rem;
  object-fit: contain;
}
.alignc {
  align-items: center;
}
.index_one {
  position: relative;
  background: #fff;
  z-index: 3;
}
.index_one .more {
  color: #fff;
}
.index_one .more::before {
  background: #fff;
}
.index_one .more:hover {
  background: #F56824;
  color: #F56824;
}
.index_one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 79, 139, 0.05);
  z-index: -1;
}
.index_one .ll .text {
  color: rgba(0, 0, 0, 0.8);
  margin: 2.1875rem 0;
  font-size: 1rem;
  line-height: 1.75rem;
}
.index_one .ll ul li {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.125rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.875rem;
}
.index_one .ll ul li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
}
.index_one .ll ul li:not(:last-child) {
  margin-bottom: 0.625rem;
}
.index_one .zb {
  position: absolute;
  bottom: 1.875rem;
  left: 0.625rem;
  width: 34%;
  z-index: -1;
  opacity: 0.8;
}
.index_one .y {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  max-height: 95%;
}
.index_one .r {
  text-align: center;
}
.index_one .r > img {
  box-shadow: 0px 4px 30px 0px rgba(12, 51, 136, 0.1);
  border-radius: 50%;
}
.index_one .r img:nth-child(2) {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 0;
  left: 50%;
  width: calc(100% - 7.5rem);
  height: calc(100% - 7.5rem);
  border-radius: 50%;
}
.index_one .left {
  width: calc(100% - 24rem);
  padding-right: 2.5rem;
}
.index_one .left .ll .name {
  color: #000;
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin-top: 1.5625rem;
}
.index_one .left .ll .text {
  margin: 0.625rem 0 1.5625rem;
}
.index_one .left .ll ul {
  display: flex;
  flex-wrap: wrap;
}
.index_one .left .ll ul li {
  width: 50%;
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-bottom: 1.25rem;
}
.index_one .left .ll ul li::before {
  display: none;
}
.index_one .left .ll ul li .icon {
  width: 3.375rem;
}
.index_one .left .ll ul li p {
  width: calc(100% - 3.375rem);
  padding-left: 1rem;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  line-height: 1.625rem;
}
.index_one .left .swiper-slide {
  padding: 1rem 1rem 1rem 0;
}
.index_one .right {
  width: 24rem;
  display: flex;
  align-items: center;
}
.index_one .right ul {
  width: 100%;
}
.index_one .right ul li {
  padding: 1.5625rem 0;
  position: relative;
}
.index_one .right ul li:hover,
.index_one .right ul li.active {
  padding: 2.5rem 0;
}
.index_one .right ul li:hover a div,
.index_one .right ul li.active a div {
  color: #F56824;
}
.index_one .right ul li:hover a p,
.index_one .right ul li.active a p {
  font-size: 1.875rem;
  padding-left: 4rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_one .right ul li:hover a .dian,
.index_one .right ul li.active a .dian {
  width: 4.25rem;
  height: 4.25rem;
  left: 16rem;
  display: flex;
  align-items: center;
  justify-items: center;
  border-color: #F56824;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_one .right ul li:hover a .dian img,
.index_one .right ul li.active a .dian img {
  opacity: 1;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_one .right ul li::before {
  content: "";
  position: absolute;
  left: 18.125rem;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  top: 0;
}
.index_one .right ul li a > div:nth-child(1) {
  width: 18rem;
  padding-right: 2.5rem;
}
.index_one .right ul li a > div:nth-child(2) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 17.7rem;
}
.index_one .right ul li p {
  width: 5.625rem;
  text-align: left;
  padding-left: 2rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_one .right ul li a {
  display: flex;
  align-items: center;
  color: #0B0B0B;
  text-align: right;
  font-size: 1.125rem;
  line-height: 1.875rem;
}
.index_one .right ul li .dian {
  width: 0.875rem;
  height: 0.875rem;
  border: 2px solid #0C3388;
  background: #fff;
  border-radius: 50%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  overflow: hidden;
}
.index_one .right ul li .dian img {
  opacity: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_one .right ul li p {
  color: #E6E6E6;
  font-size: 1.25rem;
}
.index_one .swiper-slide {
  display: flex;
  align-items: center;
}
.index_one .swiper-slide .ll {
  width: 38%;
  padding-right: 3.125rem;
}
.index_one .swiper-slide .r {
  width: 62%;
  position: relative;
}
.swiper_pag1 .swiper-pagination-bullet {
  margin: 0 0.375rem;
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: transparent;
  opacity: 1;
}
.swiper_pag1 .swiper-pagination-bullet-active {
  background: #01477F;
  border-color: #01477F;
  width: 2rem;
  border-radius: 1.25rem;
}
.index_three {
  background: url(?assets/addons/cms/frontend/img/18.png) no-repeat;
  background-size: cover;
}
.index_three .left {
  padding-top: 2.1875rem;
}
.index_three .left .name {
  color: #000;
  margin: 1.5rem 0 1.25rem;
  font-size: 1.25rem;
  line-height: 2.5rem;
}
.index_three .left .icon {
  text-align: center;
  margin-top: 5rem;
}
.index_three .left .icon img {
  height: 4rem;
}
.index_three .left .con {
  display: inline-block;
}
.index_three .left .num {
  color: #000;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.5rem;
  position: relative;
  padding-bottom: 0.625rem;
  margin: 1.875rem 0 1rem;
}
.index_three .left .num sub {
  bottom: 0;
  left: -0.25rem;
  font-size: 1.25rem;
}
.index_three .left .num::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.875rem;
  height: 2px;
  background: #F56824;
}
.index_three .left .text2 {
  color: #353535;
  text-align: center;
  font-size: 1rem;
  line-height: 1.875rem;
}
.index_three .left .text {
  margin-bottom: 2.5rem;
}
.index_three .left .more {
  color: #fff;
}
.index_three .left .more::before {
  background: #fff;
}
.index_three .left .more:hover {
  background: #F56824;
  color: #F56824;
}
.index_three .right .flex2 {
  border-radius: 0.9375rem;
  overflow: hidden;
}
.index_three .right .l {
  width: calc(100% - 12.5rem);
}
.index_three .right .l ul li {
  display: none;
}
.index_three .right .l ul li.active {
  display: block;
}
.index_three .right .r {
  width: 12.5rem;
  background: linear-gradient(45deg, #2086d4, #03477f);
}
.index_three .right .r ul {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
.index_three .right .r ul li {
  width: 100%;
  position: relative;
}
.index_three .right .r ul li.active,
.index_three .right .r ul li:hover {
  background: #01477F;
}
.index_three .right .r ul li.active::before,
.index_three .right .r ul li:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.25rem;
  width: 0;
  height: 0;
  border-top: 0.625rem solid transparent;
  border-right: 0.625rem solid #01477F;
  border-bottom: 0.625rem solid transparent;
  border-left: 0.625rem solid transparent;
}
.index_three .right .r ul li a {
  color: #FFF;
  font-size: 1.25rem;
  display: block;
  height: 100%;
}
.index_three .right .r ul li a div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.index_four {
  background: #fff url(../img/Vector.png) no-repeat;
  background-size: contain;
  background-position: left bottom;
}
.index_four .left .margin {
  margin: 1.25rem 0 1.5625rem;
}
.index_four .left .more {
  margin-top: 3.75rem;
  color: #fff;
}
.index_four .left .more::before {
  background: #fff;
}
.index_four .left .more:hover {
  background: #F56824;
  color: #F56824;
}
.index_four .left ul {
  display: flex;
  flex-wrap: wrap;
}
.index_four .left ul li {
  flex: 1 0 0;
}
.index_four .left ul li .num {
  position: relative;
  line-height: 3.125rem;
}
.index_four .left ul li .num span {
  color: #000;
  font-size: 2.5rem;
  font-weight: 700;
}
.index_four .left ul li .num sub {
  font-weight: 600;
  font-size: 1.25rem;
  bottom: 0;
  margin-left: 5px;
}
.index_four .left ul li .num::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.875rem;
  height: 2px;
  background: #F56824;
}
.index_four .left ul li .text {
  color: #353535;
  font-size: 1rem;
  line-height: 1.875rem;
  margin-top: 0.625rem;
}
.index_five {
  background: url(?assets/addons/cms/frontend/img/19.png) no-repeat;
  background-size: cover;
}
.index_five .more_a:hover {
  color: #F56824;
}
.index_five .margin {
  margin: 2.5rem -1.5625rem 0;
}
.index_five .swiper-slide {
  padding: 0 1.5625rem;
}
.index_five .swiper-slide:hover .name {
  color: #01477F;
}
.index_five .swiper-slide:hover .over img {
  transform: scale(1.1);
}
.index_five .swiper-slide > a {
  padding: 1.875rem;
  background: #fff;
  border-radius: 0.9375rem;
}
.index_five .swiper-slide > a .over {
  margin-top: 1.25rem;
}
.index_five .swiper-slide .data {
  display: flex;
  align-items: center;
  color: #888;
  font-size: 1rem;
  line-height: 1.875rem;
}
.index_five .swiper-slide .data .iconfont {
  font-size: 1.125rem;
}
.index_five .swiper-slide .name {
  color: #000;
  font-size: 1.25rem;
  line-height: 2.5rem;
  margin-bottom: 0.625rem;
}
.container_p {
  padding-top: 6.25rem;
}
.index_six {
  position: relative;
  z-index: 10;
}
.index_six ul {
  display: flex;
  flex-wrap: wrap;
  margin: 3.125rem -1rem 0;
}
.index_six ul li {
  width: 16.6%;
  padding: 0 1rem;
  margin-bottom: 1.75rem;
}
.index_six ul li > div {
  border-radius: 0.625rem;
  background: #fff;
  padding: 0.625rem;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 6.25rem;
}
.index_six ul li > div img {
  object-fit: contain;
}
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
}
.z9 {
  position: relative;
  z-index: 9;
}
.probg {
  background: url(?assets/addons/cms/frontend/img/bgpro.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.icon_vid {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.icon_vid .iconfont {
  font-size: 1.5rem;
  display: block;
  color: #F56824;
}
.icon_vid::before {
  content: "";
  position: absolute;
  top: -0.4375rem;
  left: -0.4375rem;
  width: calc(100% + 0.875rem);
  height: calc(100% + 0.875rem);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: cen 2s infinite;
  z-index: -1;
}
@keyframes cen {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.icon_vid::after {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  width: calc(100% + 2.5rem);
  height: calc(100% + 2.5rem);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: cen 2s infinite;
  z-index: -3;
}
.tdt-bottom,
.tdt-top {
  z-index: 999 !important;
}
.fp-auto-height {
  z-index: 999;
}
.phone_fix_footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.phone_fix_footer ul {
  display: flex;
  background: #01477F;
}
.phone_fix_footer ul li {
  width: 25%;
  text-align: center;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone_fix_footer ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.phone_fix_footer ul li .img {
  position: absolute;
  bottom: 57px;
  left: 0;
  width: 6.25rem;
  height: 6.25rem;
  display: none;
}
.phone_fix_footer ul li:hover .img {
  display: block;
}
.phone_fix_footer ul li a {
  padding: 6px 0;
}
.phone_fix_footer ul li a .name {
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  margin-top: 3px;
}
.phone_fix_footer ul li a .icon img {
  height: 20px;
}
.phone_erji {
  margin-bottom: 20px;
}
.phone_erji div {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.phone_erji div a {
  border: 1px solid #ddd;
  margin-top: -1px;
  margin-left: -1px;
  height: 40px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 10px);
  margin: 0px 5px 10px;
}
.phone_erji div a.active {
  background: #01477F;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  color: #fff;
  border-color: #01477F;
}
.icon_vid {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.icon_vid .iconfont {
  font-size: 1.5rem;
  display: block;
  color: #01477F;
}
.icon_vid::before {
  content: "";
  position: absolute;
  top: -0.4375rem;
  left: -0.4375rem;
  width: calc(100% + 0.875rem);
  height: calc(100% + 0.875rem);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: cen 2s infinite;
  z-index: -1;
}
@keyframes cen {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.icon_vid::after {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  width: calc(100% + 2.5rem);
  height: calc(100% + 2.5rem);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: cen 2s infinite;
  z-index: -3;
}
.footer .left {
  width: 70%;
}
.footer .left ul {
  display: flex;
  justify-content: space-between;
}
.footer .left ul .text {
  color: #fff;
  font-size: 0.875rem;
}
.footer .right {
  width: 30%;
  text-align: right;
}
.footer .right > ul {
  display: inline-block;
}
.footer .right > ul li {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1rem;
}
.footer .right > ul li:not(:last-child) {
  margin-bottom: 0.625rem;
}
.footer .right > ul li .icon {
  width: 1.25rem;
  height: 1.5rem;
}
.footer .right > ul li .icon img {
  width: 100%;
}
.footer .right > ul li p {
  width: calc(100% - 1.25rem);
  padding-left: 0.65rem;
  font-size: 0.875rem;
  text-align: left;
}
.footer .right .last_right {
  padding-left: 1.5rem;
  width: 100%;
  text-align: left;
  margin-top: 0.625rem;
}
.footer .right .last_right ul {
  display: flex;
  justify-content: center;
  padding-left: 3rem;
  margin: 0 -0.75rem;
}
.footer .right .last_right ul li {
  padding: 0 0.75rem;
  width: 7.1875rem;
  flex-wrap: wrap;
  color: #ECECEC;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.875rem;
  margin-top: 0.75rem;
}
.footer .right .last_right ul li div {
  width: 100%;
}
.footer .right .last_right ul li img {
  background: #fff;
  width: 100%;
}
.content_404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.content_404 .aa {
  font-size: 7rem;
  font-weight: bolder;
  line-height: 1;
  color: #01477F;
  margin-bottom: 0.625rem;
}
.content_404 .text {
  font-size: 1.125rem;
  margin: 1rem 0 2rem;
  line-height: 1.875rem;
}
.content_404 .more {
  margin: 0 auto;
}
.index_five .swiper-slide > a .over img{
    aspect-ratio: 16 / 9; 
    
}
