﻿
.row-line {
    width: 100%;
    height: 1px;
    transition: opacity 0.3s ease;
}

.orange {
    color: #e84c2e;
    background-color: #e84c2e;
}

.grey {
    color: #676767;
    background-color: #676767;
}

.visible {
    height: auto;
    opacity: 1;
    min-height: 200px;
}

.check-more {
    cursor: pointer;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .product-container {
        width: 100%;
    }

    .area1 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 100px 0 0 0;
    }

        .area1 > .content {
            width: calc(100% - 40px);
            max-width: 1280px;
        }

            .area1 > .content > .title {
                width: 100%;
                display: flex;
                justify-content: flex-start;
                align-items: center;
                margin: 0 0 30px 0;
            }

                .area1 > .content > .title > .cross-box {
                    position: relative;
                    width: 25px;
                    height: 25px;
                }

                    .area1 > .content > .title > .cross-box > .cross-row {
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        width: 100%;
                        height: 25%;
                        background-color: #e84c2e;
                    }

                    .area1 > .content > .title > .cross-box > .cross-column {
                        position: absolute;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 25%;
                        height: 100%;
                        background-color: #e84c2e;
                    }

                .area1 > .content > .title > span {
                    color: #e84c2e;
                    font-size: 32px;
                    font-weight: 700;
                }

            /* ------------------------------------- */
            .area1 > .content > .recommand-container {
                width: 100%;
                display: flex;
                justify-content: flex-start;
                align-items: flex-start;
                flex-wrap: wrap;
                gap: 60px;
            }

                .area1 > .content > .recommand-container > .product {
                    /* width: calc((100% - 120px) / 3); */
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: flex-start;
                    position: relative;
                    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
                    border-radius: 20px;
                    padding: 20px 20px 80px 20px;
                    gap: 20px;
                }

                    .area1 > .content > .recommand-container > .product > .left-box {
                        width: 100%;
                        /* height: 210px; */
                        display: flex;
                        flex-direction: column;
                        align-items: flex-start;
                        justify-content: center;
                        gap: 20px;
                        /* margin: 0 0 30px 0; */
                    }

                        .area1 > .content > .recommand-container > .product > .left-box > .slider-container {
                            width: 300px;
                        }

                        .area1 > .content > .recommand-container > .product > .left-box img {
                            width: 300px;
                            height: 190px;
                            object-fit: cover;
                        }

                        .area1 > .content > .recommand-container > .product > .left-box > a {
                            width: calc(100% - 40px);
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            background-color: #e84c2e;
                            color: #ffffff;
                            padding: 10px 0;
                            border-radius: 20px;
                            font-weight: 700;
                            position: absolute;
                            bottom: 20px;
                            left: 50%;
                            transform: translateX(-50%);
                        }

                    .area1 > .content > .recommand-container > .product > .right-box {
                        width: 100%;
                        height: 100%;
                        display: flex;
                        flex-direction: column;
                        align-items: flex-start;
                        justify-content: center;
                        gap: 10px;
                        letter-spacing: 1.5px;
                        padding: 0 10px;
                    }

                        .area1 > .content > .recommand-container > .product > .right-box > .product-tag {
                            color: #e84c2e;
                            font-weight: 700;
                            background-color: #ffdad3;
                            padding: 6px;
                            border-radius: 10px;
                        }

                        .area1 > .content > .recommand-container > .product > .right-box > .product-title {
                            width: 100%;
                        }

                            .area1 > .content > .recommand-container > .product > .right-box > .product-title > p {
                                font-weight: 700;
                                font-size: 34px;
                                word-wrap: break-word;
                            }

                        .area1 > .content > .recommand-container > .product > .right-box > .product-intro > p {
                            font-weight: 700;
                            font-size: 18px;
                            color: #676767;
                            padding: 0 0 60px 0;
                            white-space: pre-line;
                        }

                        .area1 > .content > .recommand-container > .product > .right-box > .product-intro {
                            overflow: hidden; /* 隱藏超出部分的文字 */
                            height: 220px; /* 最大高度，超過部分會隱藏 */
                            transition: height 0.5s ease; /* 定义高度变化的过渡效果 */
                        }
                            .area1 > .content > .recommand-container > .product > .right-box > .product-intro.expanded {
                                overflow: hidden;
                                height: auto;
                                transition: height 0.5s ease;
                            }

                        .area1 > .content > .recommand-container > .product > .right-box > .more {
                            width: 100%;
                            text-align: center;
                            /* position: absolute;
        bottom: 50px; */
                        }

                            .area1 > .content > .recommand-container > .product > .right-box > .more > button {
                                font-weight: 700;
                                border: none;
                                font-size: 18px;
                                background-color: transparent;
                                cursor: pointer;
                            }

    /* --------------------------------------------------------- */
    .area2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 60px 0;
    }

        .area2 > .content {
            width: calc(100% - 40px);
            /* padding: 0 60px; */
            display: flex;
            flex-direction: column;
        }

            .area2 > .content > .up {
                width: 100%;
                display: flex;
            }

                .area2 > .content > .up > .column-line {
                    width: 1px;
                    height: 100px;
                }

                .area2 > .content > .up > .score {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    font-size: 32px;
                    color: #e84c2e;
                    font-weight: 700;
                }

                    .area2 > .content > .up > .score > div {
                        display: flex;
                        align-items: flex-end;
                        justify-content: center;
                    }

                        .area2 > .content > .up > .score > div > p {
                            font-size: 20px;
                        }

                .area2 > .content > .up > .disscussion {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    font-size: 32px;
                    color: #e84c2e;
                    font-weight: 700;
                }

                    .area2 > .content > .up > .disscussion > div {
                        display: flex;
                        align-items: flex-end;
                        justify-content: center;
                    }

            .area2 > .content > .down {
                width: 100%;
                display: flex;
                justify-content: center;
                margin: 30px 0 0 0;
            }

                .area2 > .content > .down > .img-box {
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                    .area2 > .content > .down > .img-box > img {
                        width: 50px;
                        border-radius: 50%;
                        border: #ffffff 5px solid;
                        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
                        margin-right: -20px;
                    }

                    .area2 > .content > .down > .img-box > .others {
                        background-color: #d9d9d9;
                    }

    /* --------------------------------------------------------- */

    .area3 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .area3 > .content {
            width: calc(100% - 40px);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

            .area3 > .content > .row-line {
                width: 100%;
                height: 1px;
            }

            .area3 > .content > .product-record-container {
                width: 100%;
                display: flex;
                flex-direction: column;
            }

                .area3 > .content > .product-record-container > .product-record-title {
                    width: 100%;
                    color: #e84c2e;
                    font-size: 32px;
                    font-weight: 700;
                    cursor: pointer;
                }

                .area3 > .content > .product-record-container > .product-record-content {
                    width: 100%;
                    justify-content: center;
                    /* padding: 20px 0 0 0; */
                    height: 200px;
                    overflow: hidden;
                    height: 0;
                    opacity: 0;
                    transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease; /* 添加 padding 过渡效果 */
                }

                    .area3 > .content > .product-record-container > .product-record-content > .left,
                    .right {
                        width: 100%;
                        display: flex;
                        justify-content: flex-start;
                        padding: 0 30px;
                        font-size: 18px;
                        color: #676767;
                        font-weight: 700;
                        white-space: pre-line;
                    }

                    .area3 > .content > .product-record-container > .product-record-content > .grey {
                        width: 1px;
                        /* height: 100px; */
                    }

            .area3 > .content > .product-detail-container {
                width: 100%;
                display: flex;
                flex-direction: column;
            }

                .area3 > .content > .product-detail-container > .product-detail-title {
                    width: 100%;
                    color: #e84c2e;
                    font-size: 32px;
                    font-weight: 700;
                    cursor: pointer;
                }

                .area3 > .content > .product-detail-container > .product-detail-content {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    /* margin: 40px 0; */
                    overflow: hidden;
                    height: 0;
                    opacity: 0;
                    transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease; /* 添加 padding 过渡效果 */
                }

                    .area3 > .content > .product-detail-container > .product-detail-content img {
                        width: 100%;
                        height: auto;
                        display: block;
                        margin: 0 auto; /* 图片居中显示 */
                    }
                    .area3 > .content > .product-detail-container > .product-detail-content > p {
                        font-weight: 700;
                        font-size: 18px;
                        color: #676767;
                        padding: 0 0 60px 0;
                        white-space: pre-line;
                    }

    /* --------------------------------------------------------- */

    .area4 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 60px 0;
    }

        .area4 > .content {
            width: calc(100% - 40px);
            display: flex;
            flex-direction: column;
        }

            .area4 > .content > .comment-container {
                width: 100%;
                border-radius: 20px;
                box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
                padding: 20px;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
            }

                .area4 > .content > .comment-container > .banner-box {
                    width: 100%;
                    border-radius: 20px;
                }

                    .area4 > .content > .comment-container > .banner-box > img {
                        width: 100%;
                    }

                .area4 > .content > .comment-container > .comment {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    margin: 20px 0;
                }

                    .area4 > .content > .comment-container > .comment > .comment-item {
                        width: 100%;
                        display: flex;
                        margin: 40px 0 0 0;
                        transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
                    }

                        .area4 > .content > .comment-container > .comment > .comment-item > .img-box {
                        }

                            .area4 > .content > .comment-container > .comment > .comment-item > .img-box > img {
                                width: 50px;
                                margin: -10px 0 0 0;
                            }

                        .area4 > .content > .comment-container > .comment > .comment-item > .text-box {
                            width: 100%;
                            display: flex;
                            justify-content: center;
                            flex-direction: column;
                            padding: 0 20px 0 0;
                        }

                            .area4 > .content > .comment-container > .comment > .comment-item > .text-box > .up {
                                width: 100%;
                                display: flex;
                                flex-direction: column;
                                align-items: center;
                                justify-content: space-between;
                                padding: 0 0 0 10px;
                            }

                                .area4 > .content > .comment-container > .comment > .comment-item > .text-box > .up > .name {
                                    width: 100%;
                                    font-size: 20px;
                                    font-weight: 700;
                                    display: flex;
                                    align-items: center;
                                    margin: 0 0 10px 0;
                                }

                                .area4 > .content > .comment-container > .comment > .comment-item > .text-box > .up > .stars {
                                    width: 100%;
                                    display: flex;
                                    justify-content: flex-start;
                                    gap: 2px;
                                }

                                    .area4 > .content > .comment-container > .comment > .comment-item > .text-box > .up > .stars img {
                                        width: 25px;
                                        height: 25px;
                                    }

    .score {
        font-size: 24px;
        font-weight: 700;
        display: flex;
        align-items: center;
        color: #e84c2e;
    }

    .number {
        width: 100%;
        font-size: 20px;
        font-weight: 700;
        color: #e84c2e;
        text-align: end;
        margin: -25px 0 0 0px;
        padding: 0 0 0 0px;
    }

    .area4 > .content > .comment-container > .comment > .comment-item > .text-box > .down {
        width: 100%;
        display: flex;
        flex-direction: column;
        font-size: 18px;
        font-weight: 700;
        color: #676767;
        margin: 20px -40px 40px 0;
        gap: 20px;
    }

        .area4 > .content > .comment-container > .comment > .comment-item > .text-box > .down > p {
            margin: 0 0 0 -40px;
        }

        .area4 > .content > .comment-container > .comment > .comment-item > .text-box > .down > {
            margin: 0 0 0 -40px;
        }

            .area4 > .content > .comment-container > .comment > .comment-item > .text-box > .down > .img-box {
                width: 100%;
                display: flex;
                margin: 0 0 0 -40px;
                gap: 20px;
            }

    .area4 > .content > .comment-container > .comment > a {
        /* width: calc(100% - 40px); */
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffffff;
        border: 1px solid #e84c2e;
        color: #e84c2e;
        padding: 10px 0;
        border-radius: 20px;
        font-weight: 700;
        margin: 40px 0 0 0;
    }

    .visible {
        height: auto;
        opacity: 1;
    }

    .show-less {
        margin: 0;
        padding: 0;
        display: none;
    }

    /* --------------------------------------------------------- */

    .area5 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 60px 0 0 0;
        padding: 60px 0;
        background-color: #e7e7e7;
    }

        .area5 > .content {
            width: calc(100% - 40px);
        }

            .area5 > .content > .title {
                width: 100%;
                max-width: 600px;
                display: flex;
                justify-content: flex-start;
                align-items: center;
                margin: 0 0 20px 0;
            }

                .area5 > .content > .title > .cross-box {
                    position: relative;
                    width: 25px;
                    height: 25px;
                }

                    .area5 > .content > .title > .cross-box > .cross-row {
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        width: 100%;
                        height: 25%;
                        background-color: #e84c2e;
                    }

                    .area5 > .content > .title > .cross-box > .cross-column {
                        position: absolute;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 25%;
                        height: 100%;
                        background-color: #e84c2e;
                    }

                .area5 > .content > .title > span {
                    color: #e84c2e;
                    font-size: 32px;
                    font-weight: 700;
                }
            /* ------------------------------------- */

            .area5 > .content > .disclaimer {
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 18px;
                font-weight: 700;
                color: #676767;
                line-height: 2em;
                padding: 0 20px;
                white-space: pre-line;
            }

            .area5 > .content > .item-container > .left-box,
            .right-box {
                width: 50%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

                .area5 > .content > .item-container > .left-box > img {
                    width: 300px;
                }

            .area5 > .content > .item-container > .right-box > img {
                width: 300px;
            }

            .area5 > .content .join {
                width: 200px;
                display: flex;
                justify-content: center;
                background-color: #e84c2e;
                color: #ffffff;
                border-radius: 30px;
                padding: 15px;
                margin: 50px 0 0 0;
            }

                .area5 > .content .join span {
                    font-weight: 700;
                    font-size: 20px;
                }

    /* --------------------------------------------------------- */

    .area6 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 60px 0;
    }

        .area6 > .content {
            width: calc(100% - 40px);
        }

            .area6 > .content > .title {
                width: 100%;
                max-width: 600px;
                display: flex;
                justify-content: flex-start;
                align-items: center;
                margin: 0 0 40px 0;
            }

                .area6 > .content > .title > .cross-box {
                    position: relative;
                    width: 25px;
                    height: 25px;
                }

                    .area6 > .content > .title > .cross-box > .cross-row {
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        width: 100%;
                        height: 25%;
                        background-color: #e84c2e;
                    }

                    .area6 > .content > .title > .cross-box > .cross-column {
                        position: absolute;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 25%;
                        height: 100%;
                        background-color: #e84c2e;
                    }

                .area6 > .content > .title > span {
                    color: #e84c2e;
                    font-size: 34px;
                    font-weight: 700;
                }
            /* ------------------------------------- */

            .area6 > .content > .item-container {
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 80px;
            }

                .area6 > .content > .item-container > .left-box,
                .right-box {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                }

                    .area6 > .content > .item-container > .left-box > img {
                        width: 300px;
                    }

                .area6 > .content > .item-container > .right-box > img {
                    width: 300px;
                }

            .area6 > .content .join {
                width: 200px;
                display: flex;
                justify-content: center;
                background-color: #e84c2e;
                color: #ffffff;
                border-radius: 30px;
                padding: 15px;
                margin: 30px 0 0 0;
            }

                .area6 > .content .join a {
                    font-weight: 700;
                    font-size: 20px;
                    color: #ffffff;
                }
}
@media screen and (min-width: 768px) {
    .product-container {
        width: 100%;
    }
    .area1 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 60px 0 0 0;
    }

    .area1 > .content {
        width: calc(100% - 40px);
        max-width: 1280px;
        padding: 0 60px;
    }

    .area1 > .content > .title {
        width: 100%;
        max-width: 600px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin: 0 0 40px 0;
    }
    .area1 > .content > .title > .cross-box {
        position: relative;
        width: 25px;
        height: 25px;
    }

    .area1 > .content > .title > .cross-box > .cross-row {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        height: 25%;
        background-color: #e84c2e;
    }

    .area1 > .content > .title > .cross-box > .cross-column {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 25%;
        height: 100%;
        background-color: #e84c2e;
    }
    .area1 > .content > .title > span {
        color: #e84c2e;
        font-size: 34px;
        font-weight: 700;
    }

    /* ------------------------------------- */
    .area1 > .content > .recommand-container {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 60px;
    }

    .area1 > .content > .recommand-container > .product {
        /* width: calc((100% - 120px) / 3); */
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
        border-radius: 20px;
        padding: 30px 30px 50px 30px;
        gap: 20px;
    }
    .area1 > .content > .recommand-container > .product > .left-box {
        width: 100%;
        /* height: 210px; */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 50px;
        /* margin: 0 0 30px 0; */
    }

    .area1 > .content > .recommand-container > .product > .left-box > .slider-container {
        width: 540px;
    }
        .area1 > .content > .recommand-container > .product > .left-box img {
            width: 540px;
            height: 340px;
            object-fit: cover;
        }
    .area1 > .content > .recommand-container > .product > .left-box > a {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #e84c2e;
        color: #ffffff;
        padding: 10px 0;
        border-radius: 20px;
        font-weight: 700;
    }

    .area1 > .content > .recommand-container > .product > .right-box {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px;
        letter-spacing: 1.5px;
    }

    .area1 > .content > .recommand-container > .product > .right-box > .product-tag {
        color: #e84c2e;
        font-weight: 700;
        background-color: #ffdad3;
        padding: 6px;
        border-radius: 10px;
    }
    .area1 > .content > .recommand-container > .product > .right-box > .product-title {
        width: 350px;
    }

    .area1 > .content > .recommand-container > .product > .right-box > .product-title > p {
        font-weight: 700;
        font-size: 40px;
        word-wrap: break-word;
    }
        .area1 > .content > .recommand-container > .product > .right-box > .product-intro > p {
            font-weight: 700;
            font-size: 18px;
            color: #676767;
            padding: 0 0 60px 0;
            white-space: pre-line;
        }

    .area1 > .content > .recommand-container > .product > .right-box > .product-intro {
        overflow: hidden; /* 隱藏超出部分的文字 */
        height: 220px; /* 最大高度，超過部分會隱藏 */
        transition: height 0.5s ease; /* 定义高度变化的过渡效果 */
    }
        .area1 > .content > .recommand-container > .product > .right-box > .product-intro.expanded {
            overflow: hidden;
            height: auto;
            transition: height 0.5s ease;
        }

    .area1 > .content > .recommand-container > .product > .right-box > .more {
        width: 50%;
        text-align: center;
        position: absolute;
        bottom: 50px;
    }

    .area1 > .content > .recommand-container > .product > .right-box > .more > button {
        font-weight: 700;
        border: none;
        font-size: 18px;
        background-color: transparent;
        cursor: pointer;
    }

    /* --------------------------------------------------------- */
    .area2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 60px 0;
    }

    .area2 > .content {
        width: calc(100% - 500px);
        max-width: 1280px;
        padding: 0 60px;
        display: flex;
        flex-direction: column;
    }
    .area2 > .content > .up {
        width: 100%;
        display: flex;
    }
    .area2 > .content > .up > .column-line {
        width: 1px;
        height: 100px;
    }

    .area2 > .content > .up > .score {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 32px;
        color: #e84c2e;
        font-weight: 700;
    }
    .area2 > .content > .up > .score > div {
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .area2 > .content > .up > .score > div > p {
        font-size: 20px;
    }

    .area2 > .content > .up > .disscussion {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 32px;
        color: #e84c2e;
        font-weight: 700;
    }

    .area2 > .content > .up > .disscussion > div {
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .area2 > .content > .down {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 30px 0 0 0;
    }

    .area2 > .content > .down > .img-box {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .area2 > .content > .down > .img-box > img {
        width: 80px;
        border-radius: 50%;
        border: #ffffff 5px solid;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
        margin-right: -30px;
    }

    .area2 > .content > .down > .img-box > .others {
        background-color: #d9d9d9;
    }

    /* --------------------------------------------------------- */

    .area3 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .area3 > .content {
        width: calc(100% - 40px);
        max-width: 1280px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 60px;
    }

    .area3 > .content > .row-line {
        width: 100%;
        height: 1px;
    }
    .area3 > .content > .product-record-container {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .area3 > .content > .product-record-container > .product-record-title {
        width: 100%;
        color: #e84c2e;
        font-size: 32px;
        font-weight: 700;
        cursor: pointer;
    }

        .area3 > .content > .product-record-container > .product-record-content {
            width: 100%;
            justify-content: center;
            /* padding: 20px 0 0 0; */
            height: 200px;
            overflow: hidden;
            height: 0;
            opacity: 0;
            transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease; /* 添加 padding 过渡效果 */
            display:flex;
            white-space:pre-line;
        }

    .area3 > .content > .product-record-container > .product-record-content > .left,
    .right {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        padding: 0 30px;
        font-size: 18px;
        color: #676767;
        font-weight: 700;
    }

    .area3 > .content > .product-record-container > .product-record-content > .grey {
        width: 1px;
        /* height: 100px; */
    }

    .area3 > .content > .product-detail-container {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .area3 > .content > .product-detail-container > .product-detail-title {
        width: 100%;
        color: #e84c2e;
        font-size: 32px;
        font-weight: 700;
        cursor: pointer;
    }
    .area3 > .content > .product-detail-container > .product-detail-content {
        width: 100%;
        display: flex;
        flex-direction:column;
        justify-content: center;
        /* margin: 40px 0; */
        overflow: hidden;
        height: 0;
        opacity: 0;
        transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease; /* 添加 padding 过渡效果 */
    }

    .area3 > .content > .product-detail-container > .product-detail-content img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto; /* 图片居中显示 */
    }

        .area3 > .content > .product-detail-container > .product-detail-content > p {
            font-weight: 700;
            font-size: 18px;
            color: #676767;
            padding: 0 0 60px 0;
            white-space: pre-line;
        }

    /* --------------------------------------------------------- */

    .area4 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 60px 0;
    }

    .area4 > .content {
        width: calc(100% - 40px);
        max-width: 1280px;
        padding: 0 60px;
        display: flex;
        flex-direction: column;
    }

    .area4 > .content > .comment-container {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .area4 > .content > .comment-container > .banner-box {
        width: 100%;
        border-radius: 20px;
    }
    .area4 > .content > .comment-container > .banner-box > img {
        width: 100%;
    }
    .area4 > .content > .comment-container > .comment {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 20px 0;
    }

    .area4 > .content > .comment-container > .comment > .comment-item {
        width: 100%;
        display: flex;
        margin: 40px 0 0 0;
        transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    }
    .area4 > .content > .comment-container > .comment > .comment-item > .img-box {
    }
    .area4 > .content > .comment-container > .comment > .comment-item > .img-box > img {
        width: 80px;
        margin: -20px 0 0 0;
    }

    .area4 > .content > .comment-container > .comment > .comment-item > .text-box {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding: 0 60px 0 0;
    }

    .area4 > .content > .comment-container > .comment > .comment-item > .text-box > .up {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .area4 > .content > .comment-container > .comment > .comment-item > .text-box > .up > .name {
        font-size: 24px;
        font-weight: 700;
        display: flex;
        align-items: center;
    }
    .area4 > .content > .comment-container > .comment > .comment-item > .text-box > .up > .stars {
        display: flex;
        justify-content: flex-end;
        gap: 2px;
    }

    .area4 > .content > .comment-container > .comment > .comment-item > .text-box > .up > .stars img {
        width: 30px;
        height: 30px;
    }

    .area4 > .content > .comment-container > .comment > a {
        width: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffffff;
        border: 1px solid #e84c2e;
        color: #e84c2e;
        padding: 10px 0;
        border-radius: 20px;
        font-weight: 700;
        margin: 40px 0 0 0;
    }

    .score {
        font-size: 24px;
        font-weight: 700;
        display: flex;
        align-items: center;
        color: #e84c2e;
    }
    .number {
        font-size: 24px;
        font-weight: 700;
        color: #e84c2e;
        text-align: end;
        margin: 10px 0 0 0;
    }
    .area4 > .content > .comment-container > .comment > .comment-item > .text-box > .down {
        width: 100%;
        display: flex;
        font-size: 18px;
        font-weight: 700;
        color: #676767;
        margin: 20px 0;
    }

    /* --------------------------------------------------------- */

    .area5 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 60px 0 0 0;
        padding: 60px 0;
        background-color: #e7e7e7;
    }

    .area5 > .content {
        width: calc(100% - 40px);
        max-width: 1280px;
        padding: 0 60px;
    }

    .area5 > .content > .title {
        width: 100%;
        max-width: 600px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin: 0 0 20px 0;
    }
    .area5 > .content > .title > .cross-box {
        position: relative;
        width: 25px;
        height: 25px;
    }

    .area5 > .content > .title > .cross-box > .cross-row {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        height: 25%;
        background-color: #e84c2e;
    }

    .area5 > .content > .title > .cross-box > .cross-column {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 25%;
        height: 100%;
        background-color: #e84c2e;
    }
    .area5 > .content > .title > span {
        color: #e84c2e;
        font-size: 34px;
        font-weight: 700;
    }
    /* ------------------------------------- */

    .area5 > .content > .disclaimer {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: 700;
        color: #676767;
        line-height: 2em;
        white-space: pre-line;
    }

    .area5 > .content > .item-container > .left-box,
    .right-box {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .area5 > .content > .item-container > .left-box > img {
        width: 300px;
    }
    .area5 > .content > .item-container > .right-box > img {
        width: 300px;
    }

    .area5 > .content .join {
        width: 200px;
        display: flex;
        justify-content: center;
        background-color: #e84c2e;
        color: #ffffff;
        border-radius: 30px;
        padding: 15px;
        margin: 50px 0 0 0;
    }
    .area5 > .content .join span {
        font-weight: 700;
        font-size: 20px;
    }

    /* --------------------------------------------------------- */

    .area6 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 60px 0;
    }

    .area6 > .content {
        width: calc(100% - 40px);
        max-width: 1280px;
        padding: 0 60px;
    }

    .area6 > .content > .title {
        width: 100%;
        max-width: 600px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin: 0 0 20px 0;
    }
    .area6 > .content > .title > .cross-box {
        position: relative;
        width: 25px;
        height: 25px;
    }

    .area6 > .content > .title > .cross-box > .cross-row {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        height: 25%;
        background-color: #e84c2e;
    }

    .area6 > .content > .title > .cross-box > .cross-column {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 25%;
        height: 100%;
        background-color: #e84c2e;
    }
    .area6 > .content > .title > span {
        color: #e84c2e;
        font-size: 34px;
        font-weight: 700;
    }
    /* ------------------------------------- */

    .area6 > .content > .item-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        /* gap: 100px; */
    }

    .area6 > .content > .item-container > .left-box,
    .right-box {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .area6 > .content > .item-container > .left-box > img {
        width: 300px;
    }
    .area6 > .content > .item-container > .right-box > img {
        width: 300px;
    }

    .area6 > .content .join {
        width: 200px;
        display: flex;
        justify-content: center;
        background-color: #e84c2e;
        color: #ffffff;
        border-radius: 30px;
        padding: 15px;
        margin: 50px 0 0 0;
    }
        .area6 > .content .join a {
            font-weight: 700;
            font-size: 20px;
            color: #ffffff;
        }
}
