* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
}
.gkimg {
    margin-top: -2px;
    vertical-align: middle;
    margin-left:3px;
    margin-right:3px;width: 29px;
    height: 15px;
    border-radius: 10%;
}
.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    min-width: 1200px;
    height: 120px;
    padding: 0 30px 0 16px;
    background: #fff;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    display: flex;
}

#app-pc {
    overflow: auto;
}

#app-pc,
body,
html {
    width: 100%;
    height: 100%;
}

.pc-live {
    position: relative;
    width: 100%;
    min-width: 1200px;
    height: 100%;
    padding-top: 120px;
    font-size: 16px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

    .pc-live .pc-container .left-box {
        position: relative;
        width: 800px;
        height: 557px;
        margin-right: 404px;
        padding: 19px 16px 20px;
        color: #333;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .1);
    }

    .pc-live .pc-container {
        position: relative;
        z-index: 10;
        width: 1200px;
        max-width: 1200px;
        margin: 20px auto;
    }

        .pc-live .pc-container .left-box .title {
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            margin-bottom: 5px;
        }

        .pc-live .pc-container .left-box .title-desc {
            display: -webkit-box;
            overflow: hidden;
            height: 34px;
            margin-bottom: 5px;
            font-size: 13px;
            line-height: 17px;
            text-overflow: ellipsis;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
        }

        .pc-live .pc-container .left-box .title-source {
            margin-bottom: 5px;
            min-height: 16px;
            font-size: 0;
            line-height: 16px;
            color: #9195a3;
        }

        .pc-live .pc-container .left-box .title-source-avatar {
            display: inline-block;
            width: 16px;
            height: 16px;
            vertical-align: top;
            /*border-radius: 50%;*/
            background-repeat: no-repeat;
            background-size: cover;
        }

        .pc-live .pc-container .left-box .title-source-name {
            display: inline-block;
            margin-left: 4px;
            font-size: 13px;
        }


.pc-live .pc-container .right-box {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    width: 390px;
}

.chat-room {
    position: relative;
    width: 100%;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .1);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
}

 
.chat-room-title {
    height: 60px;
    padding-left: 16px;
    border-bottom: 1px solid #e4e4e5;
    font-size: 20px;
    line-height: 60px;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-room-login {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 32px;
    background: #295FE3;
    opacity: 1;
    border-radius: 80px;
    color: #FFFFFF;
    font-size: 14px;
    margin: 0 20px 0 0;
}

.chat-room-login-name {
    padding: 0 14px 0 3px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.chat-room-login-name img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #fff;
    display: block;
    margin: 0 10px 0 0;
}

.chat-room-login-name span {
    display: block;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-room-login-sign {
    padding: 0 14px;
    cursor: pointer;
}

.chat-room-login-register {
    padding: 0 14px;
    cursor: pointer;
}

.chat-room-msg {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    overflow: auto;
    padding: 10px 16px;
}

.chat-room-msg-tip {
    font-size: 13px;
    line-height: 17px;
    color: #9195a3;
}

.chat-room-input {
    position: relative;
    height: 60px;
    padding: 15px 16px;
    border-top: 1px solid #e4e4e5;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

    .chat-room-input .chat-btn[disabled] {
        background-color: #999;
    }

    .chat-room-input .chat-newmsg {
        position: absolute;
        top: -32px;
        right: 22px;
        font-size: 10px;
        color: #fff;
        border-radius: 12px;
        padding: 3px 15px;
        display: none;
        cursor: pointer;
        background-color: #ff0000;
    }

    .chat-room-input .chat-input {
        width: 260px;
        height: 30px;
        padding: 0 10px;
        border: 0 solid #e4e4e5;
        font-size: 14px;
        line-height: 14px;
        letter-spacing: 0;
        color: #333;
        border-radius: 8px;
        background: #F6F6F6;
    }

    .chat-room-input .chat-btn {
        width: 60px;
        height: 30px;
        margin-left: 10px;
        border: none;
        font-size: 13px;
        color: #fff;
        border-radius: 6px;
        background-color: #4e6ef2;
        cursor: pointer;
    }

/* 回放 */
.pc-live .pc-container .left-box .title .title-tag {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 18px;
    padding: 0 4px;
    font-size: 12px;
    line-height: 12px;
    color: #fff;
    border-radius: 5px;
    background: #f33;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-left: 5px;
}

.pc-live .pc-container .left-box .title .title-name {
    overflow: hidden;
    font-size: 20px;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.chat-room-msg .msg-box {
    margin-top: 5px;
    font-size: 0;
}

.chat-room-msg .msg-box-avatar {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin: 4px 5px 0 5px;
    vertical-align: top;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.chat-room-msg .msg-box-name {
    font-size: 13px;
    line-height: 28px;
    letter-spacing: 0;
    color: #ffd044;
}

.chat-room-msg .msg-box-text {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0;
    color: #333;
    text-shadow: 0 0 0.5px rgba(0,0,0,.3);
    word-break: break-all;
}

/* 点赞样式 */
.video-discuss-like {
    background: url('../image/like.png') no-repeat;
    background-size: 30px 30px;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 3px;
}

 .video-discuss-like:hover {
    background-image: url('../image/like_hover.png');
}

.like-icon.green {
    background-image: url('../image/like_icon_2.png');
}

.like-icon.red {
    background-image: url('../image/like_icon_4.png');
}

.like-icon.blue {
    background-image: url('../image/like_icon_3.png');
}

.like-icon {
    background: url('../image/like_icon_1.png') no-repeat;
    background-size: 19px 17px;
    width: 19px;
    height: 17px;
    position: absolute;
    left: 21px;
    margin-top: -15px;
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
        margin-top: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        margin-top: -60px;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
        margin-top: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        margin-top: -60px;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}


.login-popu-view {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999999;
}

.login-popu-make {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
}

.login-popu {
    width: 400px;
    background: #FFFFFF;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.login-popu-title {
    font-size: 18px;
    text-align: center;
    padding: 20px 0 10px 0;
    color: #333333;
}

.login-popu-cont {
    font-size: 16px;
    text-align: center;
    padding: 0 0 20px 0;
    color: #333333;
}

.login-popu-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login-popu-btn button {
    width: 50%;
    height: 40px;
    border: none;
    outline: none;
    background-color: #fff;
    color: #007AFF;
}

.login-popu-btn button:nth-child(1) {
    background-color: #007AFF;
    color: #fff;
}

.login-popu-btn button:nth-child(2) {
    border-top: 1px solid rgba(60, 60, 67, 0.36);
    box-sizing: border-box;
}

.login-popu-btn button:active {
    opacity: .6;
}