/* 自定义颜色 */
.se999{
	color: #999;
	}
/* 主导航颜色 */
.see7662e{color: #e7662e !important;}


/* 详情底部九宫格推荐样式 */
.grid-container {
		    display: grid;
		    grid-template-columns: repeat(4, 1fr); /* 每行4个 */
		    gap: 16px;
		    box-sizing: border-box;
		}
		
		/* 卡片基础样式 */
		.grid-card {
		    border-radius: 8px;
		    overflow: hidden;
		    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
		    background: #fff;
		    transition: transform 0.3s ease;
		}
		
		.grid-card:hover {
		    transform: translateY(-4px);
		}
		
		/* 图片容器 */
		.card-img-wrapper {
		    width: 100%;
		    height: 160px;
		    overflow: hidden;
		}
		
		.card-img {
		    width: 100%;
		    height: 100%;
		    object-fit: cover;
		    transition: transform 0.5s ease;
		}
		
		.grid-card:hover .card-img {
		    transform: scale(1.05);
		}
		
		/* 卡片信息区域 */
		.card-info {
		    padding: 12px;
		}
		
		.card-title {
		    font-size: 16px;
		    margin: 0 0 8px 0;
		    white-space: nowrap;
		    overflow: hidden;
		    text-overflow: ellipsis;
		}
		
		.card-desc {
		    font-size: 14px;
		    color: #666;
		    margin: 0 0 8px 0;
		    display: -webkit-box;
		    -webkit-line-clamp: 2;
		    -webkit-box-orient: vertical;
		    overflow: hidden;
		}