@charset "UTF-8";

/* ==========================================================================
   应用领域页面专用样式 (future.css)
   项目：华创精工
   ========================================================================== */

/* 应用领域产品区域 */
.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-heading {
    text-align: center;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(11, 69, 156, 0.15);
}

.product-img {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-title {
    font-size: 18px;
    color: #1a1a1a;
    margin: 0 0 8px;
    font-weight: 600;
}

.product-en {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px;
}

.product-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 市场前景区域 */
.market-section {
    padding: 80px 0;
    background: #fff;
}

.market-heading {
    text-align: center;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 600;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.market-card {
    text-align: center;
}

.market-chart {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    border-radius: 12px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(79, 172, 254, 0.05);
    border: 1px solid rgba(79, 172, 254, 0.1);
}

.market-title {
    font-size: 18px;
    color: #1a1a1a;
    margin: 0 0 8px;
    font-weight: 600;
}

.market-en {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* 响应式适配 */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .products-section,
    .market-section {
        padding: 50px 0;
    }

    .section-heading,
    .market-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card {
        padding: 20px 15px;
    }

    .product-img {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-desc {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .market-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .market-chart {
        height: 250px;
        margin-bottom: 15px;
    }

    .market-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-img {
        width: 120px;
        height: 120px;
    }
}
