/* 展会模块样式 */

.exh-top {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}

.exh-slide {
	flex: 1;
	height: 300px;
	overflow: hidden;
	border-radius: 8px;
}

.exh-rec {
	width: 300px;
	flex-shrink: 0;
}

.exh-item {
	padding: 15px;
	margin-bottom: 15px;
	background: #f5f5f5;
	border-radius: 8px;
}

.exh-item h3 {
	margin: 0 0 10px 0;
	font-size: 16px;
}

.exh-item p {
	margin: 5px 0;
	color: #666;
	font-size: 14px;
}

.exh-list ul {
	list-style: none;
	padding: 0;
}

.exh-list li {
	padding: 15px;
	margin-bottom: 10px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	gap: 15px;
}

.exh-list li em {
	flex-shrink: 0;
	width: 120px;
	text-align: center;
	padding: 8px;
	background: #1890ff;
	color: #fff;
	border-radius: 4px;
	font-size: 12px;
}

.exh-list li em i {
	display: block;
	font-size: 14px;
	font-weight: 600;
}

/* 响应式 */
@media (max-width: 768px) {
	.exh-top {
		flex-direction: column;
	}

	.exh-rec {
		width: 100%;
	}

	.exh-list li {
		flex-direction: column;
		text-align: center;
	}

	.exh-list li em {
		width: 100%;
	}
}

