.banner {
	width: 100%;
}

.banner img {
	display: block;
	width: 100%;
}

.main {
	background-color: #ffffff;
	padding-bottom: 100px;
}

.main .container {
	box-sizing: border-box;
	padding: 0 100px;
}

.main ul.typelist {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	background-color: #f5f5f5;
}

.main ul.typelist li a {
	display: block;
	font-size: 16px;
	color: #666666;
	line-height: 60px;
	padding: 0 60px;
}

.main ul.typelist li.active a {
	background-color: #e65991;
	color: #FFFFFF;
}

.main .title {
	padding-top: 40px;
}

.main .title h5.en {
	font-family: 'bebas';
	font-size: 32px;
	font-weight: 500;
	color: #e65991;
	text-align: center;
	line-height: 64px;
}

.main .title h5.cn {
	font-size: 50px;
	font-weight: bold;
	color: #333333;
	text-align: center;
	line-height: 94px;
	background-image: url(../images/title_bg.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}

.main .title p.summary {
	font-size: 14px;
	color: #666666;
	line-height: 24px;
	text-align: center;
}

.main ul.img_list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin-left: -35px;
    margin-right: -35px;
    padding-top: 30px;
}

.main ul.img_list li {
    width: calc((100% - 210px) / 3);
    margin: 0 35px;
	margin-bottom: 60px;
	border-bottom: 1px solid #e65991;
}

.main ul.img_list li .pic {
	overflow: hidden;
}

.main ul.img_list li .pic img {
    display: block;
	width: 100%;
	transition: 0.5s;
}

.main ul.img_list li p {
    font-size: 16px;
    color: #000000;
    text-align: center;
    line-height: 60px;
}

.main ul.img_list li:hover .pic img {
	transform: scale(1.2);
}

.main #pagination {
	text-align: center;
	display: block;
	height: auto;
	margin-top: 30px;
}

.main #pagination .btn-group {
	display: inline-block;
	height: auto;
}

.main #pagination #page_center_botton {
	display: none;
}

.main #pagination .btn-group .btn {
	font-family: arial;
	font-size: 14px;
	font-weight: bold;
	color: #333333;
	padding: 10px 15px;
	background-color: #ffffff;
	/*border: 1px solid #d2d2d2;*/
	margin: 0 5px;
	display: inline-block;
}

.main #pagination .btn-group a.btn {
	background-color: #e65991;
	color: #FFFFFF;
}

@media screen and (max-width: 550px) {

	.main {
		padding-bottom: 80px;
	}

	.main .title p.summary {
		line-height: 36px;
	}

	.main .container {
		padding: 0 10px;
	}

	.main ul.typelist {
		display: none;
	}

	.main .title {
		padding-top: 20px;
	}

	.main .title h5.en {
		font-size: 24px;
		line-height: 32px;
	}

	.main .title h5.cn {
		font-size: 18px;
		line-height: 36px;
	}

	.main ul.img_list {
		padding-top: 20px;
		margin-left: -5px;
		margin-right: -5px;
	}

	.main ul.img_list li {
		width: calc((100% - 20px) / 2);
		margin: 0 5px;
		margin-bottom: 10px;
	}

	.main ul.img_list li .pic {
		padding: 0 5px;
	}

	.main ul.img_list li p {
		font-size: 16px;
		line-height: 36px;
	}

}