/* Style8 模板专用样式 - 复古怀旧风格 */

/* 信息指南样式 - 复古怀旧设计 */
.info-guide-section {
	float: right;
	width: 300px;
	margin-top: 20px;
}

.info-guide-header {
	margin-bottom: 20px;
}

.section-title {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 18px 22px;
	background: linear-gradient(135deg, #8b4513, #a0522d);
	border-radius: 0;
	color: #f5deb3;
	font-size: 16px;
	font-weight: 600;
	font-family: 'Times New Roman', serif;
	box-shadow: 
		inset 0 2px 4px rgba(245, 222, 179, 0.3),
		inset 0 -2px 4px rgba(0, 0, 0, 0.3),
		0 4px 8px rgba(0, 0, 0, 0.2);
	border: 3px solid #daa520;
	position: relative;
}

.section-title::before {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	right: 3px;
	bottom: 3px;
	border: 1px solid rgba(245, 222, 179, 0.5);
	pointer-events: none;
}

.guide-icon {
	font-size: 20px;
	margin-right: 10px;
	color: #daa520;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.title-text {
	margin-right: 8px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	font-family: 'Times New Roman', serif;
}

.title-en {
	font-size: 12px;
	opacity: 0.8;
	font-weight: 400;
	color: #deb887;
	font-style: italic;
	font-family: 'Times New Roman', serif;
}

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

.guide-item {
	background: linear-gradient(145deg, #f5deb3, #deb887);
	border-radius: 0;
	overflow: hidden;
	box-shadow: 
		inset 0 2px 4px rgba(255, 255, 255, 0.3),
		inset 0 -2px 4px rgba(0, 0, 0, 0.2),
		0 4px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 2px solid #8b4513;
	position: relative;
}

.guide-item::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
	border: 1px solid rgba(139, 69, 19, 0.3);
	pointer-events: none;
}

.guide-item:hover {
	transform: translateY(-2px);
	box-shadow: 
		inset 0 2px 4px rgba(255, 255, 255, 0.4),
		inset 0 -2px 4px rgba(0, 0, 0, 0.3),
		0 6px 12px rgba(0, 0, 0, 0.2);
}

.guide-item a {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 16px 10px;
	text-decoration: none;
	color: #8b4513;
	height: 100%;
	position: relative;
	z-index: 1;
}

.item-icon {
	font-size: 24px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(145deg, #daa520, #b8860b);
	box-shadow: 
		inset 0 2px 4px rgba(255, 255, 255, 0.3),
		inset 0 -2px 4px rgba(0, 0, 0, 0.2),
		0 2px 4px rgba(0, 0, 0, 0.1);
	border: 2px solid #8b4513;
	transition: all 0.3s ease;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.guide-item:hover .item-icon {
	background: linear-gradient(145deg, #ffd700, #daa520);
	box-shadow: 
		inset 0 2px 4px rgba(255, 255, 255, 0.4),
		inset 0 -2px 4px rgba(0, 0, 0, 0.3),
		0 4px 8px rgba(0, 0, 0, 0.2);
	transform: scale(1.1);
}

/* 复古怀旧颜色 */
.weather-icon { color: #4682b4; }
.train-icon { color: #228b22; }
.calendar-icon { color: #dc143c; }
.cert-icon { color: #ff8c00; }
.map-icon { color: #9932cc; }
.time-icon { color: #008b8b; }
.calc-icon { color: #b22222; }
.translate-icon { color: #ff6347; }
.convert-icon { color: #708090; }

.item-text {
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
	color: #8b4513;
	font-family: 'Times New Roman', serif;
	text-shadow: 1px 1px 1px rgba(245, 222, 179, 0.5);
}

.mobile-version {
	display: none;
}

.desktop-version {
	display: grid;
}

/* 移动端响应式样式 */
@media all and (max-width: 767px) {
	.info-guide-section {
		float: none;
		width: 100%;
		margin-top: 20px;
	}

	.section-title {
		padding: 15px 18px;
		font-size: 14px;
	}

	.guide-icon {
		font-size: 18px;
		margin-right: 8px;
	}

	.guide-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.guide-item a {
		padding: 14px 8px;
	}

	.item-icon {
		font-size: 20px;
		width: 38px;
		height: 38px;
		margin-bottom: 6px;
	}

	.item-text {
		font-size: 11px;
	}

	.desktop-version {
		display: none;
	}

	.mobile-version {
		display: grid;
	}
}
