.dux-vip-main {
	min-height: 560px;
}
.dux-vip-panel {
	padding: 4px 0 30px;
}
.dux-vip-head {
	border-bottom: 1px solid var(--tb--line);
	padding: 6px 0 20px;
	margin-bottom: 28px;
}
.dux-vip-head h2 {
	font-size: 24px;
	margin: 0 0 10px;
	color: #1f2d3d;
}
.dux-vip-head p {
	margin: 0;
	color: #777;
}
.dux-vip-head span {
	margin-left: 15px;
	color: #999;
}
.dux-vip-plans {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 14px;
	margin-bottom: 28px;
}
.dux-vip-plan {
	position: relative;
	min-height: 164px;
	border: 1px solid var(--tb--line);
	background: #fff;
	border-radius: 6px;
	padding: 24px 14px 20px;
	text-align: center;
	cursor: pointer;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
	overflow: hidden;
}
.dux-vip-plan strong {
	display: block;
	font-size: 16px;
	font-weight: normal;
	color: #c58a00;
	margin-bottom: 16px;
}
.dux-vip-plan .price {
	display: block;
	font-size: 34px;
	line-height: 1;
	font-weight: bold;
	color: #182334;
	margin-bottom: 16px;
}
.dux-vip-plan small {
	display: block;
	line-height: 1.8;
	color: #999;
}
.dux-vip-plan.active,
.dux-vip-plan:hover {
	border-color: #dca018;
	box-shadow: 0 8px 22px rgba(220, 160, 24, .12);
	background: #fffdf2;
	transform: translateY(-2px);
}
.dux-vip-plan.active:before {
	content: "\2713";
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	padding: 2px 9px 0 3px;
	background: #dca018;
	clip-path: polygon(0 0, 100% 0, 0 100%);
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	line-height: 1;
	text-align: left;
}
.dux-vip-pay {
	padding-top: 2px;
	text-align: center;
}
.dux-vip-pay .btn {
	min-width: 130px;
	min-height: 40px;
	margin: 0 6px 12px;
	border-radius: 4px;
}
.dux-vip-pay-tip {
	color: #888;
	margin: 8px 0 16px;
}
.dux-vip-pay-tip.is-error {
	color: #e5534b;
}
.dux-vip-qrcode {
	display: inline-block;
	border: 1px solid var(--tb--line);
	border-radius: 6px;
	background: #fff;
	padding: 18px 18px 12px;
}
.dux-vip-qrcode img {
	width: 220px;
	height: 220px;
	display: block;
	margin: 0 auto 10px;
}
.dux-vip-qrcode p {
	margin: 0;
	color: #777;
}
.dux-vip-empty {
	text-align: center;
	color: #999;
	padding: 160px 20px;
	border: 1px dashed var(--tb--line);
	border-radius: 6px;
	background: #fafbfc;
}
.dux-vip-orders {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--tb--line);
	border-radius: 6px;
	overflow: hidden;
}
.dux-vip-orders th,
.dux-vip-orders td {
	padding: 14px 12px;
	border-bottom: 1px solid var(--tb--line);
	text-align: left;
}
.dux-vip-orders th {
	font-weight: bold;
	color: #1f2d3d;
	background: #f7f8fa;
}
.dux-vip-orders td {
	color: #666;
}
@media (max-width: 900px) {
	.dux-vip-plans {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 600px) {
	.dux-vip-head h2 {
		font-size: 20px;
	}
	.dux-vip-head span {
		display: block;
		margin: 6px 0 0;
	}
	.dux-vip-plans {
		grid-template-columns: 1fr;
	}
	.dux-vip-orders {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
	.dux-vip-qrcode img {
		width: 180px;
		height: 180px;
	}
}
