*{margin:0;padding:0}
address,b,big,blockquote,body,center,cite,code,dd,del,div,dl,dt,em,fieldset,font,form,h3,h4,h5,h6,html,i,iframe,img,input,ins,label,legend,li,ol,p,pre,small,span,strong,td,th,u,ul,var{margin:0;padding:0}
aside,b,button,dd,div,dl,dt,footer,form,h3,h4,h5,h6,header,input,li,nav,ol,p,section,table,td,textarea,tr,ul{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}


body {
  font-size: 14px;
  font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  color: #333;
  padding: 0px;
  margin: 0px;
}

button:foucs {
  border: none !important;
  outline: none !important;
}

button::-moz-focus-inner {
  border-color: transparent;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

i {
  font-style: normal;
}

a {
  color: #333;
}

a:hover {
  text-decoration: none;

}

img {

  vertical-align: middle
}

input {
  outline: none;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
button,
select {
  -webkit-appearance: none;
  outline: none;
}

textarea {
  -webkit-appearance: none;
  outline: none
}

.clear {
  clear: both;
  height: 0px;
  overflow: hidden;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}

.clearfix {
  /*兼容 IE*/
  zoom: 1;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

/*  */
.pad80 {padding: 60px 0;}
.tit_fr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 10px auto;
  margin-top: 30px;
}

.tit_fr a {
  font-size: 16px;
  background: #fff;
  padding: 20px 0;
  width: 30%;
  text-align: center;
  margin-right: 20px;

}

.tit_fr a:last-child {
  margin-right: 0;
}

.tit_fr a:hover {
  background: #006CC9;
}


.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto
}

img {
  border: 0px;
  vertical-align: middle;
}

.img-responsive {
  display: block;
  height: auto;

  max-width: 100%
}

.avatar {
  display: block;
  overflow: hidden;
  width: 100%;
}

.dot {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.dot2 {
  display: -webkit-box;

  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/*--------------------------------------------------------------
# 头部Header
--------------------------------------------------------------*/
#header {

  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  height: 100px;
  position: relative;
  width: 100%;

}

#header.header-transparent {
  background: #fff;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid #f1f1f1;

}


.top-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-box .logo {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100px;
  margin-right: 10px;
}

.top-box .logo img {
  padding: 0;
  margin: 0;
  max-height: 80px;


}

.top-box .logo .logo-tu2 {
  display: none;
}

.fixed-top {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/*导航菜单 */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu {
  flex: 4;
  height: 100px;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-menu ul li {
  position: relative;
  width: 100%;
  text-align: center;


}

.nav-menu ul li::after {
  content: "";
  background: #f5f5f5;
  height: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: .5s;
}

.nav-menu li a {
  color: #343434;
  font-size: 16px;
  display: block;
  padding: 0 10px;
  line-height: 100px;
  transition: 0.3s;



}

.nav-menu li:before {
  content: "";
  width: 0;
  height: 3px;
  background: #006CC9;
  position: absolute;
  bottom: 0;
  left: 0;

  -webkit-transition: all .3s cubic-bezier(.215, .61, .355, 1) 0s;
  transition: all .3s cubic-bezier(.215, .61, .355, 1) 0s;
}

.nav-menu li:hover:before,
.nav-menu li.active:before,
.nav-menu li.active:before {
  width: 100%;

}

.nav-menu li:hover a,
.nav-menu li.active a {

  color: #006CC9;
  font-weight: bold;
}

.nav-menu li.active::after {
  height: 100%;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  padding-bottom: 20px;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100px;
  visibility: visible;
}

.nav-menu .drop-down li {
  width: 100%;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 5px 0;
  font-size: 16px;
  font-weight: normal;
  text-transform: none;
  color: #666;
  line-height: 40px;
  height: 40px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}


.nav-menu .drop-down ul li:hover>a {
  color: #006CC9;


}

.nav-menu .drop-down ul li:hover::before {
  width: 0;
}

.nav-menu ul li:hover::after {
  height: 100%;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 100px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu a i {
  display: none;
}

.nav-menu .arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 45%;
  background-color: #fff;
  transform: rotate(45deg);
  cursor: pointer;
  transition: .3s;
  z-index: -1;

}

.lang {
  margin-left: 10px;
}

.lang a:hover {
  color: #006CC9;
}

.nav-menu .mob-language {
  display: none;
}

.mobile-nav .mob-language {
  display: block;
}

.yuyan {
  display: none;
}




/* 手机菜单样式 */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 999;
  overflow-y: auto;
  left: -80%;
  width: 80%;
  padding-top: 18px;
  background: #006CC9;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: #fff;
  font-size: 16px;
  margin: 0 20px;
  height: 56px;
  line-height: 56px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #fff;
  text-decoration: none;
}


.mobile-nav ul li a.expanded {
  color: rgba(255, 255, 255, .7);
}

.mobile-nav ul li a button {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: none;
  outline: none;
  color: #006CC9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav ul li a button.expanded {
  transform: rotate(0deg);
  background-color: #fff;
  color: #006CC9;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down .arrow {
  display: none;
}

.mobile-nav .drop-down li a {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 10px;
  z-index: 998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;

}

.mobile-nav-toggle i {
  color: #666;

  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(51, 51, 51, 0.9);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}



/*首页banner图*/
#banner .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

#banner .swiper-slide {
  background-position: center;
  background-size: cover;
  position: relative;
}

#banner .swiper-slide img {
  display: block;
  width: 100%;
}

#banner .swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  z-index: 999;
  width: 70px;
  font-size: 30px;
  line-height: 70px;
  height: 70px;
  transition: all .5s ease;
  outline: none;

}

#banner .swiper-button:hover {
  background: #006CC9;
}

.btn-prev {
  left: 30px;
}

.btn-next {
  right: 30px;
}

#banner .swiper-pagination-bullet {
  width: 13px;
  height: 10px;
  display: inline-block;
  background: #CCC;
  opacity: .9;
  margin: 0 5px;
  border-radius: 20px;
  transition: opacity .5s, background-color .5s, width .5s;
  transition-delay: .5s, .5s, 0s;
}

#banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: #006CC9;
  width: 40px;
  transition-delay: 0s;
}

#banner .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 20px;
  left: 0;
  width: 100%;
}

.banner_txt {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  color: #333;
  text-align: left;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.banner_txt p {
  font-size: 36px;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: none;
}

.banner_txt b {
  display: block;
  font-size: 42px;
  color: #fff;
  margin: 30px 0;
  text-shadow: none;
}

.banner_txt span {
  color: #fff;
  font-size: 26px;
  display: block;
  text-shadow: none;
}

.banner-more {
  display: block;
  width: 130px;
  letter-spacing: 1px;
  margin-top: 20px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  color: #999;
  border: 1px solid #999;
  border-radius: 38px;
  text-shadow: none;
}

.banner-more:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.banner-more::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  top: -1px;
  margin-left: 7px;
  -webkit-transition: .6s ease;
  transition: .6s ease;
}

.banner-more:hover::after {
  margin-left: 13px;
}

/* 关于我们 */
.main_title {
  font-size: 50px;
  color: #006CC9;
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.main_title p {
  text-align: center;
  font-size: 18px;
  color: #666;
  font-weight: normal;
  margin-top: 10px;
}

.about-bg {
  position: relative;
  background: url(../images/.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
}

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ab_tu {
  width: 40%;
  position: absolute;
  right: 0;
}

.pro-video video {
  width: 100%;
  object-fit: cover;
}

.pro-video .video a {
  position: relative;
  display: block;
}

.pro-video .video a>div {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  z-index: 3;

}

.pro-video .video a>div>b {
  display: block;
  width: 74px;
  height: 74px;
  margin: 0 auto;
  position: relative;
}

.pro-video .video a>div>b:before {
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("../images/turnicon.png") no-repeat center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: '';
  display: block;
  animation: rotate360 5s linear 0s infinite normal;
}

@keyframes rotate360 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -moz-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    -o-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    -ms-transform: translate(-50%, -50%) rotate(360deg);
    -o-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


.pro-video .video a>div>b img {
  width: 100%;
  height: 100%;
  object-fit: none;
}

.pro-video .video a>div>p {
  font-size: 14px;
  color: #fff;
  text-transform: uppersl;
  margin-top: 5px;
}

.ab_txt {
  width: 100%;
  position: relative;
  z-index: 2;

}

.main_span {
  font-size: 26px;
  margin: 10px 0;
  line-height: 32px;
  color: #333;
  display: block;
  text-align: center;
}

.ab_txt p {
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  margin-top: 20px;
  color: #666;
}

.ab_more {
  display: flex;
  align-items: center;

  font-size: 14px;
  color: #006CC9;
  height: 47px;
  border: #006CC9 solid 1px;
  border-radius: 50px;
  line-height: 45px;
  transition: all 0.5s ease 0s;
  max-width: 150px;
  padding: 0 20px;
  margin: 30px auto;
}

.ab_more i {
  color: #006CC9;
  margin-right: 10px;
  transition: all 0.5s ease 0s;
}

.ab_more em {
  color: #006CC9;
  font-style: normal;
}

.ab_more:hover {
  color: #fff;
  background: #006CC9;
  border: 1px solid #006CC9;
  transition: all 0.5s ease 0s;
  padding-left: 50px;
  max-width: 170px;
}

.ab_more:hover i {
  color: #fff;
  transition: all 0.5s ease 0s;
}

.ab_more:hover em {
  color: #fff;
}

.ab_bottom {

  margin: 30px auto;
  width: 100%;
  transition: opacity .3s .6s, visibility 0s .6s, margin-top 0s .6s;
}

.ab_bottom ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ab_bottom b {
  font-size: 40px;
}

.ab_bottom li a {


  display: block;
  text-decoration: none;
  position: relative;
  transition: all .3s;

}

.ab_bottom .ab_num {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab_bottom li a b {
  color: #006CC9;
  font-size: 42px;
  font-weight: bolder;
  margin-bottom: 8px
}

.ab_bottom li a i {
  font-size: 20px;
  color: #333;
  padding-left: 6px;
  padding-bottom: 30px;
}

.ab_bottom li a p {
  color: #666;
  font-size: 18px;
  line-height: 24px;
  text-align: center;

}

.ab_bottom li a:hover {
  background-color: hsla(0, 0%, 100%, 0);
  text-decoration: none;
  border-color: transparent !important
}

.ab_bottom li a:hover p {
  color: #333;
}

.layui-layer-page .layui-layer-content {
  overflow: hidden;
}

.layui-layer-ico {
  background: url(../images/icon.png) no-repeat
}

.layui-layer-setwin .layui-layer-close2 {
  z-index: 9999;
}

.layui-layer {

  background: #000;

}

/* 产品 */
.products {
  margin-top: 60px;
}

.products .box {
  position: relative;
  z-index: 1;
  display: block;
  background-color: #f4f4f4;

  margin: 10px 0;
}

.products .box::after {
  position: absolute;
  top: auto;
  right: 0;
  bottom: -5px;
  left: 0;
  z-index: 2;
  margin: 0 auto;
  display: block;
  content: "";
  background-color: #006CC9;
  width: 160px;
  height: 10px;
}

.products .box img {
  max-width: 100%;
}

.products .box div {
  padding: 30px;
}

.products .box span {
  text-align: left;
  display: block;
  font-size: 60px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: #ececec;
}

.products .box b {

  padding-right: 30px;
  font-size: 26px;
  color: #000;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
  display: block;
  text-align: left;
}

.products .box:hover b {
  color: #000;
}

.products .box p {
  margin-top: 5px;
  padding-right: 30px;
  font-size: 18px;
  color: #666;

  text-align: left;
  line-height: 22px;
}

.products .box:hover {
  background: #006CC9;
  color: #fff;
}

.products .box:hover p,
.products .box:hover b {
  color: #fff;
}

.products .box:hover::after {
  background-color: #AF0F0F;
}

/*  优势 */
.service_box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  margin-top: 50px;
}

.service_fl {
  width: 15%;
  background: #006CC9;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  font-size: 40px;
  color: #fff;
  font-weight: bold;
}

.Solution {

  width: 100%
}

.Solution .swiper-num {
  position: absolute;
  bottom: 28%;
  left: -13%;
  color: rgba(255, 255, 255, .7);
  font-size: 26px;
  z-index: 9;
}

.Solution .swiper-num .active {
  color: #fff;
  padding-right: 4px;
  font-size: 40px;
  font-weight: bold;
}

#sol_top .swiper-slide {
  position: relative;
}

#sol_top .swiper-slide .bg {
  position: relative;
}

#sol_top .swiper-slide .bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .1);
  content: '';
}

#sol_top .swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

#sol_top .swiper-slide .product-box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 999;

}

#sol_top .swiper-slide .product-box {
  position: absolute;
  left: 0;
  top: 42%;
  width: 70%;
}

#sol_top .swiper-slide .product-box b {
  color: #fff;
  font-size: 38px;
  line-height: 52px;
  width: 60%;
  text-align: left;
  margin-bottom: 30px;
  display: block;
}

#sol_top .swiper-slide .product-box p {
  font-size: 18px;
  margin: 10px auto;
  line-height: 36px;
  text-align: left;
  width: 60%;
}

.Solution {
  position: relative;
}

.Solution img {
  width: 100%;
}


.Solution .swiper-button-prev {
  left: 50px;
  top: 50%;


}

.Solution .swiper-button-next {
  right:34%;
  top: 50%;
}

.Solution .swiper-button-next,
.Solution .swiper-button-prev {
  background: none;
  outline: none;

  color: #000;
  font-size: 30px;
  border-radius: 25px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #fff;

}

.Solution .swiper-button-next:hover,
.Solution .swiper-button-prev:hover {
  color: #fff;
  background: #006CC9;
}

#sol_bot {

  position: absolute;
  top: 0;
  right: 0;
  width:30%;
  height: 100%;


}

.Solution .swiper-container-thumbs {
  position: relative;
  
}

#sol_bot .swiper-wrapper {
  flex-wrap: wrap;



}

.Solution .swiper-container-thumbs .swiper-slide span {
  position: relative;
  z-index: 1;
}

.Solution .swiper-container-thumbs .swiper-slide {

  cursor: pointer;
  color: #fff;

  position: relative;
  overflow: hidden;
  width: 100% !important;
  transition: all .3s;
  display: flex;

  align-items: center;
  justify-content: flex-start;

  height: auto;
  transition: all 0.8s;
  background: rgba(0, 0, 0, 0.27);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);

}

.Solution .swiper-container-thumbs .swiper-slide p {
  font-size: 30px;
  text-align: center;
  z-index: 2;
 



}

.Solution .swiper-container-thumbs .swiper-slide .num {
  font-size: 60px;
  padding: 0 50px;
  color: rgba(255, 255, 255, .3);
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.Solution .swiper-container-thumbs .swiper-slide-thumb-active {
  background: #006CC9 !important;
  color: #fff !important;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: " ";
}

/* 技术装备 */
.jszb {
  background: #f5f5f5;
}

#hyyy .swiper-container {
  margin-top: 40px;
  padding-bottom: 50px;
}

#hyyy .swiper-pagination-progressbar {

  position: absolute;
  border-bottom: 1px dashed #dedede;
  background: none;

}

#hyyy .swiper-slide a {
  color: #333;
}

#hyyy .swiper-slide p {
  font-size: 18px;
  line-height: 50px;
  height: 50px;
  text-align: center;
  transition: all 0.3s;

  width: 100%;
  height: 100%;

}

#hyyy .swiper-slide .upbg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  transform: translateY(0) scale(0);
  -webkit-transform: translateY(0) scale(0);
  opacity: 0;
  color: #fff;
  filter: alpha(opacity=0);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  height: calc(100% - 50px);
  background-image: linear-gradient(to top, rgba(201, 8, 23, .8), rgba(0, 108, 201, 0.8));
  background-image: -moz-linear-gradient(to top, rgba(201, 8, 23, .8), rgba(0, 108, 201, 0.8));
  background-image: -webkit-linear-gradient(to top, rgba(201, 8, 23, .8), rgba(0, 108, 201, 0.8));
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

#hyyy .swiper-slide .upbg b {
  font-size: 24px;
  margin-bottom: 20px;
  display: block;
  font-weight: normal;
}

#hyyy .swiper-slide .upbg span {
  display: block;
}

#hyyy .swiper-slide a:hover .upbg {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateY(0) scale(1);
  -webkit-transform: translateY(0) scale(1);
}

#hyyy .swiper-button-next,
#hyyy .swiper-button-prev {
  position: absolute;
  top: 46%;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  z-index: 999;
  border-radius: 25px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 30px;
  transition: all .5s ease;
  outline: none;

}

#hyyy .swiper-button-next:hover,
#hyyy .swiper-button-prev:hover {
  background: #006CC9;
}

#hyyy .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-image: linear-gradient(to right, #006DAC, #006CC9);
  position: absolute;
  left: 0;
  top: calc(100% - 3px);
  width: 100%;
  height: 4px;
  -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;
}

#hyyy .swiper-container-horizontal>.swiper-pagination-progressbar {
  width: 100%;
  height: 14px;
  left: 0;
  bottom: 0;
}

#hyyy .swiper-container-horizontal>.swiper-pagination-progressbar,
#hyyy .swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: calc(100% - 30px)
}

/* 新闻 */
.news {
  width: 100%;


}

.news-box {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  margin-top: 30px;
}

.news-one {
  width: 50%;
  padding-bottom: 25px;
  border-bottom: 1px solid #dedede;
  position: relative;
  margin-right: 25px;

}

.line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10%;
  background: #0054AA;
  height: 1px;
  transition: all .3s;
}

.news-one span {
  display: block;
  overflow: hidden;
}

.news-one b {
  display: block;
  padding: 10px 0;
  font-size: 24px;
  margin-top: 10px;
  color: #333;
}

.news-one i {
  width: 90px;
  background: #006CC9;
  color: #fff;
  padding: 6px 20px;
  margin-right: 10px;
}

.news-one em {
  font-size: 14px;
  color: #999;
  display: block;
  margin-top: 8px;
  font-style: normal;

}

.news-one img {
  display: block;
  width: 100%;
  transition: .8s;
}

.news-one a:hover img {
  transform: scale(1.1);
}

.news-one a:hover b {
  color: #006CC9;
}

.news-one:hover .line {
  width: 100%;
}

.news-one p {
  font-size: 14px;
  color: #666;
  line-height: 25px;
  padding: 8px 0;
}

.news-two {
  width: 50%;
}

.news-two ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.news-two ul li {
  width: 100%;
  margin-bottom: 20px;
}

.news-two a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 32px 20px;
  transition: .3s;
  border: 1px solid #f1f1f1;
  margin-left: 20px;
}

.news-two ul li:nth-child(3),
.news-two ul li:nth-child(4) {
  margin-bottom: 0;
}

.day {
  color: #666;
  flex: 1;
  height: 80px;
  margin: 7px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.day span {
  font-size: 36px;
  width: 100%;
  color: #666;
  text-align: center;
  font-weight: bold;
}

.day p {
  width: 100%;
  text-align: center;
}

.newscon {
  flex: 4;
  padding-left: 20px;
}

.newscon b {
  padding-bottom: 10px;
  font-size: 16px;
  color: #333;
  display: block;

}

.newscon p {

  text-align: left;
  line-height: 24px;
  font-size: 14px;
  color: #666;

}

.news-two a:hover {
  box-shadow: 0 0 10px #dedede;
}

.news-two a:hover span {
  color: #0C4194;
}

.news-two a:hover p {
  color: #666;
}

/**/
.fot_bg {
  background: url(../images/ab.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  height: 500px;
  display: flex;
  align-items: center;



}

/*返回顶部*/
.scroll {

  position: fixed;
  right: 30px;
  bottom: 70px;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  z-index: 99999;
  color: #fff;
}

.scroll a p {
  color: #fff;
  margin-top: 5px;
}

.scroll .return {

  transform: scaleY(0);
  transition: 0.5s;
  background-color: #006CC9;
  width: 80px;
  height: 80px;
  padding-top: 10px;
  border-radius: 5px;


}

.scroll .active {
  transform: scale(1);
}



/*底部footer*/

.footer {
  background: url(../images/ftbg.jpg) no-repeat;
  background-size: cover;
  margin-top: 60px;
  
}
.footer-logo img{ max-height:140px;}
.footer-nav{ display: flex;
  display: -webkit- box;
  display: -webkit-flex;
  justify-content: center; align-items: center;}
.footer-nav li { position: relative; 
  padding: 0 20px;
  }
.footer-nav a { 
  display: block;
  color:#000;   
   height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 16px;}
.footer-nav li:after {
      content: " / ";
      position: absolute;
      top: 20px;
      left: 0;
      font-size: 12px;
      height: 60px;
      line-height: 60px;
      color: #fff;
  
}
.footer-nav li:first-of-type:after{content: "";}
.footer-nav a:hover { color: #006CC9;}
.footer-contact { display: flex; flex-wrap: wrap; align-items: center; justify-content:flex-start; margin-bottom: 30px;}

.footer-contact .item { margin: 20px 0; width: 25%; display: flex; align-items: center;} 
.footer-contact .item span { padding-right: 15px;  margin-right: 10px; font-size: 26px; color: #006CC9;}
.footer-contact .item b { font-size: 16px;}
.copyright {
  padding: 20px 10px;
  text-align: center;
  color: #000;
  border-top: 1px solid rgba(255,255,255,.3);
}

.copyright a {
  color: #000;
}
/* 手机底部导航 */
.bottom_nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
  background: #006CC9;
  display: none;
}


.bottom_nav_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  height: 62px;
}

.bottom_nav a {
  flex: 1;
  color: #fff;
  border-right: 1px solid #055DA7;
  border-left: 1px solid #087CE0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom_nav a span {
  margin-left: 6px;
}

.bottom_nav a:last-child {
  border-right: none;
}

.bottom_nav a:first-child {
  border-left: none;
}

/*返回顶部*/
.back-to-top {
  position: fixed;
  display: none;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 3px;
  right: 65px;
  bottom: 65px;
  background: #006CC9;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 999;
}

.back-to-top i {
  font-size: 26px;
  width: 50px;
  height: 50px;
  line-height: 50px;

}

.back-to-top:hover {
  color: #fff;
  background: #006CC9;
  transition: background 0.2s ease-in-out;
}