/****************************纠错按钮、笔记按钮等*/
.funcBtn{
    width: 25px;
    height: 25px;
    margin-top: 5px;
    margin-right: 10px;
}
.message-input-view{
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: none;
    z-index: 108;
}
.message-input-view .msg-header{
    height: 35px;
    background: #F8F8F8;
    width: 70%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 8px;
    color: #333;
    border-bottom: 1px solid #eee;
    border-radius: 2px 2px 0 0;
}
.message-input-view .msg-header .type{
    position: initial;
    left: initial;
    top: initial;
    width: initial;
}
.message-input-view .input-view{
    width: 70%;
    background: white;
    padding: 8px;
    text-align: center;
    border-radius: 0 0 2px 2px;
}
.message-input-view .input-view input{
    border: solid 1px #e1e1e1;
    max-height: 60px;
    min-height: 25px;
    padding: 5px;
    width: calc(100% - 11px);
    color: #333;
    margin-bottom: 8px;
    font-size: 13px;
}
.message-input-view .input-view textarea{
    border: solid 1px #e1e1e1;
    max-height: 180px;
    min-height: 50px;
    padding: 5px;
    width: calc(100% - 11px);
    color: #333;
    font-size: 13px;
}
.input-view .input-submit{
    color: #fff;
    background: rgb(250, 80, 131);
    display: inline-block;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
    border-radius: 5px;
    margin-top: 5px;
    cursor: pointer;
}
#upload-container{
    padding-bottom: 8px;
    text-align: left;
    cursor: pointer;
}
#upload-container #uploadImg{
    background: #eee;
    padding: 5px 8px;
    border-radius: 5px;
    display: inline-block;
    color: #333;
    border: solid 1px #e1e1e1;
    font-size: 13px;
}

/****************弹幕相关 css*/
.danmu{
    display: none;
}
.danmu-view{
    border-radius: 4px;
    border: solid 1px #d77b22;
    overflow: hidden;
}
.danmu-view input{
    width: 200px;
    padding: 5px;
    float: left;
    height: 20px;
    border: none;
    font-size: 13px;
}
.danmu-view .send-danmu{
    background-color: #fdf5e4;
    height: 100%;
    line-height: 100%;
    display: block;
    height: 30px;
    line-height: 30px;
    text-align: center;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    color: #e38b00;
    font-size: 12px;
    border-left: solid 1px #d77b22;
    cursor: pointer;
}


/******************图灵机器人相关 css*/
.robot-view{
    border-radius: 4px;
    border: solid 1px #d77b22;
    overflow: hidden;
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 8px;
    margin-right: 10px;
    width: calc(100% - 75px);
}
.robot-view input{
    width: calc(100% - 71px);
    padding: 5px;
    float: left;
    height: 20px;
    border: none;
    font-size: 13px;
}
.robot-view .send-robot{
    background-color: #fdf5e4;
    height: 100%;
    line-height: 100%;
    display: block;
    height: 30px;
    line-height: 30px;
    text-align: center;
    float: left;
    /* padding-left: 10px; */
    /* padding-right: 10px; */
    color: #e38b00;
    font-size: 12px;
    border-left: solid 1px #d77b22;
    cursor: pointer;
    width: 60px;
}
