.article-comment-body {
    width: 100%;
    background-color: #fff;
    margin-top: 10px;
    padding: 20px;
    box-sizing: border-box;

    .title {
        font-size: 18px;
        font-weight: bold;
    }

    .create-comment {
        background-color: #f0f5f6;
        padding: 10px;
        margin-top: 10px;
        box-sizing: border-box;

        .button-line {
            display: flex;
            justify-content: right;
            margin-top: 5px;

            .button-submit {
                background-color: #fc4d41;
                color: #fff;
                padding: 0 20px;
                height: 32px;
                line-height: 32px;
                border-radius: 16px;
                cursor: pointer;

                &:hover {
                    background-color: #ff1100;
                }

                &.disabled {
                    background-color: #f6a6a7;
                }
            }
        }
    }

    .comment-list {
        margin-top: 10px;

        .no-comment {
            padding: 40px;
            text-align: center;

            .image {
                height: 200px;
            }

            .text {
                text-align: center;
            }
        }

        .list {
            min-height: 270px;

            .comment {
                border-bottom: 1px solid #f2f2f2;
                padding: 10px 0;
                display: flex;
                flex-wrap: nowrap;

                &.reply {
                    padding-left: 50px;
                }

                .left {
                    width: 40px;
                    margin-right: 10px;
                    flex-shrink: 0;

                    .user-avatar {
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        overflow: hidden;
                        background-color: #f2f2f2;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }
                }

                .middle {
                    width: 100%;
                    flex-shrink: 1;

                    .user-info {
                        .nickname {
                            font-size: 14px;
                            color: #333;
                            font-weight: bold;
                        }
                        .location {
                            font-size: 12px;
                            color: #999;
                        }
                    }

                    .content {
                        margin-top: 5px;
                        white-space: pre-wrap; /* 保留换行符并自动换行 */
                    }
                }

                .right {
                    width: 100px;
                    flex-shrink: 0;
                    justify-content: end;
                    margin-left: 10px;
                    display: flex;

                    .delete {
                        margin-right: 10px;
                        cursor: pointer;
                        position: relative;
                        top: 1px;
                        i {
                            font-size: 18px;
                        }
                    }

                    .like {
                        text-align: right;
                        cursor: pointer;
                        i {
                            font-size: 16px;
                        }

                        i.liked {
                            color: #ff1100;
                        }
                    }
                }
            }
        }

        .show-more {
            margin-top: 10px;
            display: flex;
            justify-content: center;

            .load-more {
                width: 360px;
                height: 32px;
                line-height: 32px;
                text-align: center;
                border-radius: 4px;
                cursor: pointer;
                background-color: #f2f2f2;
            }
            .loading {
            }
            .no-more {
            }
        }
    }
}
