
/*------------ 基本樣式 ------------*/

.video-list .item {
    width: 50%;
    padding: 0px 10px;
}

.video-list .item:nth-child(2n+1) {
    clear: left;
}

.video-list .item .name {
    color: #24262C;
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    height: 52px;
}
.video-list .box{
    position: relative;
}
.video-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.video-list .box .pic img{
    width: 100%;
}
/* 2欄 */
.video-list.column2 .item {
    width: 50%;
    padding: 0px 10px;
}

.video-list.column2 .item:nth-child(2n+1) {
    clear: left;
}

/* 3欄 */

.video-list.column3 .item {
    width: 33.33%;
    padding: 0px 10px;
}

.video-list .item:nth-child(2n+1),
.video-list.column3 .item:nth-child(3n+1) {
    clear: none;
}

.video-list.column3 .item:nth-child(3n+1) {
    clear: left;
}



/*------------ 樣式1 ------------*/
.video-list.type1 .item .box {
    max-width: 632px;
    margin: 0 auto 40px;
    padding: 0 0 10px;
    position: relative;
}

.video-list.type1 .item .text span {
    display: none;
}


.video-list.type1 .item .name {
    max-height: 50px;
    margin: 15px 100px;
    text-align: center;
}

/*------------ 樣式2 ------------*/

.video-list.type2 .item .box {
    max-width: 424px;
    margin: 0 auto 40px;
}

.video-list.type2 .item .text span {
    display: none;
}

.video-list.type2 .item .name {
    margin: 15px;
}

/*------------ 33.3% end------------*/

/*------------ rwd ------------*/

@media screen and (max-width:767px) {
    .video-list.column3 .item {
        width: 50%;
    }

    .video-list.column3 .item:nth-child(3n+1) {
        clear: none;
    }

    .video-list.column3 .item:nth-child(2n+1) {
        clear: left;
    }

    .video-list.type1 .item .name {
        margin: 5px 0 0;
    }

    .video-list.type1 .item .box,.video-list.type2 .item .box {
        margin: 0px auto 0px;
    }
}

@media screen and (max-width:480px) {
    .video-list.column3 .item,
    .video-list.column2 .item {
        width: 100%;
        padding: 0;
    }

}