/* ==================== 产品页样式 ==================== */

.main-content {
    width: 100%;
    min-height: calc(100vh - 285px);
}

.product-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* gap: 60px; */
}

.product-item {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(180px, 18.61vw, 268px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 clamp(40px, 5vw, 72px);
    background: url('../images/product_contnt_bg.png') no-repeat center center;
    background-size: 100% 100%;
}

.product-title {
    font-size: clamp(24px, 3.33vw, 48px);
    font-weight: 450;
    color: #ffffff;
    line-height: 1.33;
}

.product-desc {
    font-size: clamp(14px, 1.39vw, 20px);
    color: #ffffff;
    line-height: 1.35;
    max-width: clamp(600px, 55.56vw, 800px);
    margin-top: clamp(12px, 1.11vw, 16px);
    margin-bottom: clamp(30px, 3.19vw, 46px);
}

/* ==================== 响应式设计 - 移动端 ==================== */
@media (max-width: 768px) {
    .product-container {
        gap: 0;
    }

    .product-item {
        height: auto;
        aspect-ratio: 16/9;
    }
}

