.topic + .topic {
    margin-top: 24px;
}

.topic .header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.topic .header .userinfo {
    display: flex;
    align-items: center;
}

.topic .header img {
    width: 48px;
    height: 48px;
}

.topic .header .right {
    margin-left: 12px;
}

.topic .header .username {
    font-weight: 600;
    font-size: 16px;
}

.topic .header .time {
    margin-top: 6px;
    color: var(--text-color-secondary);
}

.topic .title {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 600;
}

.topic .index {
    color: var(--text-color-disabled);
    font-size: 16px;
}

.topic .content {
    margin-top: 12px;
}

.comment-total {
    margin: 40px 0 24px;
    font-weight: 600;
}

.write-comment {
    margin-top: 40px;
}

.write-comment.is-login-g .title {
    font-size: 16px;
    font-weight: 600;
}

.write-comment.is-login-g .body {
    display: flex;
    margin-top: 24px;
    align-items: flex-start;
}

.write-comment.is-login-g .avatar {
    width: 64px;
    height: 64px;
}

.write-comment.is-login-g .editor {
    margin-left: 12px;
    width: 0;
    flex-grow: 1;
}

.write-comment.is-login-g .submit {
    margin-top: 24px;
    display: flex;
    align-items: center;
}

.write-comment.is-login-g .submit .button-g {
    width: 220px;
}

.write-comment.is-login-g .submit .tips {
    margin-left: 12px;
    color: var(--color-error);
}

.write-comment.no-login-g {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color-secondary);
    padding: 64px 0;
}

.write-comment.no-login-g .iconfont {
    color: var(--text-color-placeholder);
    font-size: 40px;
    margin-bottom: 24px;
}