/*
* @description: 首页样式
 *@author:王奉
* @update: name(xxxx-xx-xx xx:xx)
 */

.banner {
	width: 100%;
	height: 510px;
	min-width: 1200px;
	position: relative;
	z-index: 0;
	background: url(../images/index/bg.png) no-repeat center;
	/* background: linear-gradient(309deg, #3ee5e9, #275ffe, #5fc0d0, #5d76ff, #275ffe, #00f2ff); */
	/* background-size: 1200% 1200%; */
	/* -webkit-animation: AnimationName 27s ease infinite; */
	/* -moz-animation: AnimationName 27s ease infinite; */
	/* -o-animation: AnimationName 27s ease infinite; */
	/* -ms-animation: AnimationName 27s ease infinite; */
	/* animation: AnimationName 27s ease infinite */
}

.pronav {
	position: relative;
	width: 270px;
	height: 600px;
	float: left;
	background: #fff;
	box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	margin: 40px 0 0 0;
}

.pronav-title {
	text-align: left;
	text-indent: 23px;
	color: #222;
	font-size: 14px;
	height: 48px;
	line-height: 48px;
}

.pronav-ul {
	width: 100%;
	height: 100%;
}

.pronav-site {
	position: relative;
	float: left;
	height: 90px;
	line-height: 1;
	width: 100%;
	cursor: pointer;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-top: 1px solid #eceff6;
}

.pronav-site:hover {
	background: #f0f2f8;
}

.pronav-site-con {
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	line-height: 76px;
	vertical-align: middle;
	transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transition: all .2s;
	-moz-transition: all .2s;
	-o-transition: all .2s;
	-ms-transition: all .2s;
	-webkit-transition: all .2s;
}

.pronav-site-con :hover {
	transform: translate3d(0, -3px, 0);
	-moz-transform: translate3d(0, -3px, 0);
	-o-transform: translate3d(0, -3px, 0);
	-webkit-transform: translate3d(0, -3px, 0);
	-ms-transform: translate3d(0, -3px, 0)
}

.pronav-icon {
	width: 45px;
	height: 45px;
	margin: 22px 10px 0 20px;
	display: inline-block;
	vertical-align: middle;
	vertical-align: top;
}

.pronav-box {
	width: calc(100% - 93px);
	display: inline-block;
	vertical-align: top;
	margin-top: 20px;
}

.mt15 {
	margin-top: 15px;
}

.pronav-box-name {
	color: #3a405b;
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	margin-bottom: 10px;
}

.pronav-box-detail {
	color: #70758c;
	font-size: 12px;
	line-height: 20px;
}

.proban {
	width: 900px;
	height: 600px;
	float: right;
	box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
	margin-top: 40px;
}


/*轮播*/

.slideBox {
	width: 900px;
	height: 480px;
	overflow: hidden;
	position: relative;
}

.slideBox .bd {
	position: relative;
	height: 100%;
	z-index: 0;
}

.slideBox .bd li {
	zoom: 1;
	vertical-align: middle;
}

.slideBox .bd img {
	width: 100%;
	height: 100%;
	display: block;
}


/* 下面是前/后按钮代码，如果不需要删除即可 */

.slideBox .prev,
.slideBox .next {
	position: absolute;
	left: 3%;
	top: 50%;
	margin-top: -25px;
	display: block;
	width: 32px;
	height: 40px;
	opacity: 0.2;
	background: url(../images/index/btn_lunbo_left_n.png) no-repeat;
}

.slideBox .next {
	width: 32px;
	height: 40px;
	left: auto;
	right: 3%;
	background: url(../images/index/btn_lunbo_right_n.png) no-repeat;
	opacity: 0.2;
}

.slideBox .prev:hover,
.slideBox .next:hover {
	filter: alpha(opacity=100);
	opacity: 1;
}

.slideBox .prevStop {
	display: none;
}

.slideBox .nextStop {
	display: none;
}

.pro-numberbar {
	color: #333;
	z-index: 4;
	position: relative;
	z-index: 2;
	background: #fff;
	padding-bottom: 1;
	height: 120px;
	border-radius: 0 0 5px 5px;
}

.pro-numberlist {
	text-align: left;
	font-size: 0;
}

.pro-numberitem {
	display: inline-block;
	width: 293px;
	float: none;
	font-family: HelveticaNeueLTPro;
	text-align: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	text-align: right;
	padding: 38px 20px 0 0;
}

.pro-numwrap {
	width: auto;
}

.pro-num {
	font-size: 30px;
	line-height: 1;
	vertical-align: middle;
	color: #222;
}

.pro-siteservicenum {
	width: auto;
	display: inline-block;
	text-align: right;
}

.pro-numberdesc {
	width: auto;
	font-size: 16px;
	color: #70758c;
	vertical-align: middle;
	line-height: 45px;
	margin-left: 14px
}

@-webkit-keyframes AnimationName {
	0% {
		background-position: 0 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0 50%
	}
}

@-moz-keyframes AnimationName {
	0% {
		background-position: 0 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0 50%
	}
}

@-o-keyframes AnimationName {
	0% {
		background-position: 0 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0 50%
	}
}

@-ms-keyframes AnimationName {
	0% {
		background-position: 0 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0 50%
	}
}

@keyframes AnimationName {
	0% {
		background-position: 0 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0 50%
	}
}


/*解决方案*/

.headline {
	display: block;
	font-size: 32px;
	padding: 90px 0 90px 0;
	line-height: 60px;
	color: #3a405b;
}
.scheme{
	padding-bottom:40px;
}
.scheme-name {
	color: #4b5270;
	font-size: 20px;
	position: relative;
	padding-left: 35px;
}

.scheme-name:before {
	content: "●";
	color: #bac9da;
	position: absolute;
	left: 10px;
}
.scheme .btn-more{
	
   margin: -20px 0 40px 20px;
}
.scheme-detail {
	color: #70758c;
	font-size: 16px;
	margin: 15px 0 35px 35px;
}
.scheme .fr img{
	margin-top:30px;
}
.btn-more {
	display: block;
	width: 144px;
	height: 62px;
	line-height: 62px;
	text-align: center;
	color: #fff;
	font-size: 14px;
	background: url(../images/index/btn_n.png) no-repeat center;
}

.btn-more:hover {
	background: url(../images/index/btn_s.png) no-repeat center;
}


/*团队*/

.team {
	width: 100%;
	background: #f5f8ff;
	height: auto;
	margin-top: 20px;
	overflow: hidden;
	padding-bottom: 90px;
}

.team-con {
	width: 320px;
	text-align: left;
	margin-top: 40px;
}

.team-img {
	float: left;
}

.team-text {
	display: block;
	color: #4b5270;
	font-size: 20px;
	line-height: 45px;
	margin-left: 20px;
	float: left;
}

.team .btn-more {
	margin: 20px 0 0 150px;
}


/*体验*/

.function-menu {
	height: 42px;
	font-size: 14px;
	background: #fff;
}

.function-menu-con {
	float: left;
	width: 14.13%;
	text-align: center;
	line-height: 59px;
	height: 59px;
	font-size: 16px;
	cursor: auto;
	color: #70758c;
	overflow: hidden;
	background: #fff;
	border: 1px solid #d9dde8;
	cursor: pointer;
	margin-left: -1px;
}

.tabcon {
	width: 90%;
	margin: 80px auto 0;
}

.tabcon-con {
	display: none;
}
.bbimg{
	margin-bottom: 20px;
}
.tabcon-show {
	display: block;
}

.tabcon-name {
	font-size: 26px;
	color: #4b5270;
	font-weight: normal;
	margin: 50px 0 15px;
}

.tabcon-detail {
	color: #70758c;
	font-size: 16px;
	line-height: 30px;
}

.mt40 {
	margin-top: 40px;
}

.off {
	background: #f0f2f8;
	font-weight: bold;
}



/*新闻*/

.inforlist {
	height: 285px;
}

.inforlist-list {
	width: 30%;
	border-radius: 5px;
	float: left;
	padding: 30px 20px 12px;
	overflow: hidden;
	margin: 0 auto 10px;
}

.inforlist-list-p {
	overflow: hidden;
	height: 50px;
	line-height: 50px;
}

.inforlist-list-title {
	float: left;
	font-size: 20px;
	font-weight: bold;
	color: #3a405b;
}

.inforlist-list-column {
	padding-left: 65px;
	background: url('../images/index/icon_dongtAI.png') no-repeat;
}

.inforlist-list-problem {
	padding-left: 65px;
	background: url('../images/index/icon_zixun.png') no-repeat;
}

.inforlist-list-case {
	padding-left: 65px;
	background: url('../images/index/icon_tuiguang.png') no-repeat;
}

.inforlist-list-more {
	float: right;
	color: #9196ad;
	font-size: 14px;
}

.inforlist-list-dl {
	overflow: hidden;
	margin: 8px 0;
}

.inforlist-list-link {
	display: block;
	max-width: 256px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	color: #70758c;
	text-align: left;
}

.inforlist-list-link:hover {
	color: #4992fa;
}

.inforlist-list-dt {
	float: left;
	font-weight: normal;
	height: 26px;
	line-height: 26px;
}

.inforlist-list-dt-dd {
	float: right;
	color: #9196ad;
}


