/* 幻灯片 */
	.recipe-banner{
		width: 100%;
	}
	
	.recipe-banner img{
		width: 100%;
		height: 100%;
	}
	
	.recipe-banner .mobile-image{
		display: none;
	}
	
	.recipe-banner .computer-image{
		display: block;
	}
	
/* 公用的-面包屑导航-修改 */
	.communal-crumb.recipe-crumb .content-wrapper .below-wrapper .menu{
		grid-template-columns: repeat(4, 1fr);
	}
	
/* 内容 */
	.recipe-wrapper{
		width: 100%;
		padding: 2.102% 0%;
	}
	
	.recipe-wrapper .content-wrapper .on-data{
		font-size: 15px;
		line-height: 70px;
		text-align: center;
		color: rgba(61, 61, 61, 1);
	}
	
	.recipe-wrapper .content-wrapper .list{
		width: 100%;
		display: grid;
		grid-gap: 25px;
		grid-template-columns: repeat(4, 1fr);
	}
	
	.recipe-wrapper .content-wrapper .list .item{
		width: 100%;
		display: block;
		position: relative;
		border-radius: 5px;
	}
	
	.recipe-wrapper .content-wrapper .list .item img{
		width: 100%;
		height: 100%;
		border-radius: 5px;
	}
	
	.recipe-wrapper .content-wrapper .list .item .content{
		width: 81.887%;
		position: absolute;
		right: 9.057%;
		bottom: 6.793%;
	}
	
	.recipe-wrapper .content-wrapper .list .item .content .title-chinese{
		line-height: 1;
		font-size: 24px;
		overflow: hidden;
		text-align: right;
		white-space: nowrap;
		text-overflow: ellipsis;
		color: rgba(255, 255, 255, 1);
	}
	
	/* 列表-悬停 */
	.recipe-wrapper .content-wrapper .list .item.current-hover-item{
		box-shadow:
		0px 0px 15px rgba(0, 0, 0, 0.5), 
		0px 0px 0px rgba(0, 0, 0, 0) inset;
	}
	
/* 响应 1680 */
@media screen and (max-width: 1680px) {
/* 幻灯片 */
	
/* 内容 */
	.recipe-wrapper .content-wrapper .on-data{
		font-size: 14px;
		line-height: 65px;
	}
	
	.recipe-wrapper .content-wrapper .list{
		grid-gap: 20px;
	}
	
	.recipe-wrapper .content-wrapper .list .item .content .title-chinese{
		font-size: 22px;
	}
}

/* 响应 1440 */
@media screen and (max-width: 1440px) {
/* 幻灯片 */
	
/* 内容 */
	.recipe-wrapper .content-wrapper .on-data{
		font-size: 13px;
		line-height: 60px;
	}
	
	.recipe-wrapper .content-wrapper .list{
		grid-gap: 15px;
	}
	
	.recipe-wrapper .content-wrapper .list .item .content .title-chinese{
		font-size: 20px;
	}
}

/* 响应 1280 */
@media screen and (max-width: 1280px) {
/* 幻灯片 */
	
/* 内容 */
	.recipe-wrapper .content-wrapper .on-data{
		font-size: 12px;
		line-height: 55px;
	}
	
	.recipe-wrapper .content-wrapper .list .item .content .title-chinese{
		font-size: 18px;
	}
}

/* 响应 1000 */
@media screen and (max-width: 1000px) {
/* 幻灯片 */
	.recipe-banner .mobile-image{
		display: block;
	}
	
	.recipe-banner .computer-image{
		display: none;
	}
	
/* 内容 */
	.recipe-wrapper{
		padding: 3.530% 0%;
	}
	
	.recipe-wrapper .content-wrapper .on-data{
		line-height: 50px;
	}
	
	.recipe-wrapper .content-wrapper .list{
		grid-template-columns: repeat(3, 1fr);
	}
	
	.recipe-wrapper .content-wrapper .list .item .content .title-chinese{
		font-size: 16px;
	}
}

/* 响应 750 */
@media screen and (max-width: 750px) {
/* 幻灯片 */
	
/* 内容 */
	.recipe-wrapper .content-wrapper .list{
		grid-template-columns: repeat(2, 1fr);
	}
}