/*
CSS
file
*/

/* 核心产品展示 CSS */
.section.products {
    padding: 60px 0;
    background-color: #fff;
    margin: 0 auto;
    clear: both;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-weight: bold;
}

.product-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
}

.product-card {
    flex: 1;
    min-width: 300px;
    max-width: calc(50% - 30px);
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
    font-size: 22px;
    color: #0db083;
    margin-bottom: 20px;
    text-align: center;
}

.product-card h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.product-card .industry, 
.product-card .features {
    margin-bottom: 25px;
}

.product-card .features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-card .features li {
    margin-bottom: 15px;
}

.product-card .features strong {
    color: #0db083;
    display: block;
    margin-bottom: 5px;
}

.product-card .features p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 业务优势 CSS */
.section.advantages {
    padding: 60px 0;
    background-color: #f6f9f8;
    margin: 0 auto;
    clear: both;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.advantage-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.advantage-item .icon {
    font-size: 40px;
    color: #0db083;
    margin-bottom: 20px;
}

.advantage-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
}

/* 响应式调整 */
@media screen and (max-width: 991px) {
    .section.products,
    .section.advantages {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .product-showcase {
        flex-direction: column;
    }
    
    .product-card {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
