.maker_box{
	padding: .5rem 0;
	overflow: hidden;
}
.maker_box h3{
	color: #333;
	font-size: .24rem;
	padding-bottom: .1rem;
	border-bottom: 1px outset #eee;
	margin-bottom: .3rem;
}

.maker_box h4{
	color: #332;
	font-size: .20rem;
	padding-top: .20rem;
	padding-left: .40rem;
	padding-bottom: .1rem;
	border-bottom: 1px dashed #eee;
	margin-bottom: .15rem;
}

.maker_box .maker_ul{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}
.maker_box .maker_ul li{
	width: 23.5%;
	margin: 0 2% .2rem 0;
}
.maker_box .maker_ul li:nth-child(4n){
	margin-right: 0;
}
.maker_box .maker_ul li a{
	display: block;
	width: 100%;
	overflow: hidden;
	text-decoration: none;
	position: relative;
}
.maker_box .maker_ul li a img{
	display: block;
	width: 100%;
	height: 1.9rem;
}
.maker_box .maker_ul li h6{
	color: #333;
	font-size: .12rem;
	text-align: center;
	padding: .1rem;
	background: #edeeef;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.maker_box .maker_ul li h5{
	color: #333;
	font-size: .1rem;
	text-align: center;
	padding: .1rem;
	background: #859FF5;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.maker_box .maker_ul li div{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0);
	left: 0;
	top: 0;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: .2rem;
	transition: all .5s ease;
	opacity: 0;
	filter: alpha(opacity=0);
}
.maker_box .maker_ul li:hover div{
	background: rgba(0,0,0,.5);
	opacity: 1;
	filter: alpha(opacity=100);
}
.maker_box .maker_ul li div p{
	color: #fff;
	font-size: .14rem;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	word-break: break-all;
}

.maker_detail_box{
	padding: .3rem 0;
	overflow: hidden;;
}
.maker_detail_box h3{
	font-size: .24;
	padding: .2rem .1rem;
	border-bottom: .02rem solid #FF812F;
	margin-bottom: .2rem;
	text-align: center;
}
.maker_detail_box h6{
	text-align: center;
	font-size: .18rem;
}
.maker_detail_box .detail_content{
	margin: .3rem auto;
	padding: 0 .5rem;
	font-size: .16rem;
	/*text-align: center;*/
}
.maker_detail_box .detail_content img{
	display: block;
	max-width: 100%;
	margin: 0 auto .1rem;
}


#video{
	width: 5.5rem;
	height: 3rem;
}

@media (max-width: 768px) {
	.maker_box .maker_ul{
		justify-content: space-between;
	}
	.maker_box .maker_ul li{
		width: 48%;
		margin: 0 0 .3rem 0;
	}
	.maker_box h3{
		display: none;
	}
	.maker_box .maker_ul li h6{
		font-size: .24rem;
		padding: .15rem .1rem;
	}
	.maker_detail_box h3{
		font-size: .3rem;
	}
	.maker_detail_box h6{
		font-size: .24rem;
	}
	.maker_detail_box .detail_content{
		font-size: .22rem;
	}
	#video{
		width: 100%;
		height: 4rem;
	}
}