.comment-info-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.comment-info-box .comment-input-box{
    width: 100%;
}
.comment-info-box .comment-input-box:not(:first-child){
    margin-left: 10px;
}

.comment-info-box .comment-input-box input{
    font-size: 12px;
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-color: rgba(135,150,165,.15);
    color: inherit;
    border-radius: 2px;
    outline: none;
    border-radius: 5px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.comment-content-footer{
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.comment-content-footer .comment-emjoi-btn{
    height: 22px;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
    border-radius: 13px;
    font-size: 13px;
    text-decoration: none;
    color: #777e85;
}
.comment-content-footer .comment-emjoi-btn svg{
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.comment-content-box{
    width: 100%;
}
.comment-content-box label,.comment-info-box .comment-input-box label{
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}
.comment-content-box label .required,.comment-info-box .comment-input-box label .required{
    color: red;
}
.comment-content-box .comment-editor{
    background-color: #fff;
    border: 1px solid #efefef;
    border-radius: 2px;
    background-size: 180px;
    font-size: 14px;
    line-height: 18px;
    width: 100%;
    min-height: 120px;
    max-height: 120px;
    color: #000;
    padding: 6px 12px;
    overflow-wrap: break-word;
    -webkit-transition: all .25s ease-in-out 0s;
    transition: all .25s ease-in-out 0s;
    resize: none;
    outline: none;
    border-radius: 5px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    overflow-y: auto;
    -moz-box-sizing: border-box;
}
.comment-content-box .comment-editor:focus{
    border-color: #b5b5b5;
}
.comment-content-box .comment-editor:empty::before{
    color:lightgrey;
    content:attr(placeholder);
}
.comment-content-box .comment-editor .emjoi{
    width: 22px;
    margin-left: 3px;
    margin-right: 3px;
}
.comment-emjoi-panel{
    width: 100%;
    list-style: none;
    padding: 0;
    max-height: 148px;
    overflow-y: auto;
    margin: 0;
    margin-top: 10px;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
    -ms-flex-pack: start;
    -ms-flex-wrap: wrap;
    display: none;
    flex-direction: column;
}
.comment-emjoi-panel-show{
    display: flex;
}
.comment-emjoi-panel li{
    width: 38px;
    cursor: pointer;
    margin-bottom: 5px;
}
.comment-emjoi-panel li img{
    width: calc(100% - 12px);
    padding-left: 6px;
    padding-right: 6px;
}
.comment-submit-box{
    margin-top: 10px;
}
.comment-submit-box .comment-submit-btn{
    background: #343434;
    color: white;
    border: none;
    padding: 7px 14px;
    cursor: pointer;
    border-radius: 5px;
}
.comment-submit-box .comment-cancel-btn{
    background: #ffffff;
    border: none;
    padding: 7px 14px;
    cursor: pointer;
    border-radius: 5px;
    margin-right: 10px;
    border: 1px solid #ddd;
}
.comment-msg{
    background: #e15b64;
    color: white;
    font-size: 13px;
    line-height: 22px;
    height: 22px;
    margin-left: auto;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
    top: -35px;
    right: 8px;
    display: none;
}
.comment-msg-show{
    display: inline-block;
}
.comment-close-msg{
    padding-left: 4px;
    cursor: pointer;
}
.comment-msg-warning{
    background: #f47e60;
}
.comment-msg-error{
    background: #e15b64;
}
.comment-msg-success{
    background: #67cc86;
}


.comment-pagination{
    display: flex;
    width: 100%;
    list-style: none;
    padding: 0;
    justify-content: center;
}
.comment-pagination .page{
    background: #343434;
    padding: 5px 10px 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    color: white;
    font-size: 13px;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none; 
    -khtml-user-select: none; 
    user-select: none;
}

.comment-pagination .page:not(:first-child){
    margin-left: 5px;
}
.comment-pagination .page:hover{
    background: #f47e60;
}
.comment-pagination .active{
    background: #f47e60;
}
.comment-pagination .disabled, .comment-pagination .disabled:hover{
    cursor: not-allowed;
    background: #343434;
}
.comment-detail-box{
    display: flex;
    margin-top: 16px;
    flex-wrap: wrap;
    width: 100%;
}
.comment-child-detail-box{
    padding-left: 50px;
    width: calc(100% - 50px);
}
.comment-detail-avatar-box img{
    border-radius: 6px;
}
.comment-detail-msg-box{
    width: calc(100% - 56px);
    margin-left: 10px;
}
.comment-detail-content{
    margin-top: 5px;
    width: calc(100% - 30px);
    padding: 12px 10px;
    border-radius: 5px;
    margin-bottom: 5px;
    word-break: break-all;
    line-height: 24px;
    background: #efefef;
    font-size: 14px;
    opacity: .85;
}
.comment-detail-name{
    font-weight: 500;
    color: #67cc86;
    font-size: 16px;
}
.comment-detail-info{
    position: relative;
}
.comment-detail-time{
    font-size: 12px;
    color: #888;
    margin-left: 4px;
}
.comment-detail-reply-btn{
    position: absolute;
    right: 20px;
    display: none;
    font-size: 13px;
    background: #f47e60;
    border-radius: 5px;
    padding: 2px 6px 2px 6px;
    color: white;
    cursor: pointer;
}
.comment-detail-box:hover .comment-detail-reply-btn {
    display: inline-block;
}
.comment-reply-box{
    flex-direction: column;
    width: 100%;
}
.comment-mention{
    font-size: 14px;
    font-weight: 600;
}
.comment-detail-content img{
    vertical-align: middle;
    padding-left: 2px;
    padding-right: 2px;
}
.comment-not-list{
    text-align: center;
    margin-top: 30px;
}
.comment-emjoi-panel-show{
    flex-direction: row;
}