html{
    min-height: 100%;
}
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

.hide {
    display: none;
}

.videoPage {
    max-width: 800px;
    margin: auto;
    min-height: 100%;
}

.videoBox {
    margin: 0;
    overflow: hidden;
    background: #000;
}

.videoBox .video-js {
    display: block;
    margin: auto;
}

.videoIfoBox {
    padding: 10px;
}

.video-title {
    margin: 0 0 6px 0;
    font-size: 16px;
    color: #444444;
    font-weight: 400;
    line-height: 1.3em;
}

.m-avatar {
    margin-bottom: 10px;
}

.m-avatar-img {
    float: left;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 9px;
    overflow: hidden;
}

.m-avatar-name {
    display: block;
    height: 30px;
    line-height: 30px;
    color: #374A70;
    margin-right: 5px;
    font-size: 18px;
}

.m-detail-source {
    padding: 6px 0;
    border-top: 1px dotted #aaa;
    border-bottom: 1px dotted #aaa;
    line-height: 13px;
    font-size: 11px;
    color: #888;
    position: relative;
}

.m-detail-source img {
    float: left;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-right: 9px;
    overflow: hidden;
}

.m-detail-source-cnt {
    display: table;
    height: 26px;
    overflow: hidden;
}

.m-detail-source-cnt-inner {
    display: table-cell;
    vertical-align: middle;
}

.m-detail-source-cnt span {
    display: inline-block;
    *display: inline;
    z-index: auto;
    color: #374A70;
    margin-right: 5px;
}

.cmt {
    padding: 0 10px 0 10px;
}

.cmt-list-title {
    border-bottom: 2px solid #324663;
    font-size: 16px;
    margin: 0;
    padding: 0 0 4px 0;
    color: #324663;
}

.cmt-list {
}

.cmt-item {
    min-height: 40px;
    padding: 12px 0 12px 0;
    border-bottom: 1px dotted #d9d9d9;
}

.cmt-item-head {
    float: left;
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    background: #d9d9d9;
}

.cmt-item-head img {
    display: block;
    width: 46px;
    min-height: 46px;
}

.cmt-item-msg {
    margin-left: 60px;
}

.cmt-item-ifo {
    height: 16px;
    margin-bottom: 6px;
}

.cmt-item-name {
    font-size: 14px;
    line-height: 16px;
    color: #324663;
}

.toUsername {
    font-weight: 400;
    color: #324663;
}

.cmt-item-time {
    float: right;
    font-size: 14px;
    line-height: 16px;
    font-family: Arial;
    color: #b8b8b8;
}

.cmt-item-cnt {
    margin: 0;
    font-size: 16px;
    color: #333;
    word-break: break-all;
}


.downloadBox {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.downloadBox-inner {
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    height: 48px;
    width: 100%;
}

.downloadBox-bd {
    position: relative;
    display: block;
    width: 100%;
}

.downloadBox-bd:link, .downloadBox-bd:hover {
    text-decoration: none;
}

.downloadBox-logo {
    position: absolute;
    display: block;
    top: 8px;
    left: 8px;
    width: 32px;
    height: 32px;
    background: url("http://resource.ttplus.cn/images/download_logo.png") no-repeat;
    background-size: 32px 32px;
}

.downloadBox-cnt {
    display: block;
    margin-left: 49px;
    padding-top: 10px;

}

.downloadBox-cnt-t {
    font-size: 12px; /*px*/
    margin: 0;
    text-decoration: none;
    color: #ffffff;
    line-height: 1.2em;
}

.downloadBox-cnt-b {
    font-size: 10px; /*px*/
    margin: 0;
    color: #E5E5E5;
}

.downloadBox-download {
    position: absolute;
    display: block;
    top: 10px;
    right: 39px;
    height: 29px;
    width: 78px;
    background: url('http://resource.ttplus.cn/images/download.png') no-repeat;
    background-size: 78px 29px;
}

.downloadBox-close {
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    height: 16px;
    width: 16px;
    background: url("http://resource.ttplus.cn/images/close.png") no-repeat;
    background-size: 16px 16px;
}

/*--------------------------dropload--------------------*/
.dropload-up, .dropload-down {
    position: relative;
    height: 0;
    overflow: hidden;
    font-size: 12px;
    /* 开启硬件加速 */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.dropload-down {
    height: 50px;
}

.dropload-refresh, .dropload-update, .dropload-load, .dropload-noData {
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
}

.dropload-load .loading {
    display: inline-block;
    height: 15px;
    width: 15px;
    border-radius: 100%;
    margin: 6px;
    border: 2px solid #666;
    border-bottom-color: transparent;
    vertical-align: middle;
    -webkit-animation: rotate 0.75s linear infinite;
    animation: rotate 0.75s linear infinite;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@media screen and (min-width: 321px) and (max-width: 375px) {
    .m-detail-title {
        font-size: 20px;
    }

    .m-detail-hd > img {
        max-height: 375px;
    }
}

@media screen and (min-width: 376px) and (max-width: 414px) {
    .m-detail-title {
        font-size: 22px;
    }

    .m-detail-hd > img {
        max-height: 414px;
    }
}

@media screen and (min-width: 415px) and (max-width: 480px) {
    .m-detail-hd > img {
        max-height: 480px;
    }
}

@media screen and (min-width: 481px) and (max-width: 540px) {
    .m-detail-hd > img {
        max-height: 540px;
    }
}

@media screen and (min-width: 541px) {
    .m-detail-hd > img {
        max-height: 620px;
    }
}