.product-bar .product-bar-container {
    display: flex;
}

.product-bar {
}

    .product-bar .product-bar-container {
        position: relative;
        z-index: 10;
    }

        .product-bar .product-bar-container .product-panel {
            width: 905px;
            height: 550px;
            background-color: white;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            padding: 56px 32px;
            position: absolute;
            top: 0px;
            left: 265px;
            z-index: 100;
            display: none;
            overflow-y: auto;
        }

            .product-bar .product-bar-container .product-panel.active {
                display: block;
            }

            .product-bar .product-bar-container .product-panel .content {
                display: flex;
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 24px;
            }

        .product-bar .product-bar-container .content > div {
            flex: 0 1 calc((100% - 24px * 5) / 6 );
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .product-bar .product-bar-container .product-panel .product-img {
            width: 64px;
            height: 64px;
            background-color: var(--disabled-color);
            cursor: pointer;
            box-shadow: 8px -8px 0px 2px var(--border-color);
            overflow: hidden;
            border-radius: 4px;
        }

            .product-bar .product-bar-container .product-panel .product-img img {
                transition: transform 0.3s ease;
                width: 100%;
                height: 100%;
            }

        .product-bar .product-bar-container .product-panel .product {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

            .product-bar .product-bar-container .product-panel .product:hover .product-img img {
                transform: scale(1.1);
            }

            .product-bar .product-bar-container .product-panel .product:hover p {
                color: var(--theme-color);
                font-weight: 600;
            }

        .product-bar .product-bar-container .product-panel p {
            cursor: pointer;
        }

        .product-bar .product-bar-container .product-list {
            width: 270px;
            height: 410px;
            background-color: white;
            border-left: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            position: absolute;
            top: 0;
            left: 0;
            overflow: hidden;
        }

            .product-bar .product-bar-container .product-list.active {
                height: auto;
                min-height: 410px;
                overflow: visible;
            }

            .product-bar .product-bar-container .product-list .title {
                height: 50px;
                background-color: var(--theme-color);
                color: white;
                font-size: 18px;
                line-height: 50px;
                text-align: center;
                border-left: 1px solid var(--border-color);
            }

    .product-bar .product-list ul {
        padding: 0;
        list-style: none;
    }


        .product-bar .product-list ul li.active {
            background-color: var(--border-color);
        }

        .product-bar .product-list ul a {
            position: relative;
            display: block;
            padding: 0 16px;
            height: 36px;
            line-height: 36px;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
        }

            .product-bar .product-list ul a i {
                position: absolute;
                right: 8px;
                top: 12px;
            }




    .product-bar .product-bar-container .ivu-carousel {
        width: 900px;
        height: 410px;
        margin-left: 270px;
    }

        .product-bar .product-bar-container .ivu-carousel img {
            width: 900px;
            height: 410px;
        }

.demo-carousel {
    display: block;
    background-color: var(--content-color);
    color: var(--sub-color);
    font-size: 180px;
    text-align: center;
    height: 100%;
}

.product-bar-quick {
    margin-top: 8px;
    background-color: white;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-evenly;
    height: 80px;
    align-items: center;
}

    .product-bar-quick .quick-menu {
        display: flex;
        flex-shrink: 0;
    }

        .product-bar-quick .quick-menu a {
            display: flex;
            justify-content: center;
            flex-shrink: 0; /* 防止内容被压缩 */
            padding: 8px;
        }

        .product-bar-quick .quick-menu .icon {
            width: 48px;
            height: 48px;
            background-color: #eeeeee;
            text-align: center;
            margin-right: 24px;
            color: var(--sub-color);
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .product-bar-quick .quick-menu a:hover .icon {
            background-color: #dcdee2;
            color: var(--sub-color);
        }

        .product-bar-quick .quick-menu .icon i {
            display: inline;
            line-height: 48px;
            font-size: 36px;
        }

        .product-bar-quick .quick-menu .title {
            font-size: 16px;
        }

        .product-bar-quick .quick-menu .desc {
            font-size: 12px;
            color: var(--sub-color);
            width: 140px;
        }

.area-title {
    text-align: center;
    margin-top: 24px;
}

    .area-title h1 {
        display: block;
        margin: 0 auto;
        width: 200px;
        color: var(--title-color);
        font-weight: 500;
        border-bottom: 1px solid var(--border-color);
    }

    .area-title h2 {
        display: block;
        width: 200px;
        margin: 0 auto;
        font-size: 16px;
        color: var(--sub-color);
        font-weight: 100;
    }


.product-imageList {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    margin-top: 24px;
    justify-content: space-between;
    gap: 12.5px;
}

    .product-imageList .imageItem {
        flex-grow: 0;
        flex-shrink: 0;
        height: auto;
        background-color: var(--sub-color);
        border-radius: 4px;
        position: relative;
        overflow: hidden;
        flex: 0 0 calc((100% - 12.5px * 4 ) / 5);
    }

        .product-imageList .imageItem.x2 {
            flex: 0 0 calc((100% - 12.5px * 4 ) / 5 * 2 + 12.5px);
        }

        .product-imageList .imageItem img {
            transition: transform 0.3s ease;
            width: 100%;
            height: 100%;
        }

        .product-imageList .imageItem a:hover img {
            transform: scale(1.05); /* 鼠标悬停时放大5% */
        }

        .product-imageList .imageItem .mask {
            font-size: 16px;
            text-shadow: 0px 0px 4px #000;
            text-align: center;
            height: 50px;
            color: white;
            position: absolute;
            bottom: 0;
            background: linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
            width: 100%;
        }

            .product-imageList .imageItem .mask .text {
                position: absolute;
                bottom: 4px;
                width: 100%;
            }

.discounts-time {
    margin-top: 24px;
    padding: 0 0 32px 0;
}

    .discounts-time .tab {
        display: flex;
        height: 80px;
        cursor: pointer;
    }

        .discounts-time .tab .tab-item {
            flex: 1;
            background-color: #969696;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-left: 2px;
        }

            .discounts-time .tab .tab-item:first-child {
                margin-left: 0px;
                border-radius: 8px 0 0 0;
            }

            .discounts-time .tab .tab-item:last-child {
                border-radius: 0 8px 0 0;
            }

            .discounts-time .tab .tab-item.expire {
                background-color: #969696;
            }

            .discounts-time .tab .tab-item.active {
                border-bottom: none;
                background-color: #ffd002;
            }

            .discounts-time .tab .tab-item .title {
                font-size: 16px;
                color: #FFF;
                font-weight: 600;
                text-shadow: 0 0 2px #333;
            }

            .discounts-time .tab .tab-item.active .title {
                color: #222222;
            }

            .discounts-time .tab .tab-item .desc {
                color: #FFF;
                background-color: red;
                padding: 4px 16px;
                border-radius: 8px;
                display: inline-block;
                margin-top: 4px;
            }

            .discounts-time .tab .tab-item.expire .desc {
                background-color: #c5c8ce;
                color: #515a6e;
            }

    .discounts-time .content {
        /*  border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;*/
        background-color: black;
        overflow: hidden;
        border-radius: 0 0 8px 8px;
    }

        .discounts-time .content img {
            display: block;
            width: 100%;
            height: auto;
        }


.publicity {
    flex: 0;
    background: var(--background-color);
}

    .publicity .support-bar {
        display: flex;
        height: 240px;
        text-align: center;
    }

        .publicity .support-bar .single-support {
            flex: 0 0 20%;
            border-right: 1px solid var(--border-color);
            padding: 35px 17px;
        }

        .publicity .support-bar > .single-support:first-child {
            border-left: 1px solid var(--border-color);
        }

        .publicity .support-bar .single-support .support-icon {
            margin: 0;
            padding: 0;
        }

            .publicity .support-bar .single-support .support-icon i {
                font-size: 60px;
                color: #5a7ea8;
            }

        .publicity .support-bar .single-support .support-desc h6 {
            color: #363636;
            font-size: 20px;
            font-weight: 400;
            margin: 20px 0 10px;
            text-transform: capitalize;
        }

        .publicity .support-bar .single-support .support-desc span {
            color: #363636;
            font-size: 14px;
            margin: 0;
            text-transform: capitalize;
        }

    .publicity .bar1 {
        background-color: aliceblue;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .publicity .bar2 {
        padding: 50px 0 50px 0;
        text-align: center;
        border-top: 1px solid var(--border-color);
        background-color: white;
    }

        .publicity .bar2 h3 {
            color: var(--title-color);
            font-size: 28px;
            font-weight: 900;
            margin: 0 0 15px;
            line-height: 1;
        }

        .publicity .bar2 p {
            color: #757575;
            font-size: 16px;
            font-weight: 300;
            line-height: 1;
        }

.information {
    margin-top: 32px;
    background-color: white;
    border: 1px solid var(--border-color);
}

    .information .ivu-tabs-bar {
        margin-bottom: 0px;
    }

    .information .content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: calc(34px * 5);
    }

        .information .content .info-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 34px;
            padding: 0 16px;
        }

            .information .content .info-item:hover {
                background-color: #eee;
            }

            .information .content .info-item:not(:last-child) {
                /*border-bottom: 1px dashed var(--border-color)*/
            }


            .information .content .info-item .left-group {
                display: flex;
                flex-direction: row;
                flex-shrink: 1;
                min-width: 0;
            }

                .information .content .info-item .left-group .infoType {
                    margin: 0 16px 0 0;
                    flex: 0 0 42px;
                }

                .information .content .info-item .left-group .title {
                    flex-shrink: 1;
                    min-width: 0;
                    overflow: hidden;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    padding-right: 16px;
                }

            .information .content .info-item .right {
                flex: 0 0 120px;
                color: var(--sub-color);
            }

    .information .information-foot {
        height: 32px;
        line-height: 32px;
        text-align: center;
        border-top: 1px solid var(--border-color)
    }
/* 手机站点*/
.phone-model .product-list {
    display: none;
}

.phone-model .carouselParent {
    flex: 1;
    display: flex;
    width: 100%;
}

.phone-model .product-carousel.ivu-carousel {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    margin-left: 0;
}

    .phone-model .product-carousel.ivu-carousel img {
        width: 100%;
        height: auto;
    }


.phone-model .product-imageList .imageItem {
    flex: 0 0 calc((100% - 12.5px ) / 2);
    height: auto;
}

    .phone-model .product-imageList .imageItem.x2 {
        flex: 0 0 100%;
        height: auto;
    }

.phone-model .discounts-time .tab {
    height: auto;
}

    .phone-model .discounts-time .tab .tab-item {
        padding: 8px;
    }

        .phone-model .discounts-time .tab .tab-item .title {
            font-size: 14px;
        }


.phone-model .product-bar-quick .quick-menu {
    display: none;
}

    .phone-model .product-bar-quick .quick-menu.mobile-show {
        display: block;
    }


.phone-model .publicity {
    display: none;
}

.phone-model .discounts-time .tab .tab-item .desc {
    font-size: 12px;
}
