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("../ttf/impact-2.ttf");
}
.wrap {
 width: 88%;
 margin: 0 auto;
}
/* 头部  */
.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: 55px;
}
.header .logo a {
  display: flex;
  height: 100px;
  align-items: center;
}
.header .tools {
  display: flex;
  align-items: center;
  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: 20px;
  height: 20px;
}
.header .tools .search {
  margin-left: 30px;
}
.header .tools .search span {
  margin-left: 5px;
}
.header .tools .dz img {
  width: 20px;
  height: 20px;
}
.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.language ul {
  padding: 5px 0;
  position: absolute;
  left: 50%;
  margin-left: -50px;
  top: 105%;
  margin-top: 5px;
  width: 100px;
  text-align: center;
  display: none;
  background: #f4f4f4;
  z-index: 6;
}
.header .tools .item.language ul li a {
  font-size: 14px;
  line-height: 30px;
  color: #666;
}

.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: 45px;
}
.header .tools .item.language:hover .sub {
  opacity: 1;
}
.header .innav {
  float: right;
}

.header .innav > ul > li {
  font-size: 15px;
  line-height: 100px;
  padding: 0px 25px;
  float: left;
  color: #fff;
  transition: padding 0.5s ease;
}
.header:hover .innav li {
  color: #333;
}

.header:hover .innav li:hover {
  color: #1b66aa;
}
.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(../search2-2.html) 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: #1b66aa;
  color: #fff;
  border: 1px solid #1b66aa;
}
.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(../jpg/dropdown1-2.jpg);
  background-position: center right;
  background-repeat: no-repeat;
}
.header .innav li .dropDown2 .bg .r {
  background: url(../jpg/dropdown2-2.jpg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 97%;
}
.header .innav li .dropDown3 .bg .r {
  background: url(../jpg/dropdown3-2.jpg);
  background-position: center right;
  background-repeat: no-repeat;
}
.header .innav li .dropDown4 .bg .r {
  background: url(../jpg/dropdown4-2.jpg);
  background-position: center right;
  background-repeat: no-repeat;
}
.header .innav li .dropDown5 .bg .r {
  background: url(../jpg/dropdown5-2.jpg);
  background-position: center right;
  background-repeat: no-repeat;
}
.header .innav li .dropDown6 .bg .r {
  background: url(../jpg/dropdown6-2.jpg);
  background-position: center right;
  background-repeat: no-repeat;
}
.header .innav li .dropDown7 .bg .r {
  background: url(../jpg/dropdown7-2.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: #1b66aa;
}

.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: #1b66aa;
}

.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: 14px;
  color: #000;
  line-height: 22px;
  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(../png/arrow_right_1-2.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(../png/arrow_right_1_on-2.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: #1b66aa;
  color: #fff;
  border: 1px solid #1b66aa;
}
.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: #1b66aa;
  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: #1b66aa;
  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: 35px;
}
.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 0px 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%;
}
.bannerarr{
  width: 40px;
  height: 39px;
  position: absolute;
  left: 4%;
  bottom: 5%;
  z-index: 20;
}
.bannerarr i{
  width: 8px;
  height: 45px;
  background: url(../png/dj-2.png) center no-repeat;
  position: absolute;
  left: 50%;
  margin-left: -4px;
  top: -30px;
  animation: tbupdonw1 2000ms infinite ease;
}
.bannerarr span{
  display: block;
  width: 40px;
  height: 39px;
  background: url(../png/yy-2.png) center no-repeat;
}
@keyframes tbupdonw1 {
  0% {
    top: -30px;
  }

  50% {
    top: -20px;
  }

  100% {
    top: -30px;
  }
}
.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: rgba(0, 0, 0, 0.3);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.banner-box .banner-item p {
  color: #fff;
  font-size: 20px;
  font-weight: bolder;
}
.banner-box .banner-item .bannerTxt {
  z-index: 2;
  position: relative;
}
.banner-box .banner-item .bannerTxt h2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 36px;
  text-align: left;
  padding-left: 100px;
}
.banner-box .banner-item .bannerTxt h3 {
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size:36px;
  text-align: right;
  position: relative;
  padding-left: 100px;
}
.banner-box .banner-item .bannerTxt h3::after{
  display: block;
  content: "";
  background-color: #fff;
  height: 3px;
  width: 80px;
  position: absolute;
  left: 0;
  top: 66%;
  transform: translateY(-50%);
}
.banner-box.swiper-slide-active .bannerTxt h2 {
  animation: fadeInUp 1s ease both;
  animation-delay: 1s;
}
.banner-box.swiper-slide-active .bannerTxt h3 {
  animation: fadeInUp 1s ease both;
  animation-delay: 1.5s;
}
.banner-box.swiper-slide-active .bannerTxt p {
  animation: fadeInUp 1s ease both;
  animation-delay: 2s;
  padding-left: 100px;
}.banner-box.swiper-slide-active .bannerTxt p span{
  color: #f9ce31;
}
.banner-box.swiper-slide-active .bannerTxt p span i{
  font-size: 30px;
  font-style: normal;
}
.home .bannerprev {
  cursor: pointer;
  position: absolute;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 40px;
  height: 40px;
  background: url(../png/prev-2.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(../png/next-2.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;
  }
}
.homepagination {
  position: absolute;
  left: 0 !important;
  right: 0 !important;
  bottom: 7% !important;
  z-index: 5;
  text-align: center;
}
.homepagination .swiper-pagination-bullet {
  width: 80px;
  height: 1px;
  margin: 0 !important;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 0;
  opacity: 1;
  position: relative;
}
.homepagination .swiper-pagination-bullet::after{
  display: block;
  content: "";
  width: 3px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: -1px;
}
.homepagination .swiper-pagination-bullet:last-child::before{
  display: block;
  content: "";
  width: 3px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: -1px;
}
.homepagination .swiper-pagination-bullet  .num{
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
}
.homepagination .swiper-pagination-bullet-active .num{
  color: #fff;
}
.homepagination .swiper-pagination-bullet .line{
  position: absolute;
  left: 0;
  top: -1px;
  background-color: #fff;
  opacity: 0;
  width: 100%;
  height: 3px;
}
.homepagination .swiper-pagination-bullet-active  .line{
  opacity: 1;
}
.homeSec2 .title {
  padding-top: 45px;
  text-align: center;
}
.homeSec2 .title h2 {
  font-weight: normal;
  font-size: 30px;
}
.homeSec2 .title p {
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-block;
  max-width: 800px;
  font-size: 16px;
  line-height: 28px;
}
.homeSec2 li {
  float: left;
  width: 25%;
  padding: 40px 35px 60px 35px;
  text-align: center;
}
.homeSec2 li .icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.homeSec2 li .icon.icon1 {
  background: url(../jpg/icon1-2.jpg);
  background-size: 55px !important;
}
.homeSec2 li .icon.icon2 {
  background: url(../png/icon2-2.png);
  background-size: 52px !important;
}
.homeSec2 li .icon.icon3 {
  background: url(../jpg/icon3-2.jpg);
  background-size: 60px !important;
}
.homeSec2 li .icon.icon4 {
  background: url(../jpg/icon4-2.jpg);
  background-size: 50px !important;
}
.homeSec2 li .number {
  font-size: 40px;
  color: #1b66aa;
  font-family: "impact";
}
.homeSec2 li .number span {
  font-family: "impact";
}
.homeSec2 li .number span sup{
  font-size: 20px;
  font-weight: bold;
}
.homeSec2 li .number span sup em{
  font-style: normal;
  font-size: 12px;
  vertical-align: 6px;
}
.homeSec2 ul {
  height: auto;
  overflow: hidden;
}
.homeSec3 {
  background: url(../jpg/hbg1-2.jpg);
  background-attachment: fixed;
  padding: 80px 0 60px 0;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover;
}
.homeSec3 .wrap {
  height: auto;
  overflow: hidden;
}
.homeSec3 .wrap .r {
  float: right;
  width: 730px;
}
.homeSec3 .title {
  text-align: right;
}
.homeSec3 .title h2 {
  font-weight: normal;
  font-size: 30px;
}
.homeSec3 .title p {
  margin-top: 10px;
  margin-bottom: 30px;
  display: inline-block;
  font-size: 16px;
  line-height: 28px;
}
.homeSec3 .content .l {
  position: relative;
  width: 430px;
  height: 330px;
  overflow: hidden;
  float: left;
}
.homeSec3 .content .l .img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transition: all 0.5s ease;
  background: url(../jpg/ab1-2.jpg);
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}
.homeSec3 .content .l:hover .img {
  transform: scale(1.1);
}
.homeSec3 .content .l .con {
  position: relative;
  z-index: 2;
  padding: 35px;
  height: 100%;
}
.homeSec3 .content .l .con h2 {
  font-weight: normal;
  font-size: 24px;
  margin-bottom: 15px;
}
.homeSec3 .content .l .con p {
  font-size: 14px;
  line-height: 26px;
}
.homeSec3 .content .l .con a {
  position: absolute;
  bottom: 30px;
  right: 30px;
  transition: all 0.5s ease;
}
.homeSec3 .content .l:hover .con a {
  right: 35px;
}
.homeSec3 .content .r {
  float: right;
  width: 250px;
}
.homeSec3 .content .r .item {
  display: block;
  cursor: pointer;
  overflow: hidden;
  width: 250px;
  height: 150px;
  position: relative;
  margin-bottom: 30px;
}
.homeSec3 .content .r .item .img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transition: all 0.5s ease;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}
.homeSec3 .content .r .item.item1 .img {
  background: url(../jpg/ab2-2.jpg);
}
.homeSec3 .content .r .item.item2 .img {
  background: url(../jpg/ab3-2.jpg);
}
.homeSec3 .content .r .item:hover .img {
  transform: scale(1.1);
}
.homeSec3 .content .r .item .con {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-direction: column;
}
.homeSec3 .content .r .item .con h2 {
  font-size: 13px;
  font-weight: normal;
}
.homeSec3 .content .r .item .con p {
  font-size: 16px;
  font-weight: bold;
}
.homeSec4 {
  padding-top: 30px;
  padding-bottom: 100px;
}
.homeSec4 .title {
  height: auto;
  overflow: hidden;
  padding-bottom: 60px;
}
.homeSec4 .title .l {
  float: left;
}

.homeSec4 .title .r {
  padding-top: 100px;
  float: right;
}
.homeSec4 .title .r a {
  cursor: pointer;
  display: inline-block;
  width: 144px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  background-color: #e8e8e8;
  font-size: 14px;
  margin-left: 15px;
}
.homeSec4 .title .r a.active,
.homeSec4 .title .r a:hover {
  color: #fff;
  background-color: #1b66aa;
}
.newSwiper {
  position: relative;
  padding-bottom: 10px;
}
.newSwiper .newImg {
  overflow: hidden;
  height: 300px;
  position: relative;
}
.newSwiper .newImg > div {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  transition: all 0.5s ease;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.newSwiper .newImg:hover > div {
  transform: scale(1.1);
}
.newSwiper .txt {
  padding: 35px 20px;
}
.newSwiper .txt h1 {
  font-weight: normal;
  font-size: 14px;
}
.newSwiper .txt h2 {
  font-weight: normal;
  font-size: 20px;
  margin: 12px 0 25px 0;
  color: #000;
  min-height: 53px;
  transition: all 0.5s ease;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.newSwiper .txt p {
  min-height: 50px;
  font-size: 13px;
  line-height: 25px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.newSwiper a:hover .txt h2 {
  color: #1b66aa;
}
.newSwiper .tool {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 0;
  height: 30px;
}
.newSwiper .tool .newsprev {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: url(../png/n_arr_l_on-2.png);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.newSwiper .tool .newsnext {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: url(../png/n_arr_r_on-2.png);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.newSwiper .tool .newsnext.swiper-button-disabled {
  background: url(../png/n_arr_r-2.png);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.newSwiper .tool .newsprev.swiper-button-disabled {
  background: url(../png/n_arr_l-2.png);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.newSwiperPagination {
  background: rgba(0, 0, 0, 0.25);
  height: 2px;
  width: 90%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.newSwiperPagination .my-pagination-progressbar-fill {
  background-color: #1b66aa;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.homeSec4 .newSwiper2 {
  opacity: 0;
}
.homeSec4 .swiperContain {
  position: relative;
}
.homeSec4 .swiperContain .newSwiper1 {
  position: relative;
  z-index: 2;
}
.homeSec4 .swiperContain .newSwiper2 {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.footer {
  padding-top: 40px;
  background-color: #2a2a2a;
}
.footer .copy {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  height: auto;
  overflow: hidden;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .copy span {
  color: #d0cece;
  font-size: 13px;
}
.footer .copy .ga{
  margin-left: 15px;
  vertical-align: -3px;
}
.footer .copy .l {
  float: left;
}
.footer .copy .r {
  float: right;
  text-align: right;
}
.footer .footCon {
  padding-top: 30px;
  height: auto;
  overflow: hidden;
  padding-bottom: 80px;
}
.footer .footCon .l {
  float: left;
  width: calc(100% - 300px);
}
.footer .footCon .r {
  float: right;
}
.footer .footCon .l dt {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
}
.footer .footCon .l dd {
  margin-bottom: 10px;
}
.footer .footCon .l dd a {
  color: #959595;
}
.footer .footCon .l dl {
  float: left;
  width: calc(100% / 7);
}
.footer .footCon .r .flogo {
  text-align: center;
}
.footer .footCon .r .flogo img {
  width: 190px;
}
.footer .footCon .r h2 {
  font-family: 'impact';
  color: rgba(255, 255, 255, 1);
  font-size: 30px;
  margin: 6px 0;
  text-align: center;
}
.footer .footCon .r .ewm .item {
  float: right;
  margin-left: 20px;
}
.footer .footCon .r .ewm .item:last-child{
  margin-left: 0;
}
.footer .footCon .r .ewm .item .img {
  width: 90px;
  height: 90px;
  background-color: #fff;
  margin-top: 20px;
}
.footer .footCon .r .ewm .item .img img{
  width: 100%;
}
.footer .footCon .r .ewm .item .t {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0;
  font-size: 12px;
  text-align: center;
}
.rightBar {
  float: right;
  margin-left: 40px;
}
.rightBar .item {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: #fff;
  /* box-shadow: 5px 12px 13px  rgba(0, 0, 0, .1); */
}
.rightBar .item img {
  width: 20px;
}
.rightBar .item img.active {
  display: none;
}
.rightBar .item:hover img.normal {
  display: none;
}
.rightBar .item:hover img.active {
  display: block;
}
.rightBar .item:hover {
  background-color: #1b66aa;
}
.rightBar .down {
  cursor: pointer;
  padding-top: 8px;
  text-align: center;
  display: block;
  border-top-right-radius: 35px;
  border-top-left-radius: 35px;
  border-bottom-right-radius: 35px;
  border-bottom-left-radius: 35px;
  width: 35px;
  height: 110px;
  background-color: #1b66aa;
  margin-bottom: 15px;
}
.rightBar .down img {
  width: 20px;
  margin-bottom: 4px;
}
.rightBar .down span {
  display: inline-block;
  width: 20px;
  line-height: 15px;
  color: #fff;
  font-size: 12px;
}
.homeSec1 .title {
  padding-top: 45px;
  text-align: center;
}
.homeSec1 .title h2 {
  font-weight: normal;
  font-size: 30px;
}
.proUl li {
  height: 480px;
  float: left;
  position: relative;
  margin-left: 0.6%;
  transition: all 0.5s ease;
  overflow: hidden;
  width: 18%;
}
.proUl li:first-child {
  margin-left: 0;
}
.proUl li.on {
  width: 44.2%;
}
.proUl li a {
  display: block;
  height: 100%;
  position: relative;
}
.proUl {
  padding: 10px 0 50px 0;
  height: auto;
  overflow: hidden;
}
.proUl li .normal {
  height: 100%;
  position: relative;
  z-index: 3;
  transition: all 0.5s ease;
}
.proUl li .normal .txt {
  text-align: center;
  position: absolute;
  padding: 0 2%;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.proUl li .normal .txt h2 {
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}
.proUl li .normal .txt p {
  color: #fff;
  font-size: 15px;
}
.proUl li .normal .bg {
  position: relative;
  z-index: 1;
  background-position: left top !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  width: 100%;
  height: 100%;
}
.proUl li .normal .cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.25);
}
.proUl li .active {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.proUl li .active .bg {
  position: relative;
  z-index: 1;
  background-position: left top;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  width: 100%;
  height: 100%;
}
.proUl li .active .cover {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  height: 100%;
  width: 80%;
  background-image: linear-gradient(
    to right,
    rgba(0,0,0, 0.3),
    rgba(0,0,0, 0)
  );
}
.proUl li.on .active {
  display: block;
}
.proUl li.on .normal {
  display: none;
}
.proUl li.on .active .txt {
  width: 90%;
  position: absolute;
  bottom: 12%;
  left: 5%;
  z-index: 3;
  animation: fadeInUp 0.5s ease both;
  animation-delay: 0.3s;
}
.proUl li.on .active .txt h3 img{
  width: 50px;
  margin-bottom: 10px;
}
.proUl li:nth-child(1).on .active .txt h3 img{
  width: 80px;
  margin-left: -10px;
}
.proUl li:nth-child(2).on .active .txt h3 img{
  width: 60px;
}
.proUl li:nth-child(4).on .active .txt h3 img{
  width: 65px;
  margin-left: -10px;
  margin-bottom: 0;
}
.proUl li.on .active .txt h2 {
  font-weight: normal;
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}
.proUl li.on .active .txt .desc {
  color: #fff;
  font-size: 15px;
  margin-bottom: 8px;
  margin-top: 8px;
  margin-right: 10%;
}
.proUl li.on .active .txt .txtList {
  color: #fff;
  font-size: 14px;
}
.proUl li.on .active .txt .txtList a {
  display: inline-block;
  line-height: 23px;
}
.proUl li .active .txtList {
  margin-right: 2%;
}
.banner-box .banner-item .videoCircle {
  position: absolute;
  right: 10%;
  bottom: 9%;
  width: 160px;
  height: 160px;
  z-index: 2;
}
.banner-box .banner-item .videoCircle .cir {
  position: relative;
  z-index: 1;
  width: 100%;
  animation: rotate 8s linear infinite;
}
.banner-box .banner-item .videoCircle .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.inBanner {
  height: 520px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  position: relative;
}
.inBanner.banner1 {
  background: url(../ibanner1-2.html);
}
.inBanner.banner2 {
  background: url(../ibanner2-2.html);
}
.inBanner.banner3 {
  background: url(../ibanner3-2.html);
}
.inBanner.banner4 {
  background: url(../ibanner4-2.html);
}
.inBanner.banner5 {
  background: url(../ibanner5-2.html);
}
.inBanner.banner6 {
  background: url(../ibanner6-2.html);
}
.inBanner.banner7 {
  background: url(../ibanner7-2.html);
}
.inBanner .wrap {
  position: relative;
  height: 100%;
}
.banCon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.banCon h2 {
  letter-spacing: 4px;
  color: #fff;
  font-weight: normal;
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 20px;
}
.banCon h3 {
  color: #fff;
  font-weight: normal;
  font-size: 22px;
  letter-spacing: 2px;
}
.banCon h3 span {
  margin-right: 11px;
}
.bannerArr {
  margin-top: 35px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #1b66aa;
  background-image: url(../down1-2.html);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 25px;
  animation: beating 2s linear infinite;
}
@keyframes beating {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.inNav {
  height: 88px;
  background: url(../in_nav-2.html) no-repeat right center;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -33px;
  z-index: 2;
}
.inNav1 {
  height: 88px;
  background: url(../in_nav1-2.html) no-repeat right center;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -33px;
  z-index: 2;
}
.inNav .l {
  float: left;
  width: 65%;
  margin-top: 13px;
}
.inNav .l a {
  color: #fff;
  padding: 15px 10px;
  font-size: 16px;
  line-height: 75px;
  position: relative;
}
.inNav .l a:hover {
  color: #facd00;
}

.inNav .l a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #facd00;
  transform: scaleX(0);
  transition: 0.3s ease;
}

.inNav .l a:hover::after {
  transform: scaleX(1);
}

.inNav .l a.active::after {
  transform: scaleX(1);
}
.inNav .r {
  float: right;
  font-size: 15px;
  color: #fff;
  line-height: 55px;
}
.inNav .r em {
  display: inline-block;
  margin: 0 5px;
}
.abSec1 {
  padding: 100px 0;
  background: url(../bg_line-2.html);
}
.ntitle h2 {
  font-size: 35px;
  font-weight: normal;
  position: relative;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.ntitle1 h2 {
  margin-bottom: 8px;
}
.ntitle h2 .since {
  color: #ededed;
  font-weight: bold;
  font-size: 68px;
  margin-left: 25px;
  vertical-align: -7px;
}
.ntitle h3 {
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 1px;
  color: #666;
}
.ntitle h2::after {
  display: block;
  content: "";
  width: 110px;
  height: 10px;
  background-color: #1b66aa;
  position: absolute;
  left: 0;
  bottom: 2px;
  z-index: 1;
}
.ntitle1 h2::after {
  bottom: 14px;
}
.ntitle span {
  position: relative;
  z-index: 2;
  color: #333;
}
.abSec1 .intro .p {
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
  height: auto;
  overflow: hidden;
}
.abSec1 .intro .p .l {
  float: left;
  width: calc(100% - 500px);
}
.abSec1 .intro p {
  line-height: 28px;
  font-size: 16px;
  margin-bottom: 12px;
}
.abSec1 .intro .r {
  float: right;
  width: 450px;
}
.abSec1 .intro .r .item {
  float: left;
  width: 50%;
  text-align: center;
  padding-top: 25px;
  padding-bottom: 20px;
}
.abSec1 .intro .r .item h3 {
  font-family: "impact";
  font-size: 45px;
  color: #1b66aa;
}
.abSec1 .intro .r .item h3 span {
  font-family: "impact";
  font-size: 45px;
  color: #1b66aa;
}
.introCont {
  padding-top: 55px;
  height: auto;
  overflow: hidden;
}
.introCont .l {
  padding-top: 24px;
  float: left;
  width: 42%;
  height: 350px;
  background: url(../itembg-2.html);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.introCont .r {
  float: right;
  width: 58%;
  overflow: hidden;
  height: 350px;
}
.introCont .r > div {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  transition: 1s ease;
}
.introCont .r:hover > div {
  transform: scale(1.1);
}
.introCont .l .item {
  width: 50%;
  height: 145px;
  padding: 0 5%;
  text-align: center;
  color: #fff;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.introCont .l .item p {
  margin-top: 4px;
  font-size: 18px;
}
.abSec2 {
  background: url(../png/culbg-2.png);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  height: 600px;
}
.abSec2 ul {
  height: 100%;
}
.abSec2 li {
  position: relative;
  padding: 0 2.6%;
  cursor: pointer;
  float: left;
  width: 20%;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.abSec2 li > div {
  position: relative;
  z-index: 2;
  padding-top: 240px;
}
.abSec2 li > div h2 {
  letter-spacing: 5px;
  font-size: 18px !important;
  text-transform: uppercase !important;
  color: #fff;
  transform: translateY(10px);
  transition: all 0.5s ease;
}
.abSec2 li > div p {
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s ease;
}
.abSec2 li:hover > div p {
  opacity: 1;
  transform: translateY(10px);
}
.abSec2 li::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1;
  transition: all 0.5s ease;
  background-color: #1b66aa;
}
.abSec2 li:hover:after {
  height: 100%;
}
.abSec2 li:hover > div h2 {
  transform: translateY(0);
}
.abSec3 {
  padding: 80px 0;
  background: url(../png/history-2.png);
}
.hisSwiper {
  margin-top: 100px;
}
.hisSwiper .item {
  border-left: 1px solid #dedede;
  padding: 20px 35px;
  height: 180px;
}
.hisBox {
  position: relative;
}
.hisBox::after {
  content: "";
  display: block;
  height: 10px;
  width: 100%;
  background: url(../png/hisline-2.png);
  position: absolute;
  left: 0;
  top: 200px;
}
.hisSwiper .item h2 {
  font-size: 40px;
  color: #1b66aa;
  font-weight: normal;
  font-family: "impact";
  margin-bottom: 20px;
}
.hisSwiper .item p {
  line-height: 21px;
  font-size: 15px;
}
.hisSwiper .item::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid #1b66aa;
  position: absolute;
  bottom: -50px;
  left: 0;
}
.hisSwiper .item::after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #1b66aa;
  position: absolute;
  bottom: -47px;
  left: 3px;
}

.hisBox .hisprev {
  position: absolute;
  left: -55px;
  top: 35%;
  width: 45px;
  height: 45px;
  background-color: #f5f5f5;
  background-image: url(../png/arr3-2.png);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  outline: none;
  z-index: 10;
}
.hisBox .hisprev:hover {
  background-color: #1b66aa;
  background-image: url(../png/arrow3_on-2.png);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center center;
}
.hisBox .hisnext:hover {
  background-color: #1b66aa;
  background-image: url(../png/arrow3_on_r-2.png);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center center;
}
.hisBox .hisnext {
  position: absolute;
  right: -55px;
  top: 35%;
  width: 45px;
  height: 45px;
  background-color: #f5f5f5;
  background-image: url(../png/arr3_r-2.png);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  outline: none;
  z-index: 10;
}
.abSec4 {
  padding: 80px 0 60px 0;
  background: url(../jpg/honorbg-2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.honorUl {
  margin-top: 100px;
  height: auto;
  overflow: hidden;
}
.honorUl li {
  cursor: pointer;
  height: 260px;
  float: left;
  margin-left: 4%;
  width: calc(88% / 4);
  margin-bottom: 45px;
  background-image: radial-gradient(#fff, #555);
  overflow: hidden;
  position: relative;
}
.honorUl li:nth-child(4n + 1) {
  margin-left: 0;
}
.honorUl li .img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.honorUl li .img img {
  max-width: 85%;
  height: 85%;
}
.honorUl li .cover {
  display: flex;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(27, 102, 170, 0.8);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  transition: all 0.5s ease;
  opacity: 0;
  transform: scale(0);
}
.honorUl li .cover h2 {
  font-size: 16px;
  color: #fff;
}
.honorUl li .cover .search {
  width: 35px;
  height: 35px;
  background: url(../png/search-2.png);
  background-size: 35px;
}
.honorUl li .cover .line {
  width: 45px;
  height: 2px;
  background-color: #fff;
  margin: 15px 0;
}
.honorUl li:hover .cover {
  opacity: 1;
  transform: scale(1);
}
.honPop {
  position: fixed;
  z-index: 50;
  background: rgba(0, 0, 0, 0.75);
  left: 0;
  top: -100vh;
  right: 0;
  height: 100vh;
  transition: all 0.5s ease;
}
.honPop.show {
  top: 0;
}
.honPop .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #1b66aa;
  background-image: url(../png/close1-2.png);
  background-repeat: no-repeat;
  background-size: 37px;
  background-position: center center;
}
.honPop .container {
  position: absolute;
  z-index: 55;
  top: 50%;
  width: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.honPop .container .img {
  display: flex;
  justify-content: center;
}
.honPop  .txt{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  line-height: 70px;
  background-color: #000;
  color: #fff;
  font-size: 15px;
  text-align: center;
}
.honPop .container img {
  max-height: 80vh;
}
.honPop .container .prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: url(../png/prev-2.png);
  background-size: 24px !important;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.honPop .container .next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: url(../png/next-2.png);
  background-size: 24px !important;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.abSec5 {
  padding: 80px 0;
  background: url(../abbg2-3.html);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.abSec5 .ntitle span {
  color: #fff;
}
.abSec5 .ntitle h2::after {
  background-color: rgba(255, 255, 255, 0.7);
}
.abSec5 .ntitle h3 {
  color: #fff;
}
.abSec5 .wrap {
  height: auto;
  overflow: hidden;
}
.abSec5 .wrap .l {
  width: 405px;
  padding-top: 50px;
  float: left;
}
.abSec5 .wrap .r {
  margin-left: 500px;
}
.abSec5 .item {
  overflow: hidden;
  cursor: pointer;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: radial-gradient(#fff, #999);
}
.abSec5 .item img {
  max-height: 90%;
  max-width: 90%;
  transition: all 0.5s ease;
}
.facSwiper {
  overflow: hidden;
}
.abSec5 .item:hover img {
  transform: scale(1.1);
}
.abSec5 .facBtn {
  padding-top: 90px;
  height: auto;
  overflow: hidden;
}
.facprev {
  float: left;
  width: 45px;
  height: 45px;
  border: 1px solid #fff;
  outline: none;
  cursor: pointer;
  background-image: url(../png/arrow3_on-2.png);
  background-size: 30px;
  background-position: center center;
  background-repeat: no-repeat;
}
.facnext {
  float: left;
  margin-left: 25px;
  width: 45px;
  height: 45px;
  border: 1px solid #fff;
  outline: none;
  cursor: pointer;
  background-image: url(../png/arrow3_on_r-2.png);
  background-size: 30px;
  background-position: center center;
  background-repeat: no-repeat;
}
.newsList {
  padding: 120px 0 80px 0;
  background: #f1f1f1;
}
.newsList li a {
  display: block;
  height: 275px;
  border-bottom: 1px solid #cdc8c8;
  transition: all 0.5s ease;
}
.newsList li a .l {
  position: relative;
  float: left;
  width: 100px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.5s ease;
}
.newsList li a .l h2 {
  font-size: 66px;
  line-height: 66px;
  font-weight: bold;
  margin-bottom: 3px;
}
.newsList li a .l h3 {
  font-weight: normal;
  font-size: 22px;
  line-height: 22px;
}
.newsList li a .r {
  position: relative;
  margin-left: 100px;
  padding: 30px 35px 30px 70px;
}
.newsList li a .l::before {
  content: "";
  background: #bcbcbc;
  position: absolute;
  width: 46px;
  height: 1px;
  top: 50%;
  right: -56px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.newsList li a .l::after {
  content: "";
  position: absolute;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #1b66aa;
  right: -15px;
  top: 50%;
  margin-top: -15px;
  z-index: 3;
  transition: all 0.5s ease;
  opacity: 0;
}

.newsList li a:hover .l::after {
  opacity: 1;
}

.newsList li a:hover .l::before {
  background: #1b66aa;
}
.newsList li a:hover .l {
  background: #1b66aa;
}
.newsList li a:hover .l h2 {
  color: #fff;
}
.newsList li a:hover .l h3 {
  color: #fff;
}
.newsList li a .r .img {
  float: right;
  width: 23%;
  height: 190px;
  overflow: hidden;
}
.newsList li a .r .img > div {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  transition: all 0.5s ease;
}
.newsList li a .r .intro {
  float: left;
  width: 73%;
}
.newsList li a .r h2 {
  font-weight: normal;
  font-size: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
}
.newsList li a .r .iconBox {
  margin: 20px 0;
  color: #c9c9c9;
  display: flex;
  align-items: center;
}
.newsList li a .r .iconBox span {
  display: flex;
  align-items: center;
  margin-right: 12px;
}
.newsList li a .r .iconBox i {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.newsList li a .r .iconBox i.eye {
  background: url(../png/eye-2.png);
  background-size: 100%;
  background-position: center 2px;
}
.newsList li a .r .iconBox i.date {
  background: url(../png/date-2.png);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center 4px;
}
.newsList li a .r .iconBox .dateBox {
  display: none;
}
.newsList li a .r .desc {
  font-size: 15px;
  line-height: 28px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.newsList li a:hover .r h2 {
  color: #1b66aa;
}
.newsList li a:hover {
  background: #fff;
}
.newsList li a:hover .r .img > div {
  transform: scale(1.1);
}
.newsInner {
  padding: 100px 0;
}
.newsInner .wrap {
  height: auto;
  overflow: hidden;
}
.newsInner .wrap .r {
  float: right;
  width: 300px;
  background-color: #fff;
}
.newsInner .wrap .l {
  float: left;
  width: calc(100% - 380px);
}
.newsInner .wrap .l img{
  max-width: 95%;
}
.newsInner .recomdHead {
  background-color: #1b66aa;
  height: 55px;
  color: #fff;
  font-size: 20px;
  padding-left: 40px;
  line-height: 55px;
}
.newsInner .wrap .r ul {
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
  border: 1px solid #ededed;
}
.newsInner .wrap .r ul li {
  padding: 5px 18px;
}
.newsInner .wrap .r ul li p {
  font-size: 14px;
}
.newsInner .wrap .r ul li h2 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  font-size: 16px;
  font-weight: normal;
}
.newsInner .wrap .r ul li:hover h2 {
  color: #1b66aa;
}
.newsInner .wrap .l .top h2 {
  font-weight: normal;
  font-size: 22px;
}
.newsInner .wrap .l .top span {
  display: flex;
  align-items: center;
}
.newsInner .wrap .l .spanBox {
  padding: 20px 0 60px 0;
  color: #999;
  border-bottom: 1px solid #eee;
}
.newsInner .wrap .l .spanBox span {
  margin-right: 20px;
}
.newsInner .wrap .l .spanBox i.date {
  background: url(../png/date-2.png);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center 4px;
}
.newsInner .wrap .l .spanBox i {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.newsInner .wrap .l .spanBox i.eye {
  background: url(../png/eye-2.png);
  background-size: 100%;
  background-position: center 4px;
}
.newsInner .wrap .l .contain {
  padding: 80px 0;
  font-size: 15px;
  line-height: 28px;
  border-bottom: 1px solid #eee;
}
.newsInner .wrap .l .pageBtns {
  padding: 30px 0;
  position: relative;
  height: auto;
  overflow: hidden;
}
.newsInner .wrap .l .pageBtns .prev .span {
  display: flex;
  align-items: center;
}
.newsInner .wrap .l .pageBtns .next .span {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.newsInner .wrap .l .pageBtns .prev {
  float: left;
  width: 30%;
}
.newsInner .wrap .l .pageBtns .next {
  float: right;
  width: 30%;
}
.newsInner .wrap .l .pageBtns .prev .span i {
  margin-top: 2px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../png/arr3-2.png);
  background-size: 20px;
  background-position: center center;
}
.newsInner .wrap .l .pageBtns .title {
  padding-top: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  transition: 0.5s ease;
}
.newsInner .wrap .l .pageBtns .prev:hover .title {
  color: #1b66aa;
}
.newsInner .wrap .l .pageBtns .next:hover .title {
  color: #1b66aa;
}
.newsInner .wrap .l .pageBtns .next .span i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../png/arr3_r-2.png);
  background-size: 20px;
  background-position: center center;
}
.newsInner .wrap .l .pageBtns .next .title {
  text-align: right;
}
.newsInner .wrap .l .pageBtns .back {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -70px;
  margin-top: -17px;
  display: block;
  width: 140px;
  height: 35px;
  color: #fff;
  text-align: center;
  line-height: 35px;
  background-color: #1b66aa;
}
.newsInner .wrap .r.fixed {
  position: fixed;
}
.contactS1 {
  padding: 100px 0;
  background: url(../bg_line-2.html);
}
.contactS1 .wrap {
  height: auto;
  overflow: hidden;
}
.contactS1 .l {
  float: left;
  width: 46%;
}
.contactS1 .l .top {
  height: auto;
  overflow: hidden;
  padding: 20px 0 50px 0;
  border-bottom: 1px solid #ddd;
}
.contactS1 .l .top .ntitle {
  float: left;
}
.contactS1 .l .top .viewMap {
  border: 1px solid #1b66aa;
  width: 170px;
  height: 48px;
  line-height: 48px;
  border-radius: 48px;
  padding-left: 40px;
  display: block;
  color: #1b66aa;
  transition: all 0.5s ease;
  position: relative;
  float: right;
  cursor: pointer;
  font-size: 15px;
  margin-top: 45px;
}
.contactS1 .l .top .viewMap span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../carr1-2.html);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  transition: all 0.5s ease;
}
.contactS1 .l .top .viewMap:hover span {
  background: url(../carr2-2.html);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  right: 20px;
}
.contactS1 .l .top .viewMap:hover {
  background: #1b66aa;
  color: #fff;
}
.contactS1 .l .list {
  height: auto;
  overflow: hidden;
}
.contactS1 .l .list .item {
  float: left;
  width: 50%;
  padding: 30px 15px;
}
.contactS1 .l .list .item h2 {
  position: relative;
  font-size: 22px;
  font-style: italic;
  padding-left: 42px;
  font-weight: normal;
  margin-bottom: 15px;
}
.contactS1 .l .list .item h2::before {
  display: block;
  content: "";
  width: 35px;
  height: 35px;
  position: absolute;
  left: 0;
  top: -4px;
}
.contactS1 .l .list .item1 h2::before {
  background: url(../cont_icon1.html);
  background-size: 30px;
  background-position: center center;
  background-repeat: no-repeat;
}
.contactS1 .l .list .item2 h2::before {
  background: url(../cont_icon2-2.html);
  background-size: 30px;
  background-position: center center;
  background-repeat: no-repeat;
}
.contactS1 .l .list .item3 h2::before {
  background: url(../cont_icon3-2.html);
  background-size: 26px;
  background-position: center center;
  background-repeat: no-repeat;
}
.contactS1 .l .list .item4 h2::before {
  background: url(../cont_icon4-2.html);
  background-size: 26px;
  background-position: center center;
  background-repeat: no-repeat;
}
.contactS1 .l .list .item p {
  font-size: 16px;
  line-height: 27px;
}
/* 地图 */
.mapPop {
  position: fixed;
  z-index: 50;
  background: rgba(0, 0, 0, 0.75);
  left: 0;
  top: -100vh;
  right: 0;
  height: 100vh;
  transition: all 0.5s ease;
}
.mapBox {
  position: absolute;
  width: 85%;
  height: 88%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ccc;
}
.mapPop.show {
  top: 0;
}
.mapPop .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #1b66aa;
  background-image: url(../png/close1-2.png);
  background-repeat: no-repeat;
  background-size: 37px;
  background-position: center center;
}
.contactS1 .r {
  padding-top: 80px;
  float: right;
  width: 48%;
}
.contactS1 .r .input {
  float: left;
  width: 48%;
  border: 1px solid #ccc;
  height: 40px;
  border-radius: 5px;
  margin-left: 4%;
  margin-bottom: 28px;
}
.contactS1 .r .input input {
  width: calc(100% - 30px);
  height: 38px;
  outline: none;
  border: none;
  margin-left: 15px;
  background: transparent;
}
.contactS1 .r .input:nth-child(2n + 1) {
  margin-left: 0;
}
.clear {
  clear: both;
}
.contactS1 .r .textarea {
  padding: 15px;
  width: 100%;
  border: 1px solid #ccc;
  height: 140px;
  border-radius: 5px;
  margin-bottom: 28px;
}
.contactS1 .r textarea {
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  background: transparent;
}
.contactS1 .btnBox {
  text-align: center;
}
.contactS1 .btnBox button {
  display: inline-block;
  width: 130px;
  height: 38px;
  text-align: center;
  line-height: 38px;
  margin: 0 15px;
  cursor: pointer;
  border: none;
  outline: none;
}
.contactS1 .btnBox button.submit {
  background-color: #1b66aa;
  color: #fff;
}
.talentS1 {
  padding: 150px 0 80px 0;
}
.title1 {
  text-align: center;
}
.title1 h2 {
  font-size: 35px;
  letter-spacing: 1px;
  font-weight: normal;
  margin-bottom: 20px;
}
.title1 p {
  font-size: 16px;
  display: inline-block;
  max-width: 799px;
  line-height: 25px;
}
.talentS1 li {
  height: auto;
  overflow: hidden;
}
.talentS1 .container {
  margin-top: 60px;
}
.talentS1 li.li1 .item {
  padding: 40px 40px;
  float: left;
  width: 50%;
  height: 240px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.talentS1 li.li1 .item span {
  color: #fff;
  font-size: 24px;
  font-style: italic;
}
.talentS1 li.li2 .item {
  padding: 40px 40px;
  float: left;
  width: 33.33%;
  height: 240px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.talentS1 li.li2 .item span {
  color: #fff;
  font-size: 24px;
  font-style: italic;
}
.talentBox {
  margin-top: 70px;
  height: auto;
  overflow: hidden;
}
.talentBox .l {
  float: left;
  width: 50%;
}
.talentBox .l .item1 {
  background-color: #eee;
  padding: 64px 30px;
  height: 320px;
}
.talentS2 {
  padding-bottom: 80px;
}
.talentBox .l h2 {
  padding-left: 25px;
  font-weight: normal;
  font-size: 26px;
  position: relative;
  padding-bottom: 20px;
}
.talentBox .l h2::before {
  display: block;
  content: "";
  background-color: #1b66aa;
  width: 3px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 0;
}
.talentBox .l p {
  font-size: 15px;
  line-height: 25px;
}
.talentBox .l .item3 {
  float: left;
  width: 50%;
  height: 260px;
  overflow: hidden;
}
.talentBox .l .item3 > div {
  transition: 0.5s ease;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.talentBox .l .item3:hover > div {
  transform: scale(1.1);
}
.talentBox .l .item4 {
  padding: 40px 30px;
  float: left;
  width: 50%;
  height: 260px;
  overflow: hidden;
  background: #1b66aa;
}
.talentBox .l .item4 h2 {
  color: #fff;
}
.talentBox .l .item4 h2::before {
  background: #fff;
}
.talentBox .l .item4 p {
  color: #fff;
}
.talentBox .r {
  position: relative;
  float: right;
  width: 50%;
  height: 580px;
  overflow: hidden;
}
.talentBox .r .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center left !important;
  transition: 0.5s ease;
}
.talentBox .r .txt {
  position: relative;
  z-index: 2;
  padding: 64px 30px;
}
.talentBox .r:hover .bg {
  transform: scale(1.1);
}
.talentBox .r h2 {
  color: #fff;
  padding-left: 25px;
  font-weight: normal;
  font-size: 26px;
  position: relative;
  padding-bottom: 20px;
}
.talentBox .r h2::before {
  display: block;
  content: "";
  background-color: #1b66aa;
  width: 3px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 0;
}
.talentBox .r p {
  color: #fff;
  font-size: 15px;
  line-height: 25px;
}
.joinUs {
  padding: 70px 0;
  background: url(../joinus-2.html);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.joinUs h2 {
  font-weight: normal;
  font-size: 26px;
  margin-bottom: 40px;
}
.joinUs p {
  font-size: 15px;
  line-height: 25px;
  display: block;
  max-width: 40%;
  margin-bottom: 55px;
}
.joinUs a {
  background: #e8e8e8;
  width: 157px;
  height: 50px;
  line-height: 50px;
  padding-left: 40px;
  display: block;
  color: #333;
  transition: all 0.5s ease;
  position: relative;
  margin-right: 15px;
  display: inline-block;
}
.joinUs a span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../png/arrow_right_1-2.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;
}
.joinUs a:hover {
  background-color: #1b66aa;
  color: #fff;
}
.joinUs a:hover span {
  background: url(../png/arrow_right_1_on-2.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;
}
.jobSec {
  padding: 120px 0 100px 0;
}
.jobSec .jobTit {
  font-size: 35px;
  letter-spacing: 1px;
  margin-bottom: 50px;
  text-align: center;
}

.jobSec .tc {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.jobSec .tc .item {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin: 0 30px;
}
.jobSec .tc .item i {
  margin-right: 8px;
  display: inline-block;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.jobSec .tc .item i.icon1 {
  background-size: 20px !important;
  background: url(../tcicon1-2.html);
}
.jobSec .tc .item i.icon2 {
  background-size: 25px !important;
  background: url(../tcicon2-2.html);
}
.jobSec .tc .item i.icon3 {
  background-size: 25px !important;
  background: url(../tcicon3-2.html);
}
.jobBox .jobT {
  padding: 0 0 0 50px;
  border-radius: 8px;
  height: 80px;
  background: #1b66aa;
}
.jobBox .jobT .item {
  float: left;
  line-height: 80px;
  color: #fff;
  text-align: left;
  font-size: 18px;
}

.jobBox .jobT .item.item1 {
  width: 25%;
}
.jobBox .jobT .item.item2 {
  width: 35%;
}
.jobBox .jobT .item.item3 {
  width: 20%;
}
.jobBox .jobT .item.item4 {
  text-align: right;
  width: 145px;
  float: right;
  padding-right: 50px;
  box-sizing: border-box;
}
.jobList li {
  border-bottom: 1px solid #ededed;
}
.jobList li .normal {
  padding: 0 0 0 50px;
  border-radius: 8px;
  height: 80px;
  cursor: pointer;
}
.jobList li .normal.active {
  background: #1b66aa;
  color: #fff;
}
.jobList li .normal .item {
  float: left;
  line-height: 80px;
  text-align: left;
  font-size: 18px;
  transition: 0.5s ease;
}
.jobList li .normal .item.item1 {
  width: 25%;
}
.jobList li .normal .item.item2 {
  width: 35%;
}
.jobList li .normal .item.item3 {
  width: 20%;
}
.jobList li .normal .item.item4 {
  position: relative;
  text-align: right;
  float: right;
  padding-right: 50px;
  box-sizing: border-box;
}
.jobList li.active .normal {
  background: #f5f5f5;
}
.jobList li.active .normal .item {
  color: #333;
}
.jobList li .normal .span2 {
  display: none;
}
.jobList li.active .normal .span1 {
  display: none;
}
.jobList li.active .normal .span2 {
  display: block;
}
/* .jobList li.active .normal .item2 {
  display: none;
}
.jobList li.active .normal .item3 {
  display: none;
} */
.jobList li .normal .arr {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../png/jobarr-2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.jobList li.active .normal .arr {
  top: 33%;
  background: url(../png/jobarr1-2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(90deg);
}
.jobList li .jobCon {
  display: none;
  padding: 40px 45px;
  height: auto;
  overflow: hidden;
}
.jobList li .jobCon .l {
  float: left;
  width: 35%;
  border-right: 1px solid #eee;
}
.jobList li .jobCon .l .dl {
  margin-bottom: 30px;
  font-size: 15px;
}
.jobList li .jobCon .r {
  margin-left: 42%;
}
.jobList li .jobCon .r h2 {
  margin-bottom: 30px;
}
.jobList li .jobCon .r p {
  font-size: 16px;
  margin-bottom: 15px;
}
.jobList li .jobCon .r a {
  margin-top: 50px;
  display: block;
  width: 120px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: #1b66aa;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
}
/* 客户服务 */
.serS1 {
  padding: 100px 0 40px 0;
  background: url(../bg_line-2.html);
}
.serS1 ul {
  margin-top: 60px;
  height: auto;
  overflow: hidden;
}
.serS1 ul li {
  text-align: center;
  padding: 30px 5%;
  position: relative;
  float: left;
  width: 33.33%;
}
.serS1 ul li::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 1px;
  height: 100px;
  background-color: #ededed;
}
.serS1 ul li .top {
  display: flex;
  align-items: center;
  justify-content: center;
}
.serS1 ul li .img {
  display: inline-block;
}
.serS1 ul li .txt {
  display: inline-block;
  margin-left: 10px;
  font-size: 58px;
  color: #1b66aa;
}
.serS1 ul li .p {
  margin-top: 8px;
  font-size: 16px;
}
.serS2 {
  background: url(../jpg/serbg2-3.jpg);
  padding-top: 80px;
  padding-bottom: 80px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.serS2 ul {
  height: auto;
  overflow: hidden;
}

.serS2 li:first-child {
  margin-left: 0;
}
.serS2 li > div {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.serS2 li .bg {
  position: relative;
  z-index: 1;
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  transition: 0.5s ease;
}
.serS2 li > div:hover .bg {
  transform: scale(1.1);
}
.serS2 li .icon {
  position: absolute;
  z-index: 2;
  right: 20px;
  top: 20px;
}
.serS2 li .icon img {
  width: 40px;
}
.serS2 li .txt {
  position: absolute;
  bottom: 25px;
  left: 20px;
  z-index: 2;
  font-size: 18px;
  color: #fff;
}

.serS3 .wrap {
  height: auto;
  overflow: hidden;
}
.serS3 .wrap .l {
  float: left;
  width: 42%;
}
.serS3 .wrap .l img {
  width: 100%;
}
.serS3 .wrap .r {
  padding-top: 120px;
  padding-bottom: 200px;
  width: 48%;
}
.serS3 ul {
  height: auto;
  overflow: hidden;
}
.serS3 .wrap .r h2 {
  font-size: 35px;
  letter-spacing: 1px;
  font-weight: normal;
  margin-bottom: 35px;
}
.serS3 .wrap .r a{
  background: #e8e8e8;
  width: 157px;
  height: 50px;
  line-height: 50px;
  padding-left: 40px;
  display: block;
  color: #333;
  transition: all 0.5s ease;
  position: relative;
  margin-right: 15px;
  display: inline-block;
  margin-top: 50px;
}
.serS3 .wrap .r a span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../png/arrow_right_1-2.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;
}
.serS3 .wrap .r  a:hover {
  background-color: #1b66aa;
  color: #fff;
}
.serS3 .wrap .r a:hover span {
  background: url(../png/arrow_right_1_on-2.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;
}
.serS3 .wrap .r p {
  font-size: 16px;
  line-height: 30px;
}
.serS3 .wrap .r h3 {
  margin-top: 40px;
  color: #1b66aa;
}
.serS3 .wrap .r h3 span {
  margin-right: 8px;
}
.serS4 {
  padding: 20px 0 80px 0;
  background: url(../bg_line-2.html);
}
.serS4 ul {
  height: auto;
  overflow: hidden;
}
.serS4 ul li {
  cursor: pointer;
  float: left;
  margin-left: 8%;
  width: calc(84% / 3);
  position: relative;
}
.serS4 ul li:first-child {
  margin-left: 0;
}
.serS4 ul li .bg {
  position: relative;
  height: 500px;
  width: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.serS4 ul li .txt {
  position: absolute;
  left: 30px;
  bottom: 45px;
  transition: 0.5s ease;
}
.serS4 ul li .txt h2 {
  color: #fff;
  font-weight: normal;
  margin-bottom: 8px;
}
.serS4 ul li .txt .line {
  width: 32px;
  height: 2px;
  background: #1b66aa;
}
.serS4 ul li .active {
  transition: all 0.5s ease;
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  background: #fff;
  z-index: 2;
  padding: 40px 25px;
  transform: scale(0);
}
.serS4 ul li:hover .active {
  transform: scale(1);
}
.serS4 ul li:hover .txt {
  display: none;
}
.serS4 ul li .active h2 {
  color: #333;
  font-weight: normal;
  margin-bottom: 8px;
}
.serS4 ul li .active .line {
  width: 32px;
  height: 2px;
  background: #1b66aa;
  margin-bottom: 40px;
}
.serS4 ul li .active p {
  font-size: 15px;
  line-height: 28px;
}
.serSection5 {
  padding: 100px 0 20px 0;
}
.serSection5 .wrap {
  height: auto;
  overflow: hidden;
}
.serS3 {
  background: url(../s1-2.html);
}
.serSection5 .wrap .l {
  float: left;
  width: 36%;
}
.serSection5 .wrap .l img {
  width: 100%;
}
.serSection5 .wrap .r {
  padding-top: 80px;
  width: 52%;
  float: right;
}
.serSection5 .wrap .r h3 {
  position: relative;
  font-size: 17px;
  font-weight: normal;
  display: inline-block;
}
.serSection5 .wrap .r h3::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 50px;
  height: 2px;
  background-color: #000;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}
.serSection5 .wrap .r h2 {
  font-size: 35px;
  letter-spacing: 1px;
  font-weight: normal;
  margin-bottom: 30px;
  margin-top: 10px;
}
.serSection5 .wrap .r h4 {
  font-weight: normal;
  font-size: 20px;
  color: #1b66aa;
  margin-bottom: 40px;
}
.serSection5 .wrap .r ul {
  height: auto;
  overflow: hidden;
}
.serSection5 .wrap .r ul li {
  float: left;
  width: 33.33%;
  padding-right: 2%;
  min-height: 93px;
}
.serSection5 .wrap .r ul li .t {
  font-size: 16px;
  font-weight: bold;
  color: #1b66aa;
  margin-bottom: 5px;
}
.serSection5 .wrap .r ul li p {
  font-size: 14px;
  line-height: 22px;
}
.yfS2 {
  background: url(../qubg2-2.html);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  padding: 100px 0 100px 0;
  background-attachment: fixed;
}
.yfS2 .wrap {
  padding: 80px 60px;
  background-color: rgba(255, 255, 255, 0.88);
}
.quiet .p {
  font-size: 16px;
  line-height: 25px;
}
.yfS2 .quiet {
  height: auto;
  overflow: hidden;
}
.yfS2 .quiet .l {
  float: left;
  width: 46%;
}
.yfS2 .quiet {
  padding-top: 50px;
}
.quiet .small {
  margin-top: 43px;
  height: auto;
  overflow: hidden;
}
.quiet .small .item {
  position: relative;
  float: left;
  margin-left: 3%;
  width: calc(94% / 3);
  height: 160px;
  overflow: hidden;
}
.quiet .small .item:first-child {
  margin-left: 0;
}
.quiet .small .item > div.bg {
  position: relative;
  z-index: 1;
  filter: grayscale(100%);
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  transition: 0.5s ease;
}
.quiet .small .item:hover > div.bg {
  transform: scale(1.1);
  filter: grayscale(0%);
}
.quiet .small .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  color: #fff;
  padding: 20px 15px 10px 12px;
  background: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.7));
}
.yfS2 .quiet .r {
  overflow: hidden;
  float: right;
  width: 50%;
  height: 352px;
  position: relative;
}
.yfS2 .quiet .r .bg {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: bottom center !important;
  transition: 0.5s ease;
}
.yfS2 .quiet .r:hover .bg {
  transform: scale(1.1);
}
.yfS2 .quiet .r .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  padding: 20px 30px 25px 40px;
  font-size: 16px; 
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.7));
}
.quiet2 {
  height: auto;
  overflow: hidden;
  margin-top: 50px;
}
.quiet2 .r {
  float: right;
  width: 50%;
}
.quiet2 .l {
  float: left;
  width: 46%;
}
.quiet2 .r .p{
  font-size: 16px;
  line-height: 25px;
}
.quiet2 .r .itemBox{
  height: auto;
  overflow: hidden;
  margin-top: 40px;
}
.quiet2 .r .itemBox .item{
  float: left;
  width: 65%;
  height: 330px;
  position: relative;
  margin-left: 3%;
  width: calc(94% / 3);
  overflow: hidden;
}
.quiet2 .r .itemBox .item:first-child{
  margin-left: 0;
}
.quiet2 .r .itemBox .item .bg{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: bottom center !important;
  transition: 0.5s ease;
  filter: grayscale(100%);
}
.quiet2 .r .itemBox .item .txt{
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 30px 15px 20px;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.7));
}
.quiet2 .r .itemBox .item:hover .bg{
  transform: scale(1.1);
  filter: grayscale(0%);
}
.quiet2 .l .itemBox{
  height: auto;
  overflow: hidden;
}
.quiet2 .l .itemBox .item1{
  float: left;
  width: 100%;
}
.quiet2 .l .itemBox .item {
  overflow: hidden;
  position: relative;
}
.quiet2 .l .itemBox .item .bg{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: bottom center !important;
  transition: 0.5s ease;
  filter: grayscale(100%);
}
.quiet2 .l .itemBox .item .txt{
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 30px 15px 20px;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.7));
}
.quiet2 .l .itemBox .item.item1_1{
  width: 100%;
  height: 360px;
}
.quiet2 .l .itemBox .item:hover .bg{
  transform: scale(1.1);
  filter: grayscale(0%);
}
.quiet2 .l .itemBox .item2 .item{
  height: 100%;
}
.quiet2 .l .itemBox .item2{
  float: right;
  width: 34%;
  height: 270px;
}
.quiet2 .l .itemBox .item3{
  float: left;
  width: 65%;
  height: 310px;
  position: relative;
  margin-left: 3%;
  width: calc(94% / 3);
  overflow: hidden;
}
.quiet2 .l .itemBox .item3:first-child{
  margin-left: 0;
}
.quiet2 .l .itemBox.itemBox1{
  margin-top: 30px;
}
.quiet2 .r .itemBox1 .item{
  width: 48.5%;
  height: 210px;
}
.quiet2 .r .itemBox1{
  margin-top: 20px;
}

.yfS3 .wrap {
  background-color: rgba(255, 255, 255, 0.88);
  padding-left: 60px;
  padding-right: 60px;
}
.yfS3 ul {
  padding: 80px 0 0 0;
  height: auto;
  overflow: hidden;
}
.yfS3 ul li {
  position: relative;
  float: left;
  width: calc(100% / 6);
  text-align: center;
}
.yfS3 ul li h2 {
  font-family: "impact";
  font-size: 55px;
  color: #1b66aa;
}
.yfS3 ul li h2 span {
  font-family: "impact";
}
.yfS3 ul li h2 span.plus{
  font-weight: normal;
  line-height: 1.4;
  text-align: center;
  font-size: 16px;
}
.yfS3 ul li h2 .sup {
  font-size: 20px;
  font-weight: normal;
}
.yfS3 ul li p {
  font-size: 16px;
  margin-top: 5px;
}
.yfS3 ul li::after {
  display: block;
  content: "";
  width: 1px;
  height: 60px;
  background-color: #ddd;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.yfS3 ul li:last-child:after {
  display: none;
}
.yfList {
  margin-top: 55px;
  background: #f5f5f5;
  padding: 45px 35px 35px 40px;
}
.yfList .item {
  position: relative;
  font-size: 17px;
  line-height: 33px;
  padding-left: 20px;
}
.yfList .item::before{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 10px solid #333;
  border-bottom: 5px solid transparent;
}
.proContainer ul{
  height: auto;
  overflow: hidden;
}
.proContainer ul li{
  float: left;
  margin-left: 5%;
  width: 30%;
  margin-bottom: 50px;
}
.proContainer ul.proList{
  padding-top: 100px;
  height: auto;
  overflow: hidden;
  margin-left: 430px;
}
.proContainer ul li .img{
  background-color: #f5f5f5;
  height: 300px;
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.proContainer ul li .img img{
  max-width: 85%;
  height: 85%;
  transition: all .5s ease;
}
.proContainer ul li a{
  display: block;
}
.proContainer ul li a:hover .img img{
  transform: scale(1.1);
}

.proContainer ul li .txt{
  font-weight: bold;
  font-size: 18px;
  padding: 30px 0;
  height: 100px;
  position: relative;
  border-bottom: 1px solid #ddd;
}
.proContainer ul li .txt::after{
  display: block;
  content: "";
  height: 1px;
  background: #1b66aa;
  width: 0;
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: all .5s ease;
}
.proContainer ul li a:hover .txt::after{
  width: 100%;
}

.proBody .wrap{
  height: auto;
  overflow: hidden;
}

.leftNav{
  /* box-shadow: 10px 0px 70px 0px rgba(0, 0, 0, 0.08); */
  min-height: 500px;
  float: left;
  width: 350px;
  background: #f7f7f7;
}
 .navt{
  display: flex;
  align-items: center;
  width: 350px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #1b66aa;
  height: 70px;
  padding-left: 40px;
}
 .navt img{
  width: 40px;
}
 .navt span{
  color: #fff;
  font-size: 22px;
  margin-left: 20px;
 }
 .leftNav a{
  font-size: 16px;
  padding-left: 40px;
  display: block;
  height: 60px;
  line-height: 60px;
  position: relative;
  transition: .5s ease;
 }
 .leftNav a:after{
  display: block;
  content: "";
  height: 1px;
  border-bottom: 1px solid #ededed;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
 }
  .leftNav a:hover{
    padding-left: 50px;
    color: #1b66aa;
  }
  .leftNav a::before{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #1b66aa;
    transition: .5s ease;
  }
  .leftNav a:hover::before{
    width: 20px;
  }
  .leftNav a.active::before{
    width: 20px;
  }
   .leftNav a.active{
    padding-left: 50px;
    color: #1b66aa;
   }
   .proContainer ul li:first-child{
    margin-left: 0;
   }
   .proBox{
    margin-left: 400px;
    padding: 80px 0;
   }
   .proCon1{
    height: auto;
    overflow: hidden;
   }
  .proCon1 .l{
    float: left;
    width: 535px;
  }
  .proCon1 .r{
    float: right;
    width: calc(100% - 585px);
  }
  .proCon1 .imgCon{
    float: right;
    background-color: #f5f5f5;
    height: 400px;
    position: relative;
    z-index: 1;
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .proCon1 .thumb{
    width: 110px;
    height: 110px;
    float: right;
    margin-right: 25px;
  }
  .proCon1 .imgCon img{
    max-width: 85%;
    height: 85%;
  }
  .proCon1 .thumb .item{
    width: 100%;
    height: 110px;
    border: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 10px;
  }
  .proCon1 .thumb .item.active{
    border: 1px solid #1b66aa;
  }
  .proCon1 .thumb .item img{
    max-width: 85%;
    height: 85%;
  }
  .proCon1 .r .prot{
    font-size: 25px;
    line-height: 32px;
    padding-bottom: 5px;
    padding: 20px 0 23px 0;
    border-bottom: 1px solid #ddd;
  }
  .proCon1 .r .desc{
    padding: 32px 0 45px 0;
    font-size: 15px;
    line-height: 25px;
  }
  .proCon1 .r a{
    font-size: 15px;
    background: #1b66aa;
    width: 157px;
    height: 50px;
    line-height: 50px;
    padding-left: 40px;
    display: block;
    color: #fff;
    transition: all 0.5s ease;
    position: relative;
    margin-right: 15px;
    display: inline-block;
  }
  .proCon1 .r a span{
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../png/arrow_right_1_on-2.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
  }
  .proCon2{
    margin-top: 90px;
  }
  .proCon2 .title{
    margin-top: 25px;
      position: relative;
      border-bottom: 1px solid #ddd;
   }
   .proCon2 .title span{
    display: inline-block;
    padding: 13px 0;
    text-align: center;
    background-color: #1b66aa;
    color: #ffff;
    font-size: 18px;
    width: 186px;
   }
   .proCon2 .proBoody{
    padding: 80px 0 50px 0;
   }
   .proCon2 .proBoody .proCon{
      padding: 35px 30px;
      background-color: #f5f5f5;
      font-size: 15px;
      line-height: 30px;
   }
   .recomBox{
    position: relative;
    margin-top: 80px;
    padding: 0 40px;
   }
   .recomSwiper{
    overflow: hidden;
   }
   .recomSwiper .swiper-slide a{
    display: block;
   }
   .recomSwiper .swiper-slide a .imgCon{
   background-color: #f5f5f5;
    height: 300px;
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
   }
   .recomSwiper .swiper-slide a .imgCon img{
    max-width: 85%;
    height: 85%;
    position: relative;
    z-index: 1;
    transition: all .5s ease;
   }
   .recomSwiper .swiper-slide a .imgCon .cover{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 100%;
    z-index: 2;
    background: rgba(234, 84, 19, 0.6);
    transition: .5s ease;
   }
   .recomSwiper .swiper-slide a .imgCon .cover img{
     width: 40px;
     height: 40px;
     transition: .5s ease;
   }
   .recomSwiper .swiper-slide a:hover .cover{
    top: 0;
   }
   .recomSwiper .swiper-slide a:hover .imgCon > img{
    transform: scale(1.1);
   }
   .recomSwiper .swiper-slide .txt{
      background: #1b66aa;
      color: #fff;
      padding: 22px 15px;
      font-size: 16px;
      white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
   }
   .recomprev{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: url(../png/n_arr_l_on-2.png);
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    border: none;
    outline: none;
   }
    .recomnext{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: url(../png/n_arr_r_on-2.png);
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    border: none;
    outline: none;
   }
   .htitle{
    padding: 50px 0 40px 0;
   }
   .htitle h2{
    font-weight: bold;
    text-transform: uppercase;
    color: #1b66aa;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
   }
   .htitle h2::after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: -45px;
    transform: translateY(-50%);
    height: 1px;
    background-color: #1b66aa;
    width: 36px;
   }
   .htitle h3{
    font-size: 30px;
   }
   .titimg{
    width: 680px;
   }
   .ins3{
    padding-top: 20px;
    background: url(../jpg/inbg1-2.jpg);
    height: 280px;
  }
  .ins3 li{
    position: relative;
    padding: 60px 0;
    float: left;
    width: 25%;
    text-align: center;
  }
  .ins3 li h2{
    margin-bottom: 0;
    color: #fff;
    font-family: 'impact';
    font-size: 50px;
  }
  .ins3 li h2 span{
    font-family: 'impact';
  }
  .ins3 li  p{
    font-size: 14px;
    color: #fff;
  }
  .ins3 li:last-child::after{
    display: none;
  }
  .ins3 li::after{
    display: block;
    content: "";
    width: 1px;
    height: 180px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(.7);
    background-color: #fff;
  } 
  .ins3  ul{
    height: auto;
    overflow: hidden;
  }
  a.view{
    width: 140px;
    height: 38px;
    background-color: #1b66aa;
    color: #fff;
    text-align: center;
    display: flex;
    margin: 0 auto;
    font-size: 13px;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    transition: .45s;
  }
  a.view span{
    transition: all .5s;
  }
  a.view img{
    width: 25px;
    vertical-align: -13px;
  }
  a.view:hover span{
    margin-left: 10px;
  }
  /* 首页实力 */
.strengBox{
  margin-top: 40px;
  overflow: hidden;
}
.strengBox .l{
  padding-top: 25px;
  margin-left: 5%;
  width: calc(40% - 50px);
  padding-right: 50px;
  box-sizing: border-box;
  float: left;
}
.strengBox .r{
  padding-top: 90px;
  width: 55%;
  float: right;
  overflow: hidden;
}
.strengBox .l .t{
  font-size: 26px;
  margin: 0;
  color: #555;
  font-weight: normal;
  margin-bottom: 20px;
}
.strengBox .l .p{
  font-size: 14px;
  line-height: 24px;
}
.sMenu{
  padding-top: 70px;
  position: relative;
}
.sMenu .sPage{
  position: absolute;
  right: 0;
  bottom: -28px;
  color: #666;
  font-size: 14px;
}
.sMenu .sPage .num1{
  color: #1666ad;
  font-size: 35px;
}
.sMenu li{
  line-height: 45px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #222;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  height: 45px;
}
.sMenu li span{
  font-size: 22px;
  color: #222;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.sMenu li.on {
  color: #1666ad;
}
.sMenu li.on span{
  color: #1666ad;
}
.sMenu li::after{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #1666ad;
  content: '';
  left: 0;
  transition: all .2s ease;
  z-index: 4;
}
.itemList{
  position: relative;
}
.itemList::after{
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 3px;
  height: 100%;
  background: #ecebec;
  z-index: 1;
}
.sMenu li.on::after {
  height: 100%;
}
.sMenu li:hover::after{
  height: 100%;
}
.sMenu li:hover {
  color: #1666ad;
}
.sMenu li:hover span{
  color: #1666ad;
}
.strengbSwiper .swiper-slide{
  height: 470px;
  position: relative;
  cursor: pointer;
  width: 80%;
}
.strengbSwiper .swiper-slide .image{
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
}
.strengbSwiper .swiper-slide .image::after{
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.24);
}
.strengbSwiper .swiper-slide .txt{
  position: absolute;
  line-height: 25px;
  z-index: 3;
  left: 35px;
  right:35px;
  bottom: 42px;
}
.strengbSwiper .swiper-slide .txt h2{
  margin-bottom: 10px;
  color: #fff;
  font-weight: normal;
}
.strengbSwiper .swiper-slide .txt p{
  color: #fff;
  font-size: 14px;
}
.ins6{
  padding: 0 0 100px 0;
}
.ins6 .htitle{
  padding-top: 20px;
}
/* 关于我们 */
.innerBanner {
  position: relative;
  height: 520px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.innerBanner.banner6{
  background-position: top center !important;
}
.innerBanner::after {
  display: block;
  content: "";
  border-bottom: 1px solid #e5e5e5;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.innerBanner.banner1 {
  background: url(../jpg/inbanner1-2.jpg);
}

.innerBanner.banner2 {
  background: url(../jpg/inbanner2-2.jpg);
}

.innerBanner.banner3 {
  background: url(../jpg/inbanner3-2.jpg);
}

.innerBanner.banner4 {
  background: url(../jpg/inbanner4-2.jpg);
}

.innerBanner.banner5 {
  background: url(../jpg/inbanner5-2.jpg);
}

.innerBanner.banner6 {
  background: url(../jpg/inbanner6-2.jpg);
}
.innerBanner.banner7 {
  background: url(../jpg/inbanner7-3.jpg);
}
.innerBanner .wrap {
  position: relative;
  height: 100%;
}
.innerBanner .bannerTxt {
  position: absolute;
  left: 0;
  top: 40%;
}

.innerBanner .bannerTxt h2 {
  color: #fff;
  font-size: 32px;
}

.innerBanner .bannerTxt h2 span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 22px;
  margin: 0 0 0 10px
}

.innerBanner .bannerTxt h3 {
  display: block;
  width: 40px;
  height: 4px;
  overflow: hidden;
  margin: 20px 0;
  padding: 0;
  background-color: #fff;
}

.innerBanner .bannerTxt p {
  color: #fff;
  font-size: 15px;
}

.innerBanner .innNav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  height: 60px
}

.innerBanner .innNav a {
  font-size: 16px;
  display: inline-block;
  float: left;
  padding: 0 35px;
  height: 60px;
  position: relative;
  line-height: 60px;
}

.innerBanner .innNav a::after {
  content: "";
  width: 1px;
  height: 16px;
  display: block;
  background: #e5e5e5;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 0;
  transition: 0s;
  z-index: 0;
}

.innerBanner .innNav a::before {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: .5s;
  z-index: 1;
  background-color: #1b66aa;
}

.innerBanner .innNav a div {
  position: relative;
  z-index: 2;
}

.innerBanner .innNav a:hover::before {
  width: 100%;
}

.innerBanner .innNav a:hover {
  color: #fff;
  font-weight: bold;
}

.innerBanner .innNav a.on::before {
  width: 100%;
}

.innerBanner .innNav a.on {
  color: #fff;
  font-weight: bold;
}
.absec1{
  padding: 80px 0 0 0;
 }
 .absec1{
  background: url(../jpg/abbg1-2.jpg);
 }
 .absec1 .content{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
 }
 .absec1 .content .l{
  position: relative;
  width: 100%;
  padding-bottom: 190px;
  z-index: 3;
 }
 .absec1 .content .r{
  position: absolute;
  width: 46%;
  margin-bottom: 20px;
  right: 0;
  bottom: 160px;
  z-index: 1;
 }
 .absec1 .content .r img{
  width: 80%;
 }
 .absec1 .content .l .t{
  padding-bottom: 45px;
 }
 .absec1 .content .l .t h2{
  margin-bottom: 12px;
  color: #1b66aa;
  font-size: 30px;
 }
 .absec1 .content .l .t .line{
  width:80px;
  height: 3px;
  background: #f5be2c;
 }
 .absec1 .content .l .p p{
  line-height: 23px;
  margin-bottom: 10px;
  text-indent: 20px;
 }
 .absec1_2{
  position: relative;
  padding-top: 30px;
  height: 190px;
  z-index: 2;
 }
 .absec1_2 .wrap{
  position: relative;
  z-index: 4;
  height: 100%;
  padding-top: 40px;
 }
 .absec1_2::after{
  height: 350px;
  background-size: cover;
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  background: url(../png/ab1-2.png) no-repeat bottom center;
  background-size: 100% auto;
}
.absec1_2 li{
  position: relative;
  float: left;
  width: 25%;
  text-align: center;
  color: #fff;
}
.absec1_2 li h2{
  font-family: "impact";
  font-size: 45px;
  margin-bottom: 10px;
}
.absec1_2 li::after{
  display: block;
  content: "";
  width: 1px;
  height: 70px;
  background-color: rgba(255,255,255,.3);
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -35px;
  transform: scaleX(.7);
}
.absec1_2 li:last-child::after{
  display: none;
}
.absec2{
  height: 660px;
  background: url(../abbg2-4.html);
}
.absec2 .txt{
  padding-top: 160px;
  float: right;
  width: 45%;
}
.absec2 .txt h2{
  color: #fff;
  font-size: 30px;
  margin-bottom: 12px;
}
.absec2 .txt .line{
  width: 80px;
  height: 3px;
  background: #f5be2c;
}
.absec2 .txt .item{
  margin-top: 45px;
}
.absec2 .txt .item h3{
  color: #fff;
  font-weight: normal;
  font-size: 20px;
  padding-bottom: 15px;
}
.absec2 .txt .item p{
  font-size: 14px;
  color: #fff;
}
.abSec2 {
  background: url(../png/culbg-2.png);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  height: 600px;
}
.abSec2 ul {
  height: 100%;
}
.abSec2 li {
  position: relative;
  padding: 0 1.6%;
  cursor: pointer;
  float: left;
  width: 20%;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.abSec2 li > div {
  position: relative;
  z-index: 2;
  padding-top: 240px;
}

.abSec2 li > div p {
  font-size: 16px;
  color: #fff;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s ease;
}
.abSec2 li:hover > div p {
  opacity: 1;
  transform: translateY(10px);
}
.abSec2 li::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1;
  transition: all 0.5s ease;
  background-color: #1b66aa;
}
.abSec2 li:hover:after {
  height: 100%;
}
.abSec2 li:hover > div h2 {
  transform: translateY(0);
}
.abSec3 {
  padding: 80px 0 150px 0;
  background: url(../png/history-2.png);
}
.hisSwiper {
  margin-top: 100px;
}
.hisSwiper .item {
  border-left: 1px solid #dedede;
  padding: 20px 35px;
  height: 240px;
}
.hisBox {
  position: relative;
}
.hisBox::after {
  content: "";
  display: block;
  height: 10px;
  width: 100%;
  background: url(../png/hisline-2.png);
  position: absolute;
  left: 0;
  top: 255px;
}
.hisSwiper .item h2 {
  font-size: 40px;
  color: #1b66aa;
  font-weight: normal;
  font-family: "impact";
  margin-bottom: 20px;
}
.hisSwiper .item p {
  line-height: 21px;
  font-size: 15px;
}
.hisSwiper .item::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid #1b66aa;
  position: absolute;
  bottom: -50px;
  left: 0;
}
.hisSwiper .item::after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #1b66aa;
  position: absolute;
  bottom: -47px;
  left: 3px;
}

.hisBox .hisprev {
  position: absolute;
  left: -55px;
  top: 35%;
  width: 45px;
  height: 45px;
  background-color: #f5f5f5;
  background-image: url(../png/arr3-2.png);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  outline: none;
}
.hisBox .hisprev:hover {
  background-color: #1b66aa;
  background-image: url(../png/arrow3_on-2.png);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center center;
}
.hisBox .hisnext:hover {
  background-color: #1b66aa;
  background-image: url(../png/arrow3_on_r-2.png);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center center;
}
.hisBox .hisnext {
  position: absolute;
  right: -55px;
  top: 35%;
  width: 45px;
  height: 45px;
  background-color: #f5f5f5;
  background-image: url(../png/arr3_r-2.png);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  outline: none;
}
.abSec4 {
  padding: 80px 0;
  background: url(../jpg/honorbg-2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.honorUl {
  margin-top: 100px;
  height: auto;
  overflow: hidden;
}
.honorUl li {
  cursor: pointer;
  height: 260px;
  float: left;
  margin-left: 4%;
  width: calc(88% / 4);
  margin-bottom: 45px;
  background-image: radial-gradient(#fff, #555);
  overflow: hidden;
  position: relative;
}
.honorUl li:nth-child(4n + 1) {
  margin-left: 0;
}
.honorUl li .img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.honorUl li .img img {
  max-width: 85%;
  height: 85%;
}
.honorUl li .cover {
  display: flex;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(27, 102, 170, 0.8);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  transition: all 0.5s ease;
  opacity: 0;
  transform: scale(0);
}
.honorUl li .cover h2 {
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 0 15px;
  overflow: hidden; /* 确保超出容器的文本被裁剪 */
  text-overflow: ellipsis;
}
.honorUl li .cover .search {
  width: 35px;
  height: 35px;
  background: url(../png/search-2.png);
  background-size: 35px;
}
.honorUl li .cover .line {
  width: 45px;
  height: 2px;
  background-color: #fff;
  margin: 15px 0;
}
.honorUl li:hover .cover {
  opacity: 1;
  transform: scale(1);
}
.honPop {
  position: fixed;
  z-index: 50;
  background: rgba(0, 0, 0, 0.75);
  left: 0;
  top: -100vh;
  right: 0;
  height: 100vh;
  transition: all 0.5s ease;
}
.honPop.show {
  top: 0;
}
.honPop .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #1b66aa;
  background-image: url(../png/close1-2.png);
  background-repeat: no-repeat;
  background-size: 37px;
  background-position: center center;
}
.honPop .container {
  position: absolute;
  z-index: 55;
  top: 50%;
  width: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.honPop .container .img {
  display: flex;
  justify-content: center;
}
.honPop .container img {
  max-height: 80vh;
}
.honPop .container .prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: url(../png/prev-2.png);
  background-size: 24px !important;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.honPop .container .next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: url(../png/next-2.png);
  background-size: 24px !important;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.abSec6{
  padding: 80px 0;
}
/* 新闻 */
.newsList {
  padding: 120px 0 80px 0;
  background: #f1f1f1;
}
.newsList li a {
  display: block;
  height: 275px;
  border-bottom: 1px solid #cdc8c8;
  transition: all 0.5s ease;
}
.newsList li a .l {
  position: relative;
  float: left;
  width: 100px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.5s ease;
}
.newsList li a .l h2 {
  font-size: 66px;
  line-height: 66px;
  font-weight: bold;
  margin-bottom: 3px;
}
.newsList li a .l h3 {
  font-weight: normal;
  font-size: 22px;
  line-height: 22px;
}
.newsList li a .r {
  position: relative;
  margin-left: 100px;
  padding: 30px 35px 30px 70px;
}
.newsList li a .l::before {
  content: "";
  background: #bcbcbc;
  position: absolute;
  width: 46px;
  height: 1px;
  top: 50%;
  right: -56px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.newsList li a .l::after {
  content: "";
  position: absolute;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #1b66aa;
  right: -15px;
  top: 50%;
  margin-top: -15px;
  z-index: 3;
  transition: all 0.5s ease;
  opacity: 0;
}

.newsList li a:hover .l::after {
  opacity: 1;
}

.newsList li a:hover .l::before {
  background: #1b66aa;
}
.newsList li a:hover .l {
  background: #1b66aa;
}
.newsList li a:hover .l h2 {
  color: #fff;
}
.newsList li a:hover .l h3 {
  color: #fff;
}
.newsList li a .r .img {
  float: right;
  width: 23%;
  height: 190px;
  overflow: hidden;
}
.newsList li a .r .img > div {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  transition: all 0.5s ease;
}
.newsList li a .r .intro {
  float: left;
  width: 73%;
}
.newsList li a .r h2 {
  font-weight: normal;
  font-size: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
}
.newsList li a .r .iconBox {
  margin: 20px 0;
  color: #c9c9c9;
  display: flex;
  align-items: center;
}
.newsList li a .r .iconBox span {
  display: flex;
  align-items: center;
  margin-right: 12px;
}
.newsList li a .r .iconBox i {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.newsList li a .r .iconBox i.eye {
  background: url(../png/eye-2.png);
  background-size: 100%;
  background-position: center 2px;
}
.newsList li a .r .iconBox i.date {
  background: url(../png/date-2.png);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center 4px;
}
.newsList li a .r .iconBox .dateBox {
  display: none;
}
.newsList li a .r .desc {
  font-size: 15px;
  line-height: 28px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.newsList li a:hover .r h2 {
  color: #1b66aa;
}
.newsList li a:hover {
  background: #fff;
}
.newsList li a:hover .r .img > div {
  transform: scale(1.1);
}
.newsInner {
  padding: 100px 0;
}
.newsInner .wrap {
  height: auto;
  overflow: hidden;
}
.newsInner .wrap .r {
  float: right;
  width: 300px;
  background-color: #fff;
}
.newsInner .wrap .l {
  float: left;
  width: calc(100% - 380px);
}
.newsInner .recomdHead {
  background-color: #1b66aa;
  height: 55px;
  color: #fff;
  font-size: 20px;
  padding-left: 40px;
  line-height: 55px;
}
.newsInner .wrap .r ul {
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
  border: 1px solid #ededed;
}
.newsInner .wrap .r ul li {
  padding: 5px 18px;
}
.newsInner .wrap .r ul li p {
  font-size: 14px;
}
.newsInner .wrap .r ul li h2 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  font-size: 16px;
  font-weight: normal;
}
.newsInner .wrap .r ul li:hover h2 {
  color: #1b66aa;
}
.newsInner .wrap .l .top h2 {
  font-weight: normal;
  font-size: 22px;
}
.newsInner .wrap .l .top span {
  display: flex;
  align-items: center;
}
.newsInner .wrap .l .spanBox {
  padding: 20px 0 60px 0;
  color: #999;
  border-bottom: 1px solid #eee;
}
.newsInner .wrap .l .spanBox span {
  margin-right: 20px;
}
.newsInner .wrap .l .spanBox i.date {
  background: url(../png/date-2.png);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center 4px;
}
.newsInner .wrap .l .spanBox i {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.newsInner .wrap .l .spanBox i.eye {
  background: url(../png/eye-2.png);
  background-size: 100%;
  background-position: center 4px;
}
.newsInner .wrap .l .contain {
  padding: 80px 0;
  font-size: 15px;
  line-height: 28px;
  border-bottom: 1px solid #eee;
}
.newsInner .wrap .l .pageBtns {
  padding: 30px 0;
  position: relative;
  height: auto;
  overflow: hidden;
}
.newsInner .wrap .l .pageBtns .prev .span {
  display: flex;
  align-items: center;
}
.newsInner .wrap .l .pageBtns .next .span {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.newsInner .wrap .l .pageBtns .prev {
  float: left;
  width: 30%;
}
.newsInner .wrap .l .pageBtns .next {
  float: right;
  width: 30%;
}
.newsInner .wrap .l .pageBtns .prev .span i {
  margin-top: 2px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../png/arr3-2.png);
  background-size: 20px;
  background-position: center center;
}
.newsInner .wrap .l .pageBtns .title {
  padding-top: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  transition: 0.5s ease;
}
.newsInner .wrap .l .pageBtns .prev:hover .title {
  color: #1b66aa;
}
.newsInner .wrap .l .pageBtns .next:hover .title {
  color: #1b66aa;
}
.newsInner .wrap .l .pageBtns .next .span i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../png/arr3_r-2.png);
  background-size: 20px;
  background-position: center center;
}
.newsInner .wrap .l .pageBtns .next .title {
  text-align: right;
}
.newsInner .wrap .l .pageBtns .back {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -70px;
  margin-top: -17px;
  display: block;
  width: 140px;
  height: 35px;
  color: #fff;
  text-align: center;
  line-height: 35px;
  background-color: #1b66aa;
}
.newsInner .wrap .r.fixed {
  position: fixed;
}
/* l联系我们 */
.inBanner7 {
  background: url(../jpg/inbanner7-4.jpg);
  background-position: bottom center !important;
}
.inBanner .wrap {
  position: relative;
  height: 100%;
}

.bannerBg {
  position: absolute;
  left: 0;
  top: 50%;
  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;
}
.inBanner7 .p {
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 25px;
  line-height: 28px;
  width: 400px;
}
.contactSec {
  background-color: #f9f9f9;
}

.contactSec .item span {
  display: flex;
  width: 55px;
  height: 55px;
  border-radius: 100%;
  background-color: #1b66aa;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.contactSec .item span img {
  width: 30px;
}
.contactSec{
  padding:40px 0 100px 0;
}
.contactSec .wrap {
  height: auto;
  overflow: auto;
}

.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: #1b66aa;
  flex-shrink: 0;
}

.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: 190px;
  padding: 10px;
  margin-bottom: 20px;
  width: 100%;
}

.textarea textarea {
  height: 100%;
  border: none;
  width: 100%;
}

button.submit {
  background: #1b66aa;
  color: #FFF;
  border-radius: 0.2604vw;
  height: 42px;
  width: 155px;
  cursor: pointer;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  outline: none;
  border: none;
  
}
.mapL{
  float: left;
  width: 35%;
  padding-top: 20px;
}
.map {
  float: right;
  width: 62%;
  height: 520px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
  background-color: #ccc;
  background: url(../png/map.png);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
/* 人才招聘 */
.rcSec1{
  background-color: #f5f5f5;
  padding: 90px 0 220px 0;
  background-image: url(../jpg/rencai03-2.jpg);
  background-repeat: no-repeat!important;
  background-position: bottom center !important;
}
.ntitle2{
  text-align: center;
  color: #1b66aa;
}
.ntitle2 h2{
  font-size: 32px;
  font-weight: normal;
}
.rcSec1 .t{
  font-size: 30px;
  margin: 22px 0 50px 0;
  text-align: center;
}
.rcSec1 .txt{
  font-size: 15px;
  line-height: 28px;
  color: #333;
  width: 850px;
  margin: 0 auto;
  text-align: center;
}
.rcSec2{
  padding: 80px 0 80px 0;
}
.rcSec2 .tit{
  text-align: center;
  font-size: 24px;
  margin: 22px 0 70px 0;
}
.rcSec2 .conBox{
  height: auto;
  overflow: hidden;
}
.rcSec2 .conBox .l{
  float: left;
  width:60%;
}

.rcSec2 .conBox .l .item{
  position: relative;
  overflow: hidden;
  width: 49%;
  height: 450px;
  float: left;
  margin-left: 2%;
  float: left;
}
.rcSec2 .conBox .l .item:first-child{
  margin-left: 0;
}
.rcSec2 .conBox .l .item .bg{
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  transition: .5s;
  filter: brightness(.9);
}
.rcSec2 .conBox .l .item .txt{
  position: absolute;
  left: 0;
  top: 0;
  width: 85%;
  height: 100%;
  z-index: 2;
  box-sizing: border-box;
  padding: 60px 40px;
}
.rcSec2 .conBox .l .item:hover .bg{
  transform: scale(1.1);
}
.rcSec2 .conBox .l .item .txt .line{
  width: 43px;
  height: 3px;
  background-color: #fff;
}
.rcSec2 .conBox .l .item .txt h2{
  font-weight: normal;
  color: #fff;
  font-size: 24px;
  margin: 13px 0 18px 0;
}
.rcSec2 .conBox .l .item .txt p{
  color: #fff;
  line-height: 22px;
}
.rcSec2 .conBox .r{
  float: right;
  width:38.6%;
}

.rcSec2 .conBox .r .item{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 215px;
  float: left;
  margin-top: 20px;
  float: left;
}
.rcSec2 .conBox .r .item:first-child{
  margin-top: 0;
}
.rcSec2 .conBox .r .item .bg{
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  transition: .5s;
  filter: brightness(.9);
}
.rcSec2 .conBox .r .item .txt{
  position: absolute;
  left: 0;
  top: 0;
  width: 85%;
  height: 100%;
  z-index: 2;
  box-sizing: border-box;
  padding: 40px 35px;
}
.rcSec2 .conBox .r .item:hover .bg{
  transform: scale(1.1);
}
.rcSec2 .conBox .r .item .txt .line{
  width: 43px;
  height: 3px;
  background-color: #fff;
}
.rcSec2 .conBox .r .item .txt h2{
  font-weight: normal;
  color: #fff;
  font-size: 24px;
  margin: 13px 0 18px 0;
}
.rcSec2 .conBox .r .item .txt p{
  color: #fff;
  line-height: 22px;
}
.rcSec3{
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
  height: 500px;
  background: url(../jpg/rcbg-2.jpg);
}
.rcSec3 .wrap{
  height: auto;
  overflow: hidden;
}
.rcSec3 .wrap .l{
  float: left;
  width: 35%;
  padding-top: 130px;
}
.rcSec3 .wrap .l .line{
  width: 43px;
  height: 3px;
  background-color: #fff;
}
.rcSec3 .wrap .l  h2{
  font-weight: normal;
  color: #fff;
  font-size: 24px;
  margin: 13px 0 28px 0;
}
.rcSec3 .wrap .l  p{
  color: #fff;
  line-height: 25px;
}
.rcSec3 .wrap .l a.view{
  margin: 50px 0;
}
.rcSec3 .wrap .r{
  height: 500px;
  width: 58%;
  float: right;
  display: flex;
  align-items: center;
}
.rcSec3 .wrap .r img{
  width: 100%;
}
.talS2 {
  padding: 90px 0;
  background-color: #fff;
}
.talS2 .title h3{
  font-size: 35px;
  font-weight: normal;
  color: #1666ad;
  text-align: center;
}
.talS2 .title{
  margin-bottom: 70px;
}
.jobList li .jobCon .l h2{
  margin-bottom: 32px;
}
.jobList li .jobCon .l p{
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 15px;
}
/* 服务中心 */
.serSection1{
  padding: 0 0 0 0;
}
.serSection1 .title {
  text-align: center;
}
.serSection1 .title h2{
  font-weight: normal;
  font-size: 35px;
  color: #1b66aa;
  margin-bottom: 36px;
}
.serSection1 .title p{
  font-size: 15px;
  line-height: 22px;
  color: #333;
  width: 900px;
  margin: 0 auto;
  text-align: center;
}
.serSection1 .title .line{
  margin-top: 40px;
  width: 1px;
  height: 50px;
  background-color: #1666ad;
  display: inline-block;
}
.serSection1 .box{
  margin-top: 60px;
  height: 500px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background: url(../jpg/serbg1-2.jpg);
}
.serSection1 .box li{
  padding: 130px 3%;
  cursor: pointer;
  height: 500px;
  float: left;
  width: 25%;
  text-align: center;
}
.serSection1 .box li:hover{
  background-color: #1b66aa;
}
.serSection1 .box li h2{
  color: #fff;
  margin-top: 15px;
  margin-bottom: 15px;
}
.serSection1 .box li p{
  color: #fff;
  line-height: 20px;
}
.serSection1 .box li .cir{
  width: 110px;
  height: 110px;
  overflow: hidden;
  position: relative;
  display: inline-block;
}
.serSection1 .box li .cir .nor{
  width: 110px;
  height: 110px;
  border-radius: 100%;
  border: 1px solid #fff;
  transition: .35s;
  position: relative;
}
.serSection1 .box li:hover .cir .nor{
  transform: translateY(-112px);
}
.serSection1 .box li .cir .act{
  width: 110px;
  height: 110px;
  border-radius: 100%;
  background-color: #fff;
  transition: .35s;
  position: relative;
}
.serSection1 .box li:hover .cir .act{
  transform: translateY(-110px);
}
.serSection1 .box li img{
  width: 55px;
  position: absolute;
  left:50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.serSection1 .box li:nth-child(2) img{
  width: 65px;
}
.serSection1 .box li:nth-child(4) img{
  width: 48px;
}
.serSection2{
  padding: 100px 0 70px 0;
  background-color: #f5f5f5;
}
.serSection2 .title {
  text-align: center;
}
.serSection2 .title h2{
  font-weight: normal;
  font-size: 35px;
  color: #1b66aa;
  margin-bottom: 36px;
}
.serSection2 .title p{
  font-size: 15px;
  line-height: 28px;
  color: #333;
  width: 900px;
  margin: 0 auto;
  text-align: center;
}
.serSection2 ul{
  padding-top: 70px;
  height: auto;
  overflow: hidden;
}
.serSection2 li{
  float: left;
  margin-bottom: 30px;
  margin-left: 30px;
  width: calc((100% - 60px)/3);
  background-color: #fff;
  height: 150px;
  padding: 30px 30px 30px 26px;
}
.serSection2 li:nth-child(3N+1){
  margin-left: 0;
}
.serSection2 li .l{
  float: left;
  width: 70px;
}
.serSection2 li .l img{
  width: 42px;
}
.serSection2 li:nth-child(4) .l img{
  width: 45px;
}
.serSection2 li:nth-child(5) .l img{
  width: 39px;
}
.serSection2 li .r{
  margin-left: 90px;
}
.serSection2 li .r h2{
  font-size: 17px;
  margin-bottom: 15px;
}
.serSection2 li .r p{
  color: #999;
  line-height: 20px;
}
.serSection2 li:hover .r h2{
  color: #1666ad;
}
.serSection3{
  padding: 100px 0 60px 0;
}
.serSection3 .title {
  text-align: center;
}
.serSection3 .title h2{
  font-weight: normal;
  font-size: 35px;
  color: #1b66aa;
  margin-bottom: 36px;
}
.serSection3 .title p{
  font-size: 15px;
  line-height: 28px;
  color: #333;
  width: 900px;
  margin: 0 auto;
  text-align: center;
}
.serSection3 .title h4{
  margin: 15px 0 0 0;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.serSection3 .title h4 span{
  font-family: 'impact';
  font-size: 46px;
  color: #c22d31;
  margin-left: 8px;
  letter-spacing: 2px;
}
.serS2 {
  position: relative;
  background-color: #f5f5f5;
  background-image: url(../jpg/serbg2-4.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.serS2 .wrap {
  height: 100%;
  position: relative;
}

.serS2 ul {
  height: auto;
  overflow: hidden;
  background-color: rgba(255, 255, 255, .7);
  height: 210px;
}

.serS2 ul li {
  padding: 60px 0 50px 0;
  box-sizing: border-box;
  position: relative;
  float: left;
  width: calc(100% / 6);
  height: 100%;
  overflow: hidden;
}

.serS2 ul li::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 1;
  background-color: #1666ad;
  transition: all .5s;
}

.serS2 ul li:hover::after {
  height: 100%;
}

.serS2 ul li>div {
  position: relative;
  z-index: 2;
}

.serS2 ul li h2 {
  position: relative;
  font-size: 22px;
  color: #1666ad;
  text-align: center;
  margin-bottom: 10px;
}

.serS2 ul li p {
  font-size: 13px;
  text-align: center;
}

.serS2 ul li:hover h2 {
  color: #fff;
}

.serS2 ul li:hover P {
  color: #fff;
}
.serS2 ul li h3{
  text-align: center;
  font-size: 16px;
}
.serS2 ul li h2::after {
  margin-top: 6px;
  display: block;
  content: "";
  width: 16px;
  height: 2px;
  background-color: #ccc;
  margin-left: auto;
  margin-right: auto;
}

.serS2 ul li h2:hover::after {
  background-color: #fff;
}
.serS2 ul li:hover h3{
  color: #fff;
}
.tecSec1{
  padding: 100px 0;
}
.tecSec1 .eqBox{
  padding-top: 50px;
  height: auto;
  overflow: hidden;
}
.tecSec1 .eqBox .l{
  float: left;
  width: 46%;
}
.tecSec1 .eqBox .l .p{
  font-size: 15px;
  line-height: 25px;
}
.tecSec1 .eqBox .item{
  overflow: hidden;
}
.tecSec1 .eqBox .item > div{
  width: 100%;
  height: 100%;
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
  transition: .5s;
}
.tecSec1 .eqBox .item:hover > div{
  transform: scale(1.1);
}
.tecSec1 .eqBox  .l .item1{
 width: 100%;
 height: 361px;
}
.tecSec1 .eqBox .l .con{
  height: 200px;
  margin-top: 20px;
}
.tecSec1 .eqBox .l .con .item{
  float: left;
  height: 100%;
  margin-left: 2%;
  width: 49%;
}
.tecSec1 .eqBox .l .con .item:first-child{
  margin-left: 0;
}
.tecSec1 .eqBox .r{
  float: right;
  width: 52%;
}
.tecSec1 .eqBox .r .con1{
  height: 170px;
  overflow: hidden;
}
.tecSec1 .eqBox .r .con1 .item{
  float: left;
  height: 100%;
  margin-left: 2%;
  width: 32%;
}
.tecSec1 .eqBox .r .con1 .item:first-child{
  margin-left: 0;
}
.tecSec1 .eqBox .r .con2{
  overflow: hidden;
  height: 200px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.tecSec1 .eqBox .r .con2 .item{
  float: left;
  height: 100%;
  margin-left: 2%;
  width: 49%;
}
.tecSec1 .eqBox .r .con2 .item:first-child{
  margin-left: 0;
}
.tecSec2{
  padding: 0 0 100px 0 ;
}
.tecSec2 .ad{
  height: auto;
  overflow: hidden;
}
.tecSec2 .ad .l{
  float: left;
  width:49%;
}
.tecSec2 h4{
  padding: 30px 0 25px 0;
  font-size:25px;
  font-weight: bold;
}
.tecSec2 .p{
  font-size: 20px;
  font-weight: bold;
  color: #1666ad;
  line-height: 35px;
}
.tecSec2 .img{
  margin-top: 35px;
  overflow: hidden;
  height: 250px;
}
.tecSec2 .img > div{
  width: 100%;
  height: 100%;
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
  transition: .5s;
}
.tecSec2 .img:hover > div{
  transform: scale(1.1);
}
.tecSec2 .r{
  float: right;
  width: 49%;
  height: 470px;
}
.tecSec2 .r .img{
  height: 470px;
}
.nt2{
  padding: 30px 0 25px 0;
  font-size: 25px;
  font-weight: bold;
}
.techSec1{
  padding: 100px 0 80px 0;
}
.ntitle{
  color: #1666ad;
  font-size: 35px;
  margin-bottom: 30px;
}
.techSec1 .desc{
  font-size: 15px;
  line-height: 24px;
}
.tecSwiper1 .img{
  cursor: pointer;
  height: 280px;
  overflow: hidden;
}
.tecSwiper1 .img div{
  width: 100%;
  height: 100%;
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
  transition: .5s;
}
.tecSwiper1 .img:hover div{
  transform: scale(1.1);
}
.tecSwiper1{
  margin-left: 6%;
  overflow: hidden;
  position: relative;
  padding-top: 30px;
}
.tecSwiper1 .arr{
  padding-top: 30px;
  display: flex;
  justify-content: center;
}
.tecSwiper1 .arr img{
  width: 40px;
  margin: 0 10px;
  cursor: pointer;
}
.techSec2{
  background: url(../jpg/tecbg1-2.jpg) no-repeat center;
  background-size: cover;
  padding: 75px 0 65px;
  position: relative;
}
.techSec2 .l{
  padding-top: 20px;
  float: left;
  width: 32%;
  position: relative;
}
.techSec2 .l h2{
  color: #fff;
  font-size: 35px;
  margin-bottom: 30px;
  font-weight: normal;
}
.techSec2 .wrap{
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.techSec2  p{
  color: #fff;
  line-height: 25px;
  margin-bottom: 18px;
}
.techSec2 .r{
  float: right;
  width: 65%;
}
.techSec2 .r .item{
  width: 32%;
  margin-left: 2%;
  float: left;
  margin-bottom: 20px;
}
.techSec2 .r .item:nth-child(3N+1){
  margin-left: 0;
}
.techSec2 .r .item div{
  height: 158px;
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
  filter: grayscale(100%);
  transition: .5s;
}
.techSec2 .r .item:hover div{
  filter: grayscale(0);
  transform: scale(1.1);
}
.techSec2::after{
  content: '';
  width: 749px;
  height: 130px;
  background: url(../png/txt-2.png) no-repeat center;
  position: absolute;
  left: 0;
  top: 115px;
  pointer-events: none;
}
.techSec3{
  padding: 100px 0;
}
.techSec3 .l h2{
  color: #1666ad;
  font-size: 35px;
  margin-bottom: 30px;
  font-weight: normal;
}
.techSec3 .wrap{
  height: auto;
  overflow: hidden;
}
.techSec3  p{
  line-height: 25px;
  margin-bottom: 18px;
}
.techSec3 .wrap .l{
  width: 48%;
  float: left;
}
.techSec3 .wrap .r{
  float: right;
  width: 48%;
  overflow: hidden;
}
.techSec3 .wrap .l .clear{
  padding-top: 28px;
  height: auto;
  overflow: hidden;
}
.techSec3 .wrap .l .clear .item{
  width: 32%;
  margin-left: 2%;
  float: left;
  overflow: hidden;
}
.techSec3 .wrap .l .clear .item div{
  height: 130px;
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
  transition: .5s;
}
.techSec3 .wrap .l .clear .item:first-child{
  margin-left: 0;
}
.techSec3 .wrap .l .clear .item:hover div{
  transform: scale(1.1);
}
.techSec3 .wrap .r div{
  height: 470px;
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
  transition: .5s;
}
.techSec3 .wrap .r:hover div{
  transform: scale(1.1);
}
.techSec4{
  height: auto;
  position: relative;
  padding-bottom: 60px;
  box-sizing: border-box;
}
.techSec4 .cover{
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(0,0,0,.8),rgba(0,0,0,.2));
}
.techSec4 video{
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 100%;
}
.techSec4 .wrap{
  padding-top: 100px;
  position: relative;
  z-index: 2;
}
.techSec4 .text{
  width: 750px;
}
.techSec4 .text h2{
  color: #fff;
  font-size: 35px;
  margin-bottom: 30px;
  font-weight: normal;
}
.techSec4 .text p{
  color: #fff;
  line-height: 25px;
  margin-bottom: 18px;
}
.sBox {
  width: 1000px;
  padding: 40px 0;
  height: auto;
  overflow: auto;
}
.sBox .item{
  color: #fff;
  float: left;
  width: auto;
  padding-right: 50px;
}
.sBox .item h2 .num{
  color: #fff;
  font-family: "impact";
  font-size: 40px;
}
.sBox .item h2 .sup{
  font-size: 17px;
  padding-left: 10px;
  font-weight: normal;
}
.sBox .item p{
  margin-top: 8px;
}
.techSec5{
  padding: 100px 0;
  background: url(../jpg/tecbg2-2.jpg);
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
}
.techSec5 .contain{
  height: auto;
  overflow: hidden;
  margin-left: 6%;
}
.techSec5 .contain .l h2{
  color: #1666ad;
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: normal;
}
.techSec5 .contain .l  p{
  line-height: 25px;
  margin-bottom: 18px;
}
.techSec5 .contain .l .arr{
  padding-top: 25px;
  display: flex;
  justify-content: flex-start;
}
.techSec5 .contain .l{
  float: left;
  width: 21%;
}
.techSec5 .contain .l .arr .arrl{
  margin-right: 25px;
  cursor: pointer;
  outline: none;
  border: none;
}
.techSec5 .contain .l .arr .arrr{
  cursor: pointer;
  outline: none;
  border: none;
}
.techSec5 .contain .r{
  float: right;
  width: 75%;
}
.techSec5 .contain .r .img{
  height: 210px;
  overflow: hidden;
  cursor: pointer;
}
.techSec5 .contain .r .img:hover div{
  transform: scale(1.1);
}
.techSec5 .contain .r .img div{
  height: 100%;
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
  transition: .5s;
}
.tecSwiper2{
  overflow: hidden;
}
.techSec6{
  padding: 100px 0;
  background: url(../jpg/tecbg3-2.jpg);
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
}
.tecSwiper3{
  overflow: hidden;
}
.techSec6 .l{
  float: right;
  width: 21%;
  text-align: right;
}
.techSec6 .contain{
  margin-right: 6%;
  height:auto;
  overflow: hidden;
}
.techSec6 .contain .l h2 {
  color: #1666ad;
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: normal;
}
.techSec6 .contain .l p {
  line-height: 25px;
  margin-bottom: 18px;
}
.techSec6 .contain .l .arr {
  padding-top: 25px;
  display: flex;
  justify-content: flex-end;
}
.techSec6 .contain .l .arr .arrl1 {
  margin-right: 25px;
  cursor: pointer;
  outline: none;
  border: none;
  cursor: pointer;
}
.techSec6 .contain .l .arr .arrr1{
  cursor: pointer;
  outline: none;
  border: none;
}
.techSec6 .contain .r{
  float:left;
  width: 75%;
}
.techSec6 .contain .r .img{
  height: 210px;
  overflow: hidden;
  cursor: pointer;
}
.techSec6 .contain .r .img:hover div{
  transform: scale(1.1);
}
.techSec6 .contain .r .img div{
  height: 100%;
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
  transition: .5s;
}
.techSec7{
  padding:  0 0 100px 0;
}
.techSec7 table.table1 .tb1 tr:first-child td {
  font-weight: 700;
  padding: 12px 15px;
  border: 1px solid #ccc;
  color: #fff;
  background: #1666ad;
  align-items: center;
  line-height: 26px;
}
.techSec7 .table1{
  border: 1px solid #dddddd;
  text-align: center;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #ccc;
}
.techSec7 .table1 td {
  font-size: 14px;
  color: #333333;
  line-height: 30px;
  padding: 5px;
  border: 1px solid #ccc;
}
.techSec7 .table1 .tb1 tr:nth-child(even){
  background: #fefefe;
}
.techSec7 .table1 .tb1 tr:nth-child(odd){
  background: #eee;
}
.techSec7 .table1 .tb tr:nth-child(even){
  background: #eee;
}
.techSec7 .table1 .tb tr:nth-child(odd){
  background: #fefefe;
}
a.view{
  cursor: pointer;
}
.techSec7 .table1 .tb{
  display: none;
}
.zbSec1{
  position: relative;
  padding: 100px 0;
}
.zbSec1 .wrap{
  position: relative;
  z-index: 2;
  height:auto;
  overflow: auto;
  margin-top: -230px;
  background-color: #fff;
  border-radius: 20px;
  padding-top: 80px;
  overflow-x: hidden;
}
.zbSec1 .wrap .l{
  float: left;
  width: 47%;
  text-align: center;
}
.zbSec1 .wrap .l img{
  width: 83%;
}
.zbSec1 .wrap .r{
  float: right;
  width: 49%;
}
.zbSec1 .wrap .r .t{
  font-size: 25px;
  color: #1666ad;
  margin-bottom: 50px;
}
.zbSec1 .wrap .r ul{
  background-color: #f5f5f5;
  padding: 25px 0;
}
.zbSec1 .wrap .r li{
  position: relative;
  padding-left: 70px;
  height: 55px;
  line-height: 55px;
  background-color: #f5f5f5;
  position: relative;
  font-size: 16px;
}
.zbSec1 .wrap .r li span{
  color: #1666ad;
  font-weight: bold;
  margin-left: 3px;
}
.zbSec1 .wrap .r li::before{
  position: absolute;
  left: 45px;
  top: 23px;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 10px solid #333;
  border-bottom: 5px solid transparent;
}
.zbSec1 .tit{
  text-align: center;
  margin-bottom: 80px;
}
.zbSec1 .tit h2{
  font-size: 35px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: normal;
}
.zbSec2{
  padding: 100px 0;
}
.zbSec2 .tit{
  text-align: center;
}
.zbSec2 .tit h2{
  color: #1666ad;
  font-size: 35px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: normal;
}
.zbSec2 .dian{
  width: 40.4%;
  margin: 0 auto;
  position: relative;
}
.zbSec2 .dian > img{
  width: 100%;
  position: relative;
  z-index: 2;
}
.zbSec2 .dian .yuan{
  position: absolute;
  width: 97.4%;
  height: 97.4%;
  border-radius: 50%;
  border: 1px dashed #cacaca;
  left: 1.3%;
  top: 1.3%;
  z-index: 1;
  animation: rotation 50s linear infinite;
  -webkit-animation: rotation 50s linear infinite;
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg) translateZ(0)
  }

  100% {
    -webkit-transform: rotate(360deg) translateZ(0)
  }
}
.zbSec2 .cBox{
  margin-top: 60px;
  background: url(../png/zbbg1-2.png);
}
.zbSec2 .tu{
  position: absolute;
  width: 74.6%;
  height: 74.6%;
  left: 12.7%;
  top: 12.7%;
  border-radius: 50%;
}
.zbSec2 .tu img{
  width: 100%;
  animation: scale 3s linear infinite;
  -webkit-animation: scale 3s linear infinite;
}
.zbSec2 .tu h2{
  color: #fff;
  font-weight: normal;
  font-size: 18px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.zbSec2 li{
  position: absolute;
  top: 12%;
  display: flex;
  align-items: center;
}
.zbSec2 li .cir{
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-family: 'impact';
  background-color: #1666ad;
}
.zbSec2 li .rt h2{
  margin-bottom: 6px;
}
.zbSec2 li:first-child{
  left:-47%;
  flex-direction: row-reverse;
}
.zbSec2 li:first-child .rt{
  text-align: right;
  padding-right: 15px;
}
.zbSec2 li:nth-child(2){
  right:-47%;
}
.zbSec2 li:nth-child(2) .rt{
  text-align: left;
  padding-left: 15px;
}
.zbSec2 li:nth-child(3){
  left:-66%;
  top: 46%;
  flex-direction: row-reverse;
}
.zbSec2 li:nth-child(3) .rt{
  text-align: right;
  padding-right: 15px;
}
.zbSec2 li:nth-child(4){
  right:-43%;
  top: 46%;
}
.zbSec2 li:nth-child(4) .rt{
  text-align: left;
  padding-left: 15px;
}
.zbSec2 li:nth-child(5){
  left:-30%;
  top: 78%;
  flex-direction: row-reverse;
}
.zbSec2 li:nth-child(5) .rt{
  text-align: right;
  padding-right: 15px;
}
.zbSec2 li:nth-child(6){
  right:-46%;
  top: 78%;
}
.zbSec2 li:nth-child(6) .rt{
  text-align: left;
  padding-left: 15px;
}

@keyframes scale {
  0% {
    -webkit-transform: scale(0.95) translateZ(0)
  }

  50% {
    -webkit-transform: scale(1.02) translateZ(0)
  }

  100% {
    -webkit-transform: scale(0.95) translateZ(0)
  }
}
.zbSec3{
  padding: 100px 0 100px 0;
  background-color: #f2f2f2;
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
}
.zbSec3 .tit{
  text-align: center;
}
.zbSec3 .tit h2{
  font-size: 35px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: normal;
}
.zbSec3 .tit p{
  
}
.zbSec3 ul{
  padding-top: 100px;
  height: auto;
  overflow: hidden;
}
.zbSec3 ul li{
  float: left;
  margin-left: 5%;
  width: calc(85% / 4);
  background-color: #fff;
  padding: 50px 30px;
  height: 320px;
  position: relative;
}
.zbSec3 ul li  h2{
  font-weight: normal;
  color: #fff;
  font-size: 14px;
}
.zbSec3 ul li .circle{
  text-align: center;
  padding: 5px;
  width: 110px;
  height: 110px;
  border-radius: 100%;
  background-color: #1666ad;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  margin-left: -55px;
  top: -55px;
  transition: .45S;
}
.zbSec3 ul li:hover .circle{
  transform: rotateY(180deg);
  background-color: #FFF;
}
.zbSec3 ul li:hover .circle h2{
  transform: rotateY(-180deg);
  color: #1666ad;
}
.zbSec3 ul li:hover{
  cursor: pointer;
  background-color: #1666ad;
}
.zbSec3 ul li:hover p {
  color: #fff;
}
.zbSec3 ul li .txt{
  padding-top: 35px;
  padding-left: 15%;
}
.zbSec3 ul li .txt p{
  font-size: 14px;
  line-height: 30px;
}
.zbSec3 ul li:first-child{
  margin-left: 0;
}
.zbSec4{
  background: url(../jpg/zbbg2-2.jpg);
  height: 300px;
  position: relative;
  z-index: 1;
}
/* 产品中心 */
.proSec{
  padding: 100px 0 80px 0;
  background-color: #f5f5f5;
}
.proSec ul{
  height: auto;
  overflow: hidden;
}
.proSec li{
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  float: left;
  margin-left: 5%;
  width: calc(90% / 3);
  margin-bottom: 30px;
  background-color: #fff;
  transition: .6s;
}
.proSec li:nth-child(3N+1){
  margin-left: 0;
}
.proSec ul li .imgBox {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.proSec ul li .imgBox .img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 250px;
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
  transition: all .5s;
}
.proSec ul li .imgBox .cover{
  position: absolute;
  z-index: 3;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  transition: all .45s;
  background-color: rgba(22, 102, 173, 0.3);
}
.proSec ul li .imgBox .cover img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 45px;
  height: 45px;
}
.proSec ul li:hover .imgBox .img{
  transform: scale(1.1);
}
.proSec ul li .txt {
  margin-top: 0;
  height: 100px;
  background-color: #fff;
  box-shadow: none;
  width: 100%;
  position: relative;
  z-index: 2;
}
.proSec ul li .txt >div {
  position: relative;
  z-index: 2;
  padding-top: 30px;
  text-align: center;
  transition: .45s;
}
.proSec ul li .txt h2{
  font-weight: normal;
  font-size: 16px;
}
.proSec ul li .txt::after {
  transform: scale(1);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1666ad;
  z-index: 1;
  transition: all .3s ease;
  height: 0;
  opacity: 0;
  display: block;
  content: "";
}
.proSec ul li:hover .txt >div {
  transform: translateY(-20px);
}
.proSec ul li:hover .txt::after {
  transform: scale(1);
  opacity: 1;
  height: 133%;
}
.proSec ul li .txt >div h3 {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #1666ad;
  margin-top: 10px;
  transition: all .3s ease;
}
.proSec ul li:hover .txt >div h3{
  background-color: #fff;
  width: 60px;
}
.proSec ul li:hover .txt h2{
  color: #fff;
}
.proSec ul li:hover .imgBox .cover{
  top: 0;
}
.serSection5{
  padding: 80px 0 0 0;
}
.serSection5 .wrap{
  height: auto;
  overflow: auto;
}
.serSection5 .wrap .l{
  float: left;
  width: 45%;
}
.serSection5 .wrap .l img{
  width: 100%;
}
.serSection5 .wrap .r {
  padding-top: 80px;
  width: 52%;
  float: right;
}
.serSection5 .wrap .r h3 {
  position: relative;
  font-size: 17px;
  font-weight: normal;
  display: inline-block;
}
.serSection5 .wrap .r h3::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 50px;
  height: 2px;
  background-color: #000;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}
.serSection5 .wrap .r h2 {
  font-size: 26px;
  letter-spacing: 1px;
  font-weight: normal;
  margin-bottom: 30px;
  margin-top: 10px;
}
.serSection5 .wrap .r h4 {
  font-weight: normal;
  font-size: 20px;
  color: #1b66aa;
  margin-bottom: 40px;
}
.serSection5 .wrap .r ul {
  height: auto;
  overflow: hidden;
}
.serSection5 .wrap .r ul li {
  float: left;
  width: 33.33%;
  padding-right: 2%;
  min-height: 180px;
}
.serSection5 .wrap .r ul li .t {
  font-size: 16px;
  font-weight: bold;
  color: #1b66aa;
  margin-bottom: 5px;
}
.serSection5 .wrap .r ul li p {
  font-size: 14px;
  line-height: 20px;
}
.pageBox {
  padding-top: 80px;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
}

.pageBox .page_num {
  float: left;
}

.pageBox .page_num a {
  line-height: 58px;
  color: #666;
  background-color: #fff;
  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: #1b66aa;
  color: #fff;
}

.page_arr {
  float: right;
}

.page_arr span {
  line-height: 58px;
  color: #666;
  background-color: #fff;
  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: #fff;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 14px;
  margin: 0;
  background-color: transparent;
}

.pageBox .page_num a:hover {
  background-color: #1b66aa;
  color: #fff;
}

.page_arr span:hover {
  background-color: #1b66aa;
  color: #fff;
}

.page_arr span:hover a {
  color: #fff;
}
.newSec1{
  padding: 120px 0 80px 0;
  background: #f1f1f1;
}
.newSec1 .videoList{
  height: auto;
  overflow: hidden;
}
.newSec1 .videoList .item{
  float: left;
  margin-left: 4%;
  width: calc(92% / 3);
  margin-bottom: 50px;
  position: relative;
  cursor: pointer;
}
.newSec1 .videoList .item:nth-child(3N+1){
  margin-left: 0;
}
.newSec1 .videoList .item .ico{
  position: relative;
  z-index: 3;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 55px;
}
.newSec1 .videoList .item .ico img{
  width: 100%;
}
.newSec1 .videoList .item  .img{
  position: relative;
  z-index: 1;
  height: 250px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  transition: .5s;
  filter: brightness(0.5)
}
.newSec1 .videoList .item:hover  .img{
  transform: scale(1.1);
  filter: brightness(1)
}
.honPop video{
  height: 80vh;
  width: 80vw;
  display: block;
  margin: 0 auto;
}
.newSec1 .pageBox{
  padding-top: 30px;
}
.zz img{
  max-width: 90%;
  display: block;
  margin: 80px auto 30px auto;
}
.target {
  height: 100px;
  width: 100%;
  position: absolute;
  top: -100px;
  left: 0;
  opacity: 0;
  z-index: -2;
}
.absec1,.abSec3,.abSec2,.abSec4,.abSec6,.abSec7{
  position: relative;
}
.abSec7{
  padding-top: 90px;
  padding-bottom: 60px;
}
.techSec1,.techSec2,.zbSec2,.zbSec3{
  position: relative;
}
.serSection5,.serSection1,.serSection2,.serSection3,.talS2,.rcSec1,.rcSec3,.rcSec2{
  position: relative;
}
.contactSec,.message{
  position: relative;
}
.abSec7 ul{
  height: auto;
  overflow: hidden;
  padding-top: 60px;
}
.abSec7 li{
  cursor: pointer;
  overflow: hidden;
  float: left;
  margin-left: 40px;
  width: calc((100% - 200px)/5);
  margin-bottom: 45px;
  height: 90px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.abSec7 ul li:nth-child(5N+1) {
  margin-left: 0;
}
.abSec7 li img {
  height: 86%;
  width: auto;
  max-width: 100%;
  transition: .45s;
}
.abSec7 li:hover img{
  transform: scale(1.1);
}