#main .content .top {
	padding-bottom: 20px;
}
#main .content .top .title {
	font-size: 16px;
}
#main .content .top .tip {
	color: rgba(0, 0, 0, 0.5);
	font-size: 14px;
	font-weight: 500;
	line-height: 21px;
	padding: 15px;
	margin-top: 15px;
	border-radius: 10px;
	background-color: #F6F5FA;
}
#main .upload-button {
	color: white;
	font-weight: bold;
	cursor: pointer;
	margin-top: 20px;
	padding: 15px 25px;
	border-radius: 30px;
	background: linear-gradient(90deg, #9963FF 0%, #2664FF 100%);
}
#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 .use {
	color: white;
	padding: 5px 20px;
	border-radius: 20px;
	background: linear-gradient(90deg, #9963FF 0%, #2664FF 100%);
}
#main .content .list .delete {
	color: white;
	padding: 5px 20px;
	border-radius: 20px;
	background: linear-gradient(90deg, #9963FF 0%, #2664FF 100%);
}
#main .upload-button .icon {
	width: 24px;
	height: 24px;
	margin-right: 5px;
}
#main .content .empty .title {
	font-size: 30px;
	font-weight: 500;
}
#main .content .empty .subtitle {
	width: 80%;
	color: rgba(0, 0, 0, 0.5);
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	margin-top: 10px;
}
#main .advantage .icon {
	font-size: 50px;
}
.upload-alter {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	padding: 20px 10px;
	background-color: rgba(0, 0, 0, 0.5);
}
.upload-content {
	position: relative;
	width: 100%;
	max-width: 900px;
	max-height: 100%;
	padding: 30px;
	margin: auto;
	overflow-y: scroll;
	scrollbar-width: none;
	-ms-overflow-style: none;
	border-radius: 10px;
	background-color: white;
}
.upload-content::-webkit-scrollbar {
	display: none;
}
.upload-content .close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.upload-content .title {
	font-size: 18px;
	font-weight: bold;
}
.upload-content .box {
	padding: 30px;
	margin-top: 30px;
	border-radius: 10px;
	border: 1px solid #DEDFE5;
}
.upload-content .box-title {
	font-weight: bold;
	margin-top: 10px;
}
.upload-content .box-subtitle {
	color: rgba(0, 0, 0, 0.5);
	width: 70%;
	margin-top: 10px;
}
.upload-content .box-button {
	color: white;
	cursor: pointer;
	margin-top: 10px;
	padding: 15px 65px;
	border-radius: 30px;
	background: linear-gradient(90deg, #9963FF 0%, #2664FF 100%);
}
.upload-content .box .img {
	width: 60px;
	height: 60px;
}
.upload-content .subtitle {
	font-weight: bold;
	margin-top: 30px;
}
.upload-content .tip {
	color: rgba(0, 0, 0, 0.5);
	font-size: 14px;
	line-height: 20px;
	margin-top: 10px;
}
.upload-content .subtitle {
	font-weight: bold;
	margin-top: 30px;
}
.upload-content .suggestion {
	font-weight: 500;
	margin-top: 10px;
}
.upload-content .example {
	gap: 30px;
	width: 80%;
	margin-top: 30px;
}
.upload-content .example .item {
	flex: 1;
	width: 0;
}
.upload-content .example .img {
	display: block;
	width: 100%;
}
.upload-content .example .label {
	font-size: 14px;
	margin-top: 10px;
}
@media (max-width: 768px) {
    #main .content .empty .title {
    	font-size: 20px;
    }
    #main .content .empty .subtitle {
    	font-size: 12px;
    }
    #main .advantage .icon {
    	font-size: 30px;
    }
}
@media (max-width: 576px) {
	#main .upload-button {
		font-size: 14px;
		padding: 10px 20px;
	}
	#main .upload-button .icon {
		width: 22px;
		height: 22px;
	}
	.upload-content .box-subtitle {
		width: 90%;
	}
	.upload-content .box-button {
		font-size: 14px;
		padding: 10px 50px;
	}
    .upload-content .example {
    	gap: 10px;
    	width: 100%;
    }
    .upload-content .example .label {
    	font-size: 12px;
    }
}