* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: linear-gradient(180deg, #0066cc 0%, #0080ff 100%);
	min-height: 100vh;
	padding-bottom: 30px;
}

.header {
	background: linear-gradient(180deg, #0066cc 0%, #0055aa 100%);
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-btn {
	position: absolute;
	left: 15px;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	text-decoration: none;
}

.header-title {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
}

.sidebar {
	position: fixed;
	right: 0;
	top: 20%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 2px;
	background: rgba(0, 0, 0, 0.15);
	border-radius: 10px 0 0 10px;
	overflow: hidden;
	z-index: 100;
}

.sidebar-btn {
	width: 33px;
	height: 66px;
	background: #fff;
	border: none;
	writing-mode: vertical-rl;
	font-size: 13px;
	color: #333;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sidebar-btn:hover {
	background: #0080ff;
	color: #fff;
}

.toast {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.85);
	color: #fff;
	padding: 15px 30px;
	border-radius: 10px;
	font-size: 15px;
	display: none;
	z-index: 300;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.rule-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 200;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.rule-content {
	background: #fff;
	border-radius: 14px;
	width: 100%;
	max-width: 400px;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
}

.rule-header {
	padding: 18px;
	border-bottom: 1px solid #eee;
	text-align: center;
	position: sticky;
	top: 0;
	background: #fff;
}

.rule-title {
	font-size: 19px;
	font-weight: bold;
	color: #333;
}

.rule-close {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	border: none;
	background: none;
	font-size: 22px;
	color: #999;
	cursor: pointer;
}

.rule-body {
	padding: 18px;
	font-size: 14px;
	color: #666;
	line-height: 2;
}

.rule-body h3 {
	font-size: 15px;
	font-weight: bold;
	color: #333;
	margin: 15px 0 8px;
}

.rule-body h3:first-child {
	margin-top: 0;
}

.rule-body p {
	margin-bottom: 8px;
	text-indent: 2em;
}

.rule-body .highlight {
	color: #ff0000;
	font-weight: bold;
}

.top-bg {
	width: 100%;
	height: auto;
	background: url(../images/banner.jpg) no-repeat center top;
	background-size: 100% auto;
	position: relative;
	/* 高度按 banner 图比例自适应，避免不同手机宽度下背景与内容错位 */
	padding-top: 56.5%;
	padding-bottom: 20px;
}

.half-price-btn {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(180deg, #ff8c00 0%, #ff6600 100%);
	color: #fff;
	border: none;
	padding: 10px 22px;
	border-radius: 20px;
	font-size: 16px;
	font-weight: bold;
	box-shadow: 0 4px 10px rgba(255, 102, 0, 0.4);
	cursor: pointer;
	z-index: 5;
}

.scroll-ad {
	background: transparent;
	padding: 10px 15px;
	margin-top: -195px;
	margin-bottom: 15px;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
}



.scroll-content {
	display: inline-block;
	animation: scrollLeft 15s linear infinite;
}

.scroll-content:hover {
	animation-play-state: paused;
}

.scroll-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffd700'%3E%3Cpath d='M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z'/%3E%3C/svg%3E") no-repeat center center;
	background-size: contain;
	margin-right: 8px;
	vertical-align: middle;
	animation: pulse 1s ease-in-out infinite;
}

.scroll-text {
	color: #fff;
	font-size: 14px;
	white-space: nowrap;
	vertical-align: middle;
}

@keyframes scrollLeft {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.2);
	}
}

.notice {
	text-align: center;
	color: #fff;
	padding: 15px;
	background: rgba(0, 0, 0, 0.15);
	margin: 0px 15px 15px;
	border-radius: 10px;
}

.notice p {
	margin: 5px 0;
	font-size: 13px;
	line-height: 1.5;
}

.small {
	font-size: 10px;
}

.notice p:first-child {
	font-weight: bold;
	font-size: 15px;
}

.card {
	background: #fff;
	margin: 0 15px;
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	position: relative;
	overflow: hidden;
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #00a0e9, #0066cc, #00a0e9);
}

.form-group {
	margin-bottom: 25px;
}

.form-label {
	display: block;
	font-size: 17px;
	font-weight: bold;
	color: #333;
	margin-bottom: 12px;
}

.phone-input {
	width: 100%;
	height: 48px;
	padding: 0 15px;
	font-size: 17px;
	border: 2px solid #e5e5e5;
	border-radius: 10px;
	outline: none;
	transition: all 0.3s;
	background: #fafafa;
}

.phone-input:focus {
	border-color: #0080ff;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
}

.phone-input::placeholder {
	color: #bbb;
}

.payment-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	background: #f9f9f9;
	border-radius: 10px;
	border: 2px solid transparent;
	transition: all 0.3s;
	cursor: pointer;
}

.payment-option.active {
	border-color: #0080ff;
	background: #eaf5ff;
}

.payment-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.payment-icon {
	width: 40px;
	height: 40px;
	background: url(../images/ali-logo.png) no-repeat center center;
	background-size: contain;
}

.payment-text {
	font-size: 17px;
	font-weight: 500;
	color: #333;
}

.payment-tag {
	background: linear-gradient(180deg, #ff6b6b 0%, #ee5a5a 100%);
	color: #fff;
	padding: 3px 8px;
	border-radius: 4px;
	font-size: 11px;
	margin-left: 8px;
	box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

.payment-check {
	width: 24px;
	height: 24px;
	background: url(../images/checked.png) no-repeat center center;
	background-size: contain;
	opacity: 0;
	transition: opacity 0.3s;
}

.payment-option.active .payment-check {
	opacity: 1;
}

.amount-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	border-top: 1px dashed #ddd;
	border-bottom: 1px dashed #ddd;
	margin: 8px 0;
}

.amount-label {
	font-size: 17px;
	color: #333;
	font-weight: 500;
}

.amount-right {
	text-align: right;
}

.amount-value {
	font-size: 36px;
	font-weight: bold;
	color: #0080ff;
	line-height: 1.2;
}

.amount-original {
	font-size: 13px;
	color: #999;
	text-decoration: line-through;
	margin-top: 4px;
}

.submit-btn-wrapper {
	margin-top: 20px;
	position: relative;
}

.submit-btn {
	width: 100%;
	height: 54px;
	background: #0080ff;
	color: #fff;
	border: none;
	border-radius: 27px;
	font-size: 22px;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	animation: jump 2s ease-in-out infinite;
}

.submit-btn:hover {
	background: #0066cc;
}

.submit-btn:active {
	transform: scale(0.98);
}

.random-tag {
	position: absolute;
	right: 0;
	top: -8px;
	background: linear-gradient(180deg, #ff6b6b 0%, #ee5a5a 100%);
	color: #fff;
	padding: 2px 12px;
	border-radius: 0 0 6px 6px;
	font-size: 12px;
	font-weight: bold;
	z-index: 1;
}

@keyframes jump {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-5px);
	}
}

.agreement-section {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px dashed #eee;
}

.checkbox {
	width: 18px;
	height: 18px;
	border: 2px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	flex-shrink: 0;
}

.checkbox.checked {
	background: #0080ff;
	border-color: #0080ff;
}

.checkbox::after {
	content: '';
	width: 10px;
	height: 6px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
	opacity: 0;
	transition: opacity 0.3s;
}

.checkbox.checked::after {
	opacity: 1;
}

.agreement-text {
	font-size: 12px;
	color: #999;
	line-height: 1.5;
}

.agreement-text a {
	color: #0080ff;
	text-decoration: none;
}

.agreement-text a:hover {
	text-decoration: underline;
}

.claim-section {
	margin: 0 15px 15px;
	background: #cce5ff;
	border-radius: 15px;
	overflow: hidden;
	padding: 15px;
}

.claim-banner {
	margin-top: 15px;
	text-align: center;
	padding: 20px;
	margin-bottom: 15px;
	border-radius: 8px;
	position: relative;
}

.claim-banner p {
	background: linear-gradient(to bottom, #ffdd6b, #ffa024);
	color: #bf2113;
	font-size: 22px;
	font-weight: bold;
	padding: 5px 20px;
	margin-bottom: 12px;
	border-radius: 4px;
	clip-path: polygon(8% 0%, 92% 0%, 100% 100%, 0% 100%);
}

.claim-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.claim-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border-radius: 12px;
	padding: 15px;
}

.claim-item.first {
	background: linear-gradient(180deg, #4da6ff 0%, #3399ff 100%);
}

.claim-item.first .claim-amount {
	color: #fff;
}

.claim-item.first .claim-desc {
	color: rgba(255, 255, 255, 0.8);
}

.claim-left {
	flex: 1;
}

.claim-tag {
	display: inline-block;
	font-size: 11px;
	padding: 3px 10px;
	border-radius: 4px;
	margin-bottom: 8px;
	font-weight: bold;
}

.claim-tag.blue {
	background: #0066cc;
	color: #fff;
}

.claim-tag.orange {
	background: rgba(255, 153, 0, 0.2);
	color: #ff9900;
}

.claim-amount {
	font-size: 24px;
	font-weight: bold;
	color: #ff9900;
}

.claim-desc {
	font-size: 12px;
	color: #999;
	margin-top: 4px;
}

.claim-btn {
	padding: 12px 25px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
}

.claim-btn.green {
	background: linear-gradient(180deg, #66cc66 0%, #339933 100%);
	color: #fff;
}

.claim-btn.green:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 10px rgba(51, 153, 51, 0.4);
}

.submit-btn-green {
	width: 100%;
	padding: 18px;
	border-radius: 30px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
	letter-spacing: 2px;
	background: linear-gradient(180deg, #7ed321 0%, #5ac8fa 100%);
	color: #fff;
	box-shadow: 0 6px 20px rgba(126, 211, 33, 0.4);
}

.submit-btn-green:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(126, 211, 33, 0.5);
}

.submit-btn-green:active {
	transform: translateY(0);
	box-shadow: 0 4px 15px rgba(126, 211, 33, 0.3);
}

.claim-btn.red {
	background: linear-gradient(180deg, #ff6b6b 0%, #ee5a5a 100%);
	color: #fff;
}

.claim-btn.red:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 10px rgba(238, 90, 90, 0.4);
}

.claim-row .claim-item {
	margin-bottom: 10px;
}

.agreement-card {
	background: #fff;
	margin: 0 15px 15px;
	border-radius: 8px;
	border: 3px solid #0080ff;
	padding: 25px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.agreement-title-bar {
	text-align: center;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px dashed #0080ff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.agreement-title-line {
	width: 60px;
	height: 2px;
	background: #0080ff;
	display: inline-block;
}

.agreement-title-text {
	font-size: 20px;
	font-weight: bold;
	color: #333;
}

.agreement-section-item {
	margin-bottom: 22px;
}

.agreement-section-title {
	font-size: 14px;
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.agreement-dot {
	width: 8px;
	height: 8px;
	background: #ff0000;
	border-radius: 50%;
	display: inline-block;
}

.agreement-section-content {
	font-size: 12px;
	color: #666;
	line-height: 2;
	padding-left: 16px;
}

.agreement-section-content p {
	margin-bottom: 8px;
	text-indent: 2em;
}

.agreement-section-content p:last-child {
	margin-bottom: 0;
}

.agreement-highlight {
	color: #ff0000;
	font-weight: bold;
}

.agreement-footer {
	margin-top: 25px;
	padding-top: 18px;
	border-top: 1px solid #eee;
	font-size: 12px;
	color: #999;
	text-align: center;
	line-height: 2;
}

.agreement-footer p {
	margin-bottom: 6px;
}

.agreement-footer p:last-child {
	margin-bottom: 0;
}

.agreement-footer-links {
	margin-top: 12px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	font-size: 12px;
	color: #999;
}

.agreement-footer-links span {
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
}

.footer-icon {
	width: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 6px;
	fill: #909399;
}

.pay-scan {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 500;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.pay-scan.show {
	display: flex;
}

.pay-scan-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px;
}

.loading-ring {
	width: 100px;
	height: 100px;
	position: relative;
	margin-bottom: 30px;
}

.ring-circle {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px solid #e0e0e0;
	position: absolute;
	top: 0;
	left: 0;
}

.ring-progress {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #2196f3;
	border-right-color: #2196f3;
	position: absolute;
	top: 0;
	left: 0;
	animation: spin 1.5s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.loading-hexagon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
}

.loading-hexagon svg {
	width: 100%;
	height: 100%;
	fill: #2196f3;
}

.loading-title {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin-bottom: 30px;
	text-align: center;
}

.steps-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 280px;
}

.step-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.step-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.step-dot.current {
	background: #2196f3;
	animation: stepPulse 1s ease-in-out infinite;
}

.step-dot.completed {
	background: #2196f3;
}

.step-dot.pending {
	background: #ccc;
}

@keyframes stepPulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.2);
	}
}

.step-text {
	font-size: 14px;
	color: #666;
	transition: color 0.3s ease;
}

.step-item.current .step-text {
	color: #2196f3;
	font-weight: bold;
}

.step-item.completed .step-text {
	color: #2196f3;
}

.step-item.pending .step-text {
	color: #ccc;
}

.xieyi-link {
	display: block;
	text-align: center;
	margin-top: 18px;
	font-size: 12px;
	color: #fff;
	opacity: 0.8;
	text-decoration: none;
}

.xieyi-link:hover {
	opacity: 1;
	text-decoration: underline;
}

.card-header {
	text-align: center;
	padding-bottom: 25px;
	position: relative;
}

.card-header::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 30px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
	z-index: 1;
}

.hello-title {
	font-size: 48px;
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
	letter-spacing: -2px;
}

.hello-subtitle {
	font-size: 16px;
	color: #666;
	margin-bottom: 25px;
}

.card-illustration {
	position: relative;
	height: 180px;
	margin-bottom: 20px;
}

.phone-icon {
	position: absolute;
	right: 20px;
	bottom: 0;
	width: 120px;
	height: 160px;
	background: #fff;
	border-radius: 20px;
	border: 3px solid #e0e0e0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.phone-screen {
	width: 100%;
	height: 85%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.phone-notch {
	width: 40px;
	height: 10px;
	background: #333;
	border-radius: 0 0 20px 20px;
	margin-bottom: 15px;
}

.red-packet {
	width: 60px;
	height: 70px;
	background: linear-gradient(180deg, #ff6b6b 0%, #ee5a5a 100%);
	border-radius: 10px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(238, 90, 90, 0.4);
}

.red-packet::before {
	content: '';
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-bottom: 12px solid #ee5a5a;
}

.red-packet-text {
	color: #ffd700;
	font-size: 18px;
	font-weight: bold;
}

.coin {
	position: absolute;
	width: 24px;
	height: 24px;
	background: #ffd700;
	border-radius: 50%;
	box-shadow: 0 2px 5px rgba(255, 215, 0, 0.5);
}

.coin::before {
	content: '$';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 12px;
	font-weight: bold;
	color: #ff9900;
}

.coin-1 {
	top: 40px;
	right: 20px;
	animation: float 2s ease-in-out infinite;
}

.coin-2 {
	top: 80px;
	right: 150px;
	animation: float 2.5s ease-in-out infinite;
}

.coin-3 {
	top: 120px;
	right: 180px;
	animation: float 2.2s ease-in-out infinite;
}

.red-packet-small {
	position: absolute;
	width: 35px;
	height: 40px;
	background: linear-gradient(180deg, #ff6b6b 0%, #ee5a5a 100%);
	border-radius: 6px;
}

.red-packet-small::before {
	content: '';
	position: absolute;
	top: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
	border-bottom: 7px solid #ee5a5a;
}

.red-packet-1 {
	top: 50px;
	right: 160px;
	animation: float 2.8s ease-in-out infinite;
}

.red-packet-2 {
	top: 130px;
	right: 10px;
	animation: float 2.3s ease-in-out infinite;
}

.petal {
	position: absolute;
	width: 12px;
	height: 12px;
	background: #ffb6c1;
	border-radius: 50% 0 50% 50%;
}

.petal-1 {
	top: 100px;
	left: 20px;
	animation: float 3s ease-in-out infinite;
}

.petal-2 {
	top: 140px;
	left: 50px;
	animation: float 3.5s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.form-input {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid #eee;
	border-radius: 12px;
	font-size: 15px;
	color: #333;
	transition: border-color 0.3s;
	outline: none;
}

.form-input:focus {
	border-color: #4da6ff;
}

.form-input::placeholder {
	color: #ccc;
}

.claim-success {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 500;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.claim-success.show {
	display: flex;
}

.success-icon {
	width: 100px;
	height: 100px;
	background: #95de64;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 50px;
	color: #fff;
	margin-bottom: 20px;
	animation: bounce 0.5s ease-out;
}

@keyframes bounce {
	0% {
		transform: scale(0);
	}

	50% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1);
	}
}

.success-title {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 10px;
}

.success-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 30px;
}

.success-btn {
	padding: 12px 40px;
	background: #fff;
	color: #0080ff;
	font-size: 16px;
	font-weight: bold;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s;
}

.success-btn:hover {
	transform: scale(1.05);
}

.tips-section {
	background: #fff;
	margin: 15px;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tips-title {
	font-size: 16px;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.tips-title::before {
	content: '';
	width: 6px;
	height: 6px;
	background: #ff0000;
	border-radius: 50%;
}

.tips-list {
	font-size: 14px;
	color: #666;
	line-height: 2;
}

.tips-list p {
	margin-bottom: 10px;
	padding-left: 14px;
	position: relative;
}

.tips-list p::before {
	content: '◆';
	position: absolute;
	left: 0;
	color: #0080ff;
	font-size: 10px;
}

.tips-list p:last-child {
	margin-bottom: 0;
}

.contact-section {
	background: #fff;
	margin: 15px;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	text-align: center;
}

.contact-title {
	font-size: 16px;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
}

.contact-info {
	font-size: 14px;
	color: #666;
	line-height: 2;
}

.contact-info p {
	margin-bottom: 8px;
}

.contact-info p:last-child {
	margin-bottom: 0;
}

.contact-phone {
	color: #0080ff;
	font-weight: bold;
	font-size: 16px;
}

.callback-body {
	background-color: #2979ff;
}

.container {
	position: relative;
	min-height: 100vh;
}

.page-content {
	position: relative;
	min-height: calc(100vh - 50px);
}

.bg-blue, .bg-green, .bg-red {
	width: 100%;
	border-radius: 0 0 50px 50px;
	display: flex;
	justify-content: center;
}

.bg-blue {
	height: 200px;
	background: linear-gradient(180deg, #2979ff 0%, #1a68e6 100%);
}

.bg-green {
	height: 200px;
	background: linear-gradient(180deg, #dbf1e1 0%, #f8f8f8 100%);
}

.bg-red {
	height: 150px;
	background: linear-gradient(180deg, #ffeaea 0%, #f8f8f8 100%);
}

.status-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 15px;
}

.icon-circle {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.icon-circle svg {
	width: 36px;
	height: 36px;
}

.icon-circle-white {
	background: #fff;
}

.icon-circle-green {
	background: #4cd964;
}

.icon-circle-red {
	background: #ff6b6b;
}

.loading-spinner-white {
	width: 36px;
	height: 36px;
	border: 3px solid rgba(41, 121, 255, 0.2);
	border-top-color: #2979ff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.status-text-white {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
}

.status-text-green {
	font-size: 20px;
	font-weight: bold;
	color: #4cd964;
}

.status-text-red {
	font-size: 20px;
	font-weight: bold;
	color: #ff6b6b;
}

.amount-box {
	margin-top: 10px;
	color: #4cd964;
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.amount-box .symbol {
	font-size: 20px;
	font-weight: bold;
}

.amount-box .amount {
	font-size: 40px;
	font-weight: bold;
	font-family: 'DIN Alternate', Arial;
}

.info-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-top: 30px;
}

.card-title-green {
	font-size: 16px;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
	border-left: 4px solid #4cd964;
	padding-left: 12px;
}

.card-title-red {
	font-size: 16px;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
	border-left: 4px solid #ff6b6b;
	padding-left: 12px;
}

.tips-querying {
	font-size: 13px;
	color: #999;
	margin-top: 10px;
	line-height: 1.5;
}

.tips-green {
	font-size: 13px;
	color: #4cd964;
	margin-top: 15px;
	line-height: 1.5;
}

.tips-red {
	font-size: 13px;
	color: #666;
	margin-top: 15px;
	line-height: 1.5;
}

.detail-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
}

.detail-item .label {
	color: #999;
	font-size: 14px;
}

.detail-item .value {
	color: #333;
	font-size: 14px;
	font-weight: 500;
}

.dash-line {
	height: 1px;
	border-top: 1px dashed #eee;
	margin: 15px 0;
}

.tips {
	font-size: 13px;
	color: #999;
	line-height: 1.6;
}

.button-group {
	margin-top: 40px;
	padding: 0 10px;
	display: flex;
	gap: 15px;
}

.btn {
	flex: 1;
	padding: 14px;
	border: none;
	border-radius: 25px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
	text-align: center;
	text-decoration: none;
}

.btn-primary {
	background: linear-gradient(180deg, #7ed321 0%, #5ac8fa 100%);
	color: #fff;
	box-shadow: 0 6px 20px rgba(126, 211, 33, 0.4);
}

.btn-green {
	background: linear-gradient(180deg, #4cd964 0%, #33cc33 100%);
	color: #fff;
	box-shadow: 0 6px 20px rgba(76, 217, 100, 0.4);
}

.tips-gray {
	font-size: 13px;
	color: #999;
	margin-top: 10px;
	line-height: 1.5;
}

.tips-green {
	font-size: 13px;
	color: #4cd964;
	margin-top: 15px;
	line-height: 1.5;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(126, 211, 33, 0.5);
}

.btn-primary:active {
	transform: translateY(0);
	box-shadow: 0 4px 15px rgba(126, 211, 33, 0.3);
}

.btn-plain {
	background: #fff;
	color: #333;
	border: 1px solid #ddd;
}

.btn-plain:hover {
	background: #f5f5f5;
}

.service-body {
	background-color: #e8e8e8;
	display: flex;
	flex-direction: column;
}

.chat-container {
	flex: 1;
	overflow-y: auto;
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.message {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.message.user {
	flex-direction: row-reverse;
}

.avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	flex-shrink: 0;
	overflow: hidden;
}

.avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.avatar.default {
	background: #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #666;
}

.bubble-wrapper {
	max-width: 70%;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.bubble {
	padding: 10px 14px;
	border-radius: 12px;
	font-size: 15px;
	line-height: 1.5;
	position: relative;
	word-break: break-word;
	white-space: pre-wrap;
}

.message.user .bubble {
	background: #95ec69;
	color: #000;
	border-radius: 12px 0 12px 12px;
}

.message.user .bubble::after {
	content: '';
	position: absolute;
	right: -8px;
	top: 8px;
	width: 0;
	height: 0;
	border-left: 8px solid #95ec69;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}

.message.agent .bubble {
	background: #fff;
	color: #333;
	border-radius: 0 12px 12px 12px;
}

.message.agent .bubble::after {
	content: '';
	position: absolute;
	left: -8px;
	top: 8px;
	width: 0;
	height: 0;
	border-right: 8px solid #fff;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}

.message-time {
	font-size: 12px;
	color: #999;
	text-align: center;
}

.message-image {
	max-width: 200px;
	max-height: 200px;
	border-radius: 8px;
	cursor: pointer;
}

.message-file {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	background: #fff;
	border-radius: 8px;
	min-width: 200px;
}

.message.user .message-file {
	background: #e8f5e9;
}

.file-icon {
	width: 40px;
	height: 40px;
	background: #2979ff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
}

.file-info {
	flex: 1;
}

.file-name {
	font-size: 14px;
	color: #333;
	display: block;
}

.file-size {
	font-size: 12px;
	color: #999;
	display: block;
	margin-top: 4px;
}

.input-area {
	background: #fff;
	padding: 10px 15px;
	border-top: 1px solid #eee;
	padding-bottom: calc(10px + env(safe-area-inset-bottom));
}

.input-tools {
	display: flex;
	gap: 15px;
	margin-bottom: 10px;
	padding-left: 5px;
}

.tool-btn {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	cursor: pointer;
	border: none;
	background: none;
}

.input-row {
	display: flex;
	gap: 10px;
	align-items: center;
}

.input-box {
	flex: 1;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 20px;
	font-size: 15px;
	outline: none;
	resize: none;
	height: 40px;
	max-height: 120px;
}

.send-btn {
	padding: 10px 25px;
	background: #07c160;
	color: #fff;
	border: none;
	border-radius: 20px;
	font-size: 15px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s;
}

.send-btn:hover {
	background: #06ad56;
}

.send-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.quick-replies {
	padding: 15px;
	background: #fff;
	border-bottom: 1px solid #eee;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.quick-btn {
	padding: 8px 16px;
	background: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 20px;
	font-size: 13px;
	color: #666;
	cursor: pointer;
	transition: all 0.3s;
}

.quick-btn:hover {
	background: #2979ff;
	color: #fff;
	border-color: #2979ff;
}

.typing-indicator {
	display: flex;
	gap: 5px;
	padding: 8px 12px;
}

.typing-dot {
	width: 6px;
	height: 6px;
	background: #999;
	border-radius: 50%;
	animation: typing 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
	animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
	animation-delay: -0.16s;
}

@keyframes typing {

	0%,
	80%,
	100% {
		transform: scale(0);
	}

	40% {
		transform: scale(1);
	}
}

.image-preview {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 100;
}

.image-preview img {
	max-width: 90%;
	max-height: 90%;
}

.image-preview-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: #fff;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.hidden {
	display: none;
}

.xieyi-card {
	border-radius: 8px;
	padding: 25px;
}

.title-bar {
	text-align: center;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px dashed #0080ff;
	position: relative;
}

.title-bar::before,
.title-bar::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 2px;
	background: #0080ff;
}

.title-bar::before {
	left: 0;
}

.title-bar::after {
	right: 0;
}

.main-title {
	font-size: 20px;
	font-weight: bold;
	color: #333;
}

.section {
	margin-bottom: 25px;
}

.section-title {
	font-size: 16px;
	font-weight: bold;
	color: #333;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.section-title::before {
	content: '';
	width: 6px;
	height: 6px;
	background: #ff0000;
	border-radius: 50%;
}

.section-content {
	font-size: 14px;
	color: #666;
	line-height: 2;
	padding-left: 14px;
}

.section-content p {
	margin-bottom: 8px;
}

.section-content p:last-child {
	margin-bottom: 0;
}

.highlight-red {
	color: #ff0000;
	font-weight: bold;
}

.highlight-orange {
	color: #ff6600;
	font-weight: bold;
}

.footer-info {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #eee;
	font-size: 12px;
	color: #999;
	text-align: center;
	line-height: 2;
}

.footer-info p {
	margin-bottom: 8px;
}

.footer-info p:last-child {
	margin-bottom: 0;
}

.footer-links {
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	font-size: 12px;
	color: #999;
}

.footer-links span {
	display: flex;
	align-items: center;
	gap: 4px;
}

.footer-links span::before {
	content: '';
	width: 8px;
	height: 8px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230080ff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center center;
	background-size: contain;
}

.xieyi-back-btn {
	display: block;
	text-align: center;
	margin-top: 20px;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	padding: 10px;
}

.xieyi-back-btn:hover {
	text-decoration: underline;
}

.return-body {
	padding-bottom: 30px;
}

.return-body .card {
	margin: 15px;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.return-body .form-label {
	font-size: 14px;
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
}

.return-body .form-input {
	width: 100%;
	padding: 15px;
	border: 2px solid #eee;
	border-radius: 10px;
	font-size: 15px;
	color: #333;
	transition: border-color 0.3s;
	outline: none;
}

.return-body .form-input:focus {
	border-color: #0080ff;
}

.return-body .form-input::placeholder {
	color: #ccc;
}

.return-body .submit-btn {
	width: 100%;
	padding: 16px;
	background: linear-gradient(180deg, #ff6b6b 0%, #ee5a5a 100%);
	color: #fff;
	font-size: 17px;
	font-weight: bold;
	border: none;
	border-radius: 27px;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: 10px;
}

.return-body .submit-btn:hover {
	transform: scale(1.02);
	box-shadow: 0 6px 20px rgba(238, 90, 90, 0.4);
}

.return-body .submit-btn:active {
	transform: scale(0.98);
}

@media screen and (max-width: 480px) {
	.banner-title {
		font-size: 32px;
	}

	.banner-subtitle {
		font-size: 16px;
	}

	.half-price-btn {
		font-size: 14px;
		padding: 8px 18px;
	}

	.card {
		padding: 20px;
	}

	.amount-value {
		font-size: 32px;
	}

	.hello-title {
		font-size: 40px;
	}

	.card-illustration {
		height: 150px;
	}

	.phone-icon {
		width: 100px;
		height: 135px;
	}

	.red-packet {
		width: 50px;
		height: 60px;
	}

	.red-packet-text {
		font-size: 14px;
	}

	.coin {
		width: 20px;
		height: 20px;
	}

	.coin-1 {
		top: 30px;
		right: 15px;
	}

	.coin-2 {
		top: 60px;
		right: 120px;
	}

	.coin-3 {
		top: 100px;
		right: 150px;
	}

	.red-packet-small {
		width: 30px;
		height: 35px;
	}

	.red-packet-1 {
		top: 40px;
		right: 130px;
	}

	.red-packet-2 {
		top: 110px;
		right: 5px;
	}

	.callback-card {
		padding: 15px;
	}

	.form-input {
		padding: 12px;
	}

	.submit-btn {
		padding: 14px;
	}
}

.cd-timer {
	position: absolute;
	/* 用 vw 按屏幕宽度等比定位，与 banner 图比例保持一致 */
	top: 30.7vw;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 6;
	color: #fff;
}
.cd-label {
	font-size: 13px;
	font-weight: 600;
	margin: 0 8px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}
.cd-num {
	font-size: 20px;
	font-weight: 700;
	font-family: 'Courier New', monospace;
	background: rgba(255, 255, 255, 0.25);
	border-radius: 4px;
	padding: 2px 6px;
	min-width: 34px;
	text-align: center;
	letter-spacing: 1px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}
.cd-colon {
	margin: 0 4px;
	font-size: 20px;
	font-weight: 700;
}

.scroll-ad {
	position: absolute;
	left: 0;
	right: 0;
	/* 用 vw 按屏幕宽度等比定位，与 banner 图比例保持一致 */
	top: 44vw;
	margin: 0;
	padding: 0 15px;
	z-index: 6;
	text-align: center;
	background: transparent;
}
.scroll-ad .scroll-content {
	display: inline-block;
	animation: none;
	white-space: nowrap;
}
.scroll-ad .scroll-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 8px;
	vertical-align: middle;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23604b1a'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3a4.5 4.5 0 0 0-2.5-4v8a4.5 4.5 0 0 0 2.5-4zM14 3.23v2.06A7 7 0 0 1 19 12a7 7 0 0 1-5 6.71v2.06A9 9 0 0 0 21 12a9 9 0 0 0-7-8.77z'/%3E%3C/svg%3E") no-repeat center center;
	background-size: contain;
}
.scroll-ad .scroll-text {
	color: #3d2c0a;
	font-size: 14px;
	font-weight: 600;
	vertical-align: middle;
}
@keyframes recordIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
#recordText {
	display: inline-block;
	animation: recordIn .6s ease;
}