.base{
    position: relative;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.container{
    height: calc(100% - 40px);
    width: 100%;
    overflow: auto;
}

.video_player{
    width: 100%;
    min-height: 3em;
    position: relative;
    z-index: 3;
    background: black;
}
/*.video_info_container{
    width: 92%;
    margin: 0 auto;
}*/
.video_row_info_container{
    margin: 0 auto;
    width: 92%;
    padding-top: .5em;
}
.video_row_title{
    font-size: 1.2em;
    line-height: 1.5em;
    font-weight: bolder;
}
.video_row_info{
    font-size: 0.67em;
    padding-top: 1em;
    line-height: 1.83em;
    color: #b8b8b8;
}
.video_row_info_summary{
    margin-top: 0.7em;
}
.video_row_summary{
    font-size: 0.83em;
    line-height: 1.67em;
    color: #666666;
    padding-top: 0.8em;
}


/*竖版*/
.all_screen_container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}
.video_player{
    flex: 1;
    position: relative;
    overflow: hidden;
}
.related_button{
    width: 2.4em;
    height: 2.4em;
    position: absolute;
    right: 1em;
    bottom: 20%;
    /*background-color: red;*/
    border-radius: 1.2em;
    z-index: 20;
    overflow: hidden;
}
.related_button_bg{
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.1;
    position: absolute;
    z-index: 0;
}
.related_button_center{
    width: 100%;
    height: 100%;
    background-image: url("../images/icon-show-related.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.1em auto;
    position: absolute;
    z-index: 1;

}
.video_player_column{
    width: 100%;
    max-height: 100%;
}
.related_list_container{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 11;
    top: 0;
    left: 0;
}
.related_list_bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #000000;
    opacity: 0.3;
}
.related_list_ct{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: auto;
}
.related_list{
    margin-top: 40%;
    min-height: 100%;
    background: #ffffff;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    /*padding-top: 0.5em;*/
    padding: 0 4%;
}

.row_video_title{
    font-size: 1.2em;
    color: #ffffff;
    line-height: 1.5em;
    padding: 0.5em 4% 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.row_video_info{
    height: 70px;
    overflow: auto;
    color: #ffffff;
    font-size: 0.8em;
    line-height: 1.4em;
    position: absolute;
    bottom: 50px;
    left: 4%;
    right: 4%;
    z-index: 2;
}


.operate_box{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    width: 100%;
    height: 40px;
    padding: 5px 15px;
    background-color: #fff;
    border-top: 1px solid #ebedf0;
}

.operate_box .comment_btn {
    width: 100%;
    height: 30px;
    background: #f0f0f0;
    border: none;
    font-size: 14px;
    color: #b3b3b3;
    border-radius: 15px;
    padding: 0 8px;
    margin: 0;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
}

.operate_box .operate_right{
    flex: none;
    width: 100px;
    height: 30px;
    padding-left: 5px;
    padding-top: 5px;
    line-height: 30px;
    text-align: right;
}

.operate_box .operate_right .collect,
.operate_box .operate_right .praise,
.operate_box .operate_right .comment {
    margin-left: 10px;
    display: inline-block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    cursor: pointer;
}

.operate_box .operate_right .comment{
    position: relative;
    background-image: url(../images/common.png);
}

.operate_box .operate_right .praise{
    background-image: url(../images/icon-taoxin.png);
}

.operate_box .operate_right .praise.praised{
    background-image: url(../images/icon-taoxin-shixin.png);
}

.operate_box .operate_right .collect{
    background-image: url(../images/con_btn_collect_normal.png);
}

.operate_box .operate_right .collect.collected{
    background-image: url(../images/con_btn_collected_normal.png);
}

.operate_box .operate_right .comment .commentNum{
    position: absolute;
    right: -6px;
    top: -8px;
    font-size: 12px;
    line-height: 14px;
    display: inline-block;
    background: #cb301f;
    color: #fff;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 8px;
}

.comment_form_box{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2002;
    width: 100%;
    height: 172px;
    padding: 10px 15px;
    background: #f2f2f2;
    border-top: 1px solid #dcdcdc;
    overflow: hidden;

    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s,-webkit-transform .3s;
    -webkit-overflow-scrolling: touch;
}

.comment_form_box .comment_form_title{
    position: relative;
    text-align: center;
    padding-bottom: 10px;
    font-size: 14px;
}

.comment_form_box .comment_form_title .comment_cancel {
    position: absolute;
    right: 0;
    color: #b3b3b3;
}

.comment_form_box .comment_text{
    display: flex;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 16px;
    overflow: hidden;
    color: #323233;
    font-size: 14px;
    line-height: 24px;
    background-color: #fff;
}

.comment_form_box .comment_text textarea{
    display: block;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    color: #323233;
    line-height: inherit;
    text-align: left;
    background-color: transparent;
    border: 0;
    outline: none;
    resize: none;
}

.comment_form_submit{
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: right;
}

.comment_form_submit .comment_submit{
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    height: 22px;
    line-height: 1.2;
    text-align: center;
    padding: 0 8px;
    font-size: 12px;
    border-radius: 5px;
    color: #fff;
    background-color: #ee0a24;
    border: 1px solid #ee0a24;
}

.comment_container{
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.comment_container .comment_title{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 1.5em;
    text-align: center;
}

.comment_container .comment_title .back{
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-image: url(../images/arrow-left-bold.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40% auto;
}

.comment_container .comment_list{
    position: absolute;
    left: 0;
    top: 60px;
    right: 0;
    bottom: 40px;
    width: 100%;
    padding: 10px 4%;
    overflow: auto;
}

.comment_container .comm_title{
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 1em;
}

.hot_comment_item{margin-top: 1em; display: flex; flex-flow: row nowrap; padding-bottom: 0.5em;}
.left_head{width: 2.7em;}
.left_head img{width: 2.0625em; height: 2.0625em; border-radius: 2.0625em; margin-top: 0.2em;}
.right_cmt_info{flex: 1; position: relative;}
.user_name{font: 0.75em/1.4em  FZZHUNYSK--GBK1-0-YS; color: #387df4; margin: 0;}
.comment_created_time{ font-size: 0.75em; line-height: 1.25em; margin-top: .625em; color: #b8b8b8; margin-bottom: 0;}
.cmt_time{font-size: 0.8em; line-height: 1em; color: #333333; margin-bottom: 0.5em; margin-top: 0.1em;}
.top_count{font-family:FZZHUNYSK--GBK1-0-YS,sans-serif; padding:0 0 0 1.6em;background:url(../images/icon-taoxin.png) no-repeat left center;background-size:auto 1.4em;color:#a1a1a1;float: right;}
.top_count_active{background-image: url(../images/icon-taoxin-shixin.png) !important; color: #e12519;}
.comment_dtl{font-size: 0.9375em; line-height: 1.67em; color: #333333;font-family: FZZHUNYSK--GBK1-0-YS; margin-top: 0.47em; margin-bottom: 0;}
.re_cmt{text-align: left; font-size: 0.9em; line-height: 1em; color: #a1a1a1;margin-top: 0.3em;}
.re_comment{ padding: 0.2em 0 0.3em 0.2em; display: inline-block;}

.comment_container  .loadMore{
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 0.9375em;
}