/*@import 'iconfont.css';
@font-face {
  font-family: "iconfont";
  src: url('./iconfont/iconfont.woff2?t=1635210561214') format('woff2'), url('./iconfont/iconfont.woff?t=1635210561214') format('woff'), url('./iconfont/iconfont.ttf?t=1635210561214') format('truetype');
}
@font-face {
  font-family: MEBHeiHeiTi;
  src: url("../fonts/MEBHeiHeiTi.woff2");
  font-display: swap;
}*/
:root {
  --green: #81b820;
  --blue: #003f98;
}

body {
  font-family: "PingFangSC-Regular", "Noto Sans SC", "Microsoft Yahei", "微软雅黑", "Arial";
  font-weight: 400;
  color: #333;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

a {
  color: inherit;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

.w1440 {
  width: 1440px;
  margin: 0 auto;
}

.w1400 {
  width: 1400px;
  margin: 0 auto;
}
/*.fixed{
    position: fixed;
    overflow: hidden;
    width: 100%;
}*/
.no-scroll{
    overflow: hidden;
}
.header ::-webkit-scrollbar {
  width: 6px; /* 水平滚动条的高度、垂直滚动条的宽度 */
 
}
 
/* 滚动条轨道 */
.header  ::-webkit-scrollbar-track {
  background: #f1f1f1; /* 颜色和样式 */
}
 
/* 滚动条滑块 */
.header ::-webkit-scrollbar-thumb {
  background: #888; /* 滑块颜色 */
}
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;

  box-shadow: 0 2px 4px 0 rgba(31, 41, 67, 0.08);
  height: 60px;
  display: flex;
  justify-content: space-between;

}
.header:before{
    content: '';
    position: absolute;
    width: 100%;
   height: 100%;
   left: 0;
   top: 0;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(20px);
    z-index: -1;
}

.header.active {
  /*background: rgba(255, 255, 255, 1);*/
}

.head-lf {
  display: flex;
  align-items: center;
}

.header .logo {
  width: 85px;
  margin: 0 30px;
}

.nav {
  display: flex;

}

.nav-item {
  flex: none;
  padding: 0 16px;
 
}
.navitems{
 position: relative;
    
}
.sub_nav {
    position: absolute;
    width: 88px;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    display: none;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.sub_nav li a{
    display: block;
    text-align: center;
    padding: 5px 0;
    transition: all 0.5s;
    color: rgba(0, 0, 0, 0.6);
    background: #fff;
    line-height: 20px;
    font-size: 12px;
    transition: all .5s;
    
}
.sub_nav li a:hover{
    background-color: #fafafa;
        color: #333;
}
.nav-item .nav1 {
  font-size: 12px;
  color: #141F39;
  line-height: 60px;
}


.head-rg {
  display: flex;
}

.header .phone {
  font-size: 14px;
  color: #1368B7;
  font-weight: 600;
  /*display: flex;
  align-items: center;*/
  margin-right: 24px;
}
.header .phone a{
    display: flex;
    align-items: center;
    height: 100%;
}
.header .phone img {
  width: 16px;
  margin-right: 5px;

}

.header .old {
  background: #FFFFFF;
  box-shadow: inset 1px 0 0 0 #EDEEF0;
  height: 60px;
}

.header .old a {
  display: flex;
  width: 100%;
  height: 100%;
  padding-left: 24px;
  padding-right: 20px;
  align-items: center;
  font-size: 12px;
  color: #141F39;
}

.header .old a img {
  width: 3px;
  margin-left: 5px;
}

.header .nav-item .nav2 {
  position: absolute;
  top: 100%;
  left: 0;
  /*overflow-y: auto;*/
  width:100%;
  display: none;
  z-index: -10;
  height: 60vh;
  min-height: 280px;
  max-height: 700px;

  background-color: rgba(247,249,252,0.90);
  box-shadow: 0 2px 14px 0 rgba(15,25,70,0.10);
  -webkit-backdrop-filter: blur(20px);
   backdrop-filter: blur(20px);
}

.header .nav-item .nav2 .nav2-inner {
  width: 100%;
  display: flex;
  height: 100%;
}

.header .nav-item .nav2 .nav2-lf {
  flex: 0 0 14.58%;
  padding: 1.5625vw 2.08vw;
  background: #fff;
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
.header .nav-item .nav2 .nav2-lf:before{
    content: '';
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
  background-image: linear-gradient(270deg, rgba(255,255,255,0.00) 24%, #FFFFFF 85%), linear-gradient(180deg, #FFFFFF 64%, rgba(255,255,255,0.00) 100%);
}
.header .nav-item .nav2 .nav2-lf>p,
.header .nav-item .nav2 .nav2-lf>div{
    position: relative;
    z-index: 2;
}
.header .nav-item .nav2 .nav2-rg {
  flex: 1;
  padding-top: 1.5625vw;
  overflow-y: auto;
}
.header ::-webkit-scrollbar {
  width: 6px; /* 水平滚动条的高度、垂直滚动条的宽度 */
 
}
 
/* 滚动条轨道 */
.header  ::-webkit-scrollbar-track {
  background: #f1f1f1; /* 颜色和样式 */
}
 
/* 滚动条滑块 */
.header ::-webkit-scrollbar-thumb {
  background: #888; /* 滑块颜色 */
}
 

.header .nav2-list {
  display: flex;
  flex-wrap: wrap;
}

.header .nav2-list .fw-btm {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex: 0 0 100%;
}

.header .nav2-list .nav2-item {
  flex: 0 0 16.66%;
  padding-left: 1.5625vw;
  padding-right: 2.6vw;
}

.header .nav2 .close {
  top: 1.77vw;
  width: 16px;
  right: 2.76vw;
  cursor: pointer;
  position: absolute;
  display: none;
}

.header .nav2 .close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header .nav2-tit a {
  display: flex;
  font-size: 14px;
  color: #0F1946;
  letter-spacing: 0;
  text-align: center;
  font-weight: 600;
  line-height: 20px;
}

.header .nav2-tit a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 6px;
}

.header .nav2-tit {
  padding-bottom: 0.85vw;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: 1.05vw;
}

.header .nav-item .nav2 .nav2-lf p {
  font-size: 14px;
  color: #186BB8;
  letter-spacing: 0;
  text-align: center;
  font-weight: 600;
  text-align: right;
}

.header .nav3-item a {
  display: block;
  margin-bottom: 1.25vw;
}

/*.header .nav-item:nth-child(3) .nav3-item a {
  margin-bottom: 10px;
}*/

.header .nav3-item .nav3-tit {
  font-size: 14px;
  color: #0F1946;
  letter-spacing: 0;
  line-height: 32px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.
.header .nav3-item .nav3-tit .labels {
  background-image: linear-gradient(270deg, #2BA1DC 0%, #1368B7 100%);
  line-height: 20px;
  padding: 0 10px;
  margin-left: 3px;
  font-size: 12px;
  color: #FFFFFF;
  letter-spacing: 0;
  font-weight: 700;
}


.header .nav3-item .nav3-des {
  font-size: 12px;
  color: rgba(15, 25, 70, 0.60);
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
}

.header .nav3-item a:hover .nav3-tit,
.header .nav3-item a:hover .nav3-des {
  color: #186BB8;
}

.header .nav-item:nth-child(2) .nav2 .nav2-lf {
  background-image: url('../img/ProductBg.png');
}

.header .nav-item:nth-child(3) .nav2 .nav2-lf {
  background-image: url('../img/SolutionBg.png');
}

.header .nav-item:nth-child(4) .nav2 .nav2-lf {
  background-image: url('../img/HandBookBg.png');
}

.header .nav2-lf .nav-change-item {
  font-size: 14px;
  color: #0F1946;
  letter-spacing: 0;
  text-align: right;
  font-weight: 400;
  margin-bottom: 1.05vw;
  cursor: pointer;
}

.header .nav2-lf .nav-change-item.active {
  color: #186BB8;
  font-weight: 600;
}

.phone_menu {
  display: none;
}

.fw-item {
  display: none;
}
@media screen and (max-width:1440px){
    .header .nav-item .nav2 {
        max-height: calc(100vh - 100px);
    }
}
@media screen and (max-width:1024px) {
  .header .nav-item .nav2 .nav2-lf:before{
      content: none;
  }
  .xuan:after {
    content: '';
    position: absolute;
    right: 2px;
    top: 0px;
    bottom: 0px;
    margin: auto 0;
    display: block;
    width: 8px;
    height: 8px;
    background-color: transparent;
    border-right: 2px solid rgba(0, 0, 0, 0.2);
    border-top: 2px solid rgba(0, 0, 0, 0.2);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.5s;
  }
  .header .sub_nav li a{
    font-size: 14px;
    color: #0F1946;
    letter-spacing: 0;
    line-height: 32px;
    font-weight: 400;
    display: flex;
    width: 100%;
    color: #333;
    align-items: center;
}
  .header .sub_nav li a:hover{
      background-color: #fff;
}
.header .nav-item .nav2{
    overflow:hidden;
    box-shadow: none;
    max-height: none;
    min-height: none;
}
  .xuan_act:after {
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .head-rg {
    align-items: center;
  }

  .fw-item {
    font-size: 14px;
    line-height: 32px;
    display: block;
    flex: 0 0 100%;
    font-weight: 500;
    color: #0F1946;
    padding: 5px 0;
    position: relative;
  }

  .header .nav2-list:not(:first-child) .nav2-tit {
    display: none;
  }

  .fw-btm {
    flex: 0 0 100%;
  }

  .header .nav2-list .fw-btm {
    display: none;
  }

  .phone_menu {
    display: block;
    width: 24px;
    height: 16px;
    position: relative;
    margin-left: 0px;
    margin-right: 20px;
  }

  .phone_menu span {
    background: #1368B7;
    height: 2px;
    display: block;
    transition: 0.5s;
    width: 100%;
  }

  .phone_menu span:first-child {
    transition: 0.5s;
    position: absolute;
    transform: translateY(8px);
  }

  .phone_menu span:last-child {
    transition: 0.5s;
    position: absolute;
    transform: translateY(16px);
    top: 0;
  }

  .menu_act span:first-child {
    transition: 0.5s;
    transform: translateY(8px) rotate(45deg);
  }

  .menu_act span:last-child {
    transition: 0.5s;
    transform: translateY(8px) rotate(135deg);
  }

  .menu_act span:nth-child(2) {
    opacity: 0;
    transition: 0.5s;
  }

  .nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    height: calc(100% - 60px);
    padding: 0px 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .nav-item .nav1 {
    line-height: 32px;
    font-size: 16px;
    position: relative;
  }

  .header .nav-item .nav2 {
    position: static;
    background: #fff;
  }
    .header .nav-item .sub_nav {
    position: static;
    background: #fff;
    transform: none;
    box-shadow: none;
  }

  .header .nav-item:nth-child(2) .nav2 .nav2-lf {
    display: none;
  }

  .header .nav-item:nth-child(3) .nav2 .nav2-lf {
    display: none;
  }

  .header .nav2 .close {
    display: none;
  }

  .header .nav3-item .nav3-tit .labels {
    display: none;
  }

  .header .nav3-item .nav3-des {
    display: none;
  }

  /* .nav3-list {
    display: none;
  }*/

  .header .nav2-list .nav2-item {
    flex: 0 0 100%;
    padding: 0 10px;
  }

  .nav>div {
    padding: 10px 0;
    border-bottom: 1px solid #d4d4d4;
  }

  .header .nav2-tit {
    padding-bottom: 10px;
    border-bottom: 1px solid #E6E6E6;
    margin-top: 10px;
  }

  .header .nav3-item a {
    line-height: 24px;
    margin-bottom: 0;
  }

  .header .nav-item .nav2 .nav2-rg {
    padding-top: 0px;
    overflow: hidden;
  }
  .header .nav-item .nav2{
      height: auto;
      max-height: none;
            min-height: auto;
  }

  .header .nav-item:nth-child(4) .nav2 .nav2-lf {
    display: none;
  }

  .header ::-webkit-scrollbar {
    width: 2px;
  }

  /* 自定义滚动条轨道 */
  .header ::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* 轨道颜色 */
  }

  /* 自定义滚动条的滑块（thumb） */
  .header ::-webkit-scrollbar-thumb {
    background: #888;
    /* 滑块颜色 */
  }


}

@media screen and (max-width:768px) {
  .header .logo {
    width: 64px;
    margin: 0 20px;
  }

  .header .phone,
  .phone_menu {
    margin-right: 10px;
  }

  .header,
  .header .old {
    height: 40px;
  }

  .header .old a {
    padding: 0 12px;
  }

  .nav {
    top: 40px;
    height: calc(100vh - 40px);
  }
}

.contact {
  padding-bottom: 2.96875vw;
}

.contact .w1400 {

  box-shadow: 0 4px 14px 0 rgba(42, 62, 109, 0.08);

}

.contact .contact-inner {
  border:2px solid #fff ;
  background: url('../img/ces02.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  padding-right: 46px;
  align-items: center;
  padding-top: 2.448vw;
  padding-bottom: 2.448vw;
  position: relative;
}
.contact .contact-inner:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(270deg, rgba(248, 250, 250, 0.00) 0%, #F1F3F5 40%, #F4F6F8 100%);
}
.contact .contact-inner>div{
    position: relative;
    z-index: 4;
}
.contact .contact-inner .contact-rg {
  display: flex;
}
.contact .contact-inner .contact-rg form{
      display: flex;
}
.contact .inp {
  width: 240px;
  height: 60px;
  margin-right: 10px;
}

.contact .tijiao {
  width: 108px;
  height: 60px;
  background: #1368B7;
  line-height: 60px;
  font-size: 18px;
  color: #FFFFFF;
  letter-spacing: 0;
  font-weight: 400;
  text-align: center;
  display: block;
  outline: none;
  border: none;
}

.contact .inp input {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #C9CFD3;
  outline: none;
  font-size: 18px;
  color: #333;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 400;
  padding: 0 16px;
}

.contact .inp input::placeholder {
  color: rgba(15, 25, 70, 0.40);
}

.contact .contact-tit {
  color: #1F2943;
  letter-spacing: 0;
  text-align: justify;
  line-height: 1.238;
  font-weight: 400;

}

.contact-des {
  opacity: 0.8;
  font-size: 14px;
  color: #1F2943;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 200;
  margin-top: 10px;
}
      .contact .contact-inner .contact-rg form{
         position: relative;
         padding-bottom: 30px;
       }
       .baohu{
           position: absolute;
           display: flex;
           bottom: 0;
           left:0;
           color: #1368B7;
       }

@media screen and (max-width:1200px) {
  .contact .inp {
    width: 200px;
    height: 50px;
  }

  .contact .tijiao {
    width: 88px;
    line-height: 50px;
    height: 50px;
  }
}

@media screen and (max-width:1024px) {
  .contact .contact-inner {
    padding: 2.448vw 20px;
  }



  .contact .inp {
    width: 180px;
    height: 46px;
  }

  .contact .tijiao {
    width: 80px;
    line-height: 46px;
    height: 46px;
  }
}

@media screen and (max-width:768px) {
  .contact .contact-inner {
    flex-wrap: wrap;
    padding: 15px;
  }

  .contact .contact-inner .contact-rg {
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .contact .contact-inner .contact-rg form{
      flex-wrap: wrap;
}

  .contact .inp {
    width: 100%;
    height: 40px;
    margin-right: 0;
    margin-bottom: 10px;
    flex: 0 0 100%;
  }

  .contact .tijiao {
    line-height: 40px;
    height: 40px;
  }

  .contact .tijiao,
  .contact .inp input {
    font-size: 16px;
  }


}


.right-nav {
  position: fixed;
  bottom: 4.64vw;
  right: 0;
  z-index: 99;
}

.right-nav .free {
  width: 50px;
  height: 50px;
}

.right-nav .rnav-list {
  background: #FFFFFF;
  border: 2px solid #F4F7FF;
  box-shadow: 0 7px 14px 0 rgba(42, 62, 109, 0.20);
  border-radius: 2px 0 0 2px;
  width: 50px;
  margin-top: 1.05vw;
}

.right-nav .rnav-item a {
  width: 100%;
  display: block;
  position: relative;
  padding: 15px 0 16px;
}

.right-nav .rnav-item a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 24px;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.12);
}

.right-nav .rnav-item:last-child a:after {
  content: none;
}

.right-nav .rnav-item a .rnav-ico {
  width: 24px;
  margin: 0 auto;
}

.right-nav .rnav-item a .rnav-tit {
  width: 24px;
  margin: 6px auto 0;
  font-size: 12px;
  color: #1F2943;
  letter-spacing: 0;
  line-height: 16px;
  font-weight: 400;

}

.right-nav .rnav-item .ewm1 {
  position: absolute;
  width: 100px;
  left: -110px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.right-nav .rnav-item .phoner {
  position: absolute;
  left: -10px;
  top: 50%;
  color: #333;
  font-size: 20px;
  transform: translate(-100%, -50%);
  -webkit-transform: translate(-100%, -50%);
  -moz-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  white-space: nowrap;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  font-size: 14px;
  line-height: 26px;
  padding: 0 15px;
  color: #1F2943;
}

.right-nav .rnav-item:hover .phoner,
.right-nav .rnav-item:hover .ewm1 {
  visibility: visible;
  opacity: 1;
}

.right-nav .totop {
  background: #FFFFFF;
  border: 2px solid #F4F7FF;
  box-shadow: 0 7px 14px 0 rgba(42, 62, 109, 0.20);
  border-radius: 4px 0 0 4px;
  text-align: center;
  margin-top: 1.05vw;
  width: 50px;
  height: 40px;
  display: none;
}

.right-nav .totop img {
  width: 24px;
}

.right-nav .free a {
  width: 100%;
  height: 100%;
  display: block;
  background: #FFFFFF;
  border: 2px solid #F4F7FF;
  box-shadow: 0 7px 14px 0 rgba(42, 62, 109, 0.20);
  border-radius: 4px 0 0 4px;
  text-align: center;
  padding: 9px;
  font-size: 12px;
  color: #ED5814;
  letter-spacing: 0;
  line-height: 16px;
  font-weight: 700;
}

.footer {
  background: #F7F8FA;
  box-shadow: inset 0 1px 0 0 #F4F6F8;
  padding-bottom: 1.5625vw;
  padding-top: 3.177vw;
}

.footer-top {
  display: flex;
}

.footer-top .footer-nav {
  flex: 0 0 77.72%;
  display: flex;
}

.footer-top .footer-item {
  flex: 1;
}

.footer .footer-nav1 {
  font-size: 14px;
  color: #001A33;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 500;
}

.footer .nav2-item {
  opacity: 0.6;
  font-size: 14px;
  color: #001A33;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 200;
  margin-top: 1vw;
  transition: all .5s;
}

.footer .nav2-item:hover {
  opacity: 1;
}

.footer .footer-lf {
  flex: 1;
  margin-right: 3%;
}

.footer .hots {
  font-size: 14px;
  color: #001A33;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 500;
}

.footer .phones {
  font-size: 14px;
  color: #001A33;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 1vw;
}

.footer .follow {
  font-size: 14px;
  color: #001A33;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 2.03125vw;
}

.footer .wxin {
  margin-top: 1vw;
  position: relative;
}

.footer .wxin .ico {
  width: 24px;
}


.footer .wxin .ewm {
  position: absolute;
  width: 100px;
  left: 0%;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  top: 0px;
  top: 0px;
  opacity: 0;
  visibility: hidden;
  z-index: 2;

}

.footer .wxin:hover .ewm {
  visibility: visible;
  /* top: -100px; */
  transform: translate(0%, -100%);
  -webkit-transform: translate(0%, -100%);
  -moz-transform: translate(0%, -100%);
  -ms-transform: translate(0%, -100%);
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s
}

.footer .footer-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5625vw;
  border-top: 1px solid #DEE3E9;
  margin-top: 2.135vw;
}

.footer .footer-btm .e_copyright {
  opacity: 0.6;
  font-size: 12px;
  color: #001A33;
  letter-spacing: 0;
  line-height: 20px;
  font-weight: 400;
}

.footerbr {
  display: flex;
  flex-wrap: wrap;
}

.footer .e_ganprovider {
  opacity: 0.6;
  font-size: 12px;
  color: #001A33;
  letter-spacing: 0;
  line-height: 20px;
  font-weight: 400;
  transition: all .5s;
}

.footer .e_provider {
  opacity: 0.6;
  font-size: 12px;
  color: #001A33;
  letter-spacing: 0;
  line-height: 20px;
  font-weight: 400;
  transition: all .5s;
  margin-left: 1.5vw;
}

.footer .e_provider:hover,
.footer .e_ganprovider:hover {
  opacity: 1;
}


@media screen and (max-width:768px) {
  .footer-top {
    flex-wrap: wrap;
  }

  .footer .footer-lf {
    flex: 0 0 100%;
    margin-right: 0;
  }

  .footer-top .footer-nav {
    flex: 0 0 100%;
    margin-top: 10px;
  }

  .footer-top .footer-item:not(:last-child) {
    display: none;
  }

  .footer .footer-btm {
    flex-wrap: wrap;
  }
}

.banner {
  position: relative;
  min-height: 200px;
}

.banner>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-tit {
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 1.2;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 3.125vw;
  transform: translateY(-50%);
}

@media screen and (max-width:1200px) {
  .banner {
    height: 200px;
  }
}

.video_con {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 99;
}

.video_con .vid_dom {
  width: 70%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video_con video {
  width: 100%;
}

.video_con .close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: #000;
  border-radius: 100%;
  cursor: pointer;
  z-index: 2;
}

.video_con .close:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

.video_con .close:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  transform: translateX(-50%) rotate(135deg);
}


.p_page {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.p_page div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p_page a,
.p_page span {
  background: #F3F3F3;
  border-radius: 2px;
  width: 24px;
  line-height: 32px;
  font-size: 14px;
  color: #001A33;
  text-align: center;
  font-weight: 400;
  margin: 0 2.5px;
  transition: all .5s;
}

.p_page span.laypage_curr {
  background: #1368B7;
  color: #fff;
}

@media screen and (max-width:768px) {
  .video_con .vid_dom {
    width: 90%;
  }
}

@media screen and (max-width: 1600px) {
  .w1440 {
    width: 80%;
  }

  .w1400 {
    width: 80%;
  }

}

@media screen and (max-width: 1440px) {}

@media screen and (max-width: 1200px) {
  .w1440 {
    width: 90%;
  }

  .w1400 {
    width: 90%;
  }
}



/*# sourceMappingURL=base.css.map */
