.product-container {
    width: 100%;
    height: auto;
    min-height: calc(100vh - 110px);
    margin: 0 auto;
    margin-top: 50px;
    box-sizing: border-box;
    background: #f6f7f9;
    padding-bottom: 36px;
}

.product-breadcrumb {
    font-size: 14px;
    color: #666;
    margin: 0 auto;
    width: 85%;
    padding-bottom: 20px;
}

.product-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.product-breadcrumb a:hover {
    color: #236BBB;
}

.product-header-bg {
    position: relative;
    background: url(/static/images/bg.jpeg) no-repeat center;
    background-size: cover;
    padding: 50px 20px;
    margin-bottom: 40px;
    padding-top: 20px;
}

.product-header {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
    width: 80%;
    margin: 0 auto;
}

.product-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-title {
    font-size: 38px;
    font-weight: 700;
    color: rgba(51, 51, 51, 1);
    margin: 0;
}

.product-title-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.product-summary-box {
    background: linear-gradient(135deg, rgba(255, 153, 102, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 1px solid rgba(255, 153, 102, 0.3);
    border-radius: 8px;
    padding: 20px 30px;
    text-align: center;
    min-width: 150px;
}

.product-summary-number {
    font-size: 32px;
    font-weight: 700;
    color: #FF600C;
    line-height: 1;
    margin-bottom: 5px;
}

.product-summary-text {
    font-size: 14px;
    color: #666;
}

.product-list {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 80%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.product-item {
    position: relative;
    background: #FFFFFF;
    border: 1px solid rgba(220, 220, 220, 1);
    border-radius: 10px;
    padding: 16px 56px 16px 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 14px;
}

.product-item:last-child {
    margin-bottom: 0;
}

.product-item[data-product-title]::after {
    content: "→";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: rgba(0, 0, 0, 1);
}

.product-item:hover {
    border-color: rgba(200, 200, 200, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-item-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-item-content {
    font-size: 15px;
    color: #666;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

/* iPad 适配 */
@media (min-width: 768px) and (max-width: 1024px) {
    .product-container {
        margin-top: 50px;
    }

    .product-breadcrumb,
    .product-header,
    .product-list {
        width: 92%;
    }

    .product-header-bg {
        padding: 36px 16px 30px;
        margin-bottom: 30px;
    }

    .product-header {
        padding: 32px 26px;
        gap: 20px;
    }

    .product-title {
        font-size: 4.2vw;
    }

    .product-summary-box {
        min-width: 130px;
        padding: 18px 22px;
    }

    .product-summary-number {
        font-size: 3.4vw;
    }

    .product-summary-text {
        font-size: 1.7vw;
    }

    .product-list {
        padding: 24px;
    }

    .product-item {
        padding: 18px 56px 18px 18px;
        margin-bottom: 12px;
    }

    .product-item-title {
        font-size: 2.3vw;
    }

    .product-item-content {
        font-size: 1.7vw;
        line-height: 1.65;
    }

    .product-item[data-product-title]::after {
        right: 16px;
        font-size: 2.2vw;
    }
}

/* 移动端适配 */
@media (max-width: 767px) {
    .layui-bottom {
        position: unset;
        height: auto;
        min-height: 60px;
        padding: 10px 0;
        font-size: 12px;
    }

    .product-container {
        margin-top: 50px;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .product-breadcrumb {
        width: 100%;
        padding: 0 0 14px;
        font-size: 3.8vw;
        box-sizing: border-box;
    }

    .product-header-bg {
        width: 100%;
        padding: 24px 18px 18px;
        margin-bottom: 22px;
        box-sizing: border-box;
    }

    .product-header {
        width: 100%;
        padding: 22px 16px;
        gap: 16px;
        border-radius: 10px;
        box-sizing: border-box;
    }

    .product-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .product-title-wrapper {
        gap: 10px;
    }

    .product-title-icon {
        width: 24px;
        height: 24px;
    }

    .product-title {
        font-size: 9.2vw;
        line-height: 1.12;
    }

    .product-summary-box {
        width: 80%;
        min-width: 0;
        text-align: left;
        padding: 14px 16px;
    }

    .product-summary-number {
        font-size: 7vw;
        margin-bottom: 2px;
    }

    .product-summary-text {
        font-size: 3.8vw;
    }

    .product-list {
        width: 100%;
        padding: 14px;
        border-radius: 10px;
        margin-bottom: 24px;
        box-sizing: border-box;
    }

    .product-item {
        padding: 16px 50px 16px 16px;
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .product-item-title {
        font-size: 3.8vw;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .product-item-content {
        display: none;
    }

    .product-item[data-product-title]::after {
        right: 14px;
        font-size: 5.2vw;
    }
}

