.banner {
	width: 100%;
}

.banner img {
	display: block;
	width: 100%;
}

.main {
	background-color: #FFFFFF;
	padding-bottom: 120px;
	padding-top: 100px;
}

.main .product .l {
	width: 280px;
}

.main .product .l .title {
	padding-bottom: 25px;
	border-bottom: 2px solid #e65991;
}

.main .product .l .title h5.en {
	font-family: 'bebas';
	font-size: 32px;
	color: #e65991;
	line-height: 64px;
	font-weight: 500;
}

.main .product .l .title h5.cn {
	font-size: 50px;
	color: #333333;
	line-height: 60px
}

.main .product .l ul.typelist {
	padding-top: 20px;
}

.main .product .l ul.typelist>li {
	margin-bottom: 7px;
}

.main .product .l ul.typelist>li>a {
	display: block;
	font-size: 16px;
	color: #333333;
	line-height: 50px;
	width: 100%;
	height: 50px;
	box-sizing: border-box;
	padding-left: 20px;
	background-color: #ffffff;
	cursor: pointer;
	border-bottom: 1px dashed #e65991;
}

.main .product .l ul.typelist>li>a:hover {
	background-color: #fafafa;
	background-image: url(../images/product_hover.png);
	background-repeat: no-repeat;
	background-position: right 20px center;
}

.main .product .l ul.typelist>li>a.active {
	color: #FFFFFF;
	background-color: #e65991;
	background-image: url(../images/product_active.png);
	background-repeat: no-repeat;
	background-position: right 20px center;
}

.main .product .l ul.typelist>li ul.uls2 {
	padding-top: 10px;
	display: none;
	box-sizing: border-box;
	padding: 0 20px;
}

.main .product .l ul.typelist>li ul.uls2 li a {
	display: block;
	font-size: 14px;
	color: #4c4c4c;
	line-height: 45px;
	height: 45px;
	width: 100%;
	box-sizing: border-box;
	padding-left: 30px;
	position: relative;
}

.main .product .l ul.typelist>li ul.uls2 li a.active {
	color: #e65991;
	background-image: url(../images/product_active1.png);
	background-repeat: no-repeat;
	background-position: right 30px center;
	border-bottom: 1px solid #e65991;
}

.main .product .l ul.typelist>li ul.uls2 li a.active::after {
	content: "";
	width: 2px;
	height: 14px;
	background-color: #e65991;
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
}

.main .product .l ul.typelist>li ul.uls2 li a:hover {
	color: #e65991;
}

.main .product .r {
	width: calc(100% - 360px);
}

.main .product .r .type_card {
	width: 100%;
	height: 125px;
	box-sizing: border-box;
	padding: 0 30px;
	background-color: #e65991;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	padding-top: 20px;
}

.main .product .r .type_card h5 {
	font-size: 21px;
	font-weight: bold;
	color: #ffffff;
	line-height: 41px;
}

.main .product .r .type_card p {
	font-size: 14px;
	color: #ffffff;
	line-height: 34px;
}

.main .product .r .type_card a.contact {
	display: block;
	width: 146px;
	height: 40px;
	border-radius: 20px;
	box-sizing: border-box;
	border: 1px solid #FFFFFF;
	font-size: 18px;
	color: #FFFFFF;
	text-align: center;
	line-height: 40px;
	margin-top: 24px;
}

.main .product .r ul.product_list {
	display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
	flex-flow: row wrap;
	-webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
	margin-left: -12px;
	margin-right: -12px;
	padding-top: 20px;
}

.main .product .r ul.product_list li {
	width: calc((100% - 72px) / 3);
	margin: 0 12px;
	margin-bottom: 20px;
}

.main .product .r ul.product_list li .pic {
	overflow: hidden;
}

.main .product .r ul.product_list li .pic img {
	display: block;
	width: 100%;
	transition: 0.5s;
	image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.main .product .r ul.product_list li p {
	font-size: 15px;
	color: #333333;
	line-height: 75px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.main .product .r ul.product_list li:hover .pic img {
	transform: scale(1.2);
}

.main #pagination {
	text-align: center;
	display: block;
	height: auto;
	/*margin-top: 20px;*/
}

.main #pagination .btn-group {
	display: inline-block;
	height: auto;
}

.main #pagination #page_center_botton {
	display: none;
}

.main #pagination .btn-group .btn {
	font-family: pingfang;
	font-size: 12px;
	color: #727272;
	padding: 10px 12px;
	background-color: #FFFFFF;
	border: 1px solid #d2d2d2;
	margin: 0 5px;
	display: inline-block;
}

.main #pagination .btn-group a.btn {
	background-color: #e65991;
	border: 1px solid #e65991;
	color: #FFFFFF;
}

@media screen and (max-width: 550px) {

	.main {
		padding-top: 20px;
		padding-bottom: 70px;
	}

	.main .product .l {
		display: none;
	}

	.main .product .r {
		width: 100%;
	}
	
	.main .product .r .type_card {
	    padding: 10px;
	    height: auto;
	}
	
	.main .product .r .type_card h5 {
	    font-size: 18px;
	}
	
	.main .product .r .type_card p {
	    line-height: 26px;
	}
	
	.main .product .r .type_card a.contact {
	    display: none;
	}

	.main .product .r .typename {
		display: block;
	}

	.main .product .r .typename h5 {
		display: block;
		font-size: 16px;
		color: #333333;
		line-height: 50px;
		width: 100%;
		height: 50px;
		box-sizing: border-box;
		padding-left: 20px;
		background-color: #ffffff;
		cursor: pointer;
		color: #e65991;
		background-image: url(../images/product_active1.png);
		background-repeat: no-repeat;
		background-position: right 30px center;
		border-bottom: 1px solid #e65991;
	}

	.main .product .r .typename ul.wap_typelist {
		padding-top: 10px;
		display: none;
		box-sizing: border-box;
		/* padding: 0 20px; */
	}
	
	.main .product .r .typename ul.wap_typelist li a {
		display: block;
		font-size: 14px;
		color: #4c4c4c;
		line-height: 45px;
		height: 45px;
		width: 100%;
		box-sizing: border-box;
		padding-left: 30px;
		position: relative;
	}
	
	.main .product .r .typename ul.wap_typelist li a.active {
		color: #e65991;
		background-image: url(../images/product_active1.png);
		background-repeat: no-repeat;
		background-position: right 30px center;
		border-bottom: 1px solid #e65991;
	}
	
	.main .product .r .typename ul.wap_typelist li a.active::after {
		content: "";
		width: 2px;
		height: 14px;
		background-color: #e65991;
		position: absolute;
		left: 0px;
		top: 50%;
		transform: translateY(-50%);
	}

	.main .product .r ul.product_list {
		margin-left: -5px;
		margin-right: -5px;
		padding-top: 20px;
	}

	.main .product .r ul.product_list li {
		width: calc((100% - 20px) / 2);
		margin: 0 5px;
		margin-bottom: 10px;
	}

	.main .product .r ul.product_list li p {
		font-size: 16px;
		line-height: 36px;
	}
}