@charset "utf-8";
/*------------ video ------------*/
.video-list .item .box{
    max-width: 400px;
    margin: 0 auto 40px;
    padding: 0 0 10px;
    position: relative;
    border-bottom: 1px dashed #ddd;
}
.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 .pic{
    position: relative;
    transition: all .2s;
}
.video-list .pic img{
    position: relative;
    z-index: 10;
}
.video-list .item .text span{
    font-size: 12px;
    display: block;
    margin: 10px 0 5px 0;
    color: #9FC5DF;
    font-family: 'Roboto',serif;
    letter-spacing: 2px;
    text-align: left;
}
.video-list .item .name{
    font-weight: 500;
    margin: 15px 0 5px;
    text-align: center;
    transition: all .3s ease;
    color: #374061;
}
.video-list .item .box:hover .name{
    color: #9FC5DF;
}
.video-list .pic:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0;
    z-index: 30;
    -webkit-transition: all 0.3s ease; 
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: #93B9D9;
    background: -moz-linear-gradient(top, rgba(147, 185, 217, 0.5) 0%, rgba(147, 185, 217, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(147, 185, 217, 0.5) 0%, rgba(147, 185, 217, 0) 100%);
    background: linear-gradient(to top, rgba(147, 185, 217, 0.5) 0%, rgba(147, 185, 217, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#93B9D9', endColorstr='#93B9D9', GradientType=0);
}
.video-list .box:hover .pic:before {
    opacity: 1;
}
/*------------ detail ------------*/
.video-title{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 14px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    color: #374061;
}
.video-detail{
    border-bottom: 1px dashed #ddd;
    padding-bottom: 20px;
}
.video-box{
    background: #E8F1F8;
    margin:0 auto 5px;
}
.video-box .cont{
    max-width:900px;
    margin: auto;
}
.btn-box{
    text-align: left;
}
.video-list.type2 .item .name {
    margin: 15px 15px 5px;
    -webkit-line-clamp: 1;
    height: 25px;
}
/*------------ rwd ------------*/
@media screen and (max-width:767px){
    .video-title{
        margin:auto;
    }
    .video-box{
        padding: 0px;
    }
}
@media screen and (max-width:480px){
    .video-list{
        margin: 0;
    }
}
