/* ---- 视频播放区域 start */
.player-space {
    background-color: #f5f7fa;
    padding: 40px 0;
    margin-top: 80px;
}


.player-head-video {
    display: block;
    width: 850px;
    height: 478px;
}

.player-head-list {
    width: 350px;
    height: 478px;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #1a1a1a;
}

.player-head-list-item {
    padding: 12px 15px 0 15px;
    cursor: pointer;
}

.player-head-list-item .item-content {
    border-bottom: 1px solid #4d4d4d;
    padding-bottom: 15px;
}

.player-head-list-item .item-status {
    display: inline-block;
    vertical-align: middle;
    line-height: 16px;
    font-size: 14px;
    letter-spacing: 0px;
    color: #b3b3b3;
    background-color: #666666;
    border-radius: 4px;
    padding: 2px 6px;
    display: none;
    margin-right: 5px;
}

.player-head-list-item .item-title {
    display: inline-block;
    vertical-align: middle;
    line-height: 16px;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #808080;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-head-list-item .item-subhead {
    font-size: 14px;
    letter-spacing: 0px;
    color: #808080;
    margin-top: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-head-list-item.playing .item-status {
    background-color: #66b3ff;
    color: #ffffff;
    display: inline-block;
}

.player-head-list-item.playing .item-title {
    color: #66b3ff;
}

.player-head-list-item.playing .item-subhead {
    color: #66b3ff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-foot {
    background-color: #333333;
    padding: 15px 20px;
    position: relative;
}

.player-foo-title {
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #ffffff;
    margin-bottom: 10px;
}

.player-foo-status {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 18px;
    color: #ffe463;
    width: 100px;
    height: 32px;
    line-height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.player-foo-subhead {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    color: #ffffff;
    margin-left: 15px;
}

.player-foo-label {
    font-size: 16px;
    color: #ffffff;
    position: absolute;
    right: 350px;
    bottom: 15px;
}

.player-foo-button {
    width: 220px;
    height: 48px;
    background-color: #66b3ff;
    border-radius: 24px;
    font-size: 18px;
    color: #ffffff;
    position: absolute;
    right: 20px;
    bottom: 25px;
}

/* ---- 视频播放区域 end */


@media only screen and (max-width:960px) {

    /* ---- 视频播放区域 start */
    .player-space {
        padding: 20px 0;
        margin-top: 28px;
    }

    .player-space .player-content {
        margin: auto;
    }

    .player-head-video {
        display: block;
        width: 100%;
        height: auto;
        min-height: 180px;
    }

    .player-head-list {
        display: none;
    }

    .player-foot {
        padding: 10px;
    }

    .player-foo-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .player-foo-status {
        font-size: 14px;
        width: 80px;
        height: 28px;
        line-height: 28px;
    }

    .player-foo-subhead {
        font-size: 12px;
        margin-left: 10px;
    }

    .player-foo-label {
        position: static;
        display: block;
        font-size: 12px;
        color: #ffffff;
        margin-left: 0px;
        margin-top: 6px;
    }

    .player-foo-button {
        width: 120px;
        height: 32px;
        font-size: 12px;
        position: absolute;
        right: 10px;
        bottom: 50%;
        margin-bottom: -16px;
    }

    /* ---- 视频播放区域 end */
}