.videoBox {
    margin: 8px 8px;
    max-width: 210px;
    width: 210px;
    height: auto;
    background-color: #000;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12), 0px 1px 2px 0px rgba(0, 0, 0, 0.36);
    border-radius: 4px;
    font-size: 14px;
    vertical-align: top;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 210px;
    cursor: pointer;
}

.own-item .videoBox {
    margin: 8px 0;
}

.videoBox:before {
    display: block;
    opacity: 0;
    content: "\f00c";
    font-family: FontAwesome;
    padding-left: 5px;
    padding-top: 3px;
    font-size: 18px;
    border-radius: 14px;
    width: 28px;
    height: 28px;
    color: #fff;
    background-color: #2CA9DB;
    position: relative;
    z-index: 1;
    float: right;
    margin-top: 16px;
    margin-right: 16px;
    margin-bottom: -28px;
    transition: opacity 0.2s ease;
}

.active.videoBox:before {
    opacity: 1;
}

.videoBox>div.thumb {
    background-color: #000;
    width: 210px;
    height: 117px;
    background-size: cover;
    background-position: 0px 0px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: white;
    text-align: right;
    padding: 90px 10px 0 0;
    box-shadow: inset 0px -166px 58px -142px rgba(125, 125, 125, 0.36);
}

.videoBox>div.desc {
    padding: 8px 16px;
    font-size: 16px;
    background-color: #fff;
    white-space: normal;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #426076;
    height: 60px;
}

.videoBox.active>div.desc {
    background-color: #3F51B5 !important;
    color: #fff;
}

.videoBox .count {
    display: none;
}

#playlist-list-header {
    height: 64px;
    border-bottom: 1px Solid #979797;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    overflow: hidden;
}

#playlist-list-header .autoplay-label {
    top: 16px;
}

.ar #playlist-list-header .autoplay-label {
    right: 16px;
}

#playlist-list-header svg {
    width: 48px;
    height: 48px;
    cursor: pointer;
}

.ar #playlist-list-header #playlist-play-prev,
.ar #playlist-list-header #playlist-play-next {
    transform: rotate(180deg);
}

#playlist-safeview-info {
    float: left;
    width: calc(100% - 381px);
    padding: 20px;
}

#playlist-safeviews-play {
    float: right;
    border: 1px solid #979797;
    width: 381px;
    border-radius: 2px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
    height: 400px;
}

@media screen and (max-width: 1024px) {
    #playlist-safeviews-play {
        height: 418px;
    }
}

@media screen and (max-width: 720px) {
    #playlist-safeview-info {
        width: 100%;
        padding: 20px;
    }
    #playlist-safeviews-play {
        margin: 0 auto;
        float: none;
        border: 1px solid #979797;
        max-width: 381px;
        width: auto;
        border-radius: 2px;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
        height: 183px;
    }
}

#list-playlist-safeviews {
    height: calc(100% - 64px);
    overflow: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    align-items: flex-start;
    padding: 20px;
}

#list-playlist-safeviews .videoBox {
    width: 298px;
    height: 60px;
    margin: 4px;
    flex-basis: 298px;
    max-width: 298px;
    overflow: hidden;
    text-align: left;
}

#list-playlist-safeviews .videoBox>div.thumb {
    width: 88px;
    height: 60px;
    float: left;
    overflow: hidden;
    background-size: cover;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 21px 5px;
    box-shadow: inset -98px 0px 123px -113px rgba(0, 0, 0, 0.75);
    font-size: 14px;
}

#list-playlist-safeviews .videoBox>div.thumb {
    box-shadow: none;
}

#list-playlist-safeviews .videoBox>div.desc {
    height: 60px;
    line-height: 60px;
    width: 210px;
    float: left;
    padding: 0 8px 0 18px;
    font-size: 16px;
    border-bottom-left-radius: 0;
    display: inline-block;
    transition: background-color 0.1s;
}

#list-playlist-safeviews .videoBox>div.desc>span {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    margin-top: -5px;
}

#list-playlist-safeviews .videoBox>.count {
    position: absolute;
    margin-left: 48px;
    margin-top: 0px;
    height: 60px;
    padding-top: 20px;
    width: 40px;
    border-top-right-radius: 0px;
    font-size: 14px;
}

#list-playlist-safeviews .videoBox:before {
    display: none;
}

#list-playlist-safeviews .videoBox.active:before {
    display: block;
    position: relative;
    left: -180px;
    margin-top: 0px;
    top: 16px;
    z-index: 1;
}

#list-playlist-safeviews .videoBox.active>.desc {
    background-color: #3641B5;
    color: #fff;
}


/*play preview*/

#preview-play {
    background-color: #002332;
    height: 424px;
}

#preview-play>div {
    width: 754px;
}

@media screen and (max-width: 1060px) {
    #preview-play {
        height: 320px;
    }
    #preview-play>div {
        width: 569px;
    }
}

@media screen and (max-width: 570px) {
    #preview-play > div {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    #preview-play {
        height: auto;
    }
}

#play-safeview-title {
    letter-spacing: 0.28px;
    line-height: 24px;
    font-size: 22px;
    color: #003A4C;
}

#play-safeview-desc {
    padding-top: 16px;
    letter-spacing: 0.19px;
    line-height: 22px;
    color: #013B4D;
    margin-bottom: 24px;
}

.play-content {
    padding: 28px 15px 0 15px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.play-content .play-center-info {
    margin: 0 auto;
    max-width: 644px;
}

@media screen and (max-width:992px) {
    .play-content {
        height: calc(100% - 320px);
    }
}

.clear {
    clear: both;
}

.mgsbtn {
    margin-bottom: 15px;
    margin-right: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.play-menu-icon {
    width: 40px;
    height: 40px;
    position: fixed;
    top: 14px;
    right: 60px;
}

.page-safeview-play .play-menu-icon svg {
    width: 100%;
    height: 100%;
}

.page-safeview-play .play-menu-icon .menu-icon-white,
.page-playlist-play .play-menu-icon .menu-icon-white {
    display: none;
}

.page-safeview-play .play-menu-icon .menu-icon-purple,
.page-playlist-play .play-menu-icon .menu-icon-purple {
    display: block;
}

.play-share-icon {
    width: 40px;
    height: 40px;
    position: fixed;
    top: 14px;
    right: 65px;
    cursor: pointer;
}

.play-edit-icon {
    width: 34px;
    height: 34px;
    position: fixed;
    top: 16px;
    right: 115px;
    cursor: pointer;
}

.play-share-icon .menu-share-icon .play-edit-icon {
    width: 100%;
    height: 100%;
}

@media screen and (min-width:992px) {
    .play-menu-icon {
        right: 14px;
    }
    .play-share-icon {
        right: 25px;
    }

    .play-edit-icon {
        right: 75px;
    }
}


/*safeview play*/

.play-safeview-desc {
    float: left;
    max-width: 479px;
    width: auto;
}

.play-safeview-actions {
    float: right;
    width: 140px;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .play-safeview-actions>button {
        margin-top: 0 !important;
        margin-left: 16px;
    }
    .play-safeview-actions {
        width: 100%;
        margin-bottom: 26px;
    }
}

/*playlist play*/

#playlist-top-panel {
    background-color: #fff;
    height: 64px;
    -webkit-box-shadow: 1px 0px 3px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 0px 3px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 1px 0px 3px 0px rgba(0, 0, 0, 0.5);
    z-index: 999;
    top: 0;
    position: fixed;
    width: calc(100% - 300px);
    transition: width 0.2s;
}

.sidebar-collapsed #playlist-top-panel {
    width: calc(100% - 60px);
}

@media screen and (max-width:992px) {
    #playlist-top-panel,
    .sidebar-collapsed #playlist-top-panel {
        width: 100%;
    }
}

#playlist-list-header {
    height: 64px;
    border-bottom: 1px Solid #979797;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    overflow: hidden;
}

#playlist-list-header svg {
    width: 48px;
    height: 48px;
    cursor: pointer;
}

#playlist-safeview-info {
    float: left;
    width: calc(100% - 381px);
    padding: 20px;
}

#playlist-safeviews-play {
    float: right;
    border: 1px solid #979797;
    width: 381px;
    border-radius: 2px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
    height: 400px;
}

@media screen and (max-width: 1024px) {
    #playlist-safeviews-play {
        height: 418px;
    }
}

@media screen and (max-width: 720px) {
    #playlist-safeview-info {
        width: 100%;
        padding: 20px;
    }
    #playlist-safeviews-play {
        margin: 0 auto;
        float: none;
        border: 1px solid #979797;
        max-width: 381px;
        width: auto;
        border-radius: 2px;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
        height: 183px;
    }
}

#list-playlist-safeviews {
    height: calc(100% - 64px);
    overflow: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    align-items: flex-start;
    padding: 20px;
}

#list-playlist-safeviews .videoBox {
    width: 298px;
    height: 60px;
    margin: 4px;
    flex-basis: 298px;
    max-width: 298px;
    overflow: hidden;
    text-align: left;
}

#list-playlist-safeviews .videoBox>div.thumb {
    width: 88px;
    height: 60px;
    float: left;
    overflow: hidden;
    background-size: cover;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 21px 5px;
    box-shadow: inset -98px 0px 123px -113px rgba(0, 0, 0, 0.75);
    font-size: 14px;
}

#list-playlist-safeviews .videoBox>div.thumb {
    box-shadow: none;
}

#list-playlist-safeviews .videoBox>div.desc {
    height: 60px;
    line-height: 60px;
    width: 210px;
    float: left;
    padding: 0 8px 0 18px;
    font-size: 16px;
    border-bottom-left-radius: 0;
    display: inline-block;
    transition: background-color 0.1s;
}

#list-playlist-safeviews .videoBox>div.desc>span {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    margin-top: -5px;
}

#list-playlist-safeviews .videoBox>.count {
    position: absolute;
    margin-left: 48px;
    margin-top: 0px;
    height: 60px;
    padding-top: 20px;
    width: 40px;
    border-top-right-radius: 0px;
    font-size: 14px;
}

#list-playlist-safeviews .videoBox:before {
    display: none;
}

#list-playlist-safeviews .videoBox.active:before {
    display: block;
    position: relative;
    left: -180px;
    margin-top: 0px;
    top: 16px;
    z-index: 1;
}

#list-playlist-safeviews .videoBox.active>.desc {
    background-color: #3641B5;
    color: #fff;
}