/* 业务领域 */
body {
    padding-top: 84px;
}

.banner {
    width: 100%;
    height: 400px;
    margin-bottom: 86px;
}

.banner img {
    width: 100%;
    height: 100%;
}

.view-title {
    width: 100%;
    height: 75px;
    position: relative;
    /*margin-bottom: 40px;*/
    margin-bottom: 0px;
    padding-top: 30px;
}

.view-title .en-title {
    width: 100%;
    font-size: 62px;
    font-weight: bold;
    color: #eeeeee;
    position: absolute;
    z-index: -1;
    top: -5px;
    left: 0;
    text-align: center;
	letter-spacing: 3px;
	font-family:Arial, Helvetica, sans-serif;
}
.view-title .zh-title {
    width: 100%;
    font-size: 38px;
    color: #333333;
    text-align: center;
}

.case-list{
	min-height: 500px;
	margin-top:40px;
}
.case-list .top-text{
	width: 100%;
	text-align: center;
	font-size: 14px;
	color: #666666;
	margin-bottom:25px;
}
.case-list .case-list-item{
	margin-bottom: 60px;
	width: 100%;
	min-height: 600px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-content: flex-start;
}
.case-list .case-list-item .link:nth-child(-n + 3){
	margin-top: 30px;
	padding-top: 0;
}
.case-list .case-list-item .link .img-box{
	width: 437px;
	height: 294px;
	overflow: hidden;
}
.case-list .case-list-item .link .img-box img{
	width: 100%;
	height: 100%;
	transition: 1000ms;
}
.case-list .case-list-item .link:hover .img-box img{
	transform: scale(1.2);
}
.case-list .case-list-item .link{
	display: flex;
	width: 33.333%;
	padding-top: 30px;
	align-items: flex-start;
	flex-direction: column;
	justify-content: flex-start;
	border-bottom: solid 1px #eeeeee;
	/*border-right: solid 1px #eeeeee;*/
	color: #333333;
	position: relative;
	padding-bottom:30px;
}
.case-list .case-list-item .link::before{
	content: "";
	width: 0%;
	height: 1px;
	position: absolute;
	left: 50%;
	bottom: -1px;
	transition: 600ms;
	background-color: #08377b;
}
.case-list .case-list-item .link:hover:before{
	width: 100%;
	left: 0%;
}
.case-list .case-list-item .link:nth-child(3n - 1){
	align-items: center;
	border-left: solid 1px #eeeeee;
	border-right: solid 1px #eeeeee;
	width: calc(33.33% + 22px);
}
.case-list .case-list-item .link:nth-child(3n - 2){
	width: calc(33.33% - 11px);
}
.case-list .case-list-item .link:nth-child(3n){
	width: calc(33.33% - 11px);
	align-items: flex-end;
	border-right: none;
}
.case-list .case-list-item .link img{
	width: 437px;
	height: 294px;
}
.case-list .case-list-item .link .case-title{
	width: 437px;
	text-align: center;
	font-size: 22px;
	margin-bottom: 8px;
	margin-top: 24px;
}
.case-list .case-list-item .link .det-text{
	width: 437px;
	text-align: center;
	font-size: 14px;
	color: #999999;
}

.page-list{
	height: 50px;
	margin-bottom: 80px;
}
.page-list .center-box{
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-list .center-box .page-link{
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 100px;
	text-align: center;
	line-height: 50px;
	font-size: 16px;
	color: #999999;
	margin: 0 10px;
	border: solid 1px #eaeaea;
}
.page-list .center-box .page-link.act{
	background-color: #08377b;
	color: #ffffff;
}