/*动态上移出现*/

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}


/*动态左移出现*/

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.flap {
	/*visibility: hidden;*/
	animation-duration: 1s;
	-moz-animation-duration: 1s;
	-webkit-animation-duration: 1s;
	animation-fill-mode: backwards;
	-moz-animation-fill-mode: backwards;
	-webkit-animation-fill-mode: backwards
}
/*banner*/
.img img {
    width: 100%;
}

/*内容框架*/
.box {
	padding-top: 100px;
	padding-bottom: 80px;
	width: 1200px;
	min-width: 1200px;
	margin: 0px auto;
}
.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/*清除浮动效果*/

.clearfix:before,
.clearfix:after,
.container:before,
.container:after {
	content: " ";
	display: table
}

.clearfix:after,
.container:after {
	clear: both
}

/*内容导航样式*/
.subpage-nav {
	font-size: 14px;
	overflow: hidden;
	margin-bottom: 50px;
	padding-left: 15px;
}

.subpage-nav-one {
	width: 94px;
	height: 30px;
	line-height: 30px;
	margin-bottom: 10px;
	display: inline-block;
	color: #464a53;
	border-radius: 30px;
	text-align: center;
	background-color: white;
}

.current,
.subpage-nav-one:hover {
	width: 94px;
	height: 30px;
	color: #fff;
	background-color: #208bd3;
	display: inline-block;
}

/*内容列表*/
.case-wrap {
	overflow: hidden;
	width: 100%;
}

.case-item-4{
	width: 22.5%;
	float: left;
	position: relative;
	min-height: 1px;
	margin: 20px 15px;
}

.case-item{
	position: relative;
	overflow: hidden;
	display: block;
}

.case-item-img {
	width: 100%;
	height: 390px;
	/*padding: 20px 14px;*/
	display: block!important;
}

.case-item-tit {
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	/*padding: 0 10px;*/
	width: 100%;
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	background-color: rgba(0,0,0,.5);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7F000000,endColorstr=#7F000000)
}

.case-item-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0);
}
.case-item:hover .case-item-tit {
	bottom: -50px
}

.case-item:hover .case-item-mask {
	background-color: rgba(0, 0, 0, .3);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000)
}

.case-item-pop {
	position: absolute;
	opacity: 0;
	left: 0;
	top: 150%;
	margin-top: -100px;
	padding-top: 40px;
	width: 100%;
	height: 160px;
	color: #fff;
	text-align: center;
	background-color: rgba(0, 72, 156, .8);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#C800489C,endColorstr=#C800489C)
}

.case-item:hover .case-item-pop {
	top: 50%;
	opacity:1;
}
.case-item-pop-tit {
	color: white;
	display: block;
	font-size: 16px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}

.case-item-pop-txt {
	padding-left: 15px;
	padding-right: 15px;
	margin: 15px 0;
	height: 40px;
	font-size: 12px;
	line-height: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical
}

.case-item-pop-btn {
	border: 1px solid #fff;
	background: url(../img/to-more-after.png);
}

.case-item-pop-btn:after {
	background-repeat: no-repeat;
}
.case-item-pop-btn:hover{
	background-color: #208BD3;
	border: 1px solid #208BD3;
}
.case-item-tit,
.case-item-pop,
.case-item-mask {
	transition: all .3s cubic-bezier(0.215, .61, .355, 1);
	-moz-transition: all .3s cubic-bezier(0.215, .61, .355, 1);
	-webkit-transition: all .3s cubic-bezier(0.215, .61, .355, 1)
}
.more-btn {
	position: relative;
	display: inline-block;
	width: 65px;
	height: 22px;
	color: #dbdbdb;
	border-radius: 22px;
	border: 1px solid #dbdbdb;
	transition: all .6s cubic-bezier(0.215, .61, .355, 1);
	-moz-transition: all .6s cubic-bezier(0.215, .61, .355, 1);
	-webkit-transition: all .6s cubic-bezier(0.215, .61, .355, 1)
}


/*分页*/
.page-box {
	overflow: hidden;
	padding-top: 50px;
	padding-left: 15px;
}

.page-number {
	overflow: hidden;
	float: left;
	margin-left: -5px;
	margin-right: -5px;
	height: 60px
}

.page-number a,
.page-number b,
.page-number i {
	display: block;
	float: left;
	margin: 5px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #b2b2b2;
	text-align: center;
	border-radius: 40px;
	border: 1px solid #b2b2b2;
}

.page-number b {
	color: #fff;
	font-weight: 700;
	background-color: #b0b0b0
}

.page-number i {
	width: 30px;
	border: 0
}

.page-number a:hover {
	margin-top: 0;
	width: 50px;
	height: 50px;
	line-height: 50px;
	color: #fff;
	border: 1px solid #208bd3;
	background-color: #208bd3;
}

.page-turn {
	overflow: hidden;
	float: right;
	margin-top: 10px
}

.page-turn .more-btn {
	display: block;
	width: 91px;
	height: 38px;
	line-height: 38px;
	border: 1px solid #208bd3;
	background-color: #208bd3
}

.page-turn .more-btn.cur {
	cursor: default;
	border-color: #dbdbdb;
	background-color: transparent
}

.page-turn .page-turn-left {
	float: left;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right-color: #dbdbdb;
}

.page-turn .page-turn-right {
	float: right;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-left: 0;
}

.to-last-btn {
	margin-top: 16px;
	width: 30px;
	height: 7px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	background: url(../img/to-last-before.png) no-repeat center;
}

.to-next-btn {
	margin-top: 16px;
	width: 30px;
	height: 7px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	background: url(../img/to-more-after.png) no-repeat center;
}
.page-turn-left:after {
	top: 17px;
	right: 51px;
	background-repeat: no-repeat;
}

.page-turn-right:after {
	top: 17px;
	right: 22px;
	background-repeat: no-repeat;
}

.page-turn-left.cur:after,
.page-turn-left.cur:hover:after {
	background-repeat: no-repeat;
}

.page-turn-left:hover:after {
	background-repeat: no-repeat;
}

.page-turn-right.cur:after,
.page-turn-right.cur:hover:after {
	background-repeat: no-repeat;
}

.page-turn-right:hover:after {
	background-repeat: no-repeat;
}
