#submit-comment-elem {
    position: relative;
    width: 100%;
    height: 100px;
}
.comment-user-photo, .comment-user-photo-list {
    position: absolute;
    left: 0px;
    top: 2px;
    width: 35px;
    height: 35px;
    border-radius: 40px;
    border: 1px solid #efecec;
}
.comment-user-photo-list {
    border-radius: 3px;
}
.comment-input {
    position: absolute;
    left: 50px;
    width: 425px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #e3e3e3;
    background-color: white;
    text-indent: 10px;
    line-height: 40px;
    text-align: left;
}
.comment-reply-input {
    width: 320px;
    height: 30px;
    line-height: 30px;
}
.comment-submit-btn {
    position: absolute;
    right: 0px;
    width: 75px;
    height: 40px;
    border: 0px;
    border-radius: 3px;
    color: white;
    background-color: #4e6ef2;
}
.comment-reply-submit-btn {
    height: 30px;
    width: 50px;
    font-size: 13px;
}
#comment-submit-btn:hover {
    cursor: pointer;
    background-color: #415fdb;
}
#comment-content-module {
    position: relative;
    margin-top: 40px;
    width: 100%;
    min-height: 1px;
}
.comment-base-info {
    position: relative;
    line-height: 30px;
    height: 30px;
    font-size: 13px;
    color: #514f4f;
    border-bottom: 1px solid whitesmoke;
}
#comment-list-module {
    position: relative;
    width: 100%;
    height: 200px;
    height: auto;
    margin-top: 20px;
}
.comment-list {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 50px;
    margin-bottom: 40px;
}
.comment-detail-module, .comment-detail-module-reply {
    position: relative;
    width: 652px;
    height: auto;
    min-height: 50px;
    float: left;
    margin-left: 48px;
}
.comment-detail-module-reply {
    margin-bottom: 20px;
    width: 650px;
    margin-left: 0px
}
.comment-author-info {
    width: 100%;
    line-height: 30px;
    font-size: 12px;
}
.comment-content-detail {
    position: relative;
    margin-top: 5px;
    width: 100%;
    min-height: 10px;
    height: auto;
    float: left;
    line-height: 26px;
    font-size: 14px;
    color: #221f1f;
    text-align: left;
}
.comment-detail-reply-module {
    position: relative;
    margin-top: 20px;
    width: 630px;
    padding: 10px;
    min-height: 20px;
    height: auto;
    background-color: #f7f7f7;
    float: left;
    margin-left: 50px;
    border-radius: 3px;
}

.comment-image-module {
    position: absolute;
    top: 30px;
    left: 80px;
    padding: 10px 20px;
    border-radius: 3px;
    background-color: white;
    width: 360px;
    min-height: 100px;
    box-shadow: 0px 0px 10px rgb(238 242 245 / 80%);
    z-index: 999;
    border: 1px solid whitesmoke;
    display: none;
}
.comment-image-module-title {
    position: relative;
    text-align: left;
    font-size: 13px;
    margin-bottom: 10px;
    width: 100%;
    color: #afafaf;
}
.upload-image-module {
    position: relative;
    width: 100%;
    height: 60px;
}
#comment-upload-img-btn {
    float: left;
    width: 56px;
    height: 56px;
    background-color: white;
    border: 2px dashed #bdbdbd;
    border-radius: 3px;
    font-size: 18px;
}
.upload-image-comment-preview {
    position: relative;
    width: 57px;
    height: 57px;
    float: left;
    border: 0px;
    border-radius: 3px;
}
.comment-image {
    position: relative;
    width: 80px;
    height: 80px;
    float: left;
    border: 0px;
    border-radius: 5px;
    margin-right: 5px;
    border: 1px solid whitesmoke;
}
#comment-upload-img-btn:hover {
    background-color: whitesmoke;
}
.delete-preview-image-btn {
    position: absolute;
    right: -7px;
    top: -7px;
    width: 17px;
    height: 17px;
    border: 2px solid whitesmoke;
    background-color: black;
    color: white;
    font-size: 10px;
    border-radius: 30px;
}
.delete-preview-image-btn:hover {
    background-color: red;
}
.emoji-module {
    position: relative;
    padding: 10px;
    width: 300px;
    height: 200px;
    background-color: white;
}
.emoji-module ul {
    list-style-type: none;
}
.emoji-module ul li {
    position: relative;
    float: left;
    width: 40px;
    height: 40px;
}
.emoji-module ul li img {
    width: 35px;
    height: 35px;
}
.emoji-module ul li img:hover {
    cursor: pointer;
    background-color: whitesmoke;
}
#emoji-view {
    position: absolute;
    top: 0px;
    right: -90px;
    height: 15px;
    width: 80px;
    height: 80px;
    padding: 5px;
    background-color: white;
    box-shadow: 0px 0px 5px #cdcaca;
    display: none;
}
.cu-emoji {
    height: 30px;
}

/* 富文本编辑器样式 */
.rich-text-editor {
    position: absolute;
    top: 0px;
    left: 50px;
    height: 150px;
    overflow-y: auto;
    word-wrap: break-word;
    font-size: 14px;
    padding: 0 10px;
    width: 535px;
}

.rich-text-editor:focus {
    outline: none;
    border-color: #4e6ef2 !important;
}

.rich-text-editor:empty:before {
    content: attr(placeholder);
    color: #999;
    pointer-events: none;
}

/* 回复评论的富文本编辑器 */
.reply-module .rich-text-editor {
    width: 320px;
    min-height: 30px;
    max-height: 100px;
    position: relative;
    left: 0;
}
