body,
html {
  padding: 0;
  margin: 0;
  background-color: #fff;
  font-size: 14px;
  font-family: "PingFang SC", "黑体", serif;
  color: #262626;
  width: 100vw;
  overflow-x: hidden;
}
body.modelShow {
  overflow-y: hidden;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a,
a:hover {
  color: inherit;
  text-decoration: inherit;
}
button,
input,
textarea {
  -webkit-appearance: none;
  appearance: none;
}
li,
ul {
  list-style: none;
}
@font-face {
  font-family: "impact";
  src: url("/fonts/impact.ttf");
}
.wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 1650px;
}
/* 头部  */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  height: 100px;
  border-bottom: 1px solid #fff;
  transition: all 0.5s ease;
  border-color: rgba(255, 255, 255, 0.24);
}
.header:hover {
  background: #fff;
}
.header.active {
  background-color: #fff;
}
.header .logo {
  display: flex;
  align-items: center;
  height: 100px;
  width: 300px;
  float: left;
}
.header .logo .logo_b {
  display: none;
}
.header:hover .logo .logo_b {
  display: block;
}
.header:hover .logo .logo_w {
  display: none;
}
.header.active .logo .logo_b {
  display: block;
}
.header.active .logo .logo_w {
  display: none;
}
.header .logo img {
  height: 40px;
}
.header .logo a {
  display: flex;
  height: 80px;
  align-items: center;
}
.header .tools {
  display: flex;
  align-items: center;
  padding: 0 20px;
  float: right;
  transition: 0.5s ease;
  height: 100px;
}
.header .tools .item {
  display: flex;
}
.header .tools span {
  color: #fff;
  display: flex;
  align-items: center;
}
.header:hover .tools span {
  color: #333;
}
.header.active .tools span {
  color: #333;
}
.header .tools span img {
  width: 25px;
  height: 25px;
  display: flex;
}
.header .tools span.arrow {
  margin-left: 5px;
  padding-top: 4px;
}
.header .tools .active {
  display: none;
}
.header:hover .tools .active {
  display: flex;
}
.header:hover .tools .normal {
  display: none;
}
.header.active .tools .active {
  display: flex;
}
.header.acctive .tools .normal {
  display: none;
}
.header .tools .language img {
  width: 20px;
  height: 20px;
}
.header .tools .language {
  margin-left: 30px;
}

.header .tools .search img {
  width: 17px;
  height: 17px;
}
.header .tools .search span {
  margin-left: 5px;
}
.header .tools .dz img {
  width: 17px;
  height: 17px;
}
.header .tools .dz {
  margin-left: 30px;
}
.header .tools .dz span {
  margin-left: 5px;
}

.header .tools .item:hover {
  cursor: pointer;
}
.header .tools .item {
  position: relative;
}
.header .tools .item.search{
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 100%;
}
.header:hover .tools .item.search{
  border: 1px solid #063b91;
}
.header.active .tools .item.search{
  border: 1px solid #063b91;
}
.header .tools .item.think ul {
  padding: 5px 0;
  position: absolute;
  left: 50%;
  margin-left: -50px;
  top: 100%;
  margin-top: 5px;
  width: 100px;
  border: 1px solid #e5e5e5;
  text-align: center;
  display: none;
  background: #fff;
  z-index: 6;
}
.header .tools .item.think ul li a {
  font-size: 14px;
  line-height: 30px;
  color: #666;
}

.header .tools .item.language .sub {
  position: absolute;
  left: 0;
  top: 28px;
  background: #f4f4f4;
  width: 178px;
  font-size: 12px;
  padding: 7px 20px;
  border-radius: 28px;
  color: #555;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 6;
}
.header.active .tools .normal {
  display: none;
}
.header.active .innav li {
  color: #333;
}
.header .tools .item.language .sub::after {
  content: "";
  height: 0;
  width: 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  border-color: transparent transparent #f4f4f4 transparent;
  border-style: solid solid dashed dashed;
  border-width: 6px;
  position: absolute;
  bottom: 100%;
  left: 20px;
}
.header .tools .item.language:hover .sub {
  opacity: 1;
}
.header .innav {
  float: right;
}

.header .innav > ul > li {
  font-size: 15px;
  line-height: 100px;
  padding: 0px 38px;
  float: left;
  color: #fff;
  transition: padding 0.5s ease;
}
.header:hover .innav li {
  color: #333;
}

.header:hover .innav li:hover {
  color: #063b91;
}
.searchBox {
  position: fixed;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100px;
  background: #fff;
  z-index: 98;
}
.searchBox .wrap {
  height: 100%;
}
.searchBox .searchL {
  float: left;
  height: 100%;
  width: calc(100% - 101px);
}
.searchBox .close {
  border-left: 1px solid #e1e0e1;
  cursor: pointer;
  float: right;
  width: 100px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.searchBox .close img {
  width: 35px;
  transition: all 0.5s ease;
}
.searchBox .close:hover img {
  transform: rotate(90deg);
}
.searchBox .searchL .input {
  position: relative;
  padding-left: 50px;
  height: 100%;
  display: flex;
  align-items: center;
}
.searchBox .searchL .input .icon {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background: url(/images/search2.png) no-repeat;
  background-size: 25px;
}
.searchBox .searchL .input form {
  position: relative;
  width: 100%;
}
.searchBox .searchL .input input {
  outline: none;
  border: none;
  font-size: 15px;
  height: 70px;
  line-height: 70px;
  text-align: left;
  width: 80%;
  box-sizing: border-box;
  background: none;
  padding: 0;
}
.searchBox .searchL .input button {
  width: 120px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 40px;
  background-color: transparent;
  outline: none;
  border: 1px solid#aaa;
  cursor: pointer;
  color: #aaa;
  font-size: 15px;
  transition: all 0.5s ease;
}
.searchBox .searchL .input button:hover {
  background-color: #063b91;
  color: #fff;
  border: 1px solid #063b91;
}
.header .innav li .dropDown {
  overflow: hidden;
  position: absolute;
  height: 370px;
  z-index: 5;
  width: 100%;
  top: 100%;
  left: 0;
  background-color: #fff;
  display: none;
}
.header .innav li .dropDown .wrap {
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.header .innav li .dropDown .l {
  height: 100%;
  padding-top: 40px;
  padding-left: 4%;
  float: left;
  width: 28%;
  /* background-image: linear-gradient(to right, #efefef, #eee); */
  padding-bottom: 40px;
}
.header .innav li .dropDown .bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.header .innav li .dropDown .bg .l {
  float: left;
  width: 28%;
  background-image: linear-gradient(to right, #efefef, #eee);
}
.header .innav li .dropDown .bg .r {
  position: absolute;
  left: 28%;
  top: 0;
  right: 0;
  bottom: 0;
}
.header .innav li .dropDown1 .bg .r {
  background: url(/images/dropdown1.jpg);
  background-position: center right;
  background-repeat: no-repeat;
}
.header .innav li .dropDown2 .bg .r {
  background: url(/images/dropdown2.jpg);
  background-position: bottom right;
  background-repeat: no-repeat;
}
.header .innav li .dropDown3 .bg .r {
  background: url(/images/dropdown3.jpg);
  background-position: center right;
  background-repeat: no-repeat;
}
.header .innav li .dropDown4 .bg .r {
  background: url(/images/dropdown4.jpg);
  background-position: center right;
  background-repeat: no-repeat;
}
.header .innav li .dropDown5 .bg .r {
  background: url(/images/dropdown5.jpg);
  background-position: center right;
  background-repeat: no-repeat;
}
.header .innav li .dropDown6 .bg .r {
  background: url(/images/dropdown6.jpg);
  background-position: center right;
  background-repeat: no-repeat;
}
.header .innav li .dropDown7 .bg .r {
  background: url(/images/dropdown7.jpg);
  background-position: center right;
  background-repeat: no-repeat;
}
.header .innav li .dropDown .l .dnav li a {
  display: block;
  line-height: 45px;
  color: #333;
  padding-left: 30px;
}
.header .innav li .dropDown .l .dnav li a:hover {
  background: #fff;
  color: #063b91;
}

.header .innav li .dropDown .dnav {
  padding-bottom: 30px;
  position: relative;
}
.header .innav li .dropDown .dnav::after {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 15%;
  content: "";
  display: block;
  background-color: #ccc;
  height: 1px;
}
.header .innav li .dropDown .l .sig {
  padding-top: 30px;
  padding-left: 30px;
}
.header .innav li .dropDown .l .sig dt {
  font-size: 16px;
  line-height: 30px;
  color: #333;
}
.header .innav li .dropDown .l .sig dd {
  line-height: 30px;
  color: #333;
}
.header .innav li .dropDown .l .sig dd a {
  line-height: 30px;
  color: #333;
}

.header .innav li .dropDown .l .sig dd a:hover {
  color: #063b91;
}

.header .innav li .dropDown .wrap .r {
  float: left;
  width: 40%;
  padding-left: 5%;
  padding-top: 10px;
}
.header .innav li .dropDown .wrap .r h2 {
  font-size: 25px;
  color: #000;
  line-height: 50px;
  font-weight: normal;
}
.header .innav li .dropDown .wrap .r p {
  font-size: 15px;
  color: #000;
  line-height: 30px;
  margin: 13px 0 45px;
}
.header .innav li .dropDown .wrap .r a {
  border: 1px solid #e1e0e1;
  width: 170px;
  height: 55px;
  line-height: 55px;
  border-radius: 55px;
  padding-left: 40px;
  margin-bottom: 80px;
  display: block;
  color: #333;
  transition: all 0.5s ease;
  position: relative;
}
.header .innav li .dropDown .wrap .r a span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(/images/arrow_right_1.png);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  transition: all 0.5s ease;
}
.header .innav li .dropDown .wrap .r a:hover span {
  background: url(/images/arrow_right_1_on.png);
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}
.header .innav li .dropDown .wrap .r a:hover {
  background-color: #063b91;
  color: #fff;
  border: 1px solid #063b91;
}
.header .orderCon {
  overflow: hidden;
  position: absolute;
  z-index: 5;
  width: 100%;
  top: 100%;
  left: 0;
  height: 600px;
  display: none;
  background-color: #f9f9f9;
}

.header .orderCon .l {
  float: left;
  width: 50%;
  padding-top: 85px;
}
.header .orderCon .l h2 {
  font-size: 25px;
  font-weight: normal;
  margin-bottom: 20px;
}
.header .orderCon .l p {
  margin-bottom: 28px;
}
.header .orderCon .l input {
  width: 47%;
  padding-right: 7%;
  border: none;
  height: 46px;
  line-height: 46px;
  background-color: #efefef;
  text-indent: 30px;
  margin-left: 4%;
  float: left;
  outline: none;
  margin-bottom: 25px;
}
.header .orderCon .l input:nth-child(2n + 1) {
  margin-left: 0;
}
.header .orderCon .l textarea {
  background-color: #f5f5f5;
  width: 98%;
  border: none;
  outline: none;
  height: 130px;
  padding-top: 20px;
  padding-left: 4%;
}
.header .orderCon .l button {
  width: 200px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  background-color: #063b91;
  font-size: 15px;
  outline: none;
  border: none;
  margin-top: 20px;
  cursor: pointer;
}
.header .orderCon .r {
  padding-top: 70px;
  float: right;
  width: 28%;
}
.header .orderCon .r .con {
  position: relative;
  background-color: #063b91;
  padding: 30px 35px 50px 45px;
}
.header .orderCon .r .con h2 {
  font-size: 25px;
  color: #fff;
  font-weight: normal;
  margin-bottom: 10px;
}
.header .orderCon .r .con p {
  color: #fff;
  margin-bottom: 30px;
}
.header .orderCon .r .con h2 span {
  font-size: 20px;
}
.header .orderCon .r .con p span {
  margin-right: 5px;
}
.header .orderCon .r .con img {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  width: 40px;
}

.header_menu {
  position: fixed;
  height: 50px;
  background-color: #fff;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
}
.header_menu .menu_box {
  display: flex;
  align-items: center;
}
.header_menu .wrap {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_menu .wrap .logo {
  display: flex;
}
.header_menu .wrap .logo img {
  height: 25px;
}
.header_menu .wrap .menu_box img {
  width: 30px;
}
.rightNav {
  left: 100vw;
  top: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #ffff;
  z-index: 9999;
  transition: all 0.4s ease;
  padding: 0 15px;
  box-sizing: border-box;
}
.rightNav .top {
  display: flex;
  justify-content: flex-end;
  padding: 20px 5px 30px 0;
}
.rightNav .close img {
  width: 35px;
}
.rightNav ul li {
  border-bottom: 1px solid #eee;
}
.rightNav ul li a {
  display: block;
  height: 46px;
  line-height: 46px;
  font-size: 16px;
  text-align: center;
  color: #333;
  position: relative;
}
.rightNav ul li a .arrow {
  display: block;
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.rightNav ul li a .arrow img {
  width: 20px;
  transition: 0.3s;
}
.rightNav ul li .sub {
  display: none;
}
.rightNav ul li .sub a {
  display: block;
  width: 100%;
  text-align: center;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}
.rightNav ul li.active .arrow img {
  transform: rotate(90deg);
}

/* 首页banner */
.banner-box {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.banner-box .banner-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 0 8.3333333%;
}
.banner-box .banner-item .c1 {
  padding-left: 40px;
}
.banner-box .banner-item .c1 .line {
  width: 140px;
  height: 3px;
  background-color: #213f6b;
  margin-top: 110px;
}
.banner {
  position: relative;
}
.banner-box .banner-item .videoBox {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.banner-box .banner-item .videoBox .mask {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(/images/mask.png);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.banner-box .banner-item h3 {
  color: #fff;
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 15px;
  margin-top: 15px;
}
.banner-box .banner-item p {
  color: #fff;
  font-size: 26px;
}
.banner-box .banner-item  a{
  display: inline-block;
  width: 150px;
  height: 45px;
  background-color: #063b91;
  color: #fff;
  position: relative;
  margin-top: 35px;
  text-align: center;
  line-height: 45px;
}
.banner-box .banner-item  a span{
  display: inline-block;
  width: 25px;
  height: 5px;
  background: url(/images/arr1.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 10px;
  vertical-align: 3px;
}
.banner-box .banner-item  a div{
  position: relative;
  z-index: 2;
}
.banner-box .banner-item  a::after{
  z-index: 1;
  display: block;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.banner-box .banner-item  a:hover::after{
  width: 100%;
  right: auto;
  left: 0%;
}
.banner-box .banner-item  a:hover{
  color: #063b91;
}
.banner-box .banner-item  a:hover span{
  background: url(/images/arr1on.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
.banner-box .banner-item .bannerTxt {
  z-index: 2;
  position: relative;
}
.banner-box .banner-item .bannerTxt h2 {
  color: #fff;
  font-family: "impact";
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 40px;
}

.banner-box.swiper-slide-active .bannerTxt a {
  animation: fadeInUp 1s ease both;
  animation-delay: 2s;
}
.banner-box.swiper-slide-active .bannerTxt h3 {
  animation: fadeInUp 1s ease both;
  animation-delay: 1s;
}
.banner-box.swiper-slide-active .bannerTxt p {
  animation: fadeInUp 1s ease both;
  animation-delay: 1.5s;
}
.home .bannerprev {
  cursor: pointer;
  position: absolute;
  left: 8%;
  bottom: 50px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #fff;
  background: url(/images/al.png);
  background-color: none;
  background-size: 10px !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.home .bannernext {
  cursor: pointer;
  position: absolute;
  left: calc(8% + 70px);
  bottom: 50px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #fff;
  background: url(/images/ar.png);
  background-color: none;
  background-size: 10px !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.banner-box .banner-item .scroll{
  position: absolute;
  right: 6%;
  bottom: 50px;
  width: 19px;
  cursor: pointer;
}
@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.homepagination {
  position: absolute;
  left: 10% !important;
  bottom: 9% !important;
  z-index: 5;
}
.homepagination .swiper-pagination-bullet {
  width: 12px;
  height: 20px;
  border-radius: 0;
  background-color: #fff;
  transform: skew(-15deg);
  opacity: 1;
}
.homepagination .swiper-pagination-bullet-active {
  background-color: #063b91;
}
.homeSec1{
  padding: 100px 0;
  background: url(/images/inbg1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.homeSec1 .l{
  float: left;
  width: 43%;
}
.homeSec1 .l h2{
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 3px;
}
.homeSec1 .l h2 span{
  font-size: 34px;
  color: #063b91;
}
.homeSec1 .l  h3{
  color: #ccc;
  font-weight: normal;
  font-size: 26px;
  margin-bottom: 35px;
}
.homeSec1 .wrap{
  display: flex;
  justify-content: space-between;
}
.homeSec1 .l p{
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 18px;
}
.homeSec1 .r{
  position: relative;
  float: right;
  width: 46%;
}
.homeSec1 .r::after{
  position: absolute;
  right: 0;
  top: 12%;
  display: block;
  content: "";
  background-color: #063b91;
  width: 85%;
  height: 95%;
}
.homeSec1 .r .vd{
  position: relative;
  z-index: 2;
}
.homeSec1 .r .vd .img{
  width: 95%;
}
.homeSec1 .r .vd .icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 45px;
  z-index: 3;
  cursor: pointer;
}
.homeSec1 .l a{
  transition: .45s;
  padding-left: 20px;
  position: relative;
  display: inline-block;
  margin-top: 45px;
  width: 135px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid #063b91;
  color: #063b91;
  line-height: 40px;
}
.homeSec1 .l a span{
  position: absolute;
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #063b91;
  border-radius: 100%;
  right: 3px;
  top: 1px;
  background-image: url(/images/arrr.png);
  background-size: 8px !important;
  background-repeat: no-repeat;
  background-position: center center;
}
.homeSec1 .l a:hover{
  background-color: #063b91;
  color: #fff;
}
.homeSec1 .about{
  position: absolute;
  right: 15px;
  top: 100px;
  width: 100px;
}
.numList{
  display: flex;
  width: 100%;
  height: 120px;
  margin-top: 120px;
  background: url(/images/innbg.jpg);
}
.numList .item{
  position: relative;
  height: 100%;
  display: flex;
  flex: 1;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}
.numList .item p{
  color: rgba(255, 255, 255, 0.8);
  margin-left: -20px;
}
.numList .item h2 span{
  font-size: 35px;
}
.numList .item em{
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  margin-left: 10px;
}
.numList .item::after{
  display: block;
  content: "";
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -30px;
}
.numList .item:last-child::after{
  display: none;
}
.homeSec2{
  padding: 0 0 100px 0;
}
.title{
  position: relative;
  text-align: center;
  margin-bottom: 45px;
}
.title h2{
  position: relative;
  z-index: 2;
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 3px;
}
.title h2 span{
  font-size: 34px;
  color: #063b91;
}
.title h3{
  color: #ededed;
  position: relative;
  z-index: 1;
  margin-top: -35px;
  font-size: 40px;
  text-transform: uppercase;
}
.title .line{
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #063b91;
}
.homeSec3{
  padding: 0 0 100px 0;
}
.appCon{
  position: relative;
  height: 550px;
}
.appCon .bg{
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.appCon .bg .item{
  display: none;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-size: cover !important;
  background-repeat: no-repeat!important;
  background-position: bottom center !important;
}
.appCon .bg .item.active{
  display: block;
}
.appCon ul{
  position: relative;
  z-index: 2;
  height: 100%;
}
.appCon ul li{
  cursor: pointer;
  height: 100%;
  float: left;
  width: 25%;
  position: relative;
}
.appCon ul li::after{
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.appCon ul li .bot{
  position: absolute;
  left: 8%;
  bottom: 25px;
  color: #fff;
  z-index: 2;
}
.appCon ul li .bot h2{
  color: #fff;
  font-weight: normal;
  font-size: 20px;
  margin-bottom: 25px;
  transition: all .35s;
}
.appCon ul li .bot em{
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
}
.appCon ul li .bot p{
  font-size: 14px;
}
.appCon ul li .bot p span{
  margin-left: 8px;
}
.appCon ul li:hover .bot h2{
  opacity: 0;
}
.appCon ul li:hover .bot em{
  opacity: 0;
}
.appCon ul li a::before {
  display: block;
  z-index: 1;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(6, 59, 145, .85);
  transition: 0.45s ;
}
.appCon ul li:hover a::before {
  height: 100%;
  bottom: auto;
  top: 0;
}
.appCon ul li .txt{
  padding-right: 6%;
  position: relative;
  z-index: 2;
  padding-left: 8%;
  padding-top: 88px;
}
.appCon ul li .txt h2{
  color: #fff;
  font-weight: normal;
  font-size: 20px;
  margin-bottom: 25px; 
  opacity: 0; 
}
.appCon ul li .txt p{
  color: #fff;
  font-size: 14px;
  line-height: 25px;
  opacity: 0;
}
.appCon ul li:hover .txt h2{
  animation: fadeInUp1 .5s ease both;
  animation-delay: .3s;
}
.appCon ul li:hover .txt p{
  animation: fadeInUp1 .5s ease both;
  animation-delay: .5s;
}
@keyframes fadeInUp1 {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.appCon ul li a{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.homeSec4{
  padding: 0 0 100px 0;
  background: url(/images/newbg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 720px;
}
.homeSec4 .newCon{
  background-color: rgba(255, 255, 255, 0.9);
  padding: 70px 0 80px 0;
}
.homeSec4 .newCon ul{
  height: auto;
  overflow: hidden;
}
.homeSec4 .newCon ul li{
  float: left;
  width: 50%;
  padding: 0 5%;
}
.homeSec4 .newCon ul li .date{
  float: left;
}
.homeSec4 .newCon ul li .date h2{
  color: #ccc;
  font-size: 40px;
  margin-bottom: 12px;
}
.homeSec4 .newCon ul li .date p{
  color: #ccc;
}
.homeSec4 .newCon ul li  .rt{
  position: relative;
  margin-left: 120px;
}
.homeSec4 .newCon ul li  .rt h2{
  font-size: 18px;
  font-weight: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  margin: 17px 0 12px 0;
}
.homeSec4 .newCon ul li .rt p{
  color: #999;
  font-size: 13px;
  line-height: 20px;
}
.homeSec4 .newCon ul li .rt .img{
  height: 270px;
  overflow: hidden;
}
.homeSec4 .newCon ul li .rt .img div{
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat!important;
  background-position: center center!important;
  transition: .45s;
}
.homeSec4 .newCon ul li  .rt::after{
  display: block;
  content: "";
  width: 1px;
  background: #ccc;
  height: 400px;
  position: absolute;
  left: -45px;
  top:0;
  transform: scaleX(.7);
}
.homeSec4 .newCon ul li:hover .img div{
  transform: scale(1.1);
}
.homeSec4 .newCon ul li:hover h2{
  color: #063b91;
}
.homeSec4 .newCon ul li:hover .date p{
  color: #063b91;
}

.footer{
  background-color: #063b91;
  padding-top: 65px;
}
.footer .top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.footer .top .l img{
  width: 130px;
  margin-bottom: 65px;
}
.footer .top .l  h2{
  color: #fff;
  font-weight: normal;
  font-size: 17px;
  margin-bottom: 10px;
}
.footer .top .l p{
  font-size: 13px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}
.footer  .wrap{
  height: auto;
  overflow: hidden;
}
.footer .top .l p.p1{
  font-size: 22px;
  color: #fff;
}
.footer .top .l p.p1 span{
  margin-left: 15px;
}
.footer .copy{
  height: auto;
  overflow: hidden;
  padding: 15px 0;
}
.footer .copy .l{
  float: left;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.footer .copy span{
  margin-left: 25px;
}
.footer .copy span.ga img{
  height: 18px;
  margin-right: 4px;
  vertical-align: -2px;
}
.footer .copy span a{
  font-size: 13px;
  margin-left: 15px;
}
.footer .copy .r{
  float: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.footer .top{
  height: auto;
  overflow: hidden;
}
.footer .top .l{
  float: left;
}
.footer .top .r{
  display: flex;
  width:calc(100% - 500px);
  float: right;
  justify-content: flex-end;
  align-items: flex-start;
}
.footer .top dl{
  justify-content: flex-end;
  flex-direction: column;
  display: flex;
  flex: 1;
  text-align: center;
}
.footer .top dl dt{
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}
.footer .top dl dd{
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}
.homeSec2 ul{
  height: auto;
  overflow: hidden;
}
.homeSec2 li{
  position: relative;
  float: left;
  width: calc(70% / 3);
  height: 550px;
  transition: .45s;
}
/* .homeSec2 li.cur{
  width: 40%;
} */
.homeSec2 li a{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

/* .homeSec2 li a .bgCon .img::after{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
} */
.homeSec2 li a .bgCon .img{
  clip-path: ellipse(100% 100% at 0% 50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-position: center center !important;
  background-repeat: no-repeat!important;
  background-size: cover!important;
}
.homeSec2 li a .txt{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.homeSec2 li a .bgCon .img::after{
  display: none;
  content: "";
  width: 100%;
  clip-path: ellipse(100% 100% at 0% 50%);
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-image: linear-gradient( to top, rgba(6,59,145, 0.5), rgba(27, 102, 170, 0) );
}
.homeSec2 li a .txt .title{
  position: absolute;
  z-index: 2;
  width: 100%;
  bottom: 20px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin-bottom: 0;
}

.homeSec2 li:nth-child(1){
  z-index: 5;
}
.homeSec2 li:nth-child(2){
  z-index: 4;
}
.homeSec2 li:nth-child(3){
  z-index: 3;
}
.homeSec2 li:nth-child(4){
  z-index: 2;
}
.homeSec2 li .more{
  opacity: 0;
  padding-left: 27px;
  width: 140px;
  height: 45px;
  border-radius: 45px;
  background-color: #063b91;
  line-height: 45px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -22px;
  margin-left: -70px;
}
.homeSec2 li:hover .more{
  animation: fadeInUp1 .5s ease both;
  animation-delay: .2s;
}
.homeSec2 li .more:hover {
  background-color: #fff;
  color: #063b91;
}
.homeSec2 li .more .img2{
  display: none;
}
.homeSec2 li .more:hover .img2{
  display: inline-block;
}
.homeSec2 li .more:hover .img1{
  display: none;
}
.homeSec2 li.cur{
  width: 30%;
}
.homeSec2 li.cur a .txt .title{
  font-size: 28px;
}
.homeSec2 li a .bgCon{
  width: 122%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.homeSec2 li .more{
  left: 58%;
}
.homeSec2 li.cur a .txt .title{
  width: 112%;
}
.homeSec2 li.cur a .bgCon{
  width: 122%;
}
.homeSec2 li.cur a .bgCon .img::after{
  display: block;
}
.inBanner {
  height: 500px;
}

.inBanner {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.inBanner .wrap {
  position: relative;
  height: 100%;
}

.bannerBg {
  position: absolute;
  left: 0;
  top: 45%;
  transform: translateY(-50%);
}

.bannerBg h2 {
  font-weight: normal;
  color: #fff;
  font-size: 46px;
}

.bannerBg h3 {
  font-weight: normal;
  color: #fff;
  font-size: 46px;
}

.bannerBg h3 .en {
  color: #fff;
  font-size: 46px;
}

.bannerBg h3 em {
  margin: 0 20px;
}

.bannerBg h3 .cn {
  font-size: 42px;
}

.inBanner1 {
  background: url(/images/inbanner1.jpg);
}

.inBanner2 {
  background: url(/images/inbanner2.jpg);
}

.inBanner3 {
  background: url(/images/inbanner3.jpg);
}

.inBanner4 {
  background: url(/images/inbanner4.jpg);
}

.inBanner5 {
  background: url(/images/inbanner5.jpg);

}

.inBanner6 {
  background: url(/images/inbanner6.jpg);
  background-position: bottom center !important;
}

.inBanner7 {
  background: url(/images/inbanner7.jpg);
}

.inNav {
  position: relative;
  height: 100px;
  border: 1px solid #f7f7f7;
  margin-top: -58px;
  background-color: #fff;
  z-index: 2;
}

.inNav ul {
  height: 100%;
  display: flex;
}

.inNav ul li {
  position: relative;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.inNav ul li a {
  text-align: center;
  font-size: 16px;
  position: relative;
}

.inNav ul li:not(:first-child):before {
  display: block;
  content: '';
  position: absolute;
  top: calc(50% - 3px);
  left: -3px;
  width: 5px;
  height: 9px;
  background-image: url(/images/info_blt.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.inNav ul li a::before {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: #013caf;
  transition: all .3s;
}

.inNav ul li:hover a::before {
  width: 100%;
}

.inNav ul li.active a::before {
  width: 100%;
}

.abSec1 {
  padding: 100px 0;
  background: url(/images/abbg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-top: -45px;
  z-index: 1;
}

.abSec1 .wrap .ab1 {
  height: auto;
  overflow: hidden;
}

.abSec1 .wrap .ab1 .l {
  float: left;
  width: 48%;
}

.abSec1 .wrap .ab1 .l h2 {
  margin-top: 50px;
  font-size: 28px;
  color: #013caf;
  margin-bottom: 30px;
}

.abSec1 .wrap .ab1 .l p {
  text-indent: 20px;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
}

.abSec1 .wrap .ab1 .r {
  padding-top: 60px;
  float: right;
  width: 40%;
}

.abSec1 .wrap .ab1 .r .item {
  margin-bottom: 40px;
  float: left;
  margin-left: 10%;
  width: 45%;
  border-bottom: 1px solid #333;
}

.abSec1 .wrap .ab1 .r .item:nth-child(2N+1) {
  margin-left: 0;
}

.abSec1 .wrap .ab1 .r .item h2 {
  font-weight: normal;
  font-size: 18px;
}

.abSec1 .wrap .ab1 .r .item .num {
  display: inline-block;
  color: #013caf;
  font-size: 70px;
  font-family: "DINCond";
  font-style: normal;
  font-weight: normal;
}

.abSec1 .wrap .ab1 .r .item .span {
  font-weight: normal;
  padding-left: 8px;
  line-height: 1.4;
  text-align: center;
  font-size: 16px;
}

.abSec1 .wrap .ab1 .r .item .l {
  color: #333;
  font-weight: bold;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.abSec1 .wrap .ab1 .r .item .r1 {
  display: flex;
}

.abSec1 .wrap .ab1 .r .item .r1 img {
  width: 40px;
}

.abSec1 .wrap .ab1 .r .item .con {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.abSec3 {
  padding: 100px 0;
  background: url(/images/culbg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

.ptitle {
  font-size: 28px;
  color: #013caf;
  margin-bottom: 30px;
  text-align: center;
}

.abSec3 ul {
  padding-top: 50px;
  height: auto;
  overflow: hidden;
}

.abSec3 ul li {
  align-items: center;
  display: flex;
  float: left;
  width: 50%;
  padding: 30px 30px;
  background-color: #fff;
}

.abSec3 ul li .num2 {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid #CCCCCC;
  text-align: center;
  line-height: 110px;
  box-sizing: border-box;
}

.abSec3 ul li .num2 span {
  color: #013caf;
  font-size: 26px;
  font-weight: bold;
}

.abSec3 ul li .num2 svg {
  position: absolute;
  left: -1px;
  top: -2px;
  width: 110px;
  height: 110px;
  transform: rotate(45deg);
  z-index: 2;
}

.abSec3 ul li .num2 .circle {
  cx: 55;
  cy: 55;
  r: 54;
  transition: all 3s;
  stroke-dasharray: 346, 346;
  stroke-dashoffset: 346;
  stroke-dashoffset: 157;
}

.abSec3 ul li .txt {
  width: calc(100% - 100px);
  padding-left: 18px;
}

.abSec3 ul li .txt h2 {
  font-weight: bold;
  font-size: 18px;
  color: #013caf;
  margin-bottom: 8px;
}

.abSec3 ul li:nth-child(1),
.abSec3 ul li:nth-child(4),
.abSec3 ul li:nth-child(5) {
  background: rgba(245, 245, 245, 0.8);
}

.abSec2 {
  padding: 100px 0 70px 0;
  background: url(/images/abbg3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

.abSec2 .l {
  letter-spacing: 3px;
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
  text-align: left;
  writing-mode: vertical-rl;
}

.abSec2 .l h2 {
  text-transform: uppercase;
  padding-top: 50px;
  font-weight: bold;
  opacity: .9;
}

.abSec2 .wrap {
  display: flex;
  justify-content: space-between;
}

.abSec2 .r p {
  font-size: 18px;
  color: #fff;
  line-height: 30px;
  margin-bottom: 25px;
}

.abSec4 {
  padding: 100px 0 70px 0;
  background: url(/images/abbg4.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

.honorSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 300ms;
  transform: scale(0.6);
}

.honorSwiper {
  padding-top: 40px;
}

.honorSwiper .swiper-slide-active,
.honorSwiper .swiper-slide-duplicate-active {
  transform: scale(.9);
}

.honorSwiper .item {
  padding: 45px 20px;
  background-color: #fff;
}

.honorSwiper .item img {
  max-height: 500px;
}

.honorSwiper .honarr {
  text-align: center;
  padding-top: 40px;
}

.honorSwiper .honarr .honprev {
  cursor: pointer;
  display: inline-block;
  margin: 0 15px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #013caf;
  background-image: url(/images/arrl1.png);
  background-size: 30px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.honorSwiper .honarr .honnext {
  cursor: pointer;
  display: inline-block;
  margin: 0 15px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #013caf;
  background-image: url(/images/arrr1.png);
  background-size: 30px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.newsList li {
  height: auto;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.newsList li .img {
  float: right;
  width: 270px;
  height: 180px;
  overflow: hidden;
}

.newsList li .img>div {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  transition: all .5s;
}

.newsList li a:hover .img>div {
  transform: scale(1.1);
}

.newsList li a {
  padding: 40px 0 30px 0;
  height: auto;
  overflow: hidden;
  display: block;
  position: relative;
}

.newsList li .wrap {
  position: relative;
  z-index: 3;
}

.newsList li a::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #f6f9fc;
  transition: all .5s;
}

.newsList li a:hover::after {
  width: 100%;
}

.newsList li .content {
  margin-right: 310px;
}

.newsList li .content .ndate {
  float: left;
  width: 100px;
  padding: 2% 1%;
  background-color: #013caf;
  text-align: center;
  position: relative;
}

.newsList li .content .ndate h2 {
  font-size: 16px;
  color: #fff;
}

.newsList li .content .ndate h3 {
  font-size: 16px;
  color: #fff;
}

.newsList li .content .ndate::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #ddd;
  position: absolute;
  right: -25px;
  top: 0;
}

.newsList li .content .main {
  float: left;
  width: calc(100% - 170px);
  margin-left: 60px;
}

.newsList li .content .main h3 {
  font-size: 20px;
  color: #202020;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 25px;
}

.newsList li .content .main p {
  font-size: 13px;
  color: #999;
  line-height: 25px;
}

.newsList li .more {
  margin-top: 30px;
}

.pageBox {
  margin-top: 30px;
}

.pageBox .page_num {
  float: left;
  display: none;
}

.pageBox .page_num a {
  line-height: 58px;
  color: #666;
  background-color: #f2f3f5;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  padding: 0 30px;
  font-size: 14px;
  margin: 0;
  float: left;
}

.pageBox .page_num a.current {
  background-color: #013caf;
  color: #fff;
}

.page_arr {
  float: right;
}

.page_arr span {
  line-height: 58px;
  color: #666;
  background-color: #f2f3f5;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  padding: 0 30px;
  font-size: 14px;
  margin: 0;
  float: left;
}

.page_arr span a {
  line-height: 58px;
  color: #666;
  background-color: #f2f3f5;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 14px;
  margin: 0;
  background-color: transparent;
}

.pageBox .page_num a:hover {
  background-color: #013caf;
  color: #fff;
}

.page_arr span:hover {
  background-color: #013caf;
  color: #fff;
}

.page_arr span:hover a {
  color: #fff;
}

.newsSec {
  padding: 80px 0;
}

.newsSec .detail_l {
  width: 71%;
  float: left;
  background: #f6f9fd;
  padding: 5% 4%;
}
.newsSec .detail_l .title{
  text-align: left;
}
.newsSec .detail_r {
  width: 24%;
  float: right;
}

.newsSec .wrap {
  height: auto;
  overflow: hidden;
}
.conS1{
  padding: 80px 0;
}

.newsSec .detail_l .title {
  font-size: 24px;
  color: #000;
  margin-bottom: 30px;
}

.newsSec .detail_l .tools {
  margin-bottom: 40px;
  line-height: 20px;
  color: #999;
}

.newsSec .detail_l .tools span {
  display: inline-block;
  font-size: 14px;
  margin-right: 30px;
}

.newsSec .content {
  border-top: 1px solid #ccc;
  padding: 5% 0;
  box-sizing: border-box;
}

.newsSec .content p {
  font-size: 15px;
  line-height: 30px;
}

.newsSec .detail_r .item {
  background: #f6f9fd;
  margin-bottom: 20px;
  padding: 7%;
}

.newsSec .detail_r .item h3 {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.newsSec .detail_r .back {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  background-color: #013caf;
  color: #fff;
  display: block;
}
.more {
  display: inline-block;
  background: #013caf;
  width: 136px;
  height: 37px;
  line-height: 35px;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  outline: none;
  color: #fff;
}

.more img {
  width: 7px;
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  transition: all .45s;
}

.more img.img2 {
  display: none;
}

.more:hover {
  background-color: #fff;
  color: #013caf;
}

.more>div {
  position: relative;
  z-index: 2;
  width: 136px;
  padding: 0 15px;
  padding-left: 25px;
  color: #fff;
}

.more::after {
  content: "";
  width: 0;
  height: 100%;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.6s;
  border-radius: 35px;
}

/* .more:hover::after {
  width: 100%;
  right: auto;
  left: 0;
} */

.more:hover {
  color: #013caf;
}

.more:hover>div {
  color: #013caf;
}

.more:hover .img1 {
  display: none;
}

.more:hover .img2 {
  display: block;
}
.conS1 .title1{
  text-align: left;
  font-size: 30px;
  margin-bottom: 80px;
}
.conS1 .title1 span{
  color: #013caf;
  font-weight: bold;
  text-decoration: underline;
}
.conList{
  height: auto;
  overflow: hidden;
}
.conList .item{
  float: left;
  width: 33.33%;
}

.conList .item .ico{
  float: left;
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background-color: #013caf;
}
.conList .item .ico img{
  width: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.conList .item .rt{
  padding-top: 20px;
  margin-left: 100px;
}
.conList .item .rt h2{
  font-weight: normal;
  color: #999;
  font-size: 14px;
  margin-bottom: 6px;
}
.conList .item .rt p{
  font-size: 13px;
}
.conList .item .rt p span{
  margin-left: 10px;
}
.stl_no{
  text-align: center;
}
.mapSec{
  position: relative;
  height: 500px;
}
.mapSec .map{
  position: absolute;
  width: 100%;
  height: 100%;
  left:0;
  top: 0;
  z-index: 1;
}
.online{
  padding: 80px 0;
}
.online .item{
  margin-left: 3%;
  float: left;
  width: calc(94% / 3);
}
.online .item:first-child{
  margin-left: 0;
}
.form{
  margin-bottom: 35px;
  height: auto;
  overflow: hidden;
}

.online h2{
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 5px;
}
.online .item .input{
  width: 100%;
  height: 40px;
  background-color: #f5f5f5;
}
.online .item .input input{
  height: 40px;
  line-height: 45px;
  padding: 0 15px;
  background-color: transparent;
  width: 100%;
  border: none;
}
.online .item .input input:focus{
  border: none;
  outline: none;
}
.online .textarea{
  height: 250px;
  padding: 15px 15px;
  background-color: #f5f5f5;
  width: 100%;
  border: none;
}
.online .textarea textarea{
  height: 100%;
  line-height: 45px;
  background-color: transparent;
  width: 100%;
  border: none;
}
.online .textarea textarea:focus{
  border: none;
  outline: none;
}
.online .button{
  width: 150px;
  height: 45px;
  border-radius: 45px;
  text-align: center;
  line-height: 45px;
  color: #fff;
  font-size: 16px;
  margin: 0 auto;
  background-color: #013caf;
  cursor: pointer;
  letter-spacing: 5px;
}
.mapSec .txt{
  left: 5%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  width: 520px;
  padding: 20px 20px;
  z-index: 2;
}
.mapSec .txt .l{
  float: left;
  width: 150px;
}
.mapSec .txt .r{
  padding-top: 10px;
  margin-left: 168px;
}
.mapSec .txt  h2{
  font-weight: normal;
  color: #013caf;
  font-size: 14px;
  margin-bottom: 5px;
}
.mapSec .txt  .r img{
  width: 12px;
  position: absolute;
  left: 0;
  top: 3px;
}
.mapSec .txt  .r p{
  margin-bottom: 10px;
  font-size: 13px;
  position: relative;
  padding-left: 16px;
}
.videoPop {
  position: fixed;
  z-index: 50000;
  background: rgba(0, 0, 0, 0.95);
  left: 0;
  top: -100vh;
  right: 0;
  height: 100vh;
  transition: all 0.5s ease;
}

.videoPop.show {
  top: 0;
}

.videoPop .popForm {
  position: absolute;
  width: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.videoPop .popForm video {
  height: 80vh;
  width: 80vw;
  display: block;
  margin: 0 auto;
}

.videoPop .popForm .img {
  max-height: 100%;
  max-width: 100%;
  height: 80vh;
  width: auto;
  display: block;
  margin: 0 auto;
}

.videoPop .close {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #063b91;
  background-image: url(/images/close1.png);
  background-repeat: no-repeat;
  background-size: 37px;
  background-position: center center;
}

.videoPop .popForm .txt {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 15px;
  padding: 20px 20px;
}

.videoPop .popForm .arr {
  width: 100%;
  position: absolute;
  height: 30px;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  top: 50%;
}

.videoPop .popT {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  padding-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.videoPop .popForm .prev {
  width: 30px;
  height: 30px;
  background: url(/images/prev_b.png);
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  cursor: pointer;
}

.videoPop .popForm .next {
  width: 30px;
  height: 30px;
  background: url(/images/next_b.png);
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 0;
  cursor: pointer;
}

.phApp .item{
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 20px;
  width: 100%;
  height: 150px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}
.phApp .item h2{
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
}
.phApp .item  p{
  color: #fff;
  font-size: 13px;
}
.proSwiperBox{
  position: relative;
}
.proSwiperBox .item{
  display: block;
  position: relative;
}
.proSwiperBox .item .img{
  height: 200px;
  position: relative;
  z-index: 1;
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
}
.proSwiperBox .item::before{
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background-image: linear-gradient( to top, rgba(6,59,145, 0.5), rgba(27, 102, 170, 0) );
}
.proSwiperBox .item .txt{
  padding-bottom: 10px;
  position: absolute;
  z-index: 3;
  left: 3%;
  right: 3%;
  bottom: 20px;
  color: #fff;
  font-size: 18px;
  border-bottom: 1px solid #fff;
}
.proSwiperPag{
  text-align: center;
  padding: 10px 0 15px 0;
}
.proSwiperPag .swiper-pagination-bullet{
  margin: 0 2px;
}
.proNav{
  height: 40px;
  background-color: #fff;
  margin-top: -40px;
  overflow-x: auto;
  white-space: nowrap;
}
.proNav li{
  position: relative;
  display: inline-block;
  margin-right: 5px;
  line-height: 40px;
  margin-left: 5px;
}
.proNav li.active{
  color: #013caf;
  font-weight: bold;
}
.inBanner4 .bannerBg{
  top: 50%;
}
.proSec{
  padding: 80px 0 35px 0;
  background-color: #f5f5f5;
}
.proSec ul {
  height: auto;
  overflow: hidden;
}
.proSec ul li{
  cursor: pointer;
  float: left;
  width: calc(91% / 4);
  background-color: #fff;
  margin-left: 3%;
  margin-bottom: 45px;
}
.proSec ul li:nth-child(4N+1){
  margin-left: 0;
}
.proSec ul li .img{
  position: relative;
  height: 230px;
  overflow: hidden;
}
.proSec ul li .img > div{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  transition: all .45s;
}

.proSec ul li .txt{
  height: 76px;
  padding: 18px 18px;
  font-size: 14px;
}
.proSec ul li:hover .img > div{
  transform: scale(1.1);
}

.proSec ul li .img .cover{
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 59, 145, .55);
  transition: .45s all;
}
.proSec ul li .img .cover img{
  width: 35px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.proSec ul li:hover .img .cover{
  top: 0;
}
.photoSwiperBox .item .img{
  height: 280px;
}
.photoSwiperBox .item .img > div{
  width: 100%;
  height: 100%;
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
}
.abSec2 .r{
  width: 78%;
}
.photoSwiperBox .item{
  cursor: pointer;
  background-color: #fff;
  margin: 0 15px;
}
.photoarr{
  position: absolute;
  bottom: 62px;
  left: 45px;
}
.photoarr .photoprev{
  margin: 0 15px;
  display: inline-block;
  cursor: pointer;
  border-radius: 100%;
  width: 42px;
  height: 42px;
  background-color: #063b91;
  background-image: url(/images/al.png);
  background-size: 9px !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.photoarr .photonext{
  display: inline-block;
  margin: 0 15px;
  cursor: pointer;
  border-radius: 100%;
  width: 42px;
  height: 42px;
  background-color: #063b91;
  background-image: url(/images/ar.png);
  background-size: 9px !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.photoSwiperBox{
  padding-top: 50px;
  background-color: #fff;
  padding-bottom: 90px;
  position: relative;
}
/* 产品中心 */

.proBody{
  padding: 10px 0 60px 0;
}
.proSec1{
  height: auto;
  overflow: hidden;
}
.proSec1 .l{
  float: left;
  width: 43%;
}
.proSec1 .l img{
  width: 100%;
}
.proSec1 .r{
  margin-left: 48%;
}
.proSec1 .r .title{
  font-weight: bold;
  text-align: left;
  font-size: 22px;
  margin-bottom: 0;
  color: #063b91;
  padding-bottom: 18px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}
.proSec1 .r h2{
  font-size: 18px;
  margin-bottom: 15px;
}
.proSec1 .r p{
  line-height: 22px;
}
.proBody section{
  padding: 20px 0;
}
.btitle{
  color: #063b91;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  margin-bottom: 35px;
}
.btitle span{
  font-weight: normal;
  font-size: 18px;
  text-align: center;
  height: 45px;
  line-height: 45px;
  display: block;
  width: 140px;
  background-color: #063b91;
  color: #fff;
}
.proBody1 .section2 p{
  font-size: 16px;
  line-height: 25px;
}
.proBody1 .section2 img{
  width: 70%;
}
.proBody1  .section3 p{
  line-height: 25px;
  margin-bottom: 8px;
}
.proBody table{
  width: 100%;
}
.proBody .section6 table tr:first-child td{
  padding: 10px 0;
}
.proBody2 .section2 img{
  margin-top: 25px;
  width: 75%;
}
.proBody img{
  max-width: 100%;
}
.proBody2 .section3 p{
  line-height: 25px;
  margin-bottom: 8px
}
.proBody2 .section2 p {
  font-size: 16px;
  line-height: 25px;
}
.proBody1  .section7 img{
  width: 70%;
}
.proBody3 .section2 p {
  font-size: 16px;
  line-height: 25px;
}
.proBody3 .section2 img{
  margin-top: 30px;
}
.proBody3 .section3 p{
  line-height: 25px;
    margin-bottom: 8px;
}
.proBody3 .section5 table tr:first-child td{
  padding: 10px 0;
  color: #fff;
}
.proBody3 .section5 table tr td{
  text-align: center;
  padding: 10px 5px;
}
.proBody4 .section2 p{
  font-size: 16px;
  line-height: 25px;
}
.proBody4 .section2 img{
  margin-top: 35px;
}
.proBody4 .section4{
  width: 780px;
}
.proBody4 .section5 table tr:first-child td{
  padding: 10px 0;
  color: #fff;
}
.proBody4 .section5 table tr td{
  text-align: center;
  padding: 10px 5px;
}
.proBody4 .section6 table tr:first-child td{
  padding: 10px 0;
  color: #fff;
}
.proBody4 .section6 table tr td{
  text-align: center;
  padding: 10px 5px;
}

.proBody1 .section5 table tr:first-child td{
  padding: 10px 0;
  color: #fff;
}
.proBody1 .section5 table tr td{
  text-align: center;
  padding: 10px 5px;
}
.proBody1 .section6 table tr:first-child td{
  padding: 10px 0;
  color: #fff;
}
.proBody1 .section6 table tr td{
  text-align: center;
  padding: 10px 5px;
}
.proBody2 .section5 table tr:first-child td{
  padding: 10px 0;
  color: #fff;
}
.proBody2 .section5 table tr td{
  text-align: center;
  padding: 10px 5px;
}
.proBody5 .section2 p {
  font-size: 16px;
  line-height: 25px;
}
.proBody5 .section2 img{
  margin-top: 30px;
}
.proBody5 .section3 p {
  line-height: 25px;
  margin-bottom: 8px;
}
.proBody5 .section5 table tr:first-child td{
  padding: 10px 0;
  color: #fff;
}
.proBody5 .section5 table tr td{
  text-align: center;
  padding: 10px 5px;
}
.proNation{
  float: left;
  margin-top: 80px;
  background-color: #f5f5f5;
  width: 280px;
}
.proNation .menuT{
  line-height: 50px;
  padding-left: 35px;
  height: 50px;
  font-size: 20px;
  position: relative;
}
.proNation .menuT::after{
  position: absolute;
  bottom: 0;
  left: 15px;
  display: block;
  content: "";
  height: 1px;
  width: calc(100% - 30px);
  background-color: #ededed;
}
.proNation li{
  padding-left: 15px;
  padding-right: 15px;
  height: 45px;
  line-height: 45px;
  position: relative;
}
.proNation li::after{
  position: absolute;
  bottom: 0;
  left: 15px;
  display: block;
  content: "";
  height: 1px;
  width: calc(100% - 30px);
  background-color: #ededed;
}
.proNation li.active{
  font-weight: bold;
  color: #063b91;
}
.proBody{
  margin-left: 280px;
  padding-top: 50px;
}
.proBody .section2 p{
  line-height: 25px;
  margin-bottom: 8px;
}
.proBody6 .photoarr{
  bottom: auto;
  left: 0;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
}
.photoarr .photoprev{
  position: absolute;
  left: -50px;
  width:40px;
  height: 40px;
  border-radius: 0;
}
.photoarr .photonext{
  position: absolute;
  right: -50px;
  width:40px;
  height: 40px;
  border-radius: 0;
}
.proBody.proBody2 .section4 img{
  width: 47%;
}
.proBody.proBody1 .section4 img{
  width: 47%;
}
.newsList li .more img{
  width: 16px;
}<!--耗时1778716799.3114秒-->