/* 平台标题 */
.products-header {
    background-image: url('../images/p-1.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 380px;
    padding: 85px 0;
    padding-left: 280px;
    text-align: left;
    color: white;
}

.products-header h1 {
    font-size: 100px;
    margin-bottom: 10px;
}

.products-header h2 {
    font-size: 48px;
    margin: 0;
}

/* 产品设备内容 */
.products-content {
    background-color: white;
}

/* 密销装备体系全概览 */
.equipment-overview {
    padding: 80px 0;
    background-image: linear-gradient(to bottom, #fff 0%, #F1F6FD 24%);
}

.equipment-overview h2 {
    font-size: 48px;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

.equipment-overview p {
    margin: 0 auto;
    font-size: 28px;
    color: #222;
    text-align: center;
    margin-bottom: 80px;
    max-width: 1360px;
}

.equipment-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.equipment-item {
    background-color: white;
    padding-bottom: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.equipment-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.equipment-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    padding-left: 32px;
}

.equipment-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    padding-left: 32px;
    text-align: left;
}

/* 固定基地 */
.fixed-base {
    margin-bottom: 80px;
}
.fixed-base img {
    width: 100%;
    height: auto;
}

/* 机动力量 */
.mobile-force {
    margin-bottom: 80px;

    img {
        width: 100%;
        height: auto;
    }
}

/* 智能辅件 */
.smart-components {
    margin-bottom: 80px;
    background-color: #fff;

    img {
        width: 100%;
        height: auto;
    }
}


/* 响应式设计 */
@media (max-width: 768px) {
    .equipment-grid,
    .mobile-equipment-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .equipment-item,
    .mobile-equipment-item {
        max-width: 100%;
    }
    
    .components-grid {
        grid-template-columns: 1fr;
    }
}