/* common */
a{
	color: #fff;
}
.fl{
	float: left;
}
.fr{
	float: right;
}
.one-line{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.two-line{
	-ms-word-break: break-all;
	word-break: break-all;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.three-line{
	-ms-word-break: break-all;
	word-break: break-all;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.four-line{
	-ms-word-break: break-all;
	word-break: break-all;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.eight-line{
	-ms-word-break: break-all;
	word-break: break-all;
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/*-- swiper --*/
.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-repeat: center center;
}
/* about通用 */
.about-img {
    overflow: hidden;
}
.about-img .ai-item {
    width: 150px;
    height: 400px;
    margin-right: 12px;
    border-radius: 75px;
    overflow: hidden;
    float: left;
    position: relative;
    margin-top: 120px;
}
.about-img .ai-item img {
    height: 400px;
    position: absolute;
    max-width: 9999px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.about-img .ai-item:nth-child(2n+2){
	margin-top: 62px;
}
.about-img  .ai-item:nth-child(3n+3){
	margin-right: 0;
}
.about-title {
    margin-bottom: 48px;
}
.about-title h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
}
.about-title .at-line {
    font-size: 12px;
    color: #ccc;
}
.about-title .at-line img {
    margin-right: 4px;
}
.about-cont {
    font-size: 14px;
    color: #666;
    line-height: 24px;
}
/* 标题通用 */
.common-title {
    text-align: center;
	margin-bottom: 50px;
}
.common-title h3 {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}
.common-title p {
    color: #999;
    margin-bottom: 2px;
	text-transform: uppercase;
}
.common-title .line {
    display: inline-block;
    width: 34px;
    height: 6px;
    background-color: #3071C8;
    border-radius: 3px;
}
/* 页面通用 */
.main-cont {
    padding: 62px 0 85px;
    overflow: hidden;
	position: relative;
}
.cont-nav {
    margin-bottom: 35px;
	text-align: center;
}
.cont-nav .cn-item {
    display: inline-block;
    height: 42px;
    line-height: 42px;
    padding: 0 32px;
    border-radius: 21px;
    font-size: 14px;
    color: #666;
    margin-right: 20px;
	margin-bottom: 10px;
}
.cont-nav .cn-item.active,.cont-nav .cn-item:hover{
	background-color: #3071C8;
	color: #fff;
}
/* index */
.index-floor{
	padding: 60px 0 50px;
}
.index-more {
    background: #F5F5F5;
    width: 135px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #666;
    border-radius: 22.5px;
    display: inline-block;
    margin-top: 48px;
    cursor: pointer;
	transition: all 1s;
	-webkit-transition: all 1s;
}
.index-more.alone{
	display: block;
	background: #fff;
	margin: 58px auto 0;
}

.index-about {
    padding-bottom: 69px;
    overflow: hidden;
	position: relative;
}
.index-about .ia-left {
    float: left;
    margin-right: 50px;
}

.index-about .ia-right {
    padding-top: 83px;
}
.index-product {
    background: url(../images/product-bg.png) no-repeat center;
	background-size: cover;
}
.index-product .ip-item {
    float: left;
    margin-right: 3%;
    width: calc(91% / 4);
}
.index-product .ip-item:nth-child(4n+4){
	margin-right: 0;
}
.index-product .ipi-img {
    border-radius: 20px;
    overflow: hidden;
}
.index-product .ipi-name{
	background: url(../images/product-name-bg.png) no-repeat center;
	height: 62px;
	margin-top: -15px;
	line-height: 75px;
	text-align: center;
	font-size: 14px;
	padding: 0 18px;
	color: #333;
}
.index-news .in-item {
    float: left;
    margin-right: 3%;
    width: calc(94% / 3);
    overflow: hidden;
    border-radius: 20px;
}
.index-news .in-item:nth-child(3n+3){
	margin-right: 0;
}
.index-news .ini-info {
    background: #F5F5F5;
	padding: 26px 20px;
}
.index-news .ini-title {
    font-size: 18px;
    color: #666;
}
.index-news .ini-time {
    font-size: 14px;
    color: #999;
    margin-top: 8px;
}
.index-news .index-more.alone{
	background-color: #F5F5F5;
}
.index-more:hover,.index-more.alone:hover{
	background: #3071C8;
	color: #fff;
}
/* 关于我们 */
.about-cont.main-cont{
	padding-top: 0;
}
.about-cont .ac-left {
    width: calc(100% - 540px);
    padding-top: 80px;
}
.about-cont .cont-nav {
	text-align: left;
}
.about-cont .cn-item{
	background-color: #F5F5F5;
}
/* 产品中心 */
.product-list .pl-item{
	float: left;
	margin-right: 3%;
	width: calc(91% /4);
	background-color: #F2F2F2;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 50px;
}
.product-list .pl-item:nth-child(4n+4){
	margin-right: 0;
}
.product-list .pli-img {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f2f2f2;
	text-align: center;
}
.product-list .pli-img img{
	width: 100%;
}
.product-list .pli-name {
    text-align: center;
    padding: 18px;
    color: #666;
    font-size: 14px;
    line-height: 1;
}
/* 产品详情 */
.product-cont .pcd-left {
    width: 46%;
    border: 1px solid #EBEBEB;
    padding: 40px;
}
.product-cont .pcd-right {
    width: 50%;
}
.product-cont .pcd-name {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}
.product-cont .pcd-info{
	color: #666;
	font-size: 14px;
}
/* 新闻中心 */
.news-list .nl-item{
	background-color: #F5F5F5;
	padding: 18px;
	overflow: hidden;
	margin-bottom: 20px;
}
.news-list .nl-img{
	width: 15%;
}
.news-list  .nl-img img{
	height: 100%;
	width: 100%;
}
.news-list .nl-cont{
	width: 82%;
	padding-top: 10px;
}
.news-list .nlc-title{
	color: #000;
	font-size: 18px;
	margin-bottom: 12px;
}
.news-list .nlc-bref{
	font-size: 14px;
	color: #9A9A9A;
	margin-bottom: 12px;
}
.news-list .nlc-time{ 
	color: #CCCCCC;
	font-size: 12px;
	margin-bottom: 12px;
}
.news-list .nlc-time img{
	margin-right: 5px;
}
.news-list .nlc-more{
	border: 1px solid #E1E1E1;
	width: 84px;
	height: 32px;
	font-size: 12px;
	color: #9A9A9A;
	line-height: 32px;
	text-align: center;
	background-color: #fff;
	border-radius: 16px;
}

.news-list .nlc-more:hover{
	background-color: #3071C8;
	border: 1px solid #3071C8;
	color: #fff;
}
/* 新闻详情 */
.news-cont .nc-title{
	color: #003334;
	font-size: 24px;
	margin-bottom: 16px;
}
.news-cont .nc-time{
	color: #9A9A9A;
	font-size:14px ;
	margin-bottom: 30px;
}
.news-cont .nc-time img{
	margin-right: 6px;
}
.news-cont .nc-info{
	color:#666 ;
	font-size: 14px;
	margin-bottom: 40px;
}
/* 招商加盟 */
.business-cont .bcd-title{
	font-size: 18px;
	color: #000;
	text-align: center;
}
/* 人才资源 */
.recruit-cont .rc-item{
	margin-bottom: 20px;
	border: 1px solid #EBEBEB;
}
.recruit-cont .rci-name{
	height: 60px;
	line-height: 60px;
	padding: 0 15px;
	font-size: 18px;
	color: #3172C8;
	background-image: url(../images/open.png);
	background-repeat: no-repeat;
	background-position: calc(100% - 15px) center;
	cursor: pointer;
}
.recruit-cont .rci-info{
	display: none;
	color: #666;
	padding: 30px 25px;
	font-size: 14px;
}
.recruit-cont .rc-item.active .rci-name{
	background-color: #1D74AE;
	color: #fff;
	background-image: url(../images/close.png);
}
.recruit-cont .rc-item.active .rci-info{
	
	display: block;
	
	
}
/* 技术服务 */
.sever-list .sl-item {
    float: left;
    width: calc(92%/3);
    margin-right: 4%;
    margin-bottom: 50px;
}
.sever-list .sl-item:nth-child(3n+3){
	margin-right: 0;
}
.sever-list .sli-name {
    color: #333;
    font-size: 18px;
    margin-top: 22px;
}
.sever-list .sli-bref {
    color: #999999;
    font-size: 14px;
    margin-top: 14px;
}
/* 技术服务详情 */
.sever-cont .sc-title {
    text-align: center;
    color: #333;
    font-size: 24px;
    margin-bottom: 30px;
}
.sever-cont .sc-info{
	color: #666;
	font-size: 14px;
}
/* 联系我们 */
.contact-cont .cc-title {
    font-size: 24px;
    margin-bottom: 35px;
}
.contact-cont .cc-info p {
    font-size: 14px;
    line-height: 26px;
}
.contact-cont .cc-code {
    overflow: hidden;
    margin-top: 40px;
    text-align: center;
}
.contact-cont .ccc-item {
    margin-right: 38px;
}
.gallery ul {
  margin-right: -3%;
}
.gallery li {
  float: left;
  width: 22%;
  margin: 0 3% 30px 0;
  text-align: center;
}
.gallery li h3 {
  font-size: 14px;
  margin: 15px 0 0;
  height: 38px;
}
.gallery .projectslist li {
  width: 17%;
}
.gallery .projectslist .img {
  overflow: hidden;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
#zoom {z-index: 99990;position: fixed;top: 0;left: 0;display: none;width: 100%;height: 100%;background: rgba(0, 0, 0, 0.65);filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";}
#zoom .content {z-index: 99991;position: absolute;top: 50%;left: 50%;width: 200px;height: 200px;background: #ffffff no-repeat 50% 50%;padding: 0;margin: -100px 0 0 -100px;box-shadow: -20px 20px 20px rgba(0, 0, 0, 0.3);border-radius: 4px;}
#zoom .content.loading {background-image: url('../images/loading.gif');}
#zoom img {display: block;max-width: none;background: #ececec;box-shadow: 0 1px 3px rgba(0,0,0,0.25);border-radius: 4px;}
#zoom .close {z-index: 99993;position: absolute;top: 0;right: 0;width: 49px;height: 49px;cursor: pointer;background: transparent url('../images/close.png') no-repeat 50% 50%;opacity: 1;filter: alpha(opacity=100);border-radius: 0 0 0 4px;}
#zoom .previous,#zoom .next {z-index: 99992;position: absolute;top: 50%;overflow: hidden;display: block;width: 49px;height: 49px;margin-top: -25px;}
#zoom .previous {left: 0;background: url('../images/arrows.png') no-repeat 0 0;border-radius: 0 4px 4px 0;}
#zoom .next {right: 0;background: url('../images/arrows.png') no-repeat 100% 0;border-radius: 4px 0 0 4px;}
#zoom .close:hover {background-color: #da4f49;}
#zoom .previous:hover,#zoom .next:hover {background-color: #0088cc;}

@media only screen and (max-width: 1200px) {
	.container{
		width: 100%;
		padding: 0 15px;
	}
}
@media only screen and (max-width: 992px) {
	.index-more{
		margin-top: 20px;
	}
	.index-floor {
	    padding: 25px;
	}
	.index-more.alone{
		margin: 20px auto 0;
	}
	.common-title{
		margin-bottom: 25px;
	}
	
	.index-about{
		padding-bottom: 30px;
	}
	.index-about .ia-left{
		float: none;
		margin-right: 0;
		text-align: center;
		padding-top: 25px;
	}
	.about-img {
	    display: inline-block;
	}
	.about-title {
	    /* position: absolute;
	    top: 15px; */
	    margin-bottom: 0;
	}
	.index-about .ia-right {
	    padding-top: 35px;
	}
	.about-img .ai-item{
		width: 88px;
	}
	
}
@media only screen and (max-width: 480px){
	.right-wrap {
	    position: inherit;
	}
	.main-cont{
		padding: 30px 0;
	}
	.banner .swiper-pagination{
		display: none;
	}
	.index-product .ip-item,.index-news .in-item,.product-list .pl-item,.sever-list .sl-item {
	    float: none;
	    width: 100%;
		margin-bottom: 20px;
		margin-right: 0;
	}
	.index-product .ipi-img{
		text-align: center;
	}
	.banner-text{
		top: 10%;
	}
	.banner-text .bx-title p {
	    font-size: 18px;
	    line-height: 23px;
	}
	.banner-text .bx-line{
		margin: 8px 0;
	}
	.banner-text .bx-bref span {
	    font-size: 18px !important;
	}
	.about-cont .about-title{
		top: 30px;
	}
	.about-cont .ac-left {
	    float: none;
	    width: 100%;
	    padding-top: 110px;
	}
	.about-cont .cont-nav {
	    text-align: center;
	    margin-bottom: 18px;
	}
	.about-cont .ac-right {
	    float: none;
	    width: 100%;
	    text-align: center;
	}
	.news-list .nl-img,.news-list .nl-cont{
		float: none;
		width: 100%;
		margin-right: 0;
	}
	.recruit-cont .rci-name {
	    font-size: 16px;
	}
}