
/* 视频 */

.LdVideoImg {
    position: relative;
    border-bottom: 4px solid #bfbfbf;
    float: left;
    width: 275px;
    height: 154px;
    display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
}

    .LdVideoImg img {
        width: 100%;
    }

    .LdVideoImg span {
        position: absolute;
        z-index: 888;
    }

        .LdVideoImg span:nth-child(1) {
            top: 6px;
            left: 8px;
            width: 82px;
            height: 23px;
            background: #00a0ea;
            text-align: center;
            line-height: 23px;
            -webkit-border-radius: 6px;
            -ms-border-radius: 6px;
            -o-border-radius: 6px;
            -moz-border-radius: 6px;
            border-radius: 4px;
            color: white;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

            .LdVideoImg span:nth-child(1).active_red {
                background: red;
            }

        .LdVideoImg span:nth-child(2) {
            bottom: 6px;
            color: white;
            left: 8px;
            background: black;
            padding: 2px 6px;
            background-color: rgba(0, 0, 0,0.6);
            filter: Alpha(opacity=40);
            opacity: 1;
            -webkit-border-radius: 4px;
            -ms-border-radius: 4px;
            -o-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 4px;
        }

        .LdVideoImg span:nth-child(1).active_gre {
            background: green;
        }

    .LdVideoImg .videoBtn {
        position: absolute;
        top: 50%;
        left: 50%;
        font-size: 42px;
        margin-left: -18px;
        margin-top: -21px;
        z-index: 888;
    }

    .LdVideoImg a img {
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .LdVideoImg:hover a img {
        transform: scale(1.2)
    }

    .LdVideoImg:hover .videoBtn {
        color: #f54835;
    }

.LdVideo dl dt {
    float: left;
    font-size: 19px;
    font-weight: bold;
    margin-right: 15px;
}

.LdVideo dl {
    float: left;
    line-height: 25px;
    /*margin-top: 10px;*/
    width: 100%;
}

    .LdVideo dl dd {
        float: left;
        font-size: 12px;
    }

.LdVideo ul {
    float: left;
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .LdVideo ul li {
        float: left;
        width: 275px;
        margin: 0 10px 20px;
        box-shadow: 0px 1px 9px #939393;
    }

        .LdVideo ul li p {
            line-height: 32px;
            text-indent: 1em;
            float: left;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 246px;
        }
/* 视频结束 */
