body,
html {
  padding: 0;
  margin: 0;
  background-color: #fff;
  font-size: 14px;
  font-family: "微软雅黑", "黑体", 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("../font/impact.ttf");
}

.wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 1650px;
}

/* 头部  */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  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 .wrap {
  height: auto;
}

.header.active {
  background-color: #fff;
}

.header .logo {
  display: flex;
  align-items: center;
  height: 100px;
  width: 290px;
  float: left;
}

.header.active .logo .logo_b {
  display: block;
}

.header.active .logo .logo_w {
  display: none;
}

.header .logo img {
  width: 100%;
}

.header .logo a {
  display: flex;
  height: 85px;
  align-items: center;
}

.header .tools {
  display: flex;
  align-items: center;
  padding: 0 40px;
  float: right;
  transition: 0.5s ease;
  height: 100px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.header .tools a {
  display: block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 100%;
  background-color: #013caf;
  color: #fff;
}

.header .tools .active {
  display: none;
}

.header:hover .tools .active {
  display: flex;
}

.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: 15px;
}

.header .tools .search img {
  width: 23px;
  height: 23px;
}

.header .tools .search {
  margin-left: 15px;
}

.header .tools .search span {
  margin-left: 5px;
}

.header .tools .dz img {
  width: 20px;
  height: 20px;
}

.header .tools .dz {
  margin-left: 15px;
}

.header .tools .dz span {
  margin-left: 5px;
}

.header .tools .item:hover {
  cursor: pointer;
}

.header .tools .item {
  position: relative;
}

.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;
  padding: 35px 0;
  left: -55px;
  top: 28px;
  background: #f4f4f4;
  width: 128px;
  font-size: 12px;
  padding: 7px 20px;
  color: #555;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 6;
}

.header .tools .item.language .sub a {
  border-bottom: 1px solid #eee;
  font-size: 14px;
  display: block;
  line-height: 32px;
  text-align: center;
}

.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: 50%;
  transform: translateX(-50%);
}

.header.active .innav li {
  color: #333;
}

.header .innav li a {
  display: block;
  position: relative;
}

.header .innav li.active a:after {
  width: 100%;
}

.header .innav li a:after {
  content: "";
  width: 0;
  height: 3px;
  background-color: #013caf;
  position: absolute;
  right: 0;
  bottom: 30px;
  transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header .innav li:hover a:after {
  width: 100%;
  right: auto;
  left: 0;
}

.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%;
}

.header .tools .item.language .sub a:hover {
  color: #0c5a78;
}

.header .tools .item.language:hover .sub {
  opacity: 1;
}

.header .innav {
  float: right;
}

.header .innav>ul>li {
  font-size: 15px;
  line-height: 100px;
  padding: 0px 45px;
  float: left;
  transition: padding 0.5s ease;
}

.header:hover .innav li {
  color: #333;
}

.header:hover .innav li:hover {
  color: #013caf;
}

.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: #0c5a78;
  color: #fff;
  border: 1px solid #0c5a78;
}

.header .innav li .dropDown {
  overflow: hidden;
  position: absolute;
  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;
  background-size: 97%;
}

.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: #0c5a78;
}

.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: #0c5a78;
}

.header .innav li .dropDown .wrap .r {
  float: left;
  width: 40%;
  padding-left: 5%;
  padding-top: 50px;
}

.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: #0c5a78;
  color: #fff;
  border: 1px solid #0c5a78;
}

.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: #0c5a78;
  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: #0c5a78;
  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;
  width: 30px;
  height: 30px;
}

.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: 45px;
}

.header_menu .wrap .menu_box img {
  width: 30px;
}

.rightNav {
  left: 100vw;
  top: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #ffff;
  z-index: 999999;
  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: 25px;
}

.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;
  justify-content: space-between;
  padding: 0 8%;
}

.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 h3 {
  color: red;
  font-size: 40px;
  font-weight: normal;
  margin-bottom: 15px;
  margin-top: 15px;
}

.banner-box .banner-item p {
  color: #fff;
  font-size: 32px;
}

.banner-box .banner-item .bannerImg {
  margin-top: 30px;
  position: relative;
}

.banner-box .banner-item .bannerImg img {
  width: 350px;
}

.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: 24px;
  margin-top: 13px;
}

.banner-box.swiper-slide-active .bannerTxt h2 {
  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: 2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 40px;
  height: 40px;
  background: url(/images/prev.png);
  background-color: none;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
}

.home .bannernext {
  cursor: pointer;
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  background: url(/images/next.png);
  background-color: none;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.home .tools {
  position: absolute;
  left: 8%;
  bottom: 50px;
  z-index: 2;
  padding: 0 60px;
  display: flex;
  align-items: center;
  height: 30px;
}

.homepagination .swiper-pagination-bullet-active {
  background: none;
}

.homepagination .swiper-pagination-bullet {
  background: none;
  margin-right: 22px;
  width: auto;
  height: auto;
  position: relative;
  opacity: 1;
  color: #fff;
}

.homepagination .swiper-pagination-bullet::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: #fff;
  content: "";
  display: block;
  right: -20px;
}

.homepagination .swiper-pagination-bullet-active {
  margin-right: 50px;
  font-weight: bold;
}

.homepagination .swiper-pagination-bullet-active::after {
  width: 15px;
}

.homepagination .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active::after {
  opacity: 0;
}

.home .tools .bannernext {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #013caf;
  width: 30px;
  height: 30px;
  transform: translateY(0);
  background-image: url(../image/arr-r.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.home .tools .bannerprev {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #013caf;
  width: 30px;
  height: 30px;
  transform: translateY(0);
  background-image: url(../image/arr-l.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.insec1 {
  padding: 100px 0 70px 0;
  background: url(../image/bg1.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.insec1 .box1 {
  height: auto;
  overflow: hidden;
  padding-bottom: 30px;
}

.insec1 .box1 .l {
  float: left;
  width: 46%;
  position: relative;
}

.insec1 .box1 .r {
  float: right;
  width: 40%;
}

.insec1 .box1 .l .about {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 100px 0 0 0;
}

.insec1 .box1 .l .about img {
  width: 100%;
  transition: all .45s;
}

.insec1 .box1 .l::after {
  display: block;
  content: "";
  width: 200px;
  height: 120px;
  background-color: #809fd8;
  position: absolute;
  right: -70px;
  bottom: -30px;
}

.insec1 .box1 .l .about:hover img {
  transform: scale(1.1);
}

.insec1 .box1 .r h2 {
  color: #013caf;
  font-size: 30px;
}

.insec1 .box1 .r h3 {
  color: #dbdbdb;
  font-size: 25px;
  margin-bottom: 20px;
}

.insec1 .box1 .r p {
  font-size: 16px;
  line-height: 30px;
}

.insec1 .box1 .r .more {
  margin-top: 50px;
}

.more {
  display: inline-block;
  background: #013caf;
  border: 1px solid #013caf;
  width: 136px;
  height: 37px;
  line-height: 35px;
  position: relative;
  font-size: 14px;
  border: 1px solid;
  letter-spacing: 1px;
}

.more img {
  width: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all .45s;
}

.more img.img2 {
  display: none;
}

.more:hover {
  color: #fff;
  background: none;
}

.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;
}

.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;
}

.insec1 .box2 {
  display: flex;
  padding: 90px 0 0 0;
}

.insec1 .box2 .item {
  flex: 1;
  position: relative;
}

.insec1 .box2 .item p {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px 0;
  color: #666666;
  font-size: 16px;
  line-height: 1;
}

.insec1 .box2 .item p::after,
.insec1 .box2 .item p::before {
  position: absolute;
  left: 8px;
  content: "";
  width: 23px;
  height: 5px;
  background: #004E7B;
}

.insec1 .box2 .item p::before {
  top: 0;
}

.insec1 .box2 .item p::after {
  bottom: 0;
}

.insec1 .box2 .item em {
  position: relative;
  margin-left: 10px;
  top: -8px;
  font-style: normal;
}

.insec1 .box2 .item i {
  display: inline-block;
  color: #000000;
  font-size: 50px;
  font-family: "DINCond";
  font-style: normal;
  font-weight: normal;
}

.insec1 .box2 .item b {
  display: inline-block;
  color: #000000;
  font-size: 70px;
  font-family: "DINCond";
  font-style: normal;
  font-weight: normal;
}

.insec1 .box2 .item::before {
  position: absolute;
  right: 37.62%;
  top: 50%;
  margin-top: -48px;
  content: "";
  width: 1px;
  height: 96px;
  background: #707070;
  opacity: 0.2;
}

.insec1 .box2 .item span {
  display: block;
  margin-top: 22px;
  line-height: 1;
  color: #666666;
  font-size: 16px;
}

.insec1 .box2 .item:last-child::before {
  display: none;
}

.insec1 .box2 .item:last-child {
  flex: none;
}

.insec2 {
  padding: 100px 0;
  background: url(../image/bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.title h2 {
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 10px;
}

.title h3 {
  font-size: 30px;
  font-weight: normal;
}

.title span {
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: #013caf;
}

.insec2 .wrap {
  height: auto;
  display: flex;
  justify-content: space-between;
}

.insec2 .wrap .eq {
  display: none;
}

.insec2 .wrap .l {
  float: left;
  width: 43%;
}

.insec2 .wrap .l p {
  font-size: 16px;
  line-height: 30px;
  margin: 60px 0 40px 0;
}

.insec2 .wrap .r {
  float: right;
  width: 50%;
  display: flex;
  justify-content: center;
}

.insec2 .wrap .r .circle {
  border: 1px solid #013caf;
  width: 450px;
  height: 450px;
  border-radius: 100%;
  padding: 40px;
  position: relative;
  padding: 10px;
  background-color: #ededed;
}

.insec2 .wrap .r .circle .item {
  position: absolute;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 130px;
  height: 130px;
  border-radius: 100%;
  background-color: #013caf;
  cursor: pointer;
  transition: .3s;
}

.insec2 .wrap .r .circle .item::before {
  box-sizing: border-box;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 160px;
  height: 160px;
  border-radius: 100%;
  background: #013caf;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-animation: circle 1.5s linear infinite;
  animation: circle 1.5s linear infinite;
}

.insec2 .wrap .r .circle .item:hover::before {
  -webkit-animation: circle 1.5s linear infinite;
  animation: circle 1.5s linear infinite;
}

@keyframes circle {
  0% {
    transform: translate(-50%, -50%) scale(.9);
    opacity: .2;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: .2;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.insec2 .wrap .r .circle .item img {
  width: 40px;
  position: relative;
  z-index: 2;
}

.insec2 .wrap .r .circle .item p {
  color: #fff;
  font-size: 13px;
  margin-left: 18px;
  margin-right: 18px;
  text-align: center;
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

.insec2 .wrap .r .circle .item.item1 {
  left: 5px;
  top: 5px
}

.insec2 .wrap .r .circle .item.item2 {
  right: 40px;
  top: -35px
}

.insec2 .wrap .r .circle .item.item3 {
  right: -50px;
  top: 200px
}

.insec2 .wrap .r .circle .item.item4 {
  left: 180px;
  top: 370px
}

.insec2 .wrap .r .circle .item.item5 {
  left: -40px;
  top: 260px
}

.insec3 .transBox .item {
  position: relative;
}

.insec3 .transBox .item .bg {
  position: relative;
  z-index: 1;
}

.title.white h2,
.title.white h3 {
  color: #fff;
}

.title.white span {
  background-color: #fff;
}

.insec3 {
  padding: 100px 0 0 0;
  height: 700px;
  position: relative;
}

.insec3 .wrap {
  position: relative;
  z-index: 2;
}

.insec3 .bgBox {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

.insec3 .bgBox .item {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center center;
  background-repeat: no-repeat !important;
}


.insec3 .bgBox .item::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.05);
}

.insec3 .bgBox .item::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-image: linear-gradient(to right, rgba(1, 60, 175, 0.5) 0%, rgba(1, 60, 175, 0) 45%);
}

.insec3 .intro {
  max-width: 600px;
  margin: 60px 0 40px 0;
  color: #fff;
  font-size: 16px;
  line-height: 030px;
}

.insec3 .intro .h2 {
  display: none;
}

.insec3 .menu_con {
  display: flex;
  z-index: 3;
  position: absolute;
  height: 130px;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.74);
}

.insec3 .menu_con .item {
  position: relative;
  cursor: pointer;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.insec3 .menu_con .item img {
  height: 43px;
}

.insec3 .menu_con .item .r {
  margin-left: 18px;
  position: relative;
  z-index: 2;
}

.insec3 .menu_con .item .l {
  position: relative;
  z-index: 2;
}

.insec3 .menu_con .item h2 {
  color: #fff;
  font-size: 15px;
  font-weight: normal;
}

.insec3 .menu_con .item h3 {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
}

.insec3 .menu_con .item::before {
  content: "";
  width: 0;
  height: 100%;
  background-color: #013caf;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.insec3 .menu_con .item.active::before {
  width: 100%;
  right: auto;
  left: 0;
}

.insec3 .appCon {
  position: absolute;
  left: 0;
  top: 100px;
  z-index: 5
}

.insec3 .appCon.active {
  z-index: 6;
}

.insec3 .appCon .intro {
  transform: translateX(120px);
  opacity: 0;
  transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.insec3 .appCon.active .intro {
  transform: translateX(0);
  opacity: 1;
}

.insec3 .appCon .more {
  transform: translateX(60px);
  opacity: 0;
  transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: .08s;
}

.insec3 .appCon.active .more {
  transform: translateX(0);
  opacity: 1;
}

/* .insec3 .menu_con .item:hover::before {
  width: 100%;
  right: auto;
  left: 0;
} */
.insec4 {
  padding: 100px 0 100px 0;
  background: url(../image/bg3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.insec4 .title {
  text-align: center;
}

.insec4 .proList {
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
}

.insec4 .proList li {
  overflow: hidden;
  cursor: pointer;
  display: flex;
  width: 47%;
  background-color: #fff;
  box-shadow: 0 20px 30px rgb(0 0 0 / 7%);
}

.insec4 .proList li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.insec4 .proList li a .img {
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  width: 73%;
  position: relative;
  z-index: 1;
  display: block;
}

.insec4 .proList li a .txt {
  position: relative;
  z-index: 3;
  padding-top: 56px;
  text-align: center;
}

.insec4 .proList li a .txt h2 {
  font-size: 20px;
  margin-bottom: 18px;
  transition: .45s;
}

.insec4 .proList li a .txt h3 {
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #013caf;
  transition: .45s;
}

.insec4 .proList li a .txt .view {
  display: flex;
  align-items: center;
  margin-top: 40px;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: 0.55s;
  transition-delay: .05s;
}

.insec4 .proList li a .txt .view img {
  width: 20px;
  margin-left: 8px;
}

.insec4 .proList li a .txt .view span {
  display: inline-block;
  width: 30px;
  background-color: #fff;
  height: 1px;
  margin-right: 5px;
}

.insec4 .proList li a::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  top: 30px;
  opacity: 0;
  left: 0;
  background-image: linear-gradient(to top, rgba(1, 60, 175, 0.7) 0%, rgba(1, 60, 175, 0)65%);
  transition: 0.5s;
}

.insec4 .proList li:hover a::after {
  top: 0;
  opacity: 1;
}

.insec4 .proList li:hover .txt h2 {
  color: #fff;
}

.insec4 .proList li:hover .txt h3 {
  background-color: #fff;
}

.insec4 .proList li:hover a .txt h3 {
  transform: translateY(-60px);
}

.insec4 .proList li:hover a .txt h2 {
  transform: translateY(-60px);
}

.insec4 .proList li:hover a .txt .view {
  transform: translateY(-45px);
  opacity: 1;
}

.insec5 {
  padding: 100px 0 100px 0;
  background: url(../image/bg4.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.insec5 ul {
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
}

.insec5 li {
  overflow: hidden;
  cursor: pointer;
  display: flex;
  width: 22%;
  background-color: #fff;
  height: 360px;
  box-shadow: 0 20px 30px rgb(0 0 0 / 7%);
  transition: .6s;
}

.insec5 li a {
  position: relative;
  display: block;
  height: 100%;
}

.insec5 li a .bg {
  opacity: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  transition: .6s;
}

.insec5 li a .bg::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: 2;
  background: rgba(1, 60, 175, 0.5);
}

.insec5 li a .conBox {
  padding: 45px 25px;
  position: relative;
  z-index: 3;
  height: 100%;
}

.insec5 li a .conBox .tag {
  color: #013caf;
  font-size: 16px;
  font-weight: bold;
  transition: .6s;
}

.insec5 li a .conBox h2 {
  font-weight: bold;
  font-size: 16px;
  margin: 20px 0 25px 0;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.insec5 li a .conBox .desc {
  font-size: 13px;
  color: #999;
  line-height: 22px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  transition: .6s;
}

.insec5 li a .conBox .amore {
  opacity: 0;
  margin: 20px 0 0 0;
  font-size: 14px;
  color: #fff;
  position: absolute;
  transition: .6s;
  left: 25px;
  bottom: 120px;
  display: flex;
  align-items: center;
}

.insec5 li a .conBox .date img {
  width: 15px;
  margin-right: 12px;
}

.insec5 li a .conBox .date img.img2 {
  display: none;
}

.insec5 li a .conBox .date {
  position: absolute;
  color: #999;
  display: flex;
  align-items: center;
  left: 25px;
  bottom: 25px;
}

.insec5 li:hover {
  transform: translateY(-30px);
}

.insec5 li:hover .bg {
  opacity: 1;
}

.insec5 li:hover .tag {
  margin-top: 50px;
  color: #fff !important;
}

.insec5 li:hover h2 {
  color: #fff;
}

.insec5 li:hover a .conBox .desc {
  height: 30px;
  opacity: 0;
}

.insec5 li:hover .date {
  color: #fff !important;
}

.insec5 li:hover a .conBox .date img.img1 {
  display: none;
}

.insec5 li:hover a .conBox .date img.img2 {
  display: block;
}

.insec5 li a .conBox .amore img {
  margin-left: 10px;
  width: 25px;
}

.insec5 li a:hover .conBox .amore {
  opacity: 1;
}

.insec6 {
  padding: 100px 0 100px 0;
  background: url(../image/bg5.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.insec6 .title {
  text-align: center;
}

.insec6 ul {
  padding-top: 80px;
  height: auto;
  overflow: hidden;
}

.insec6 ul li {
  float: left;
  width: calc((100% - 120px)/5);
  margin-left: 30px;
  background-color: #fff;
  border: 1px solid #013caf;
  margin-bottom: 30px;
}
.insec6 ul li img{
  width: 100%;
}
.insec6 ul li:nth-child(5N+1) {
  margin-left: 0;
}

.footer {
  background-color: #092976;
  padding: 70px 0 0 0;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
}

.footer .wrap .l {
  width: 500px;
}

.footer .wrap .l .item {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
}

.footer .wrap .l .item img {
  width: 30px;
  margin-right: 12px;
  color: #fff;
}

.footer .wrap .l .item span {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.footer .wrap .l .flist {
  padding-top: 5px;
}

.footer .wrap .l .icon_item {
  float: left;
  cursor: pointer;
  position: relative;
  margin-right: 20px;
}

.footer .wrap .l .icon {
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 100%;
}

.footer .wrap .l .icon .iconImg {
  width: 23px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.footer .wrap .l .iconEwm {
  display: none;
  position: absolute;
  width: 70px;
  height: 70px;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: 2;
  border-radius: 3px;
}

.footer .wrap .l .iconEwm::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -6px;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.footer .wrap .l .icon_item:hover .iconEwm {
  display: block;
}

.foot_b {
  margin-top: 30px;
}

.foot_b .wrap {
  border-top: 1px solid rgba(255, 255, 255, .3);
  display: flex;
  justify-content: space-between;
}

.foot_b .wrap .l {
  padding: 10px 0;
  font-size: 13px;
  width: auto;
  color: rgba(255, 255, 255, .5);
}

.foot_b .wrap .r {
  padding: 15px 0;
  font-size: 13px;
  width: auto;
  color: rgba(255, 255, 255, .5);
}

.foot_b .wrap .r span {
  margin-right: 6px;
}

.footer .wrap .r1 {
  float: right;
  width: calc(100% - 560px);
  display: flex;
  justify-content: space-between;
}

.footer .wrap .r1 dl {
  text-align: center;
}

.footer .wrap .r1 dt a {
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}

.footer .wrap .r1 dt {
  margin-bottom: 20px;
}

.footer .wrap .r1 dd a {
  text-align: center;
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  line-height: 35px;
}

/* 新闻中心 */
.inBanner {
  height: 400px;
  margin-top: 100px;
}

.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 {
  color: #fff;
  font-size: 46px;
}

.bannerBg h3 {
  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(../image/inbanner1.jpg);
}

.inBanner2 {
  background: url(../image/inbanner2.jpg);
}

.inBanner3 {
  background: url(../image/inbanner3.jpg);
}

.inBanner4 {
  background: url(../image/inbanner4.jpg);
}

.inBanner5 {
  background: url(../image/inbanner5.jpg);

}

.inBanner6 {
  background: url(../image/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: 18px;
  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(../image/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%;
}

.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;
}

.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: .8rem 0;
}

.newsSec .detail_l {
  width: 71%;
  float: left;
  background: #f6f9fd;
  padding: 5% 4%;
}

.newsSec .detail_r {
  width: 24%;
  float: right;
}

.newsSec .wrap {
  height: auto;
  overflow: hidden;
}

.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;
  text-indent: 20px;
  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;
}

/*------------------ 联系我们----------------------- */
.contactSec {
  background-color: #f9f9f9;
}

.contactSec .item span {
  display: flex;
  width: 55px;
  height: 55px;
  border-radius: 100%;
  background-color: #013caf;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.contactSec .item span img {
  width: 30px;
}

.contactSec .wrap {
  height: 440px;
}

.mapL .item {
  display: flex;
  padding-top: 70px;
}

.mapL .item .l {
  margin-right: 15px;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 55px;
  height: 55px;
  border-radius: 100%;
  background-color: #013caf;
}

.mapL .item .l img {
  width: 30px;
}

.mapL .item h2 {
  display: flex;
  align-items: center;
  font-size: 20px;
  margin-bottom: 8px;
}

.mapL .item p {
  font-size: 15px;
}

.mapL .item .r img {
  width: 100px;
}

.online {
  background-color: #fff;
  border-radius: 15px;
  padding: 45px 50px;
  height: auto;
  overflow: hidden;
}

.online .title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

.message {
  padding: 0 0 80px 0;
  background-color: #f9f9f9;
}

.message .input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.2604vw;
  height: 42px;
  padding: 10px;
  margin-bottom: 20px;
  margin-left: 2%;
  width: 32%;
  box-sizing: border-box;
  float: left;
}

.message .input1 {
  margin-left: 0;
}

.message .input input {
  border: none;
  height: 100%;
  width: 100%;
}

.inputBox {
  height: auto;
  overflow: hidden;
}

.textarea {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.2604vw;
  height: 140px;
  padding: 10px;
  margin-bottom: 20px;
  width: 100%;
}

.textarea textarea {
  height: 100%;
  border: none;
  width: 100%;
}

button.submit {
  background: #E5E5E5;
  border-radius: 0.2604vw;
  height: 42px;
  width: 155px;
  cursor: pointer;
  margin-left: 0.7292vw;
  outline: none;
  border: none;
  float: right;
}

.map {
  float: right;
  width: 55%;
  height: 610px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  z-index: 2;
  margin-top: -540px;
  background-color: #ccc;
}

.inBanner6 .p {
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 25px;
  line-height: 28px;
}

.abSec1 {
  padding: 100px 0;
  background: url(../image/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: 55%;
}

.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;
}

.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(../image/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 .num {
  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 .num span {
  color: #013caf;
  font-size: 26px;
  font-weight: bold;
}

.abSec3 ul li .num svg {
  position: absolute;
  left: -1px;
  top: -2px;
  width: 110px;
  height: 110px;
  transform: rotate(45deg);
  z-index: 2;
}

.abSec3 ul li .num .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(../image/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(../image/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;
  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.7);
}

.honorSwiper {
  padding-top: 40px;
}

.honorSwiper .swiper-slide-active,
.honorSwiper .swiper-slide-duplicate-active {
  transform: scale(1);
}

.honorSwiper .item {
  padding: 15px 15px;
}

.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(../image/arrl.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(../image/arrr.png);
  background-size: 30px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.teSec1 {
  background: url(../image/tebg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 100px 0;
}

.teSec2 {
  padding: 100px 0;
  background-image: url(../image/bg6.jpg);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.ntitle {
  text-align: center;
}

.ntitle h2 {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 15px;
  text-align: center;
}

.ntitle span {
  display: inline-block;
  width: 50px;
  height: 3px;
  background-color: #013caf;
}

.teSec2 ul {
  margin-top: 80px;
  height: 450px;
}

.teSec2 ul li {
  float: left;
  position: relative;
  background-color: #ffffff;
  width: calc(18% - 30px);
  margin-right: 30px;
  transition: all .3s;
  cursor: pointer;
  box-shadow: 0 20px 30px rgb(0 0 0 / 7%);
}

.teSec2 ul li.active {
  width: calc(28% - 30px);
  margin-right: 30px;
}

.teSec2 ul li .two {
  background: url(../image/tebg1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  filter:alpha(opacity=0);
  position: relative;
  transition: all .3s;
  height: 500px;
  width: 100%;
  background-size: cover;
  padding: 45px 30px 30px 30px;
  box-sizing: border-box;
}

.teSec2 ul li.active .two {
  opacity: 1;
  filter:alpha(opacity=100);
}

.teSec2 ul li .two h3 {
  padding-bottom: 13px;
  font-size: 15px;
  color: #ffff;
}

.teSec2 ul li .two h4 {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #fff;
}

.teSec2 ul li .two .p {
  padding-top: 40px;
  color: #fff;
  font-size: 13px;
  line-height: 24px;
}

.teSec2 ul li .two .icon {
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: 45px;
}

.teSec2 ul li .one {
  text-align: center;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  transition: all .3s;
}

.teSec2 ul li .one .icon img {
  width: 45px;
}

.teSec2 ul li .one h2 {
  margin-top: 25px;
  font-size: 16px;
}

.teSec2 ul li .one .num {
  font-size: 35px;
  color: #C9C9C9;
  font-family: "DINCond";
  text-align: center;
  position: absolute;
  bottom: 30px;
  width: 100%;
  font-weight: bold;
}

.teSec2 ul li .one .num::before {
  content: '';
  display: block;
  width: 1px;
  height: 100px;
  background-color: #C9C9C9;
  position: absolute;
  left: 50%;
  bottom: 70px;
}

.teSec1 .l {
  float: left;
}

.teSec1 h2 {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 15px;
}

.teSec1 .line {
  display: inline-block;
  width: 50px;
  height: 3px;
  background-color: #013caf;
}

.teSec1 .p1 {
  margin-top: 60px;
  font-size: 14px;
}

.teSec1 .wrap {
  height: auto;
  overflow: hidden;
}

.teSec1 .wrap .l {
  float: left;
  width: 47%;
}

.teSec1 .wrap .l p {
  margin-bottom: 15px;
  line-height: 25px;
}

.teSec1 .wrap .r {
  padding-top: 55px;
  float: right;
  width: 46%;
}

.teSec1 .wrap .r img {
  max-width: 100%;
}

.teSec1 .wrap .r h2 {
  font-size: 25px;
  padding-top: 25px;
  text-align: center;
}

/*------------ 产品中心--------- */
.p1_sec_1 {
  padding: 100px 0 0 0;
}

table {
  border-spacing: 0;
  word-wrap: break-word;
  word-break: break-all;
}

.table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  height: auto;
  overflow: hidden;
  margin: 25px 0;
}

.table td {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 15px 15px;
  font-size: 14px;
}

.table1 tr:first-child td {
  font-size: 15px;
  padding: 25px 20px;
  background-color: #013caf;
  color: #fff;
  font-weight: bold;
}

.table1 tr td:nth-child(2) {
  color: red;
}

.ttitle {
  text-align: left;
  margin-bottom: 50px;
}

.ttitle h2 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 15px;
}

.ttitle span {
  display: inline-block;
  width: 50px;
  height: 3px;
  background-color: #013caf;
}


.p1_sec_1 .wrap {
  display: flex;
  justify-content: space-between;
}

.p1_sec_1 .wrap .l {
  position: relative;
  float: left;
  width: 46%;
}

.p1_sec_1 .wrap .l img {
  width: 100%;
  position: relative;
  z-index: 2;
}
.p1_sec_1 .wrap .l .box1{
  position: relative;
}

.p1_sec_1 .wrap .r {
  float: right;
  width: 47%;
}

.p1_sec_1 .wrap .r p {
  line-height: 30px;
}

.p1_sec_1 .wrap .r h3 {
  font-size: 24px;
  color: #013caf;
  border-bottom: 1px solid #ddd;
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.p1_sec_1 .wrap .r h2 {
  font-size: 20px;
  color: #013caf;
  margin-top: 20px;
  margin-bottom: 20px;
}
.p1_sec_2{
  padding: 120px 0 90px 0;
  margin-top: -45px;
}

.p1_sec_1 .pd{
  background-color: #f2f2f2;
  padding: 25px;
}
.p1_sec_1 .desc p{
  position: relative;
  padding-left: 20px;
}
.p1_sec_1 .desc p::after{
  display: block;
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #013caf;
  position: absolute;
  left: 0;
  top: 12px;
}
.p1_sec_2{
  background: url(../image/pbg1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.p1_sec_2 .wrap{
  display: flex;
  justify-content: space-between;
}
.p1_sec_2 .wrap .l{
  padding-top: 40px;
  width: 47%;
}
.p1_sec_2 .wrap .l h2{
  font-weight: bold;
  font-size: 28px;
  color: #013caf;
  margin-bottom: 30px;
}

.p1_sec_2 .pd{
  font-size: 14px;
  line-height: 30px;
}
.p1_sec_2 .wrap .l ul{
  padding-top: 55px;
  height: auto;
  overflow: hidden;
}
.p1_sec_2 .wrap .l ul li{
  float: left;
  width: calc(100% / 6);
  text-align: center;
  margin-bottom: 35px;
}
.p1_sec_2 .wrap .l ul li img{
  width: 57%;
  margin-bottom: 10px;
}
.p1_sec_2 .wrap .l ul li  h3{
  font-size: 14px;
  margin-top: 15px;
}
.p1_sec_2 .wrap .r {
  width: 48%;
  display: flex;
  justify-content: flex-end;
}
.p1_sec_2 .wrap .r .box{
  position: relative;
  width: 430px;
  height: 430px;
}
.imgCon{
  width: 430px;
  height: 430px;
  border-radius: 100%;
  overflow: hidden;
  z-index: 1;
}
.p1_sec_2 .wrap .r .box .img2{
  margin-left: -25%;
  width: 136%;
  height: auto;
  border-radius: 0;
  max-width: 150%;
}
.p1_sec_2 .wrap .r .box .img1{
  width: 430px;
  height: 430px;
  border-radius: 100%;
  z-index: 1;
}
.p1_sec_2 .wrap .r .box .thumb{
  position: absolute;
  left:-90px;
  bottom: -20px;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  border: 7px solid #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center!important;
}
.p1_sec_2 .wrap .r .box .thumb2{
  position: absolute;
  left:0px;
  bottom: -80px;
  width: 170px;
  height: 170px;
  border-radius: 100%;
  border: 7px solid #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center!important;
}
.p1_sec_4{
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.p1_sec_4 ul{
   overflow: hidden;
}
.p1_sec_4 ul li{
  float: left;
}
.p1_sec_4 .bg{
  width: 100%;
  position: relative;
  z-index: 1;
}
.p1_sec_4 .title2{
  top: 50px;
  z-index: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: #fec432;
}
.p1_sec_3{
  padding: 80px 0;
}
.p1_sec_5{
  padding-top: 80px;
}
.p1_sec_5 .appSec{
  padding: 35px 35px 80px 35px;
  height: auto;
  overflow: hidden;
}
.p1_sec_5 .appSec .item{
  text-align: center;
  float: left;
  width: 47%;
  margin-left: 6%;
}
.p1_sec_5 .appSec .item .img{
  padding: 30px 25px;
  box-shadow: 0 20px 30px rgb(0 0 0 / 7%);
}
.p1_sec_5 .appSec .item:nth-child(2N+1){
  margin-left: 0;
}
.p1_sec_5 .appSec .item h3{
  color: #013caf;
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 8px;
}
.p1_sec_5 .appSec .item p{
  font-size: 16px;
  display: inline-block;
  max-width: 80%;
  height: 50px;
}
.p2_sec_2 .cir{
  background: #013caf;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.p2_sec_2 .cir img{
  width: 46px !important;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.p2_sec_2 li:nth-child(4) .cir img{
  width: 37px !important;
}
.p2_sec_3{
  padding: 100px 0;
  background: url(../image/abbg4.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.p2_sec_3 ul{
  height: auto;
  overflow: hidden;
}
.p2_sec_3 li {
  padding: 20px 20px;
  float: left;
  background-color: #fff;
  margin-left: 8%;
  width: 46%;
  height: 170px;
  box-shadow: 0 20px 30px rgb(0 0 0 / 7%);
  margin-bottom: 30px;
}
.p2_sec_3 li:nth-child(1),.p2_sec_3 li:nth-child(3){
  margin-left: 0;
}
.p2_sec_3 li:nth-child(3),.p2_sec_3 li:nth-child(4){
  margin-bottom: 0;
}
.p2_sec_3 li  h2{
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  color: #013caf;
  font-size: 18px;
}
.p2_sec_3 li  p{
  font-size: 14px;
  line-height: 25px;
}
.p2_sec_5{
  padding-top: 80px;
}
.p2_sec_4{
  padding: 80px 0 60px 0;
  background-color: #f2f2f2;
}
.p2_sec_4 .table1 tr td:nth-child(2){
  color: #333;
}
.p2_sec_4 .table1 tr:first-child td:nth-child(2){
  color: #fff;
}
.p2_sec_5 li{
  margin-left: 3%;
  float: left;
  width: calc(91% / 4);
  margin-bottom: 30px;
}
.p2_sec_5 li:nth-child(4N+1){
  margin-left: 0;
}
.p2_sec_5 ul{
  padding-top: 30px;
  height: auto;
  overflow: hidden;
}
.p2_sec_5{
  padding-bottom: 50px;
}
.p2_sec_5 li img{
  width: 100%;
  transition: all .3s;
}
.p2_sec_5 li:hover img{
  transform: scale(1.1);
}
.p3_sec_5{
  padding: 80px 0;
}
.p3_sec_3{
  padding: 80px 0 60px 0;
}
.appliSec{
  background-color: #f2f2f2;
  padding: 80px 0;
}
.appliSec .wrap{
  background-color: #fff;
}
.appliSec li{
  display: flex;
  background-color: #fff;
}
.appliSec li .img{
  width: 50%;
  overflow: hidden;
}
.appliSec li .img img{
  width: 100%;
  transition: .35s;
}
.appliSec li .img:hover img{
  transform: scale(1.1);
}
.appliSec li .txt{
  position: relative;
  width: 50%;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.appliSec li .txt h2{
  color: #013caf;
  font-size: 24px;
  margin-bottom: 25px;
}
.appliSec li .txt p{
  font-size: 15px;
  line-height: 30px;
}
.appliSec li:nth-child(even){
  flex-direction: row-reverse;
}
/* 产品新增 */
.xn_s1{
  padding: 80px 0;
}
.xn_s1 .con{
  height: auto;
  overflow: hidden;
}
.xn_s1 .con .l{
  float: left;
  width: 48%;
}
.xn_s1 .con .r{
  float: right;
  width: 45%;
}
.xn_s1 .con .l img{
  max-width: 100%;
}
.xn_s1 .con .r img{
  max-width: 97%;
}
.xn_s1 .con .r .itemBox{
  padding-top: 25px;
  display: flex;
}
.xn_s1 .con .r .itemBox .item{
 float: left;
 width: 20%;
 text-align: center;
 position: relative
}
.xn_s1 .con .r .itemBox .item h2{
  font-size: 18px;
  font-weight: bold;
  color: #013caf;
  margin-bottom: 5px;
}
.xn_s1 .addItem{
  padding: 20px 15px;
  background-color: #f2f2f2;
  margin-bottom: 13px;
}
/* .xn_s1 .con .r .itemBox .item::after{
  display: block;
  content: "";
  height: 45px;
  width: 1px;
  background-color: #ddd;
  position: absolute;
  right: 0;
  top: 0;
} */
.xn_s1 .addItem:hover{
  background-color: #013caf;
  color: #fff;
}

.abSec1 .wrap .ab1 .right {
  padding-top: 75px;
  float: right;
  width: 40%;
}
.abSec1 .wrap .ab1 .right .logoCon{
  height: auto;
  overflow: hidden;
}
.abSec1 .wrap .ab1 .right .logoCon .item{
  float: left;
  margin-left: 0;
  width: 33.33%;
}
.abSec1 .wrap .ab1 .right .logoCon .item:first-child{
  margin-left: 0;
}
.joinUs{
  padding: 0 0 30px 0;
  background-color: #f7f7f7;
}
.joinUs .title{
  margin-bottom: 50px;
}
.joinUs .title h2{
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px
}
.joinUs .title p{
  font-size: 18px;
  line-height: 30px;
}
.joinUs ul{
  height: auto;
  overflow: hidden;
}
.joinUs ul li{
  display: block;
  padding: 40px 30px;
  background-color: #fff;
  margin-bottom: 45px;
  margin-left: 5%;
  float: left;
  width: calc(95% / 2);
  box-shadow: 0 20px 30px rgb(0 0 0 / 7%);
}
.joinUs ul li:nth-child(2N+1){
  margin-left: 0;
}
.joinUs ul li .ht{
  display: flex;
  justify-content: space-between;
  position: relative;
  font-size: 22px;
  padding-bottom: 20px;
}
.joinUs ul li .h{
  font-size: 18px;
  margin-bottom: 15px;
  margin-top: 15px;
}
.joinUs ul li .cont{
  font-size: 14px;
  line-height: 25px;
}
.joinUs ul li .h{
  display: none;
}
.joinUs ul li .cont{
  display: none;
}
.joinUs ul li .ht::after{
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #ccc;
  transform: scaleY(.8);
}
.joinUs ul li .aBox{
  display: flex;
}
.joinUs ul li .aBox a{
  border-radius: 5px;
  display: flex;
  width: 120px;
  height: 38px;
  color: #fff;
  font-size: 14px;
  justify-content: center;
  align-items: center;
  background-color: #092976;
}
.joinUs ul li .aBox a.more1{
  background-color: #999;
  margin-right: 10px;
  cursor: pointer;
}
.joinUs ul li .ht .t{
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jobPop{
  position: fixed;
  left: 0;
  top: -100vh;
  right: 0;
  height: 100vh;
  z-index: 9999;
  background-color: rgba(0, 0, 0,1);
  transition: .3s;
}
.jobPop.show{
  top: 0;
}
.jobPop .close{
  position: absolute;
  right: 0;
  top: 0;
  background-color: #092976;
  width: 50px;
  height: 50px;
  background-image: url(../image/close1.png);
  background-size: 30px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  cursor: pointer;
}
.popCon{
  padding: 45px 40px;
  background-color: #fff;
  width: 800px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.popCon .ht{
  display: flex;
  justify-content: space-between;
  position: relative;
  font-size: 22px;
  padding-bottom: 20px;
}
.popCon .h{
  font-size: 18px;
  margin-bottom: 15px;
  margin-top: 15px;
}
.popCon .cont{
  font-size: 14px;
  line-height: 25px;
}

.popCon .ht::after{
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #ccc;
  transform: scaleY(.8);
}

.popCon .ht .t{
  font-size: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.popCon a.more1{
  display: none;
}
.popCon a{
    display: inline-block;
    background: #013caf;
    border: 1px solid #013caf;
    width: 136px;
    height: 37px;
    line-height: 35px;
    position: relative;
    font-size: 14px;
    border: 1px solid;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
}
.popCon  a::after{
  background-color: #2161de;
  z-index: 1;
}
.popCon  a:hover{
  color: #fff !important;
}
.popCon  a >div{
  color: #fff;
  position: relative;
  z-index: 2;
  padding-left: 15px;
}
.abSec4  .title{
  text-align: center;
}