.promotionBox {
	width: 100%;
	background-color: #F5F5F7;
}

.promotionBox-main {
	border: 1px solid #000;
	padding-top: 34px;
}

/*  */
:root {
	--primary: #007AFF;
	--success: #34c759;
	--gold: #FFD700;
	--dark: #1d1d1f;
	--bg: #f5f5f7;
	--card-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--dark);
}

.container {
	width: 1200px;
	margin: 0 auto;
	padding-top: 30px;
	padding-bottom: 40px;
}

/* 顶部欢迎区 */
.header-section {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 30px;
}

.header-section h1 {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
}

.header-section p {
	margin: 5px 0 0;
	color: #86868b;
	font-size: 14px;
}

/* 布局网格 */
.grid-layout {
	display: grid;
	grid-template-columns: 280px 1fr 300px;
	gap: 24px;
}

/* 通用面板 */
.panel {
	background: #fff;
	border-radius: 20px;
	padding: 26px;
	box-shadow: var(--card-shadow);
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.panel-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* --- 左侧：等级与特权 --- */
.level-card {
	background: linear-gradient(180deg, #fff 0%, #f9f9fb 100%);
	position: relative;
	overflow: hidden;
}

.level-badge {
	background: linear-gradient(156deg, rgba(253, 150, 73, 0.84), rgba(255, 109, 0, 0.84));
	color: #fff;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 800;
	position: absolute;
	top: 28px;
	right: 20px;
}

.tagStyle {
	background: linear-gradient(156deg, rgba(253, 150, 73, 0.84), rgba(255, 109, 0, 0.84));
	color: #fff;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 800;
}

.privilege-item {
	font-size: 14px;
	margin-bottom: 15px;
	gap: 10px;
	color: #424245;
}

.privilege-item .titleP {
	font-weight: bold;
	font-size: 16px;
	color: #333333;
}

.privilege-item .contentP {
	font-weight: 400;
	font-size: 12px;
	color: #333333;
	margin-top: 10px;
}

.privilege-item img {
	margin-top: 4px;
}

.privilege-item i {
	color: var(--success);
	font-style: normal;
	font-weight: bold;
}

/* --- 中间：核心区域 --- */
.stats-row {
	width: 500px;
}

.stat-box {
	display: inline-block;
	width: 230px;
	/* height: 106px; */
	padding: 22px;
	background: #fff;
	border-radius: 16px;
	border: 1px solid #efeff2;
	text-align: center;
	margin-bottom: 20px;
	margin-right: 10px;
	cursor: pointer;
	transition: 0.3s;
}

.stat-box label {
	font-size: 12px;
	color: #86868b;
	display: block;
	margin-bottom: 8px;
}

.stat-box .value {
	font-weight: bold;
	font-size: 28px;
	color: #007AFF;
}

.stat-box .unit {
	font-size: 14px;
	margin-left: 4px;
	color: #86868b;
}

.stat-boxHover:hover {
	background-color: #00BC7D;
}

.stat-boxHover:hover .value {
	color: #fff;
}

.stat-boxHover:hover label {
	color: #fff;
}

/* 链接邀请区 (诱惑力核心) */
.link-hero {
	background: #1d1d1f;
	color: #fff;
	height: 420px;
	padding: 56px 58px 50px 46px;
	border-radius: 24px;
	position: relative;
	overflow: hidden;
	margin-bottom: 24px;
}

.link-hero h2 {
	font-size: 32px;
	margin: 0 0 10px;
	z-index: 2;
	position: relative;
}

.link-hero p {
	color: #a1a1a6;
	margin-bottom: 30px;
	font-size: 16px;
	z-index: 2;
	position: relative;
}

.promo-input-wrapper {
	background: rgba(255, 255, 255, 0.1);
	padding: 8px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	z-index: 2;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-input-wrapper input {
	flex: 1;
	background: none;
	border: none;
	color: #fff;
	padding: 12px;
	font-size: 16px;
	outline: none;
}

.btn-copy {
	background: #fff;
	color: #000;
	border: none;
	padding: 12px 30px;
	border-radius: 10px;
	font-weight: 700;
	cursor: pointer;
	transition: 0.3s;
}

.btn-copy:hover {
	transform: scale(1.02);
	background-color: #007AFF;
	color: #fff;
}

/* 收益计算器 (新增诱惑力组件) */
.calculator {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 16px;
	/* padding: 25px; */
	height: 302px;
	padding: 35px 30px 48px 24px;
}

.calc-title {
	font-weight: 700;
	margin-bottom: 40px;
	color: var(--primary);
	display: flex;
	align-items: center;
	gap: 5px;
}

.range-wrap {
	margin-bottom: 40px;
}

input[type=range] {
	width: 100%;
	height: 6px;
	border-radius: 5px;
	background: #e1e1e3;
	outline: none;
	-webkit-appearance: none;
}

.calc-result {
	background: #f5f5f7;
	padding: 15px;
	border-radius: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* --- 右侧：排行榜与提现 --- */
.right-col {}

.withdraw-card {
	margin-bottom: 24px;
	width: 376px;
	height: 235px;
	background: linear-gradient(140deg, #1B1C1F 0%, #00264D 100%);
	border-radius: 24px;
	color: #fff;
}

.channel-icons {
	display: flex;
	gap: 10px;
	margin-top: 15px;
	opacity: 0.6;
}

.channel-icons img {
	height: 20px;
	grayscale: 100%;
}

.leaderboard-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.rank-num {
	width: 24px;
	height: 24px;
	background: #f2f2f7;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rank-top {
	background: var(--gold);
	color: #fff;
}

.pay-method {
	flex: 1;
	padding: 10px;
	border: 1px solid #efeff2;
	border-radius: 10px;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
	transition: 0.2s;
	background: #f9f9fb;
}

.pay-method.active {
	border-color: #007AFF;
	color: #007AFF;
	background: rgba(0, 122, 255, 0.05);
	font-weight: 600;
}

.input-item label {
	display: block;
	font-size: 12px;
	color: #86868b;
	margin-bottom: 6px;
}

.input-item input {
	width: 100%;
	padding: 12px;
	border: 1px solid #d2d2d7;
	border-radius: 8px;
	box-sizing: border-box;
	outline: none;
}

.input-item input:focus {
	border-color: #007AFF;
}

.rule-step {
	border: 1px solid #efeff2;
	border-radius: 20px;
	padding: 20px;
	text-align: center;
	transition: transform 0.3s ease;
}

.rule-step:hover {
	transform: translateY(-5px);
}

.ruleActive {
	border-color: var(--primary) !important;
	background: rgba(0, 122, 255, 0.02) !important;
}

.ruleActiveZS {
	border-color: var(--primary) !important;
	background: var(--primary) !important;
}

.ruleActiveZS p {
	color: #fff !important;
}

.ruleActiveZS ul {
	color: #fff !important;
}

.step-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.poster-option {
	padding: 15px;
	border: 2px solid #efeff2;
	border-radius: 15px;
	cursor: pointer;
	transition: 0.2s;
}

.poster-option:hover {
	background: #f9f9fb;
	border-color: #d2d2d7;
}

.poster-option.active {
	border-color: #007AFF;
	background: rgba(0, 122, 255, 0.05);
}

.p-tpl-A {
	color: #fff;
}

.p-tpl-B {
	color: #fff;
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* 列表部分的展示 */
/* 基础样式：让表格看起来更像现代化的 UI */
table {
	width: 100%;
	/* max-width: 600px; */
	border-collapse: collapse;
	/* 合并边框 */
	margin: 20px 0;
	font-size: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
	/* 确保圆角生效 */
}

/* 表头样式：深色更有质感 */
thead {
	background-color: #d0cece;
	/* color: #ffffff; */
	text-align: left;
}

th,
td {
	padding: 8px 15px;
	border-bottom: 1px solid #eee;
}

/* 奇偶行换色：提升可读性 */
tbody tr:nth-child(even) {
	background-color: #f8f9fa;
}

/* 鼠标悬停效果 */
tbody tr:hover {
	background-color: #f1f4f9;
	transition: 0.2s;
}

/* 手机号列可以加个字体样式，更整齐 */
.phone-col {
	font-family: 'JetBrains Mono', monospace;
	/* color: #3498db; */
}

/* --- 分页组件 --- */
.pagination {
	max-width: 1200px;
	/* margin: 80px auto; */
	display: flex;
	justify-content: center;
	gap: 12px;
}

.page-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 16px;
	font-weight: 400;
	transition: 0.3s;
}

.page-btn.active {
	background: #ebebeb;
	color: #000;
	border-color: var(--dark);
}

.page-btn:hover:not(.active) {
	border-color: var(--primary);
	color: var(--primary);
}



/* 提现背景流动效果 */
.test-trigger {
	padding: 14px 30px;
	background: #0071e3;
	color: #fff;
	border: none;
	border-radius: 14px;
	font-weight: 700;
	cursor: pointer;
	margin: 80px auto;
	display: block;
	box-shadow: 0 10px 30px rgba(0, 113, 227, 0.2);
}

/* --- 弹窗容器 --- */
.modal-container {
	/* width: 90%; */
	width: 800px;
	/* height: 500px; */
	overflow: hidden;
	background: rgba(255, 255, 255, 0.96);
	border-radius: 40px;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1), inset 0 0 50px rgba(0, 113, 227, 0.02);
	transform: translateY(30px) scale(0.96);
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-container {
	transform: translateY(0) scale(1);
}

/* --- 强化版：数字脉动背景线条 --- */
.bg-lines-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.digital-line {
	position: absolute;
	width: 2px;
	height: 120px;
	/* 线条颜色：渐变发光 */
	background: linear-gradient(to bottom, transparent, #0071e3, #00f2ff, transparent);
	filter: drop-shadow(0 0 8px #0071e3);
	opacity: 0;
	animation: digitalFlow linear infinite;
}

@keyframes digitalFlow {
	0% {
		transform: translateY(-150px);
		opacity: 0;
	}

	10% {
		opacity: 0.15;
	}

	90% {
		opacity: 0.15;
	}

	100% {
		transform: translateY(800px);
		opacity: 0;
	}
}

/* --- 弹窗内容 --- */
.modal-inner {
	position: relative;
	z-index: 2;
}

.modal-header {
	/* padding: 35px 45px 25px; */
	padding: 10px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	background: rgba(255, 255, 255, 0.4);
}

.header-title {
	display: flex;
	align-items: center;
	gap: 12px;
}

.active-dot {
	width: 10px;
	height: 10px;
	background: #0071e3;
	border-radius: 50%;
	box-shadow: 0 0 15px #00f2ff;
	animation: pulse 2s infinite;
}

.modal-header h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -1.2px;
}

.modal-body {
	padding: 10px 45px 35px;
	/* min-height: 520px; */
	display: flex;
	flex-direction: column;
}

/* 列表项 */
#recordList {
	flex-grow: 1;
}

.record-row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	/* padding: 24px 0; */
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.03);
	transition: 0.3s;
}

.record-row:hover {
	transform: translateX(10px);
	background: linear-gradient(90deg, rgba(0, 113, 227, 0.02), transparent);
}

.info-title {
	font-size: 16px;
	font-weight: 700;
	color: #1d1d1f;
	margin-bottom: 5px;
}

.info-meta {
	font-size: 12px;
	color: #86868b;
	font-family: 'SF Mono', monospace;
}

.amount {
	font-size: 16px;
	font-weight: 800;
	text-align: right;
	color: #1d1d1f;
	margin-bottom: 6px;
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 14px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 700;
	background: rgba(52, 199, 89, 0.08);
	color: #34c759;
}

.status-not {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 14px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 700;
	background: #747474;
	color: #fff;
}
/* --- 极简分页 --- */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	padding-top: 30px;
	/* border-top: 1px solid rgba(0, 0, 0, 0.03); */
}

.page-btn {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	transition: all 0.3s;
	color: #86868b;
	border: 1px solid transparent;
}

.page-btn.active {
	background: #fff;
	color: #0071e3;
	border-color: rgba(0, 113, 227, 0.15);
	box-shadow: 0 8px 20px rgba(0, 113, 227, 0.1);
}

@keyframes pulse {

	0%,
	100% {
		opacity: 0.6;
		transform: scale(0.9);
	}

	50% {
		opacity: 1;
		transform: scale(1.1);
	}
}
