@charset "utf-8";
/*reset*/
body{
  font: 14px "microsoft yahei", Arial, Helvetica, sans-serif;
  margin:0;
  padding:0;
  color: #666;
}
ul,li,p,h1,h2,h3,h4,h5,h6,dl,dt,dd,button,input{
  margin:0;
  padding:0;
  font-weight: normal;
  border:none;
}
ul li{
	list-style:none;
}
video {
  display: inline-block;
  vertical-align: baseline;
}
input,textarea{
  -webkit-appearance:none;
}
*{
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.fl{float:left;}
.fr{float:right;}
.clearFix:after{
  content: "";
  display: block;
  clear: both;
}
.clearFix{
  zoom: 1;
}
*:focus{
  outline:none;
}
img{
  border: 0;
  vertical-align: middle;
}
a{
  color:#333;
  text-decoration:none;
}
a:hover{
  color: #005EA6;
  text-decoration:none;
}
.container{
  width: 80%;
  margin: 0 auto;
}
/*
*index.html
*/
.header{
  width: 100%;
  height: 100px;
  background: #fff;
  position: relative;
  z-index: 20;
}
.logo{
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  line-height: 100px;
}
.logo img{
  max-width: 100%;
}
.search{
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100px;
  background: #005EA6 url("../img/icon_01.png") no-repeat center;
  background-size: 30px;
  cursor: pointer;
}
/*导航*/
.nav{
  position: absolute;
  left: 30%;
  top: 0;
  width: 55%;
  height: 100px;
}
.nav ul li{
  float: left;
  width: 12.5%;
  text-align: center;
  position: relative;
}
.nav ul li>a{
  display: block;
  font-weight: bold;
  line-height: 100px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}
.nav ul li>a:hover{
  background: #005EA6;
  color: #fff;
}
.nav ul li.cur>a{
  background: #005EA6;
  color: #fff;
}
.sub-nav{
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 50px;
  background: #1C6FAB;

}
.sub-nav a{
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  color: #fff;
}
.sub-nav a:hover{
  background: #005EA6;
}
/*搜索框*/
.search-alert,
.video-alert{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #0C1721;
}
.search-con{
  display: block;
  width: 60%;
  height: 70px;
  margin: 200px auto;
  position: relative;
}
#search{
  display: block;
  width: 100%;
  height: 70px;
  padding-left: 1%;
  background: #0C1721;
  border: 1px solid #535353;
  font: 30px "microsoft yahei", Arial, Helvetica, sans-serif;
  color: #A9A9A9;
}
input[type="submit"]{
  display: block;
  position: absolute;
  right: 15px;
  top: 5px;
  width: 84px;
  height: 60px;
  background: #0C1721 url("../img/icon_01.png") no-repeat center;
  background-size: 40px;
  cursor: pointer;
}

.close{
  position: absolute;
  top: 10%;
  right: 10%;
  width: 25px;
  height: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.close:hover{
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
.close img{
  width: 100%;
}
/*手机导航*/
.menu-line{
  display: none;
  position: absolute;
  top: 23px;
  right: 10px;
  cursor: pointer;
}
.menu-line i{
  display: block;
  width: 45px;
  height: 3px;
  background: #005EA6;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.menu-line i:nth-child(2){
  margin: 15px 0;
}
.menu-line.one i:nth-child(2){
  transform: translateX(200px);
  -webkit-transform: translateX(200px);
  opacity: 0;
}

.menu-line.one i:first-child{
  width: 55px;
  transform: rotate(45deg) translate(20px,5px);
  -webkit-transform: rotate(45deg) translate(20px,5px);
}
.menu-line.one i:last-child{
  width: 55px;
  transform: rotate(-45deg) translate(20px,-7px);
  -webkit-transform: rotate(-45deg) translate(20px,-7px);
}
.move,.wrap{
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.on{
  transform: translateX(-60%) translateZ(0);
}
.phone-nav{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  width: 60%;
  height: 100%;
  padding: 10px 15px;
  transform: translateX(100%);
  background: #005EA6;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.phone-nav a{
  display: block;
  color: #fff;
  font-size: 16px;
  border-bottom: 1px solid #D1D1D1;
}
.phone-nav li>a{
  padding: 3% 0;
  position: relative;
}
.phone-nav li>a>i{
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url("../img/jt_03.png") no-repeat;
  background-size: 100%;
}
.phone-nav.on{
  transform: translateX(0) translateZ(0);
}
.phone-sub-nav{
  display: none;
}
.phone-sub-nav a{
  padding: 10px;
  font-size: 14px;
  border-bottom: 1px solid #D1D1D1;
}
.phone-sub-nav a:last-child{
  border-bottom: none;
}
/*banner*/
.banner{
  width: 100%;
}
.banner-pic{
  height: 600px;
  color: #fff;
  position: relative;
}
.banner-pic p{
  position: absolute;
  left: 15%;
  top: 20%;
  font-size: 60px;
  letter-spacing: 2px;
}
.banner-pic a{
  display: block;
  width: 120px;
  height: 30px;
  margin-top: 10px;
  line-height: 30px;
  border: 2px solid #fff;
  border-radius: 15px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  letter-spacing: 1px;
}
/*title*/
.title{
  padding-bottom: 2.5%;
  text-align: center;
  color: #424242;
}
.title>h3{
  font-size: 30px;
  font-weight: bolder;
  text-transform: uppercase;
}
.title>p{
  margin-bottom: 1%;
  font-weight: bold;
  color: #7A7A7A;
}
.triangle{
  display: block;
  width: 8px;
  margin: 0 auto;
  border: 8px solid transparent;
  border-top-color: #005EA6;
}
/*index-about*/
.padding-5{
  padding: 5% 0;
}
.show-img{
  width: 55%;
}
.show-img img{
  max-width: 100%;
}
.show-txt{
  width: 45%;
  padding-left: 3%;
}
.show-txt img{
  max-width: 100%;
}
.show-txt h2{
  font-size: 24px;
  font-weight: bold;
  color: #333;
}
.show-txt p{
  line-height: 26px;
  text-indent: 2em;
  text-align: justify;
  margin: 2% 0 15%;
}
.read-more{
  display: block;
  width: 100px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 15px;
  background: #005EA6;
  color: #fff;
}
.index-about-show .read-more{
  color: #fff;
}
/*index-industry*/
.index-industry{
  background: url("../img/index_11.png") no-repeat;
  background-size: cover;
}
.index-industry-list{
  margin-left: -1%;
}
.index-industry-list li{
  float: left;
  width: 24%;
  margin: 0 0 1% 1%;
}
.index-industry-list li a{
  display: block;
  overflow: hidden;
  position: relative;
}
.index-industry-list img{
  width: 100%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.index-industry-list img:hover{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.index-industry-list span{
  position: absolute;
  top: 10%;
  left: 10%;
  color: #fff;
  font-size: 18px;
}
.index-industry-list span:before{
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  background: #fff;
  margin-bottom: 10px;
}
/*index-case*/
.index-case-nav,
.index-news-nav{
  margin-bottom: 2.5%;
  text-align: center;
}
.index-case-nav a,
.index-news-nav a {
  display: inline-block;
  margin: 0 1.5%;
}
.index-case-nav a.active,
.index-news-nav a.active{
  border-bottom: 2px solid #005EA6;
}
.index-case-list,
.index-news-list{
  display: none;
  margin-left: -1%;
}
.index-case-list.active,
.index-news-list.active{
  display: block;
}
.index-case-list li{
  float: left;
  width: 19%;
  margin-left: 1%;
}
.index-news-list li{
  float: left;
  width: 32%;
  margin-left: 1.3%;
}
.case-img{
  position: relative;
}
.case-img>img{
  width: 100%;
}
.case-img-cover{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,94,166,.8);
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.case-img-cover img{
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
}
.case-img:hover .case-img-cover{
  opacity: 1;
}
.case-txt{
  padding: 5%;
}
.case-txt h2{
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.case-txt p{
  margin: 1% 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.index-news-list .case-txt p{
  margin: 1% 0;
  height: 48px;
  line-height: 24px;
  display:-webkit-box;
  white-space: normal;
  -webkit-box-orient:vertical;/*垂直排列*/
  -webkit-line-clamp:2;/*显示的行数*/
  overflow:hidden;
}
.case-txt>a{
  display: block;
  width: 100%;
  margin-top: 10%;
  padding: 2% 0;
  border-top: 1px solid #E5E5E5;
  background: url("../img/icon_02.png") no-repeat right center;
}
/*video*/
.video{
  background: url("../img/index_23.jpg") no-repeat center;
  background-size: cover;
}
.video-img>img{
  width: 100%;
}
.video-img{
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
#play{
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../img/bofang.png") no-repeat -3px -3px;
  cursor: pointer;
}
#play:hover{
  background: url("../img/bofang.png") no-repeat -3px -126px;
}
/*video*/
.video-alert{
  background: rgba(0,0,0,.7);
}
#video{
  display: block;
  width: 60%;
  margin: 150px auto;
}
/*footer*/
.footer{
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.bottom{
  padding: 5% 0;
  background: #424242;
  color: #fff;
  font-size: 12px;
}
.footer-title>p{
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}
.contact{
  width: 37%;
}
.contact ul li{
  margin-top: 5%;
  padding-left: 35px;
}
.contact ul li:first-child{
  background: url("../img/icon_03.png") no-repeat left top;
}
.contact ul li:last-child{
  background: url("../img/icon_04.png") no-repeat left top;
}
.contact ul li span{
  text-transform: uppercase;
}
.contact ul li span:after,
.recruitment ul li span:after{
  content: "";
  display: block;
  width: 11px;
  height: 2px;
  margin: 12px 0;
  background: #757575;
}
.recruitment{
  width: 40%;
  padding-left: 10%;
  border-left: 1px solid #757575;
}
.recruitment ul li{
  margin-top: 5%;
}
.recruitment>a{
  display: block;
  width: 100px;
  margin-top: 10%;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 15px;
  color: #fff;
}
.qr-code{
  width: 15%;
}
.qr-code img{
  display: block;
  margin: 12% 0;
}
.foot{
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 12px;
  color: #333;
}
/*
*about.html
*/
/*内页banner*/
.bg{
  width: 100%;
  height: 431px;
  padding-top: 130px;
  color: #fff;
}
.bg h2:before{
  content: "";
  display: block;
  width: 130px;
  height: 3px;
  margin-bottom: 10px;
  background: #fff;
}
.bg h2{
  font-size: 44px;
  font-weight: bold;
  text-transform: uppercase;
}
.bg span{
  display: block;
  margin-top: 25px;
  font-size: 24px;
}
.bg p{
  font-size: 21px;
  margin-top: 20px;
  letter-spacing: 2px;
}
/*内页导航*/
.inside-nav{
  width: 100%;
  text-align: left;
  box-shadow: 0 4px 8px 0 rgba(7,17,27,.1);
}
.inside-nav>div>a{
  display: inline-block;
  padding: 1.5% 0;
  margin-right: 6%;
  font-size: 16px;
  font-weight: bold;
  color: #666;
}
.inside-nav>div>a:hover span{
  border-bottom: 2px solid #005EA6;
  color: #005EA6;
}
.inside-nav>div>a.cur span{
  border-bottom: 2px solid #005EA6;
  color: #005EA6;
}
/*内页通用title*/
.inside-title{
  margin-bottom: 5%;
}
.inside-title h2{
  font-size: 34px;
  font-weight: bold;
  color: #444;
  text-transform: uppercase;
}
.inside-title h3{
  font-size: 30px;
  font-weight: bold;
  color: #005EA6;
}
/*about*/
.about>div{
  width: 50%;
}
.about-img img{
  width: 95%;
}
.about-img>ul{
  margin-top: 2%;
}
.about-img>ul>li{
  float: left;
  width: 30%;
}
.about-img>ul>li>p{
  font-size: 38px;
  font-weight: bold;
  color: #069CE6;
}
.about-txt>p{
  font-size: 16px;
  line-height: 32px;
  text-indent: 2em;
  text-align: justify;
}
.about-txt .read-more{
  margin-top: 5%;
  color: #fff;
}
/*董事长致辞*/
.president{
  background: url("../img/about_04.jpg") no-repeat center 0;
  background-size: cover;
}
.president .inside-title>h2,
.president .inside-title>h3{
  color: #fff;
}
.address{
  padding: 5% 3%;
  border-radius: 10px;
  background: rgba(256,256,256,0.25);
}
.address>p{
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  text-align: justify;
  text-indent: 2em;
}
/*发展历程*/
.development{
  background: url("../img/about_05.jpg") no-repeat center 0;
  background-size: cover;
}
.develop-list li{
  padding-left: 100px;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
}
.develop-list li>span{
  position: absolute;
  top: 0;
  left: 0;
  color: #069CE6;
  font-weight: bold;
}
/*组织构架*/
.org-content{
  font-size: 16px;
}
.org-content>p:first-child{
  font-weight: bold;
}
.org-content>p{
  line-height: 32px;
  text-indent: 2em;
  text-align: justify;
}
.org-content>img{
  display: block;
  max-width: 100%;
  margin: 2% auto;
}
/*设计实力*/
.design{
  background: url("../img/about_06.jpg") no-repeat center 0;
  background-size: cover;
}
.design .inside-title>h2,
.design .inside-title>h3{
  color: #fff;
}
.design-content{
  background: #fff;
}
.left-txt{
  width: 60%;
  padding: 2%;
}
.left-txt>p{
  font-size: 16px;
  line-height: 32px;
  text-indent: 2em;
  text-align: justify;
}
.left-txt>ul{
  margin-top: 2%;
}
.left-txt>ul>li{
  font-size: 16px;
  line-height: 32px;
  text-indent: 2em;
}
.left-txt>ul>li>span{
  color: #069CE6;
  font-size: 20px;
  font-weight: bold;
}
.right-img{
  width: 40%;
}
.right-img>img{
  width: 100%;
}
/*大事记*/
.memory{
  background: #F5F5F5;
}
.historyPage{ padding-bottom: 30px; font-size: 14px; overflow: hidden;}
.historyPage .by{ font-size: 30px; text-align: center; width: 90%; margin: 0 auto 30px;}
.historyPage .by1{ font-size: 15px;}
.historyBox{ position: relative; padding: 250px 0 50px;}
.proces-ico{ background: url(../img/history_dian.png) no-repeat; background-size: cover; width: 25px; height: 25px; position: absolute; top: -24px; left: 50%; margin-left: -12px;}
.proces-line{ height: 100%; width: 4px; left: 50%; position: absolute; top: 0; margin-left: -2px; background-color: #fff; border-radius: 2px;}
.proces-dl a:link,.proces-dl a:visited { color: #333333; }
.proces-dl a:active,.proces-dl a:hover { color: #E8E8E8; }
.proces-dl dd{ float: left; display: block; width: 50%; padding-top: 5%;}
.proces-dl .proces-t{ margin:0 0 22px 60px; position: relative; padding-top: 20px;}
.proces-dl .proces-t .line{ position: absolute; height: 1px; background-color: #fff; width: 45px; top: 25%; left: -60px;}
.proces-dl .itemBox{ margin:22px 0 0 60px; background-color: #fff; cursor: pointer;}
.proces-dl .proces-bt{ font-size: 20px;}
.proces-t .proces-bt{ display: block; line-height: 1.2;}
.proces-t2{ background-color: #E8E8E8;  padding:15px 8%; text-align: right; position: relative; overflow: hidden;}
.proces-t2 .cbg{ background-color: #035CAC; position: absolute; left: 0; top: 0; height:100%; width: 0;  -webkit-transition: 0.4s ease 0s; -moz-transition: 0.4s 0s; -o-transition: 0.4s 0s; transition: 0.4s 0s;}
.proces-t2 span{ position: relative; z-index: 2;}
.proces-t2 .proces-bt{ margin-right: 10px;}
.proces-t2 .sj{ background: url(../img/sj.png) no-repeat scroll center center; width: 29px; height: 22px; position: absolute; bottom: -4px; left: 5%;}
.proces-con{  min-height: 200px; padding:0 8%;}
.proces-con p{ line-height: 36px;font-size: 16px;text-indent: 2em; }
.proces-img{ overflow: hidden;}
.proces-img img{ width: 100%; display: block;}
.proces-list li{ float: left; display: block; width: 42%; padding: 12px 0 15px 6%;}
.proces-list .num{ font-size: 50px; line-height: 1.1;}
.proces-txt{ color: #666; padding: 22px 0; text-align: justify;}
.proces-dl .oneItem{ padding-top: 0; margin-top: -150px;}
.proces-dl .oneItem .proces-t{ margin:0 60px 22px 0;}
.proces-dl .oneItem .proces-t .line{ left: auto; right: -60px;}
.proces-dl .oneItem .itemBox{ margin:0 60px 8% 0;}
.proces-dl .oneItem .proces-t{ text-align: right;}
.proces-dl .oneItem .proces-t2{ text-align: left;}
.proces-dl .oneItem .proces-t2 .sj{ left: auto; right: 5%;}
.proces-bot{ background: url(../img/history_bot.png) no-repeat scroll center top; padding-top: 90px;  text-align: center;}
.proces-dl .itemBox:hover .proces-t2 .cbg{ width: 100%;}
.proces-dl .itemBox:hover .proces-t2{ color: #fff; }
/*
*about_show.html
*/
.more-txt{
  padding: 3%;
  box-shadow: 0 0 15px rgba(7,17,27,.1);
}
.more-txt>p{
  line-height: 32px;
  text-align: justify;
  text-indent: 2em;
}
.more-txt img{
  display: block;
  width: 75%;
  margin: 20px auto;
}
/*business.html*/
.business-info{
  margin-top: 5%;
}
.business-info-img{
  width: 38%;
}
.business-info-img>img{
  width: 100%;
}
.business-info-txt{
  width: 58%;
  margin-left: 4%;
  padding-top: 3%;
  border-top: 1px solid #E7E7E7;
}
.business-info-txt>h4{
  font-size: 20px;
  color: #363636;
}
.business-info-txt>p,
.business-info-txt>span{
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 2px;
}
.business-info-txt>span{
  display: block;
  text-align: right;
}
/*business-list*/
.business-list{
  padding-top: 5%;
}
.color{
  background: #F5F5F5;
}
.list-img{
  width: 37.5%;
}
.list-img img{
  width: 100%;
}
.list-txt{
  width: 62.5%;
  padding-top: 3%;
}
.list .list-txt{
  padding-left: 0;
  padding-right: 3%;
}
.list.color .list-txt{
  padding-left: 3%;
  padding-right: 0;
}
.list-txt>h3{
  font-size: 18px;
  font-weight: bold;
}
.list-txt>h3:before{
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-left-color: #005EA6;
}
.list-txt>p{
  margin-top: 2%;
  font-size: 16px;
  line-height: 30px;
  text-indent: 2em;
  text-align: justify;
}
/*
*case.html
*/
.case .index-case-list{
  margin-left: -1.33%;
}
.case .index-case-list li{
  width: 32%;
  margin-left: 1.33%;
}
/* .page{
  margin-top: 5%;
  text-align: center;
}
.page a{
  display: inline-block;
  padding: 10px 15px;
  margin: 3px;
  background: #E8E8E8;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}
.page a:hover{
  background: #005EA6;
  color: #fff;
}
.page a.cur{
  background: #005EA6;
  color: #fff;
} */
/*
*company.html
*/
.company-show{
  position: relative;
}
.company-show .read-more{
  position: absolute;
  left: 50%;
  bottom: 0;
  color: #fff;
}
.company-img{
  width: 46.5%;
}
.company-img img{
  width: 100%;
}
.company-txt{
  width: 53.5%;
  padding-left: 2%;
}
.company-txt>p{
  font-size: 16px;
  line-height: 32px;
  text-indent: 2em;
  text-align: justify;
}
.company-txt>p.name{
  margin-top: 10%;
}
.company-txt>p>span{
  font-weight: bold;
  color: #005EA6;
}
/*.return{*/
  /*display: block;*/
  /*margin-top: 5%;*/
  /*padding-top: 3%;*/
  /*border-top: 1px solid #F5F5F5;*/
  /*text-align: right;*/
  /*font-size: 16px;*/
/*}*/
/*.return img{*/
  /*display: inline-block;*/
  /*margin-right: 15px;*/
/*}*/
/*
*culture.html
*/
/*社会责任*/
.common img{
  width: 100%;
}
.left-con{
  width: 43%;
}
.right-con{
  width: 57%;
  padding-left: 3%;
}
.common h2{
  font-size: 24px;
  color: #069CE6;
  font-weight: bold;
  margin-bottom: 5%;
}
.common p{
  font-size: 16px;
  line-height: 36px;
  text-align: justify;
}
.indent{
  text-indent: 2em;
}
/*公司文化*/
.company-culture{
  background: url("../img/culture_10.jpg") no-repeat center 0;
  background-size: cover;
}
.company-culture .inside-title h2,
.company-culture .inside-title h3,
.company-culture .common h3,
.company-culture .common p{
  color: #fff;
}
.common h3{
  font-size: 20px;
  font-weight: bold;
}
/*公司文化续*/
.continue>div>ul:first-child{
  border-bottom: 1px dashed #EDEDED;
}
.four{
  padding: 5% 0;
}
.four li{
  float: left;
  width: 50%;
  padding: 0 7%;
  text-align: center;
}
.four li:first-child{
  border-right: 1px dashed #EDEDED;
}
.four li span{
  display: block;
  margin: 15px 0;
  font-size: 22px;
  color: #005EA6;
}
.four li p{
  line-height: 30px;
}
/*企业精神*/
.spirit{
  background: #EEEFF0;
}
/*企业荣誉*/
.honor .swiper-container{
  padding: 0 40px;
}
.swiper-button-next, .swiper-button-prev{
  width: 35px;
  height: 35px;
}
.swiper-button-next{
  right: 0;
  background: url("../img/next.png") no-repeat center;
  background-size: 100%;
}
.swiper-button-prev{
  left: 0;
  background: url("../img/prev.png") no-repeat center;
  background-size: 100%;
}
.honor-img{
  display: block;
}
.honor-img img{
  width: 100%;
}
.honor-txt{
  padding: 10px 5px;
  font-size: 16px;
  background: #F0F0F0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.culture-read-more{
  display: block;
  width: 120px;
  height: 40px;
  margin: 20px auto;
  line-height: 38px;
  text-align: center;
  border: 1px solid #969696;
  border-radius: 38px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.culture-read-more:hover{
  background: #005EA6;
  color: #fff;
	cursor:pointer;
}
/*员工生活*/
.life{
  padding-bottom: 5%;
}
.life .container{
  position: relative;
}
.life .swiper-button-prev,
.life .swiper-button-next{
  top: 16%;
}
.life .swiper-button-prev{
  left: auto;
  right: 70px;
}
.life .swiper-button-next{
  right: 10px;
}
.life-txt{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 5px;
  color: #fff;
  background: rgba(0,0,0,.5);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/*
*news_show.html
*/
.news-title{
  text-align: center;
  margin-bottom: 3%;
}
.news-title>h2{
  font-size: 24px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #333;
  border-bottom: 1px solid #E4E4E4;
}
.news-title>p{
  color: #999;
}
.news-con>p{
  line-height: 30px;
  text-indent: 2em;
}
.news-con>img{
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 15px auto;
}
.news-page{
  margin-top: 3%;
  padding-top: 20px;
  border-top: 1px solid #DEDEDE;
  position: relative;
}
.news-page p{
  text-align: left;
  font-size: 14px;
  line-height: 36px;
  color: #666;
}
.news-page p:hover{
  color: #005EA6;
}
.news-page p:hover a{
  color: #005EA6;
}
.page-return{
  display: block;
  position: absolute;
  right: 0;
  top: 20px;
  height: 22px;
  line-height: 22px;
  font-size: 16px;
}
.page-return>img{
  display: inline-block;
  width: 18px;
  margin-right: 5px;
  margin-bottom: 2px;
}
/*
*training.html
*/
.training{
  background: url("../img/training_02.jpg") no-repeat center 0;
  background-size: cover;
}
.training-show{
  color: #fff;
  text-align: center;
}
.training-show>h2{
  font-size: 33px;
  margin-bottom: 5%;
}
.training-show>p{
  font-size: 16px;
  line-height: 32px;
}
.training-img{
  margin-top: 5%;
}
.training-img>img{
  float: left;
  width: 30%;
  margin: 0 1.5%;
}
/*
*zhaoping.html
*/
.job-show{
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(7,17,27,.1);
}
.panel{
  padding: 5% 2%;
}
.panel>div:nth-last-child(2){
  border-bottom: 1px solid #E9EBED;
}
.panel-header{
  width: 100%;
  border-top: 1px solid #E9EBED;
  padding: 10px 20px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.panel-header.active{
  background-color: #005EA6;
}
.panel .panel-header.active span{
  color: #FFFFFF;
}
.panel-header.active span:last-child{
  background: url("../img/job-icon2.png") no-repeat right center;
}
.panel-header>span:first-child{
  float: left;
  font-size: 16px;
}
.panel-header>span:last-child{
  float: right;
  font-size: 14px;
  margin-top: 5px;
  padding-right: 30px;
  background: url("../img/job-icon1.png") no-repeat right center;
}
.panel-body{
  display: none;
  padding: 10px 40px;
}
.panel-body.active{
  display: block;
}
.panel-body>ul{
  border-bottom: 1px solid #E9EBED;
  padding-bottom: 10px;
}
.panel-body>ul>li{
  float: left;
  width: 25%;
  font-size: 14px;
  padding: 5px 0;
}
.panel-body>h3{
  font-size: 14px;
  margin-top: 30px;
}
.panel-body p{
  font-size: 14px;
  line-height: 30px;
}
.panel-body>div{
  margin: 30px 0;
}
.panel-body>h6{
  font-size: 16px;
  padding: 30px 0;
  color: #005EA6;
}
.panel-body>h6>a{
  color: #005EA6;
}
/*
*honor.html
*/
.honors-list>ul>li{
  float: left;
  width: 31%;
  margin: 1%;
}
.honors-list>ul>li span{
  display: block;
  overflow: hidden;
}
.honors-list>ul>li span>img{
  width: 100%;
}

.honors-list>ul>li p{
  padding: 15px 0;
  text-align: center;
  font-size: 18px;
  color: #000000;
  background-color: #F0F0F0;
}

/*
*zhaoping.html 新增
*/
.cate{
  margin-bottom: 3%;
}
.cate>a{
  display: inline-block;
  width: 120px;
  height: 40px;
  margin-right: 3%;
  line-height: 38px;
  border: 1px solid #7A7A7A;
  border-radius: 40px;
  text-align: center;
}
.cate>a:hover{
  background: #005EA6;
  color: #fff;
}
.cate>a.cur{
  background: #005EA6;
  color: #fff;
}

/*分页*/
.page{
  margin-top: 5%;
  text-align: center;
}
.page{
    display: inline-block;
}
.page a{
  display: inline-block;
  padding: 10px 15px;
  margin: 0 3px;
  font-size: 16px;
  color: #666666;
  background: #E8E8E8;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}
.page .active{
  color: #fff;
  background-color: #005EA6;
}
.page a:hover{
  color: #fff;
  background-color: #005EA6;
}
.page li{
	 float: left; 
}


/*分页*/

.index-industry-list li.esp{
  width: 49%;
}

.case-txt p{
	height: 20px;
}



