body{
    background: #191919;
}
.header .header-content .header-bottom .header-nav .header-nav-item:nth-child(4)::after{
    content: "";
}


.crumb-wrap .crumb{
    width: 76%;
}
.content{
    width: 76%;
    display: flex;
    margin: 10px auto 0;
}
.content .product-info{
    width: 77.5%;
}
.content .product-info .product-video-wrap{
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}
.content .product-info .product-video-wrap .product-img{
    width: 100%;
    height: 100%;
}
.content .product-info .product-video-wrap .product-img img{
    width: 100%;
    height: 100%;
}
.content .product-info .product-video-wrap .product-img .product-img-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translate(-50%,-50%);
    cursor: pointer;
    z-index: 1;
}
.content .product-info .product-video-wrap .product-video{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #E6E6E6;
    display: none;
}
.content .product-info .product-video-wrap .product-video video{
    width: 100%;
    height: 100%;
}
.content .product-info .product-content{
    padding: 20px;
    background: #2B2B2B;
    color: #FFFFFF;
}
.content .product-info .product-content .product-title-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content .product-info .product-content .product-title{
    font-weight: bold;
    font-size: 18px;
    line-height: 27px;
}
.content .product-info .product-content .product-date{
    font-size: 16px;
    line-height: 27px;
}
.content .product-info .product-content .product-desc{
    font-size: 12px;
    line-height: 18px;
    margin-top: 15px;
}



.content .hot-products{
    width: 22.5%;
    border: 1px solid #484848;
    flex: 1;
    position: relative;
}
.content .products-list{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    overflow-y: scroll;
}
/* 自定义滚动条的轨道（背景） */
.content .products-list::-webkit-scrollbar {
    width: 2px; /* 滚动条的宽度 */
}
/* 自定义滚动条的轨道（容器） */
.content .products-list::-webkit-scrollbar-track {
    background: transparent; /* 轨道的背景色 */
    border-radius: 2px; /* 圆角 */
}
/* 自定义滚动条的滑块（可拖动部分） */
.content .products-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .7); /* 滑块的颜色 */
    border-radius: 2px; /* 圆角 */
}

.content .products-list .title{
    width: 100%;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 22px;
    text-align: left;
    margin: 0;
}
.content .products-list li{
    width: 100%;
    margin-top: 20px;
    cursor: pointer;
}
.content .products-list li .product-list-video{
    width: 100%;
    aspect-ratio: 229 / 131; /* 1:1 的宽高比，即高度等于宽度 */
    position: relative;
}
.content .products-list li .product-list-video img{
    width: 100%;
    height: 100%;
}
.content .products-list li .product-list-video .product-list-video-icon{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.4);
    display: none;
}
.content .products-list li .product-list-video .product-list-video-icon img{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.content .products-list li:hover .product-list-video .product-list-video-icon{
    display: block;
}
.content .products-list li .product-list-title{
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    margin-top: 10px;
}

.footer{
    display: none;
}

@media screen and (min-width: 1000px) and (max-width: 1440px) {
    .content .product-info .product-content{
        padding: 15px 20px;
    }
    .content .products-list li .product-list-title{
        font-size: 14px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 1000px) {
    .content .product-info .product-content{
        padding: 10px 15px;
    }
    .content .products-list li .product-list-title{
        font-size: 12px;
        line-height: 16px;
    }
}