* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background-color: #f5f5f5;
	min-height: 100vh;
}

[v-cloak] {
	display: none !important;
}

#app {
	padding: 20px;
	padding-bottom: 100px;
}
.vue-loading {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}
.vue-spinner {
	width: 36px;
	height: 36px;
	border: 3px solid #e8e8e8;
	border-top-color: #FF9900;
	border-radius: 50%;
	animation: vu-spin 0.7s linear infinite;
}
@keyframes vu-spin {
	to { transform: rotate(360deg); }
}
#app:not([v-cloak]) ~ .vue-loading { display: none; }

.header {
	text-align: center;
	margin-bottom: 30px;
}

.header-title {
	font-size: 28px;
	font-weight: bold;
	color: #333;
	margin-bottom: 8px;
}

.header-subtitle {
	font-size: 14px;
	color: #999;
}

.list-container {
	background-color: white;
	border-radius: 18px 8px;
	padding: 15px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.list-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.list-item {
	border-radius: 18px 8px;
	padding: 20px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	border: 2px solid transparent;
}

.list-item.meituan {
	background: rgba(255, 209, 0, 0.7);
}

.list-item.douyin {
	background: rgba(0, 0, 0, 0.7);
}

.list-item.didi {
	background: rgba(255, 0, 0, 0.7);
}

.list-item.ctrip {
	background: rgba(0, 191, 255, 0.7);
}

.list-item.active {
	position: relative;
	animation: flame-border-cyan-white 1s infinite;
}

@keyframes flame-border-cyan-white {
	0%, 100% {
		box-shadow: inset 0 0 5px rgba(0, 255, 255, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.6), inset 0 0 15px rgba(0, 255, 255, 0.4);
	}
	50% {
		box-shadow: inset 0 0 10px rgba(0, 255, 255, 1), inset 0 0 20px rgba(255, 255, 255, 0.8), inset 0 0 30px rgba(0, 255, 255, 0.6);
	}
}

.item-icon {
	font-size: 36px;
	margin-bottom: 8px;
}

.item-name {
	font-size: 16px;
	font-weight: 600;
}

.item-desc {
	font-size: 12px;
	color: rgba(0, 0, 0, 0.5);
	margin-top: 4px;
}

.list-item.douyin .item-name,
.list-item.douyin .item-desc {
	color: white;
}

.list-item.douyin .item-desc {
	color: rgba(255, 255, 255, 0.7);
}

.bottom-buttons {
	position: fixed;
	bottom: 40px;
	left: 15%;
	width: 70%;
	display: flex;
	gap: 0;
}

.bottom-btn {
	flex: 1;
	padding: 16px 0;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.bottom-btn.left-btn {
	background: linear-gradient(135deg, #ff6b00, #ff8c00);
	color: white;
	border-radius: 25px 0 0 25px;
	box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.bottom-btn.right-btn {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	border-radius: 0 25px 25px 0;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.bottom-btn:hover {
	transform: translateY(-2px);
}

.bottom-btn:active {
	transform: scale(0.98);
}

.bottom-btn.left-btn:hover {
	background: linear-gradient(135deg, #ff8c00, #ffaa00);
	box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}

.bottom-btn.right-btn:hover {
	background: linear-gradient(135deg, #764ba2, #667eea);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}