/* ===========================
   通用样式 - 黄金白银价格页面
   =========================== */

/* 页面头部 - 通用样式 */
.header {
	color: #fff;
	padding: 30px 0;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: relative;
	overflow: hidden;
}

/* 黄金页面头部 - 金色渐变 */
body.gold-page .header {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
}

/* 白银页面头部 - 银色渐变和光泽效果 */
body.silver-page .header {
	background: linear-gradient(135deg, #E8E8E8 0%, #D3D3D3 25%, #B8B8B8 50%, #A0A0A0 75%, #8B8B8B 100%);
	color: #2c2c2c;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

body.silver-page .header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
	pointer-events: none;
}

/* 导航栏样式 */
.nav-tabs {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 5px 0 0;
	margin: 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	border-bottom: 2px solid #e6e6e6;
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-item {
	display: inline-block;
	padding: 15px 30px;
	margin: 0 5px;
	text-decoration: none;
	color: #666;
	font-size: 1.1rem;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	border-radius: 8px 8px 0 0;
}

.nav-item:hover {
	color: #333;
	background: rgba(0,0,0,0.05);
	transform: translateY(-2px);
}

/* 黄金页面激活导航 */
body.gold-page .nav-item.active {
	color: #2c2c2c;
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

body.gold-page .nav-item.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

/* 白银页面激活导航 */
body.silver-page .nav-item.active {
	color: #2c2c2c;
	background: linear-gradient(135deg, #E8E8E8 0%, #D3D3D3 100%);
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

body.silver-page .nav-item.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #E8E8E8 0%, #D3D3D3 100%);
}

.nav-item i {
	margin-right: 8px;
	font-size: 1.2em;
}

.nav-item.gold i {
	color: #FFD700;
}

.nav-item.silver i {
	color: #C0C0C0;
}

.nav-item.forex {
	font-size: 1rem;
	padding: 15px 20px;
}

.nav-item.forex i {
	color: #01AAED;
}

.header h1 {
	margin: 0;
	font-size: 2.8rem;
	font-weight: 400;
}

body.gold-page .header h1 {
	position: relative;
	z-index: 1;
}

body.silver-page .header h1 {
	position: relative;
	z-index: 1;
	text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.header p {
	margin: 15px 0 0 0;
	opacity: 0.9;
	font-size: 1.2rem;
}

body.gold-page .header p {
	position: relative;
	z-index: 1;
}

body.silver-page .header p {
	opacity: 0.8;
	position: relative;
	z-index: 1;
	text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}

/* 主容器 */
.main-container {
	padding: 20px 15px 0px;
	max-width: 1400px;
	margin: 0 auto;
}

/* 价格卡片样式 */
.price-card {
	background: white;
	border: 1px solid #e6e6e6;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.price-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* 卡片顶部装饰条 - 黄金 */
body.gold-page .card-top-bar {
	height: 4px;
	background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
	width: 100%;
}

/* 卡片顶部装饰条 - 白银 */
body.silver-page .card-top-bar {
	height: 4px;
	background: linear-gradient(90deg, #C0C0C0 0%, #A8A8A8 100%);
	width: 100%;
}

/* 卡片内容 */
.card-content {
	padding: 30px 20px;
}

/* 卡片标题 */
.card-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #333;
	margin: 0 0 8px 0;
}

.card-subtitle {
	font-size: 0.95rem;
	color: #999;
	margin: 0 0 25px 0;
}

/* 价格显示 */
.price-display {
	margin: 25px 0;
}

.current-price {
	font-size: 3rem;
	font-weight: 700;
	margin: 0;
	line-height: 1;
}

.price-change {
	font-size: 1.2rem;
	margin: 10px 0 0 0;
	font-weight: 500;
}

/* 价格颜色 */
.price-up {
	color: #FF5722;
}

.price-down {
	color: #5FB878;
}

.price-neutral {
	color: #333;
}

/* 价格详情框 */
.price-details {
	background: #f8f9fa;
	border: 1px solid #e6e6e6;
	padding: 20px;
	margin: 25px 0;
	border-radius: 4px;
}

.price-details .layui-row {
	margin: 0 -10px;
}

.price-details .layui-col-md6 {
	padding: 8px 10px;
	font-size: 0.9rem;
	color: #666;
}

/* 更新时间 */
.update-time {
	color: #999;
	font-size: 0.85rem;
	margin: 15px 0 10px 0;
}

/* 图表容器 */
.chart-container {
	margin: 25px 0 0 0;
	text-align: center;
}

.chart-image {
	max-width: 100%;
	height: auto;
	border: 1px solid #e6e6e6;
	border-radius: 4px;
}

/* 页脚 - 通用样式 */
.footer {
	background: #2c3e50;
	color: #ecf0f1;
	padding: 30px 20px;
	margin-top: 50px;
	text-align: center;
}

/* 黄金页面页脚 */
body.gold-page .footer {
	border-top: 3px solid #FFD700;
}

/* 白银页面页脚 */
body.silver-page .footer {
	border-top: 3px solid #C0C0C0;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.disclaimer {
	font-size: 0.95rem;
	margin: 0 0 15px 0;
	padding: 15px;
	border-left: 3px solid #FFD700;
	text-align: left;
	max-width: 800px;
	margin: 0 auto 15px;
}

/* 黄金页面免责声明 */
body.gold-page .disclaimer {
	background: rgba(255, 215, 0, 0.1);
	border-left: 3px solid #FFD700;
}

body.gold-page .disclaimer strong {
	color: #FFD700;
}

/* 白银页面免责声明 */
body.silver-page .disclaimer {
	background: rgba(192, 192, 192, 0.1);
	border-left: 3px solid #C0C0C0;
}

body.silver-page .disclaimer strong {
	color: #C0C0C0;
}

.disclaimer i {
	margin-right: 5px;
	vertical-align: middle;
}

.copyright {
	font-size: 0.85rem;
	color: #95a5a6;
	margin: 10px 0 0 0;
}

/* 加载动画 */
.loading {
	text-align: center;
	padding: 40px 20px;
	color: #999;
}

/* 错误提示 */
.error-message {
	background: #fff2f0;
	color: #ff4d4f;
	padding: 20px;
	border: 1px solid #ffccc7;
	margin: 20px 0;
	border-radius: 4px;
	text-align: center;
}

/* 价格闪烁动画 */
.price-flash-up {
	animation: flashUp 0.5s ease-in-out;
}

.price-flash-down {
	animation: flashDown 0.5s ease-in-out;
}

@keyframes flashUp {
	0% { background-color: #fff; }
	50% { background-color: #FF5722; color: white; }
	100% { background-color: #fff; }
}

@keyframes flashDown {
	0% { background-color: #fff; }
	50% { background-color: #5FB878; color: white; }
	100% { background-color: #fff; }
}

/* 响应式设计 - 移动端适配 */
@media screen and (max-width: 768px) {
	.nav-item {
		padding: 8px 8px;
		font-size: 0.8rem;
		margin: 0 1px;
	}
	
	.nav-item.forex {
		font-size: 0.75rem;
		padding: 8px 8px;
	}
	
	.nav-item i {
		margin-right: 3px;
		font-size: 0.9em;
	}
	
	/* 手机端导航栏优化 */
	.nav-container {
		flex-wrap: nowrap;
		justify-content: space-between;
		padding: 0 5px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none; /* Firefox */
		-ms-overflow-style: none; /* IE and Edge */
	}
	
	/* 隐藏滚动条但保持滚动功能 */
	.nav-container::-webkit-scrollbar {
		display: none;
	}
	
	/* 手机端导航项文字换行 */
	.nav-item {
		text-align: center;
		min-width: 50px;
		/* line-height: 1.2; */
		flex-shrink: 0;
		white-space: nowrap;
	}
	
	/* 手机端激活状态优化 */
	.nav-item.active {
		box-shadow: 0 2px 8px rgba(0,0,0,0.15);
		transform: scale(1.05);
	}
	
	.header h1 {
		font-size: 2rem;
	}
	.header p {
		font-size: 1rem;
	}
	.price-card {
		padding: 20px 10px;
	}
	.card-title {
		font-size: 1.2rem;
	}
	.card-subtitle {
		font-size: 0.8rem;
	}
	.price-display {
		margin: 15px 0;
	}
	.current-price {
		font-size: 2.5rem;
	}
	.price-change {
		font-size: 1rem;
	}
	.price-details {
		padding: 15px;
	}
	.price-details .layui-row {
		margin: 0 -5px;
	}
	.price-details .layui-col-md6 {
		padding: 4px 5px;
	}
	.update-time {
		font-size: 0.75rem;
		margin: 10px 0 5px 0;
	}
	.chart-container {
		margin: 15px 0 0 0;
	}
	.chart-image {
		border-radius: 2px;
	}
	.footer {
		padding: 20px 15px;
		margin-top: 30px;
	}
	.disclaimer {
		font-size: 0.85rem;
		padding: 12px;
	}
	.copyright {
		font-size: 0.75rem;
	}
	
	/* 纸黄金页面手机端优化 */
	body.paper-gold-page .nav-tabs {
		background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
	}
	
	/* 实物黄金页面手机端优化 */
	body.physical-gold-page .nav-tabs {
		background: linear-gradient(135deg, #fff0f5 0%, #ffe4e6 100%);
	}
	
	/* 黄金金条页面手机端优化 */
	body.gold-bars-page .nav-tabs {
		background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
	}
	
	/* 手机端卡片网格优化 */
	.layui-col-space15 {
		margin: 0 -7px;
	}
	
	.layui-col-space15 > [class*="layui-col-"] {
		padding: 0 7px;
		margin-bottom: 15px;
	}
	
	/* 手机端卡片内容优化 */
	.physical-gold-card,
	.gold-bar-card {
		padding: 15px;
		margin-bottom: 10px;
	}
	
	.physical-gold-card .brand-name,
	.gold-bar-card .bank-name {
		font-size: 16px;
		padding: 10px 12px;
		margin-bottom: 12px;
	}
	
	.physical-gold-card .price-row,
	.gold-bar-card .price-row {
		padding: 6px 10px;
		margin-bottom: 8px;
	}
	
	.physical-gold-card .price-value,
	.gold-bar-card .price-value {
		font-size: 18px;
	}
	
	.physical-gold-card .update-time,
	.gold-bar-card .update-time {
		font-size: 11px;
		padding: 6px 10px;
		margin-top: 12px;
	}
}

/* 超小屏幕优化 */
/* @media screen and (max-width: 480px) {
	.nav-item {
		padding: 6px 4px;
		font-size: 0.75rem;
		margin: 0;
		min-width: 45px;
	}
	
	.nav-item i {
		margin-right: 2px;
		font-size: 0.8em;
	}
	
	.nav-container {
		padding: 0 2px;
	}
} */

/* ===========================
   纸黄金页面专属样式
   =========================== */

/* 纸黄金页面头部 */
body.paper-gold-page .header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body.paper-gold-page .header h1,
body.paper-gold-page .header p {
	color: white;
}

body.paper-gold-page .header p {
	color: #E6E6FA;
}

/* 纸黄金页面导航栏 */
body.paper-gold-page .nav-tabs {
	background: linear-gradient(135deg, #f8f9ff 0%, #e6f0ff 100%);
	border-bottom: 3px solid #667eea;
}

/* 纸黄金页面激活导航 */
body.paper-gold-page .nav-item.active {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* 纸黄金页面页脚 */
body.paper-gold-page .footer {
	border-top: 3px solid #667eea;
}

/* 纸黄金表格行悬停效果 */
#paperGoldTable tr:hover {
	background-color: #f0f4ff !important;
	transform: scale(1.01);
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

/* 纸黄金表格整体样式优化 */
body.paper-gold-page .layui-table {
	border-radius: 0 0 12px 12px;
	margin: 0;
	border: none;
}

body.paper-gold-page .layui-table th {
	position: sticky;
	top: 0;
	z-index: 10;
	border-bottom: 2px solid #667eea;
	color: #333;
	font-weight: bold;
}

body.paper-gold-page .layui-table thead {
	background: #f8f9fa;
}

/* 纸黄金数据容器 */
body.paper-gold-page #dataContainer .layui-card {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
}

body.paper-gold-page #dataContainer .layui-card-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	font-size: 16px;
	font-weight: bold;
	border-radius: 12px 12px 0 0;
}

body.paper-gold-page #dataContainer .layui-card-body {
	padding: 0;
}

/* 纸黄金表格单元格样式 */
body.paper-gold-page #paperGoldTable td {
	padding: 15px 12px;
	border-bottom: 1px solid #e6e6e6;
}

body.paper-gold-page #paperGoldTable td:first-child strong {
	color: #333;
}

body.paper-gold-page #paperGoldTable td:nth-child(2) {
	color: #666;
}

body.paper-gold-page #paperGoldTable td:nth-child(3) {
	font-size: 16px;
	font-weight: bold;
}

body.paper-gold-page #paperGoldTable td.layui-hide-xs:not(:nth-child(3)) {
	color: #555;
}

body.paper-gold-page #paperGoldTable td:last-child {
	color: #999;
	font-size: 13px;
}

body.paper-gold-page #paperGoldTable tr {
	transition: all 0.3s ease;
}

/* 纸黄金错误提示 */
body.paper-gold-page #errorMessage .layui-card-body {
	text-align: center;
	padding: 50px;
}

body.paper-gold-page #errorMessage .layui-card-body i {
	font-size: 60px;
	color: #FFB800;
}

body.paper-gold-page #errorMessage .layui-card-body p {
	margin-top: 20px;
	font-size: 16px;
	color: #666;
}

/* ===========================
   实物黄金页面专属样式
   =========================== */

/* 实物黄金页面头部 */
body.physical-gold-page .header {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body.physical-gold-page .header h1,
body.physical-gold-page .header p {
	color: white;
}

body.physical-gold-page .header p {
	color: #FFE4E1;
}

/* 实物黄金页面导航栏 */
body.physical-gold-page .nav-tabs {
	background: linear-gradient(135deg, #fff0f5 0%, #ffe4e6 100%);
	border-bottom: 3px solid #f093fb;
}

/* 实物黄金页面激活导航 */
body.physical-gold-page .nav-item.active {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

/* 实物黄金页面页脚 */
body.physical-gold-page .footer {
	border-top: 3px solid #f093fb;
}

/* 实物黄金价格卡片样式 */
.physical-gold-card {
	background: white;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	margin-bottom: 15px;
	border: 1px solid #f0f0f0;
}

.physical-gold-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(240, 147, 251, 0.25);
	border-color: #f093fb;
}

.physical-gold-card .brand-name {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
	padding: 12px 15px;
	border-radius: 8px;
	background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
	border-left: 4px solid #f093fb;
}

.physical-gold-card .price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	padding: 8px 12px;
	border-radius: 6px;
	background: #fafafa;
	transition: all 0.3s ease;
}

.physical-gold-card .price-row:hover {
	background: #f0f4ff;
}

.physical-gold-card .price-label {
	color: #666;
	font-size: 14px;
}

.physical-gold-card .price-value {
	font-size: 20px;
	font-weight: bold;
	color: #f5576c;
}

.physical-gold-card .update-time {
	text-align: center;
	color: #999;
	font-size: 12px;
	margin-top: 15px;
	padding: 8px 12px;
	border-radius: 6px;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
}

/* ===========================
   黄金金条页面专属样式
   =========================== */

/* 黄金金条页面头部 */
body.gold-bars-page .header {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

body.gold-bars-page .header h1,
body.gold-bars-page .header p {
	color: white;
}

body.gold-bars-page .header p {
	color: #FFF8DC;
}

/* 黄金金条页面导航栏 */
body.gold-bars-page .nav-tabs {
	background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
	border-bottom: 3px solid #FFD700;
}

/* 黄金金条页面激活导航 */
body.gold-bars-page .nav-item.active {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* 黄金金条页面页脚 */
body.gold-bars-page .footer {
	border-top: 3px solid #FFD700;
}

/* 黄金金条卡片样式 */
.gold-bar-card {
	background: white;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	margin-bottom: 15px;
	border: 1px solid #f0f0f0;
}

.gold-bar-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(255, 193, 7, 0.25);
	border-color: #FFD700;
}

.gold-bar-card .bank-name {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
	padding: 12px 15px;
	border-radius: 8px;
	background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
	border-left: 4px solid #FFD700;
}

.gold-bar-card .price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	padding: 8px 12px;
	border-radius: 6px;
	background: #fafafa;
	transition: all 0.3s ease;
}

.gold-bar-card .price-row:hover {
	background: #fffbf0;
}

.gold-bar-card .price-label {
	color: #666;
	font-size: 14px;
}

.gold-bar-card .price-value {
	font-size: 20px;
	font-weight: bold;
	color: #FF8C00;
}

.gold-bar-card .price-change {
	font-size: 14px;
	margin-top: 5px;
}

.gold-bar-card .update-time {
	text-align: center;
	color: #999;
	font-size: 12px;
	margin-top: 15px;
	padding: 8px 12px;
	border-radius: 6px;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
}

/* ===========================
   油价页面专属样式
   ========================== */

/* 油价页面头部 - 红色系渐变 */
body.oil-page .header {
	background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FF5722 100%);
}

body.oil-page .header h1,
body.oil-page .header p {
	color: white;
}

/* 油价页面表头样式 - 明确覆盖任何sticky设置 */
body.oil-page .layui-table th {
	position: static !important;
	background: #f8f8f8;
	border-bottom: 2px solid #FF6B6B;
}

body.oil-page .layui-table thead {
	background: #f8f8f8;
}

/* 油价表格行悬停效果 - 去掉transform避免滚动条 */
body.oil-page #oilPriceTable tr:hover {
	background-color: #fff5f5 !important;
	box-shadow: 0 2px 8px rgba(255, 107, 107, 0.1);
}

body.oil-page #oilPriceTable tr {
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* 油价表格整体样式优化 */
body.oil-page .layui-table {
	margin: 0;
	border: none;
}

body.oil-page .layui-card {
	border-radius: 12px;
	overflow: visible;
}

body.oil-page .layui-card-body {
	overflow-x: auto;
	position: relative;
}

/* 搜索框样式 */
.search-container {
	background: #fff;
	padding: 20px 15px 0;
	margin: 0 auto;
	max-width: 1400px;
}

.search-box {
	background: #fff;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(255, 107, 107, 0.15);
	/* margin-bottom: 20px; */
	border-radius: 12px;
}

.search-box h2 {
	background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
	color: white;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 15px;
	margin: 0;
	text-align: left;
}

.search-box .search-content {
	padding: 30px;
	text-align: center;
}

.search-form {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-select {
	padding: 12px 15px;
	border: 2px solid #e6e6e6;
	background: #fff;
	font-size: 14px;
	min-width: 200px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.form-select:focus {
	border-color: #FF6B6B;
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-select:disabled {
	background: #f5f5f5;
	color: #999;
	cursor: not-allowed;
}

.query-btn {
	background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
	color: white;
	border: none;
	padding: 12px 30px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 120px;
}

.query-btn:hover:not(:disabled) {
	background: linear-gradient(135deg, #FF5252 0%, #FF7043 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.query-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.search-info {
	margin-top: 20px;
}

/* 移动端搜索框响应式 */
@media (max-width: 768px) {
	.search-form {
		flex-direction: column;
		align-items: stretch;
	}
	
	.form-select {
		min-width: auto;
		width: 100%;
	}
	
	.query-btn {
		width: 100%;
	}
}

