.main-section-container {
    padding-top: 56px;
    min-height: 100%;
    overflow: hidden;
    background-color: #DAE0E6;
}

.main-content-container {
    min-height: 100%;
    overflow: auto;
    padding-bottom: 10px;
}

.main-wrapper {
    width: 55%;
    min-width: 650px;
    margin: 20px auto 0;
    font-family: IBMPlexSans, Arial, sans-serif;
    background-color: #ffffff;
}

.community-name-wrapper {
    width: 100%;
    height: 40px;
    background-color: #F6F7F8;
}

.community-name {
    display: block;
    margin: 0 auto;
    width: 85%;
    height: 40px;
    line-height: 40px;
    padding: 0 16px;
    font-size: 16px;
    font-weight: 600;
    color: #7a3374;
}

.topic-wrapper {
    width: 85%;
    margin: 0 auto 20px;
    padding: 0 16px;
    border-bottom: thin solid #edeff1;
}

.topic-wrapper .topic-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.topic-wrapper .topic-link .topic-info {
    width: 100%;
    padding: 8px 0;
    font-size: 12px;
    color: #787c7e;
}

.topic-wrapper .topic-link .topic-info .user-page-link {
    color: #787c7e;
}

.topic-wrapper .topic-link .topic-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}

.topic-wrapper .topic-link .topic-content {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1b;
}

.topic-wrapper .topic-link .comment-count {
    margin-bottom: 15px;
}

.topic-wrapper .topic-link .comment-count i {
    font-size: 12px;
    color: #878a8c;
}

.topic-wrapper .topic-link .comment-count span {
    font-size: 12px;
    color: #878a8c;
}

.comments-section {
    width: 85%;
    margin: 0 auto;
}

.need-login,
.need-join {
    height: 64px;
    padding: 16px 16px;
    border: 1px solid #edeff1;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.need-login p,
.need-join p {
    display: block;
    margin: 0;
    font-size: 16px;
    color: #7c7c7c;
}

.comment-box {
    display: flex;
    margin-top: 24px;
}

.comment-box .user-page-link img {
    margin-right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.comment-box .comment-editor-wrapper {
    flex-grow: 1;
}

#comment_editor,
#reply_editor {
    margin-bottom: 8px;
    word-break: break-all;
    border-bottom: 1px solid #d1d1d1;
    outline: none;
    min-height: 24px;
    line-height: 24px;
    color: #d1d1d1;
    font-size: 14px;

}

#comment_editor.is-focus,
#reply_editor.is-focus {
    border-bottom: thin solid #7a3374;
    outline: none;
    color: #1a1a1b;
}

.comment-box .comment-editor-wrapper .button-wrapper,
.reply-box .reply-editor-wrapper .button-wrapper {
    display: flex;
    justify-content: flex-end;
}

.button-wrapper #cancel_comment,
.button-wrapper #cancel_reply {
    margin-right: 8px;
    color: #d1d1d1;
}

.comments-section .no-data {
    width: 100%;
    height: 64px;
    line-height: 64px;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    color: #606060;
    text-align: center;
}

.comment-box .comment-info-header .comment-user-name,
.comment-box .comment-info-header .comment-time-span {
    font-size: 12px;
    color: #878a8c;
}

.comment-box .comment-info-header .user-page-link {
    color: #878a8c;
}