/* Style4 模板专用样式 - 玻璃拟态风格 */

/* 信息指南样式 - 玻璃拟态设计 */
.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: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 16px;
	color: #2d3748;
	font-size: 16px;
	font-weight: 600;
	box-shadow: 
		0 8px 32px rgba(31, 38, 135, 0.37),
		inset 0 1px 0 rgba(255, 255, 255, 0.5),
		inset 0 -1px 0 rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.guide-icon {
	font-size: 20px;
	margin-right: 10px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.title-text {
	margin-right: 8px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.title-en {
	font-size: 12px;
	opacity: 0.7;
	font-weight: 400;
	color: #4a5568;
}

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

.guide-item {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 
		0 8px 32px rgba(31, 38, 135, 0.37),
		inset 0 1px 0 rgba(255, 255, 255, 0.5),
		inset 0 -1px 0 rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.18);
	position: relative;
}

.guide-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.guide-item:hover::before {
	opacity: 1;
}

.guide-item:hover {
	transform: translateY(-5px);
	box-shadow: 
		0 12px 40px rgba(31, 38, 135, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.6),
		inset 0 -1px 0 rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.3);
}

.guide-item a {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 16px 10px;
	text-decoration: none;
	color: #2d3748;
	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: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 
		0 4px 15px rgba(31, 38, 135, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.guide-item:hover .item-icon {
	background: rgba(255, 255, 255, 0.4);
	box-shadow: 
		0 6px 20px rgba(31, 38, 135, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
	transform: scale(1.1);
}

/* 玻璃拟态颜色 */
.weather-icon { 
	background: linear-gradient(135deg, #4facfe, #00f2fe);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.train-icon { 
	background: linear-gradient(135deg, #43e97b, #38f9d7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.calendar-icon { 
	background: linear-gradient(135deg, #fa709a, #fee140);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.cert-icon { 
	background: linear-gradient(135deg, #ffecd2, #fcb69f);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.map-icon { 
	background: linear-gradient(135deg, #a8edea, #fed6e3);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.time-icon { 
	background: linear-gradient(135deg, #d299c2, #fef9d7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.calc-icon { 
	background: linear-gradient(135deg, #89f7fe, #66a6ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.translate-icon { 
	background: linear-gradient(135deg, #fdbb2d, #22c1c3);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.convert-icon { 
	background: linear-gradient(135deg, #e0c3fc, #9bb5ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.item-text {
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
	color: #4a5568;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	padding: 2px 6px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.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;
	}
}
