.whatsapp-confirm-modal-container {
	background: linear-gradient(145deg, #ffffff, #f0f8f0);
	padding: 35px 30px;
	border-radius: 16px;
	text-align: center;
	border: 2px solid #25d366;
	box-shadow:
		0 20px 60px rgba(37, 211, 102, 0.2),
		0 8px 20px rgba(37, 211, 102, 0.1);
	position: relative;
	max-width: 380px;
	width: 90%;
	color: #333;
	animation: slideIn 0.4s ease;
	overflow: hidden;
}

.whatsapp-confirm-modal-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #25d366, #20c05c, #1ea653);
	border-radius: 16px 16px 0 0;
}

.whatsapp-logo {
	font-size: 3.5rem;
	margin-bottom: 20px;
	animation: whatsappPulse 2s ease-in-out infinite;
	filter: drop-shadow(0 4px 8px rgba(37, 211, 102, 0.3));
}

@keyframes whatsappPulse {

	0%,
	100% {
		transform: scale(1);
		filter: drop-shadow(0 4px 8px rgba(37, 211, 102, 0.3));
	}

	50% {
		transform: scale(1.1);
		filter: drop-shadow(0 6px 12px rgba(37, 211, 102, 0.5));
	}
}

.whatsapp-confirm-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #25d366;
	margin-bottom: 18px;
	line-height: 1.3;
}

.whatsapp-confirm-message {
	font-size: 1rem;
	color: #555;
	margin-bottom: 25px;
	line-height: 1.6;
	text-align: left;
	padding: 0 10px;
}

.whatsapp-features {
	margin: 20px 0 30px 0;
	text-align: left;
}

.whatsapp-feature-item {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	padding: 8px 10px;
	background: rgba(37, 211, 102, 0.05);
	border-radius: 8px;
	border-left: 3px solid #25d366;
}

.check-icon {
	color: #25d366;
	font-weight: bold;
	font-size: 1.1rem;
	margin-right: 12px;
	width: 20px;
	text-align: center;
}

.whatsapp-feature-item span:last-child {
	color: #444;
	font-size: 0.95rem;
	line-height: 1.4;
}

.whatsapp-buttons {
	display: flex;
	gap: 12px;
	margin-top: 25px;
}

.whatsapp-confirm-button {
	background: linear-gradient(135deg, #25d366, #20c05c);
	color: white;
	padding: 14px 25px;
	font-size: 1.1rem;
	font-weight: 600;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	flex: 1;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
	position: relative;
	overflow: hidden;
}

.whatsapp-confirm-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.6s;
}

.whatsapp-confirm-button:hover::before {
	left: 100%;
}

.whatsapp-confirm-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-cancel-button {
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	color: #666;
	padding: 14px 25px;
	font-size: 1.1rem;
	font-weight: 500;
	border: 1px solid #dee2e6;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	flex: 1;
}

.whatsapp-cancel-button:hover {
	background: linear-gradient(135deg, #e9ecef, #dee2e6);
	color: #495057;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 手机适配 */
@media (max-width: 768px) {
	.whatsapp-confirm-modal-container {
		max-width: 340px;
		padding: 30px 25px;
	}

	.whatsapp-logo {
		font-size: 3rem;
	}

	.whatsapp-confirm-title {
		font-size: 1.2rem;
	}

	.whatsapp-confirm-message {
		font-size: 0.95rem;
	}

	.whatsapp-buttons {
		flex-direction: column;
		gap: 10px;
	}

	.whatsapp-confirm-button,
	.whatsapp-cancel-button {
		width: 100%;
		padding: 12px 20px;
		font-size: 1rem;
	}

	.whatsapp-feature-item {
		padding: 6px 8px;
	}

	.whatsapp-feature-item span:last-child {
		font-size: 0.9rem;
	}
}

/* 添加绿色主题的背景装饰 */
.whatsapp-confirm-modal-container::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
	z-index: -1;
	animation: rotate 20s linear infinite;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* 弹窗背景 */
.modal-overlay-background-layer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	backdrop-filter: blur(8px);
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* 进度弹窗 - 更小更精致 */
.progress-modal-container-wrapper {
	background: linear-gradient(145deg, #ffffff, #f8f9fa);
	padding: 25px;
	border-radius: 16px;
	text-align: center;
	border: none;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.2),
		0 8px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	max-width: 280px;
	width: 85%;
	color: #333;
	animation: slideIn 0.4s ease;
	transform: translateY(0);
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-30px) scale(0.9);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.modal-close-button-element {
	position: absolute;
	top: 8px;
	right: 12px;
	background: rgba(0, 0, 0, 0.1);
	border: none;
	color: #666;
	font-size: 18px;
	cursor: pointer;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.modal-close-button-element:hover {
	background: rgba(0, 0, 0, 0.2);
	color: #333;
}

.progress-icon {
	font-size: 2rem;
	margin-bottom: 10px;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

.progress-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
}

.circular-progress-indicator-svg {
	width: 80px;
	height: 80px;
	margin: 10px auto;
	transform: rotate(-90deg);
}

.progress-circle-background-path {
	fill: none;
	stroke: #e9ecef;
	stroke-width: 6;
}

.progress-circle-foreground-path {
	fill: none;
	stroke: url(#progressGradient);
	stroke-width: 6;
	stroke-linecap: round;
	transition: stroke-dashoffset 0.3s ease;
}

.progress-percentage-text-display {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 10px 0;
	color: #007bff;
}

.ai-processing-status-message {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 10px;
}

/* 完成提示弹窗 - 更小更精致 */
.completion-modal-container-wrapper {
	background: linear-gradient(145deg, #ffffff, #f8f9fa);
	padding: 30px 25px;
	border-radius: 16px;
	text-align: center;
	border: none;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.2),
		0 8px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	max-width: 320px;
	width: 85%;
	color: #333;
	animation: slideIn 0.4s ease;
}

.completion-icon {
	font-size: 3rem;
	margin-bottom: 15px;
	animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.completion-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #28a745;
	margin-bottom: 15px;
}

.completion-message {
	font-size: 1rem;
	color: #666;
	margin-bottom: 25px;
	line-height: 1.5;
}

.whatsapp-button {
	background: linear-gradient(135deg, #25d366, #20c05c);
	color: white;
	padding: 12px 30px;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 12px;
	width: 100%;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.close-button {
	background: transparent;
	color: #666;
	padding: 8px 20px;
	font-size: 0.9rem;
	font-weight: 500;
	border: 1px solid #ddd;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.close-button:hover {
	background: #f8f9fa;
	color: #333;
	border-color: #bbb;
}

/* 添加渐变定义 */
.circular-progress-indicator-svg defs {
	display: none;
}

.progress-modal-container-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #007bff, #0056b3);
	border-radius: 16px 16px 0 0;
}

.completion-modal-container-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #28a745, #20c997);
	border-radius: 16px 16px 0 0;
}

/* 手机适配 */
@media (max-width: 768px) {

	.progress-modal-container-wrapper,
	.completion-modal-container-wrapper {
		max-width: 300px;
		padding: 20px;
	}

	.progress-icon,
	.completion-icon {
		font-size: 2.5rem;
	}

	.progress-title,
	.completion-title {
		font-size: 1.1rem;
	}

	.whatsapp-button {
		padding: 10px 25px;
		font-size: 0.95rem;
	}
}

/* 添加微妙的阴影动画 */
.progress-modal-container-wrapper:hover,
.completion-modal-container-wrapper:hover {
	box-shadow:
		0 25px 70px rgba(0, 0, 0, 0.25),
		0 10px 25px rgba(0, 0, 0, 0.15);
}

/* 进度弹窗CSS (保持不变) */
.modal-overlay-background-layer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	backdrop-filter: blur(5px);
}

.progress-modal-container-wrapper {
	background: linear-gradient(135deg, #1e1e2e, #2d3436);
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	border: 2px solid #00d4ff;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
	position: relative;
	max-width: 400px;
	width: 90%;
	color: white;
}

.modal-close-button-element {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	color: #ffffff;
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 1001;
}

.circular-progress-indicator-svg {
	width: 120px;
	height: 120px;
	margin: 20px auto;
}

.progress-circle-background-path {
	fill: none;
	stroke: rgba(0, 212, 255, 0.2);
	stroke-width: 8;
}

.progress-circle-foreground-path {
	fill: none;
	stroke: #00d4ff;
	stroke-width: 8;
	stroke-linecap: round;
	transform-origin: center;
	transform: rotate(-90deg);
	transition: stroke-dashoffset 0.5s ease;
}

.progress-percentage-text-display {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 20px 0;
	color: #00ff88;
}

.ai-processing-status-message {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
}

/* 完成提示弹窗CSS */
.completion-modal-container-wrapper {
	background: linear-gradient(135deg, #ffffff, #f8f9fa);
	padding: 50px 40px;
	border-radius: 20px;
	text-align: center;
	border: 3px solid #25d366;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
	position: relative;
	max-width: 500px;
	width: 90%;
	color: #333;
}

.completion-icon {
	font-size: 4rem;
	margin-bottom: 20px;
	animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

.completion-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: #25d366;
	margin-bottom: 20px;
}

.completion-message {
	font-size: 1.1rem;
	color: #333;
	margin-bottom: 30px;
	line-height: 1.6;
}

.whatsapp-button {
	background: linear-gradient(135deg, #25d366, #128c7e);
	color: white;
	padding: 18px 40px;
	font-size: 1.2rem;
	font-weight: 700;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 10px;
	display: block;
	width: 100%;
	margin-bottom: 15px;
}

.whatsapp-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

.close-button {
	background: #6c757d;
	color: white;
	padding: 15px 30px;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.close-button:hover {
	background: #5a6268;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.completion-modal-container-wrapper {
		padding: 30px 20px;
	}

	.whatsapp-button {
		padding: 15px 30px;
		font-size: 1.1rem;
	}
}

/* 添加我的弹窗CSS到你的样式表中 */
.modal-overlay-background-layer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	backdrop-filter: blur(5px);
}

.progress-modal-container-wrapper {
	background: linear-gradient(135deg, #1e1e2e, #2d3436);
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	border: 2px solid #00d4ff;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
	position: relative;
	max-width: 400px;
	width: 90%;
	color: white;
}

.modal-close-button-element {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	color: #ffffff;
	font-size: 1.5rem;
	cursor: pointer;
}

.circular-progress-indicator-svg {
	width: 120px;
	height: 120px;
	margin: 20px auto;
}

.progress-circle-background-path {
	fill: none;
	stroke: rgba(0, 212, 255, 0.2);
	stroke-width: 8;
}

.progress-circle-foreground-path {
	fill: none;
	stroke: #00d4ff;
	stroke-width: 8;
	stroke-linecap: round;
	transform-origin: center;
	transform: rotate(-90deg);
	transition: stroke-dashoffset 0.5s ease;
}

.progress-percentage-text-display {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 20px 0;
	color: #00ff88;
}

.ai-processing-status-message {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
}


body {
	margin: 0;
	padding: 0;
	font-family: 'Arial', 'Microsoft YaHei', sans-serif;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 75%, #0f0f23 100%);
	color: #e8e8e8;
	position: relative;
	overflow-x: hidden;
}

/* Add video overlay */
.video-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(26, 26, 46, 0.75));
	z-index: -1;
}

.video-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	object-fit: cover;
}

.container {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.page-header {
	text-align: center;
	padding: 20px 0;
}

.ai-orb {
	width: 100px;
	height: 100px;
	margin-bottom: -10px;
	opacity: 0.95;
	background: linear-gradient(45deg, #d4af37, #ffd700);
	padding: 2px;
	border-radius: 50%;
	animation: pulse 3s ease-in-out infinite;
	box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
	}

	50% {
		transform: scale(1.05);
		box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
	}
}

.page-header h1 {
	background: linear-gradient(45deg, #d4af37, #ffd700, #f4e84d);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: bold;
	text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
	margin-bottom: -10px;
}

.promo-banner {
	background: linear-gradient(135deg, #1e3a8a, #3b82f6);
	color: #ffffff;
	text-align: center;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 2px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	line-height: 1.4;
	border: 1px solid #3b82f6;
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.feature-list {
	display: flex;
	justify-content: center;
	margin: 1px 0;
}

.feature-item {
	margin: 0 15px;
	display: flex;
	align-items: center;
	color: #d4af37;
}

.feature-item .check-icon {
	margin-right: 5px;
	color: #ffd700;
	font-weight: bold;
}

.search-form {
	display: flex;
	margin: -10px 0;
}

.search-input {
	flex: 1;
	padding: 15px;
	border: 2px solid #3b82f6;
	border-radius: 5px 0 0 5px;
	font-size: 16px;
	background: #1a1a2e;
	color: #e8e8e8;
	transition: border-color 0.3s;
}

.search-input:focus {
	outline: none;
	border-color: #d4af37;
	box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.search-button {
	background: linear-gradient(135deg, #d4af37, #ffd700);
	color: #1a1a2e;
	border: none;
	padding: 15px 30px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	border-radius: 0 5px 5px 0;
	transition: all 0.3s;
}

.search-button:hover {
	background: linear-gradient(135deg, #ffd700, #f4e84d);
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.service-features {
	display: flex;
	justify-content: center;
	margin: 20px 0;
}

.service-feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 20px;
	font-size: 12px;
	color: #3b82f6;
}

.service-feature .feature-icon {
	font-size: 24px;
	margin-bottom: 5px;
}

.ranking-section {
	background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
	border-radius: 12px;
	padding: 20px;
	margin-top: 20px;
	border: 1px solid rgba(59, 130, 246, 0.3);
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ranking-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.ranking-title {
	font-size: 1.5rem;
	font-weight: bold;
	background: linear-gradient(45deg, #d4af37, #ffd700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ranking-header h3 {
	background: linear-gradient(45deg, #3b82f6, #60a5fa);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: bold;
}

.view-more {
	color: #3b82f6;
	text-decoration: none;
}

.stock-table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	overflow: hidden;
}

.stock-table th,
.stock-table td {
	padding: 12px;
	text-align: center;
	border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.stock-table th {
	background: linear-gradient(135deg, #1e293b, #334155);
	color: #d4af37;
	font-weight: bold;
}

.stock-table tr:hover {
	background: rgba(59, 130, 246, 0.1);
	transition: background 0.3s;
}

.score-high {
	color: #ffd700;
	font-weight: bold;
	text-shadow: 0 1px 3px rgba(212, 175, 55, 0.3);
}

.ranking-number {
	background: linear-gradient(135deg, #1e3a8a, #3b82f6);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-weight: bold;
}

.stock-name {
	background: transparent;
	border: none;
	color: #3b82f6;
	cursor: pointer;
	text-decoration: underline;
	font-size: inherit;
	font-family: inherit;
	transition: color 0.3s;
}

.stock-name:hover {
	color: #d4af37;
	text-shadow: 0 1px 3px rgba(212, 175, 55, 0.3);
}

.disclaimer {
	margin-top: 30px;
	padding: 20px;
	font-size: 14px;
	line-height: 1.6;
	color: #9ca3af;
	background: rgba(26, 26, 46, 0.5);
	border-radius: 8px;
	border-left: 4px solid #d4af37;
}

.wave-decoration {
	height: 40px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%233b82f6" fill-opacity="0.3" d="M0,160L48,170.7C96,181,192,203,288,197.3C384,192,480,160,576,154.7C672,149,768,171,864,176C960,181,1056,171,1152,160C1248,149,1344,139,1392,133.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
	background-size: cover;
	margin-top: -20px;
}

/* Add modal window styles */
.ai-modal {
	display: none;
	position: fixed;
	top: 20%;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.8);
}

.ai-progress,
.ai-result {
	display: none;
}

.pro-box {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	border: 1px solid rgba(59, 130, 246, 0.3);
	border-radius: 16px;
	padding: 32px 24px;
	max-width: 380px;
	margin: 60px auto;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
}

.word {
	font-size: 20px;
	font-weight: bold;
	background: linear-gradient(45deg, #d4af37, #ffd700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.progress-box {
	margin-bottom: 20px;
}

.item {
	margin-bottom: 20px;
}

.i-title {
	font-size: 15px;
	color: #3b82f6;
	margin-bottom: 8px;
}

.layui-progress {
	background: #1e293b;
	border-radius: 8px;
	height: 16px;
	border: 1px solid rgba(59, 130, 246, 0.2);
}

.layui-progress-bar {
	background: linear-gradient(90deg, #3b82f6, #60a5fa);
	height: 100%;
	border-radius: 8px;
	transition: width 0.3s ease;
}

.result-box {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 16px;
	padding: 32px 24px;
	max-width: 380px;
	height: inherit;
	margin: 60px auto;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.btn {
	background: linear-gradient(135deg, #d4af37, #ffd700);
	color: #1a1a2e;
	padding: 25px 0;
	font-size: large;
	font-weight: bold;
	border-radius: 12px;
	text-align: center;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	border: none;
	transition: all 0.3s;
	animation: breath 1.6s infinite;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn:hover {
	background: linear-gradient(135deg, #ffd700, #f4e84d);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

@keyframes breath {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.95;
		transform: scale(1.02);
	}
}

/* 基础响应式优化 */
@media screen and (max-width: 768px) {
	.container {
		padding: 15px 10px;
	}

	.page-header h1 {
		font-size: 24px;
		margin-bottom: 5px;
	}

	.promo-banner {
		padding: 10px;
		font-size: 12px;
	}
}

/* 小屏幕设备优化 */
@media screen and (max-width: 480px) {
	.feature-list {
		flex-wrap: wrap;
		justify-content: space-around;
	}

	.feature-item {
		margin: 0 5px;
		font-size: 12px;
	}

	.service-features {
		flex-wrap: wrap;
	}

	.service-feature {
		margin: 5px 10px;
		font-size: 11px;
	}

	.search-button {
		padding: 15px 15px;
		font-size: 12px;
	}

	/* 表格优化 */
	.stock-table {
		table-layout: fixed;
	}

	.stock-table th,
	.stock-table td {
		padding: 8px 4px;
		font-size: 12px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	/* 列宽设置 */
	.stock-table th:nth-child(1),
	.stock-table td:nth-child(1) {
		width: 15%;
	}

	.stock-table th:nth-child(2),
	.stock-table td:nth-child(2) {
		width: 25%;
	}

	.stock-table th:nth-child(3),
	.stock-table td:nth-child(3) {
		width: 35%;
	}

	.stock-table th:nth-child(4),
	.stock-table td:nth-child(4) {
		width: 25%;
	}

	.ranking-title {
		font-size: 16px;
	}

	.disclaimer {
		font-size: 12px;
		padding: 15px;
	}

	/* 进度条和结果框优化 */
	.pro-box,
	.result-box {
		max-width: 90%;
		padding: 20px 15px;
	}

	.btn {
		padding: 20px 0;
		font-size: 16px;
	}
}