.top_video {
    width: 100%;
    height: 540px;
    position: relative;
    margin-top: 76px;
}
.top_video::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    content: "";
}
.top_video .video_txt {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 10;
    font-size: 42px;
    line-height: 1.2;
}

.top_video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button_wrap {
    margin: 0 auto;
    margin-top: 100px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.button_wrap button {
    color: var(--mainpink);
    font-size: 20px;
    height: 40px;
    border: 1px solid var(--mainpink);
    border-radius: 40px;
    padding: 0 14px;
    cursor: pointer;
    transition: all .3s;
    text-transform: uppercase;
}

.button_wrap button:not(:last-child) {
    margin-right: 14px;
}

.button_wrap button.on {
    background-color: var(--mainpink);
    color: #fff;
}

.button_wrap button:hover {
    background-color: var(--secondpink);
    color: #fff;
}

#ad {
    display: none;
}

.list {
    margin-top: 54px;
    max-width: 1000px;
    padding: 0;
}

/* .list .product_list {
    color: #fff;
} */


.list .product_list li:not(:last-child)::after {
    display: flex;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #ffffff24;
    margin: 62px 0;
}
.list .product_list li:last-child {
    padding-bottom: 100px;
}
.list .product_list li a{
    display: flex;
    justify-content: space-between;
}

.list .product_list li .thumbnail_box {
    width: 400px;
    height: 226px;
    background-color: #ccc;
    position: relative;
}

.list .product_list li .thumbnail_box img{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.list .product_list li .thumbnail_box .flag_wrap {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    display: flex;
    align-items: center;
}

.list .product_list li .thumbnail_box .flag_wrap span {
    display: flex;
    height: 24px;
    border-radius: 24px;
    padding: 0 10px;
    padding-top: 1px;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    font-size: 14px;
}

.list .product_list li .thumbnail_box .flag_wrap span.vod {
    color: #fff;
    background-color: #000427;
}

.list .product_list li .thumbnail_box .flag_wrap span.eng {
    color: #2B2B2B;
    background-color: #fff;
}

.list .product_list li .thumbnail_box .flag_wrap span.shorts {
    color: #fff;
    background-color: #F21505;
}

.list .product_list li .thumbnail_box .flag_wrap span.live {
    color: #fff;
    background-color: #FF006E;
}

.list .product_list li .text_box {
    width: calc(100% - 400px - 40px);
    display: flex;
    flex-direction: column;
}

.list .product_list li .text_box .hash {
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 3px;
}

.list .product_list li .text_box .title {
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 6px;
}

.list .product_list li .text_box .info_wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.list .product_list li .text_box .info_wrap p{
    color: #999999;
    font-size: 14px;
    line-height: 28px;
    display: flex;
    align-items: center;
}
.list .product_list li .text_box .info_wrap p:not(:last-child)::after{
    display: flex;
    content: '';
    width: 1px;
    height: 16px;
    background-color: #4B4B4B;
    margin: 0 9px;
}
.list .product_list li .text_box .desc{
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.1px;
    color: #999999;
}
.list .product_list.product_list_ad li .text_box .desc {
    margin-top: 14px;
}


@media screen and (max-width:1000px) {
    .list {
        margin-top: 34px;
        padding: 0 25px;
    }
    
    .list .product_list li a{
        flex-direction: column;
    }
    
    .list .product_list li .thumbnail_box {
        width: 100%;
        height: auto;
        padding-top: 56.5%;
    }
    
    .list .product_list li .text_box {
        width: 100%;
        margin-top: 20px;
    }
    
    .list .product_list li .text_box .hash {
        font-size: 14px;
        margin-bottom: 0px;
    }
    
    .list .product_list li .text_box .title {
        font-size: 18px;
        margin-bottom: 0px;
    }
    
    .list .product_list li .text_box .info_wrap {
        margin-bottom: 14px;
    }
    
    .list .product_list li .text_box .info_wrap p {
        font-size: 12px;
    }
    
    .list .product_list li .text_box .info_wrap p:not(:last-child)::after {
        height: 14px;
    }
    
    .list .product_list li .text_box .desc {
        font-size: 14px;
    }
    
    .list .product_list li:not(:last-child)::after {
        margin: 42px 0;
    }
    .list .product_list.product_list_ad li .text_box .desc br {
        display: none;
    }
}
@media screen and (max-width:767px) {
    .top_video {
        height: 320px;
        margin-top: 64px;
    }

    .top_video h2 {
        font-size: 32px;
    }

    .button_wrap button {
        font-size: 14px;
        padding: 0 12px;
        height: 32px;
        /* text-transform: capitalize; */
    }
  
    .button_wrap button:not(:last-child) {
        margin-right: 6px;
    }
    .list .product_list li .text_box .desc br.pc_br{
        display: none;
    }
}