
/* 增加 .hz-bottom-scope 前缀，确保样式只控制这个模块，不干扰上下 */
.hz-bottom-scope {
    --hz-orange: #ec682e;
    --hz-orange-hover: #d3541c;
    --text-dark: #333333;
    --text-gray: #666666;
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* 标题样式：Poppins 500 */
.hz-bottom-scope .hz-section-head-new {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
    font-size: 36px;
    margin: 0;
    padding: 80px 0 60px 0;
    color: var(--text-dark);
}

/* 产品网格容器 */
.hz-bottom-scope .hz-prod-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
}

/* 产品卡片：上下结构，满铺，顶边橙色 */
.hz-bottom-scope .hz-prod-card-new {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 5px solid var(--hz-orange); 
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hz-bottom-scope .hz-prod-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* 图片区域：完全满铺不留白 */
.hz-bottom-scope .hz-card-img-full-new {
    height: 240px;
    width: 100%;
    background-color: #f9f9f9;
    overflow: hidden;
    padding: 0;
}

.hz-bottom-scope .hz-card-img-full-new img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* 文字区域 */
.hz-bottom-scope .hz-card-body-new {
    padding: 25px;
    flex: 1;
}

.hz-bottom-scope .hz-prod-cat-new {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--hz-orange);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.hz-bottom-scope .hz-prod-title-new {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 15px 0;
    color: var(--text-dark);
}

.hz-bottom-scope .hz-prod-desc-new {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    min-height: 45px;
}

/* 规格列表 */
.hz-bottom-scope .hz-specs-list-new {
    list-style: none;
    padding: 15px 0 0 0;
    margin: 0 0 25px 0;
    border-top: 1px solid #f0f0f0;
}

.hz-bottom-scope .hz-specs-list-new li {
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.hz-bottom-scope .hz-specs-list-new li::before {
    content: '•';
    color: var(--hz-orange);
    margin-right: 10px;
    font-weight: bold;
}

/* 按钮 */
.hz-bottom-scope .hz-btn-new {
    display: block;
    width: 100%;
    padding: 12px 0;
    background-color: var(--hz-orange);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    box-sizing: border-box;
    transition: background 0.3s;
}

.hz-bottom-scope .hz-btn-new:hover {
    background-color: var(--hz-orange-hover);
}

/* 响应式 */
@media screen and (max-width: 900px) {
    .hz-bottom-scope .hz-prod-grid-new { grid-template-columns: 1fr; }
}
