.banner {
    position: relative;
}

#cascader {
    /*position: absolute;*/
    top: 59.265%;
    left: 8.9583%;
    right: 8.9583%;
    z-index: 11;
    backdrop-filter: blur(20px);
}

#cascader .panel-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    /*background-color: #ffffff19;*/
    background-color: #00000033;
}

#cascader .cascader-header {
    padding: 0 24px;
    height: 68px;
    line-height: 68px;
    color: #fff;
    font-size: 28px;
    background-color: #0000004c;
}
#cascader.white .cascader-header{

    background-color: #255ED9;
}
#cascader.white .panel .nav .item,#cascader.white .panel .list .item{
    color:#000;
}
#cascader.white .panel-list{
    background-color: #FFF;
    box-shadow: 0px 9px 14px 2px rgba(37, 94, 217, 0.1);
}
#cascader.white .panel .list .item a p{

    padding-left: 5px;
}
#cascader.white .panel:nth-of-type(2) .nav .item:hover, #cascader .panel .list .item:hover,
#cascader.white .panel .nav .item.active,
#cascader.white .panel:nth-of-type(2) .nav .item.active
{
    background-color: rgba(37, 94, 217, 0.05)!important;
}
#cascader .panel {
    min-width: 0;
    /*height: 350px;*/
    height: 440px;
    padding: 5px 12px 5px 0;
}

#cascader .panel .panel-wrapper {
    position: relative;
    padding-right: 14px;
    height: 100%;
    overflow-y: auto;
}

#cascader .panel .panel-wrapper::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

#cascader .panel .panel-wrapper::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

#cascader .panel .panel-wrapper::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 999px;
}

#cascader .panel:nth-of-type(1) {
    padding-right: 0;
}

#cascader .panel:nth-of-type(1) .panel-wrapper {
    padding-right: 0;
}

#cascader .panel .nav {
    width: 100%;
    margin: auto 0;
}
#cascader .panel:first-of-type .nav .item{
    font-size: 20px;
}
#cascader .panel .nav .item {
    padding: 0 22px 0 22px;
    height: 85px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transition: 0.3s ease-in-out;
    animation: fadeIn 0.5s ease-in-out;
}

#cascader .panel .nav .item.active {
    background-color: #ffffff33;
}

#cascader .panel .nav .item:hover {
    background-color: #ffffff33;
}

#cascader .panel:nth-of-type(2) .nav .item.active {
    background-color: rgba(255, 255, 255, 0.2);
}

#cascader .panel:nth-of-type(2) .nav .item:hover,
#cascader .panel .list .item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

#cascader .panel .list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(410px, 1fr));
    align-content: flex-start;
    gap: 32px 120px;
    color: #fff;
}

#cascader .panel .list .item {
    transition: 0.3s ease-in-out;
    font-size: 18px;
}

#cascader .panel .list .item a {
    display: flex;
    align-items: center;
}

@keyframes fadeIn {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.mask {
    mask: linear-gradient(
            transparent,
            #fff 6px,
            #fff calc(100% - 6px),
            transparent
    );
}

.slide img {
    width: 100%;
    height: 100%;
    display: block;
}

.product-list {
    padding:80px 36px 0;
    max-width: 1576px;
}

.product-list li {
    display: flex;
    align-items: flex-start;
    gap: 52px;
    margin-top: 42px;
}

.product-list li h3 {
    margin-top: 0;
}

.product-list li + li {
    margin-top: 24px;
}

.product-list .product-img {
    width: 100%;
    max-width: 300px;
    flex-shrink: 0;
    text-align: center;
}
/* 针对 WebKit 浏览器（如 Chrome 和 Safari） */
.fp-overflow::-webkit-scrollbar {
    display: none; /* 隐藏滚动条 */
}

/* 针对 WebKit 浏览器（如 Chrome 和 Safari） */
.scroll::-webkit-scrollbar {
    display: none; /* 隐藏滚动条 */
}

/* 针对 Firefox */
.fp-overflow,.scroll {
    scrollbar-width: none; /* 隐藏滚动条 */
    overflow-y: scroll; /* 保留垂直滚动功能 */
    -ms-overflow-style: none; /* IE 和 Edge */
}



.product-list .product-img > div.aspect-img {
    position: relative;
}

.product-list .product-img > div.aspect-img::before {
    content: "";
    display: block;
    padding-top: 75%;
}

.product-list .product-img > div.aspect-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.product-list .product-img p {
    font-size: 20px;

}

.product-list button.info {
    min-width: 134px;
    background: #e5e5e5;
}

.product-list button.info a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.product-list .product-attr {
    flex: 1;
    min-width: 0;
}

.product-list .product-attr .table {
    padding: 0 24px;
    background-color: #e5e5e5;
    min-width: 800px;
}

.product-list .product-attr .row {
    display: flex;
}

.product-list .product-attr .row + .row {
    border-top: 1px solid #b5b5b5;
}

.product-list .product-attr .row .col {
    display: flex;
    align-items: center;
    font-size: 18px;
    min-height: 50px;
}

.product-list .product-attr .row .col:nth-of-type(1) {
    width: 120px;
}

.product-list .additional {
    margin-top: 28px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    height: 43px;
    line-height: 43px;
    background: #e5e5e5;
}

.scroll {
    overflow: auto;
}

.scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.scroll::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 999px;
}

.scroll::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 999px;
}

.product-list .more-box {
    /*bottom: 20px;*/
    position: unset;
    margin-top: 20px;
    /*position: unset;*/
    /*margin-top: 30px;*/
}

@media screen and (min-width: 2000px) {
    .product-list .product-img{
        max-width: 400px;
    }
}
@media screen and (max-width: 1200px) {

    .product-list .product-img{
        max-width: 200px;
    }
}

@media screen and (max-width: 1000px) {

    #cascader {

        left: 20px;
        right: 20px;
    }
    .product-list .product-img{
        max-width: 200px;
    }
}

@media screen and (max-width: 768px) {

    #cascader {
        display: none;
    }
    .product-list .product-attr{
        display: none;
    }

    .product-list .product-img {
        max-width: 60%;
    }
    .product-list li{
        justify-content: center;
    }

    .more-box.black{
        display: none;
    }

}
@media screen and (max-width: 600px) {



    .product-list .product-img {
        max-width: 100%;
    }
    .arrow-down{
        display: none;
    }


}