/* 商城模块样式 */

.compare-table {
	overflow-x: auto;
	margin-bottom: 20px;
}

.compare-table table {
	width: 100%;
	border-collapse: collapse;
	min-width: 800px;
}

.compare-table th,
.compare-table td {
	padding: 15px;
	border: 1px solid #e8e8e8;
	text-align: center;
}

.compare-table th {
	background: #f5f5f5;
	font-weight: 600;
}

.compare-table tr:hover {
	background: #f9f9f9;
}

.compare-table img {
	max-width: 100px;
	height: auto;
}

.sec-link {
	display: inline-block;
	padding: 10px 20px;
	background: #ff4d4f;
	color: #fff;
	border-radius: 4px;
	margin-top: 10px;
	text-align: center;
}

.sec-link b {
	display: inline-block;
	background: #fff;
	color: #ff4d4f;
	padding: 2px 8px;
	border-radius: 10px;
	margin-left: 5px;
}

.empty-state {
	padding: 60px 20px;
	text-align: center;
	color: #999;
}

.empty-state p {
	font-size: 16px;
}

/* 响应式 */
@media (max-width: 768px) {
	.compare-table {
		font-size: 12px;
	}

	.compare-table th,
	.compare-table td {
		padding: 8px;
	}
}

