body{
    background: #191919;
}
.title{
    width: 1200px;
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 27px;
    text-align: left;
    margin: 30px auto;
}
.content{
    display: flex;
    margin-top: 30px;
    margin-bottom: 0;
}
.content .product-info{
    width: 77.5%;
}
.content .product-info .product-video{
    width: 100%;
    background: #FFFFFF;
}
.content .product-info .product-video video{
    width: 100%;
    height: 100%;
}
.content .product-info .product-content{
    padding: 20px 30px;
    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;
}



@media screen and (min-width: 1000px) and (max-width: 1440px) {
    .title{
        width: 900px;
    }
    .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) {
    .title{
        width: 700px;
        margin: 20px auto;
    }
    .content .product-info .product-content{
        padding: 10px 15px;
    }
    .content .products-list li .product-list-title{
        font-size: 12px;
        line-height: 16px;
    }
}