.apply-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-title {
	position: relative;
	display: inline-block;
	margin: 0 auto 30px;
	padding-bottom: 15px;
	font-size: 28px;
	color: #202334;
	text-align: center;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #1A76FF, #71A9FF);
	border-radius: 3px;
}

.requirements-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.requirement-card {
	background: #fff;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-left: 4px solid #1A76FF;
}

.requirement-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(26, 118, 255, 0.12);
}

.requirement-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: linear-gradient(180deg, #1A76FF, #71A9FF);
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
}

.requirement-title {
	font-size: 18px;
	color: #333;
	margin-bottom: 10px;
}

.application-box {
	background: #f8f9fb;
	border-radius: 10px;
	padding: 30px 20px;
	margin: 40px 0;
}

.form-download {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.email-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0 30px;
}

.email-address {
	font-size: 16px;
	color: #1A76FF;
	font-weight: 500;
	margin-right: 10px;
}

.copy-email {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #e8f3ff;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.copy-email:hover {
	background: #d0e6ff;
	transform: scale(1.1);
}

.copy-email::after {
	content: "📋";
	font-size: 14px;
}

.download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 25px;
	height: 50px;
	font-size: 16px;
	background: linear-gradient(180deg, #1A76FF, #71A9FF);
	color: #fff;
	border-radius: 5px;
	box-shadow: 0 4px 12px rgba(26, 118, 255, 0.2);
	transition: all 0.3s ease;
	text-decoration: none;
}

.download-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(26, 118, 255, 0.3);
}

.download-btn img {
	margin-right: 8px;
	transition: transform 0.3s ease;
}

.download-btn:hover img {
	transform: rotate(10deg);
}

.form-preview {
	margin-top: 30px;
	text-align: center;
}

.note-box {
	background: #fff8e1;
	border-left: 4px solid #F0B035;
	border-radius: 0 6px 6px 0;
	padding: 15px 20px;
	margin-top: 25px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.note-title {
	font-size: 14px;
	color: #856404;
	font-weight: 500;
	margin-bottom: 8px;
}

.note-desc {
	color: #666;
	line-height: 1.5;
	font-size: 14px;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.requirements-grid {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 24px;
	}

	.requirement-card {
		padding: 20px;
	}

	.application-box {
		padding: 25px 15px;
	}

	.download-btn {
		padding: 0 20px;
		height: 45px;
		font-size: 14px;
	}
}