.wjc-dl-block {
	--wjc-dl-border: #333333;
	--wjc-dl-hover-bg: #222222;
	--wjc-dl-hover-text: #ffffff;
	display: flex !important;
	flex-direction: column !important;
	height: 100%;
	width: 100%;
	font-family: Arial, "Microsoft YaHei", sans-serif;
}

.wjc-dl-cover {
	width: 100% !important;
	margin: 0 0 16px !important;
	background: #f5f5f5;
	padding: 20px;
	box-sizing: border-box;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 8px;
	transition: box-shadow 0.3s ease;
}

.wjc-dl-block:hover .wjc-dl-cover {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.wjc-dl-cover img {
	width: 100% !important;
	height: 100% !important;
	display: block !important;
	object-fit: contain;
	border-radius: 0;
	transition: transform 0.4s ease;
}

.wjc-dl-block:hover .wjc-dl-cover img {
	transform: scale(1.06);
}

.wjc-dl-card {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	flex: 1;
	gap: 12px;
	padding-left: 10px;
}

.wjc-dl-title {
	font-size: 17px;
	font-weight: 700;
	margin: 0 !important;
	color: #111827;
	line-height: 1.4;
	text-align: left;
}

.wjc-dl-btn {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	padding: 0px;
	margin-top: auto;
	background: transparent;
	border: none;
	color: #B6C81A;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: color 0.25s ease, gap 0.25s ease;
}

.wjc-dl-btn:hover {
	color: var(--wjc-dl-hover-bg);
	gap: 12px;
}

.wjc-dl-btn-icon {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.wjc-dl-btn:hover .wjc-dl-btn-icon {
	transform: translateY(2px);
}

/* ---------- 弹窗 ---------- */
.wjc-dl-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
}

.wjc-dl-modal.is-open {
	display: flex;
}

body.wjc-dl-modal-open {
	overflow: hidden;
}

.wjc-dl-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(17, 24, 39, 0.6);
}

.wjc-dl-modal-panel {
	position: relative;
	width: 90%;
	max-width: 420px;
	background: #fff;
	border-radius: 10px;
	padding: 32px 28px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
	font-family: Arial, "Microsoft YaHei", sans-serif;
}

.wjc-dl-modal-close {
	position: absolute;
	top: 12px;
	right: 14px;
	background: none;
	border: none;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	color: #6b7280;
}

.wjc-dl-modal-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 20px;
	color: #111827;
}

.wjc-dl-modal-form label {
	display: block;
	font-size: 13px;
	color: #374151;
	margin-bottom: 6px;
}

.wjc-dl-modal-form input[type="email"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 14px;
	margin-bottom: 16px;
	box-sizing: border-box;
}

.wjc-dl-modal-submit {
	width: 100%;
	padding: 12px;
	background: #333333;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.25s ease;
}

.wjc-dl-modal-submit:hover {
	background: #000;
}

.wjc-dl-modal-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.wjc-dl-modal-message {
	margin: 12px 0 0;
	font-size: 13px;
	min-height: 18px;
}

.wjc-dl-modal-message.is-error {
	color: #dc2626;
}

.wjc-dl-modal-message.is-success {
	color: #16a34a;
}

@media (max-width: 600px) {
	.wjc-dl-block {
		gap: 20px;
	}
	.wjc-dl-cover {
		aspect-ratio: 4 / 3;
	}
	.wjc-dl-title {
		font-size: 20px;
	}
}


.wjc-dl-e-wrap {
	display: flex;
}

.wjc-dl-e-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.wjc-dl-e-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.wjc-dl-e-icon svg {
	fill: currentColor;
}