body{
    background: #191919;
    margin-top: 80px;
}

.header{
    background-color: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}
.header .header-logo img.normal{
    display: none;
}
.header .header-logo img.active{
    display: inline-block;
}
.header .header-nav .nav-item>a{
    color: #1A1A1A;
}
.header .header-nav .nav-item:hover>a{
    color: #1562C5;
}

.content{
    width: 76%;
    display: flex;
    margin: 20px auto 40px;
}
.content .product-info{
    width: 75.4%;
}
.content .product-info .product-video{
    width: 100%;
    aspect-ratio: 1100 / 637;
    background: #FFFFFF;
}
.content .product-info .product-video video{
    width: 100%;
    height: 100%;
}
.content .product-info .product-content{
    background: #2B2B2B;
    color: #FFFFFF;
}
.content .product-info .product-content .product-title-wrap{
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #26262B;
    line-height: 67px;
}
.content .product-info .product-content .product-title{
    font-weight: bold;
    font-size: 18px;
}
.content .product-info .product-content .product-date{
    font-size: 16px;
}
.content .product-info .product-content .product-desc{
    font-size: 12px;
    line-height: 18px;
    padding: 10px 20px 20px;
}



.content .hot-products{
    width: 24.6%;
    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) {

}

@media only screen and (max-width: 1000px) {
    body{
        margin-top: 60px;
    }
    .content .product-info .product-content .product-title-wrap{
        padding: 0 10px;
        line-height: 47px;
    }
    .content .product-info .product-content .product-title{
        font-size: 14px;
    }
    .content .product-info .product-content .product-date{
        font-size: 14px;
    }
    .content .product-info .product-content .product-desc{
        padding: 10px;
    }
    .content .products-list{
        padding: 10px;
    }
    .content .products-list .title{
        font-size: 18px;
    }
}