#main .content .options {
	padding: 20px;
	border-radius: 10px;
	border: 1px solid #DEDFE5;
}
#main .content .options .group {
	margin-bottom: 10px;
}
#main .content .options .group:last-child {
	margin-bottom: 0;
}
#main .content .options .label {
	min-width: 80px;
	max-width: 80px;
	font-size: 14px;
	font-weight: bold;
	padding-top: 2px;
	margin-right: 10px;
}
#main .content .options .item {
	display: block;
	float: left;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	cursor: pointer;
	padding: 2px 10px;
	margin-bottom: 10px;
}
#main .content .options .item.active {
	color: #462DE1;
	border-radius: 5px;
	background-color: rgba(70, 45, 225, 0.1);
}
#main .content .options .color-item {
	display: block;
	float: left;
	width: 24px;
	height: 24px;
	cursor: pointer;
	margin-left: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
}
#main .content .options .color-item.white {
	border: 2px solid black;
}
#main .content .options .color-item.active {
	background-size: 16px 16px;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../../images/check-white-icon.png);
}
#main .content .options .color-item.white.active {
	background-image: url(../../images/check-black-icon.png);
}
#main .content .list {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 20px;
}
#main .content .list .cover {
	position: relative;
	cursor: pointer;
	overflow: hidden;
	border-radius: 10px;
}
#main .content .list .img {
	width: 100%;
	aspect-ratio: 1 / 0.56;
	border: 1px solid #DEDFE5;
}
#main .content .list .mask {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0 10px 10px;
	background-color: rgba(0, 0, 0, 0.5);
}
#main .content .list .cover:hover .mask {
	display: flex;
}
#main .content .list .use {
	color: white;
	padding: 5px 20px;
	border-radius: 20px;
	background: linear-gradient(90deg, #9963FF 0%, #2664FF 100%);
}
#main .content .list .collect {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-size: 25px 25px;
	background-position: center center;
	background-color: rgba(0, 0, 0, 0.5);
	background-image: url(../../images/collect-icon.png);
}
#main .content .list .collect.active {
	background-image: url(../../images/collect-active-icon.png);
}
@media(max-width: 992px) {
	#main .content .options .label {
	    min-width: 60px;
	    max-width: 60px;
	    font-size: 12px;
	}
	#main .content .options .item {
		font-size: 12px;
	}
	#main .content .list {
		gap: 10px;
    	grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media(max-width: 576px) {
	#main .content .options .item {
		line-height: 16px;
		padding: 2px 8px;
		margin-bottom: 5px;
	}
	#main .content .options .color-item {
		width: 20px;
		height: 20px;
	}
	#main .content .list {
		gap: 10px;
    	grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
