/* ==========================================================================
   📌 景盛园艺 - 6大核心业务专题落地页公共美学样式表
   ========================================================================== */

/* 1. 落地页整体容器 */
.page-service-body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #4b5563;
    line-height: 1.8;
    font-size: 15px;
}

/* 2. 模块通用的“白砂白岩”轻量化质感卡片 */
.page-section {
    margin-bottom: 35px;
    background: #ffffff;
    border: 1px solid #eef2ef;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(12, 98, 67, 0.01);
}

/* 3. 页面标准大标题（优雅左侧青绿立柱） */
.page-section-title {
    font-size: 20px;
    color: #0c6243; /* 核心企业墨绿 */
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 24px;
    border-left: 4px solid #14b8a6; /* 核心生态青绿 */
    padding-left: 14px;
    letter-spacing: 0.5px;
}

/* 4. 四大标准托管流程 - 4列利落网格 */
.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px;
}

/* 流程小箱体 */
.flow-box {
    background: #fafbfc;
    padding: 22px;
    border-radius: 8px;
    border-top: 3px solid #14b8a6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.flow-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.03);
}
.flow-box h4 {
    font-size: 16px;
    color: #0c6243;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}
.flow-box p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* 5. 商务推荐选型配置 - 严谨清爽表格 */
.plant-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8ede9;
}
.plant-table th {
    background: #0c6243;
    color: #ffffff;
    text-align: left;
    padding: 14px 16px;
    font-weight: 500;
    font-size: 15px;
}
.plant-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e8ede9;
    color: #475569;
    font-size: 14.5px;
    background: #ffffff;
}
.plant-table tr:last-child td {
    border-bottom: none;
}
.plant-table tr:nth-child(even) td {
    background: #fafbfc; /* 极淡的斑马纹交替，增强B端阅读舒适度 */
}

/* 6. 真实签约现场实景 - 2列清爽画廊 */
.case-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.case-gallery img {
    width: 100%;
    border-radius: 8px;
    height: 260px;
    object-fit: cover;
    border: 1px solid #e8ede9;
    transition: transform 0.4s ease;
}
.case-gallery img:hover {
    transform: scale(1.015);
}

/* 7. 响应式降级（完美适配平板与手机移动端） */
@media (max-width: 992px) {
    .flow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 768px) {
    .page-section {
        padding: 20px;
    }
    .flow-grid, .case-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .plant-table {
        display: block;
        overflow-x: auto; /* 手机端表格允许横向滑动，防止挤压变形 */
    }
    .case-gallery img {
        height: 200px;
    }
}