.header_box {
  width: 100%;
  min-width: 1200px;
  overflow: hidden;
  border-bottom: 1px solid #EEEEEE;
}

.header {
  width: 1200px;
  height: 100px;
  margin: 0 auto;
}

.logo {
  width: 162px;
  height: 65px;
  background: url('../image/logo@3x.png') no-repeat;
  background-size: cover;
  float: left;
  margin: 18px 0 17px 0;
}

.header_r {
  float: right;
  margin: 16px 0 9px 0;
}

.tel_box {
  display: flex;
  align-items: center;
  padding-left: 32px;
}

.header_tel {
  width: 28px;
  height: 28px;
  display: block;
}

.tel_nimber {
  width: 190px;
  font-size: 24px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #00467F;
  margin-left: 9px;
}

.search_box {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.search_box input {
  width: 193px;
  height: 30px;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  outline: none;
  padding-left: 13px;
}

.search_text {
  width: 70px;
  height: 30px;
  border-radius: 0px 3px 3px 0px;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  background: linear-gradient(0deg, #00467F, #003967);
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}

.search_box ::-webkit-input-placeholder {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
}

.top_nav_box {
  width: 100%;
  min-width: 1200px;
  /* overflow: hidden; */
  position: relative;
}

.top_nav {
  width: 1200px;
  margin: 0 auto;
  height: 60px;
}

.nav {
  width: 150px;
  height: 100%;
  float: left;
  text-align: center;
}

.nav span:first-child {
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333;
  line-height: 16px;
  margin-top: 13px;
}

.nav span:last-child {
  font-size: 12px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
  line-height: 12px;
  margin-top: 11px;
}

.nav:hover a span {
  color: #00467F;
}

.nav span {
  display: block;
}

.nav span:last-child::after {
  content: '';
  width: 0px;
  height: 4px;
  background: #00467F;
  display: block;
  margin-top: 4px;
  margin-left: 50%;
  transform: translate(-50%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.nav:hover span:last-child::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #00467F;
  display: block;
  margin-top: 4px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.nav_main {
  position: absolute;
  top: 60px;
  display: none;
  z-index: 100;
}

.nav:hover .nav_main {
  display: block;
}

.nav_main li {
  width: 150px;
  height: 50px;
  background: #FFFFFF;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #666666;
}

.nav_main li:hover {
  background: #2B2828;
  color: #FFFFFF;
}

.banner {
  width: 100%;
  height: 350px;
  min-width: 1200px;
  overflow: hidden;
}

.banner_img {
  width: 100%;
  height: 100%;
  display: block;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  border: 1px solid #FFFFFF !important;
}

.swiper-pagination-bullet-active {
  border: none !important;
  background: #fff !important;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 15px !important;
}





.footer_box {
  width: 100%;
  min-width: 1200px;
  overflow: hidden;
  background: url('../image/footer-back_10.jpg') no-repeat;
  background-size: cover;
}

.footer {
  width: 1200px;
  margin: 0 auto;
  height: 420px;
  padding-top: 67px;
}

.footer_logo {
  width: 122px;
  height: 112px;
  float: left;
}

.footer_logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.footer_nav_box {
  height: 300px;
  float: left;
  margin-left: 116px;
}

.footer_nav {
  width: 100px;
  float: left;
  margin-right: 71px;
  position: relative;
  overflow: hidden;
}

.footer_nav:nth-child(4) {
  margin-right: 0;
}

.footer_nav span {
  height: 38px;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
  display: inline-block;
}

.footer_nav span::after {
  content: '';
  width: 0;
  height: 2px;
  display: inline-block;
  background: #69DCE0;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  margin-top: 10px;
}

.footer_nav:hover span::after {
  content: '';
  width: 100%;
  height: 2px;
  display: inline-block;
  background: #69DCE0;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

/* .footer_down{
  
  display: none;
} */

.footer_down li a {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
}

.footer_down li {
  padding: 15px 0;
}

/* .footer_nav:hover .footer_down{
  display: block;
} */

.footer_nav:hover span {
  color: #fff;
}

.footer_down li:hover a {
  color: #fff;
}

.footer_r {
  float: right;
}


.phone{
font-size: 16px;
font-family: Microsoft YaHei;
font-weight: 400;
color: #FFFFFF;
}

.haoma{
font-size: 30px;
font-family: Microsoft YaHei;
font-weight: bold;
color: #69DCE0;
margin-top: 16px;
}

.email{
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
  line-height: 30px;
  margin-top: 26px;
}

.email_title{
font-size: 16px;
color: #FFFFFF;
line-height: 40px;
margin-right: 10px;
}

.kefu_btn{
  float: left;
  margin-top: 5px;
  position: relative;
}

.kefu1{
  width: 27px;
height: 28px;
background: url('../image/qq.png') no-repeat;
background-size: cover;
float: left;
margin-right: 10px;
}

.kefu2{
  width: 27px;
height: 28px;
background: url('../image/wx.png') no-repeat;
background-size: cover;
float: left;
}

.kefu_kuang{
  width: 90px;
height: 90px;
background: #FFFFFF;
border-radius: 5px;
position: absolute;
padding: 6px;
top: -95px;
}

.kefu_kuang img{
  width: 100%;
  height: 100%;
  display: block;
}













.zhichi{
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  height: 60px;
  clear: both;
  line-height: 60px;
}

.zhichi span,.zhichi a{
font-size: 12px;
font-family: Microsoft YaHei;
font-weight: 400;
color: #999999;
}




.title_box {
  width: 100%;
}

.title {
  width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 58px 0 58px 0;
}

.title_l {
  width: 117px;
  height: 32px;
  background: url('../image/index-title-l@3x.png') no-repeat;
  background-size: cover;
  float: left;
  margin-top: 10px;
  margin-right: 28px;
}

.title_r {
  width: 117px;
  height: 32px;
  background: url('../image/index-title-r@3x.png') no-repeat;
  background-size: cover;
  float: left;
  margin-top: 10px;
  margin-left: 28px;
}

.letter {
  font-size: 70px;
  font-family: CTXingKaiSJ;
  font-weight: 400;
  color: #00467F;
  float: left;
  line-height: 50px;
}

.title_name {
  float: left;
  margin-left: 6px;
}

.title_cn {
  font-size: 30px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  display: block;
  line-height: 30px;
}

.title_en {
  font-size: 24px;
  font-family: CTXingKaiSJ;
  font-weight: 400;
  color: #00467F;
  display: block;
  line-height: 24px;
  margin-top: 5px;
}

.weizhi_box {
  width: 100%;
  min-width: 1200px;
  overflow: hidden;
}

.weizhi {
  width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #666666;
  line-height: 24px;
  padding-top: 30px;
}


.paging{
clear: both;
padding-top: 60px;
display: flex;
align-items: center;
justify-content: center;

}

.paging ul {
  overflow: hidden;
}

.paging ul li{
  float: left;
  width: 28px;
  height: 28px;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  line-height: 28px;
  text-align: center;

font-size: 14px;
font-family: Microsoft YaHei;
font-weight: 400;
color: #999999;
margin-right: 10px;
}

.paging ul a:first-child li,.paging ul a:last-child li{
  width: 70px ;
  height: 28px ;
  background: #EEEEEE ;
}



.paging ul li:hover{
  background: #00467F !important;
}

.paging ul li:hover {
  color:#FEFEFE ;
}

.disabled{
background: #EEEEEE !important;
color:#999999 ;
}

.active{
  background: #00467F !important;
  color:#FEFEFE !important;
}

.swiper-container{
  height: 350px!important;
}

.swiper-slide{
  position: relative;
}

.banner_kuang_box{
  width: 60px;
  height: 24px;
  border: 1px solid #2FDFE2;
  position: absolute;
  top: 240px;
  left: 18.75%;
  border-radius: 20px;
  overflow: hidden;

}

.qiu{
  width: 10px;
  height: 10px;
  background: #2FDFE2;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);

  
}

