/* ==================== 产品方案页专属样式 ==================== */

/* Banner - AGV方案背景 */
.products-banner {
    background: url('../static/products/AGV智能仓储整体解决方案.png') center/cover no-repeat;
    background-color: #0A2E5C;
    position: relative;
}

/* 仅桌面端使用与达梦页相同的头部样式，移动端保持原样 */
@media (min-width: 769px) {
    .products-banner {
        background: url('../static/products/AGV智能仓储整体解决方案.png') center/cover no-repeat;
        background-color: #0A2E5C;
        height: 400px;
        padding: 0;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }
}

.products-banner .container {
    position: relative;
    z-index: 1;
}

.products-banner .banner-breadcrumb {
    color: rgba(255, 255, 255, 0.8);
}

.products-banner .banner-title {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
}

.products-banner .banner-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-bottom: 0;
}

/* ==================== 强强联手 ==================== */
.partner-section {
    padding: 60px 0;
    background: #f5f7fa;
}

.partner-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.partner-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-img img {
    max-width: 100%;
    height: auto;
}

.partner-header {
    padding: 20px 0;
    border-bottom: 1px solid #e8eef5;
}

.partner-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    text-align: left;
}

.partner-subtitle {
    font-size: 16px;
    color: #999;
    margin-bottom: 0;
    font-weight: 400;
    text-align: left;
}

.partner-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 20px 0;
}

.partner-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-list li {
    font-size: 15px;
    color: #333;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
}

.partner-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1B64FF;
    font-weight: 700;
}

/* ==================== 落地成果 ==================== */
.achievement-section {
    padding: 16px 0;
    background: #f5f7fa;
}

.achievement-section .section-title {
    color: #000;
    margin-bottom: 16px;
}

.achievement-item {
    text-align: center;
    padding: 32px 20px;
}

.achievement-value {
    font-size: 36px;
    font-weight: 700;
    color: #1B64FF;
    margin-bottom: 8px;
}

.achievement-label {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}

.achievement-desc {
    font-size: 13px;
    color: #000;
}

/* ==================== 全场景AGV产品矩阵 ==================== */
.product-matrix-section {
    padding: 60px 0;
    background: #f5f7fa;
}

.product-matrix-section .section-title {
    color: #000;
}

.product-matrix-section .section-subtitle {
    color: #000;
    margin-bottom: 48px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px 16px;
}

.product-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ==================== CTA ==================== */
.cta-section {
    padding: 60px 0;
    margin-bottom: 0;
    background-color: #f5f7fa;
}

.cta-card {
    background: url('../static/products/立即开启智能制造升级.png') center/cover no-repeat;
    background-color: #0A2E5C;
    border-radius: 24px;
    padding: 60px 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
}

.btn-cta {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #fff;
    color: #005BAC;
}

/* ==================== 响应式 ==================== */
@media (max-width: 768px) {
    .products-banner .banner-title {
        font-size: 28px;
    }

    .partner-card {
        padding: 24px 16px;
    }

    .partner-title {
        font-size: 18px;
    }

    .achievement-value {
        font-size: 28px;
    }

    .cta-card {
        padding: 40px 20px;
    }
}

/* 移动端横幅固定高度 */
@media (max-width: 768px) {
    .products-banner {
        height: 240px;
        padding: 0;
    }
}
