:root {
    /* 主色调 */
    --primary-color: #e70012;
    --nomal-color: #111E36;
    --orange-color: #FF8300
}

html {
    scroll-behavior: smooth;
}

.pl-show {
    display: block !important;
}

@media (max-width: 720px) {
    .bgRight-bg {
        display: none;
    }

    .main-bg {
        justify-content: center !important;
    }

    .bg-left {
        width: calc(100% - 60px) !important;
    }
}

@media (max-width: 1155px) {
    .quick-reply {
        margin-left: 0 !important;
    }
}

.bgRight-bg {
    width: calc(25% - 20px);
}

.czpost-wz {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #6B7280;

    &>p {
        margin: 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        line-height: 35px;
        -webkit-line-clamp: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
    }

    span {
        margin: 0 6px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        line-height: 35px;
        -webkit-line-clamp: 1;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    i {
        font-style: normal;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        line-height: 35px;
        -webkit-line-clamp: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
    }
}

.bg-right-one {
    float: none;
    width: 100%;
    height: max-content;
    background-color: #fff;
    border-radius: 6px;
    padding: 24px 24px 4px 24px;
    margin-bottom: 20px;

    .br-title {
        /* margin-bottom: 20px; */

        p {
            font-size: 18px;
            line-height: 18px;
            color: #111E36;
            font-weight: bold;
            white-space: nowrap;
        }
    }

    ul {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;

        li {
            position: relative;
            width: 47%;
            margin-bottom: 10px;
            text-align: center;
            overflow: hidden;
            cursor: pointer;

            &:hover {
                i {
                    color: var(--primary-color);
                }

                img {
                    transform: scale(1.1);
                }
            }

            a {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                z-index: 999;
            }

            .ccle-bg {
                overflow: hidden;
                border-radius: 8px;
                border: 1px solid #eee;
            }

            img {
                object-fit: cover;
                background-color: #F2F2F2;
                border-radius: 8px;
                transition: transform 0.2s ease-in-out;
            }

            i {
                width: 100%;
                color: #111E36;
                font-size: 14px;
                line-height: 36px;
                font-style: normal;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 1;
                overflow: hidden;
                text-overflow: ellipsis;
                font-style: normal;
            }
        }
    }

    &::after {
        content: "";
        display: block;
        clear: both;
    }
}

.bg-right-two {
    float: none;
    width: 100%;
    height: max-content;
    background-color: #fff;
    border-radius: 6px;
    padding: 24px 24px 24px 24px;
    margin-bottom: 20px;

    .br-title {
        /* margin-bottom: 20px; */

        p {
            font-size: 18px;
            line-height: 18px;
            color: #111E36;
            font-weight: bold;
            white-space: nowrap;
        }
    }

    ul {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;

        li {
            height: 28px;
            background-color: #F3F4F6;
            border-radius: 14px;
            margin-right: 10px;
            margin-bottom: 10px;
            cursor: pointer;
            position: relative;

            a {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: ;
            }

            &:hover {
                background-color: rgba(0, 0, 0, 0.12);

                span {
                    color: #000;
                }
            }

            span {
                color: #4B5563;
                font-size: 14px;
                padding: 0 10px;
                line-height: 28px;
            }
        }
    }

    &::after {
        content: "";
        display: block;
        clear: both;
    }
}

.dataR {
    width: 192px;
    height: 128px;
    background-color: #000;
    margin-left: 50px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    overflow: hidden;

    a {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 999;
    }

    img {
        transition: transform 0.2s ease-in-out;
    }

    &:hover {
        img {
            transform: scale(1.05);
        }
    }
}

.mid-container {
    width: 100%;

    ul {
        width: 100%;

        li {
            width: 100%;
            height: 204px;
            background-color: #fff;
            border-bottom: 1px solid #eee;
            padding: 24px;
            box-sizing: border-box;

            &:hover {
                background-color: #f8f9fa;
                border-top: 1px solid rgba(0, 0, 0, 0.08);
                border-bottom: 1px solid rgba(0, 0, 0, 0.08)
            }

            .data-bg {
                display: flex;
                justify-content: space-between;

                .dataL {
                    min-width: 490px;

                    .dataL-top {
                        display: flex;
                        align-items: center;
                        height: 24px;
                        margin-bottom: 10px;

                        img {
                            width: 24px;
                            height: 24px;
                            cursor: pointer;
                            border: 1px solid #eee;
                            border-radius: 50%;
                        }

                        p {
                            color: #4B5563;
                            font-size: 14px;
                            line-height: 24px;
                            margin: 0 10px;
                            cursor: pointer;

                            &:hover {
                                color: var(--primary-color);
                            }
                        }

                        span {
                            color: #9CA3AF;
                            font-size: 12px;
                            line-height: 24px;
                        }
                    }

                    .dataL-mid {
                        .dLm-title {
                            width: 100%;
                            height: 28px;
                            margin-bottom: 6px;
                            display: -webkit-box;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: 1;
                            /* 限制行数为2 */
                            overflow: hidden;
                            text-overflow: ellipsis;


                            p {
                                margin: 0;
                                font-size: 20px;
                                font-weight: bold;
                                color: #111E36;
                                cursor: pointer;

                                &:hover {
                                    color: var(--primary-color);
                                }

                            }
                        }
                    }

                    .dataL-bom {
                        width: 100%;
                        height: 24px;
                        display: flex;

                        .LbomL {
                            min-width: 100px;
                            display: flex;
                            font-size: 0;
                            white-space: nowrap;

                            .Lbom-eyes {
                                display: flex;
                                align-items: center;
                                margin-right: 10px;
                                /* cursor: pointer; */
                                position: relative;

                                a {
                                    position: absolute;
                                    width: 100%;
                                    height: 100%;
                                    top: 0;
                                    left: 0;
                                }

                                .image-eye {
                                    width: 24px;
                                    height: 24px;
                                    background: url(eyes.png) 100% / 100% 100%;
                                }

                                span {
                                    font-size: 14px;
                                    color: #6B7280;
                                    line-height: 24px;
                                }

                                &:hover {
                                    span {
                                        color: var(--primary-color);
                                    }

                                    .image-eye {
                                        background: url(eyes-act.png) 100% / 100% 100%;
                                    }
                                }

                            }

                            .Lbom-anw {
                                display: flex;
                                align-items: center;
                                cursor: pointer;
                                position: relative;

                                .image-anw {
                                    width: 24px;
                                    height: 24px;
                                    background: url(anw.png) 100% / 100% 100%;
                                }

                                a {
                                    position: absolute;
                                    width: 100%;
                                    height: 100%;
                                    top: 0;
                                    left: 0;
                                }

                                img {
                                    width: 24px;
                                    height: 24px;
                                }

                                span {
                                    font-size: 14px;
                                    color: #6B7280;
                                    line-height: 24px;
                                }

                                &:hover {
                                    span {
                                        color: var(--primary-color);
                                    }

                                    .image-anw {
                                        background: url(anw-act.png) 100% / 100% 100%;
                                    }
                                }
                            }
                        }

                        .LbomR {
                            width: calc(100% - 100px);
                            height: 24px;
                            overflow: hidden;
                            margin-left: 10px;

                            &>ul {
                                height: 100%;
                                display: flex;


                                &>li {
                                    padding: 0 10px;
                                    height: 24px;
                                    background-color: #F3F4F6;
                                    border: 0;
                                    margin-right: 8px;
                                    width: initial;
                                    border-radius: 12px;
                                    font-size: 12px;
                                    line-height: 24px;
                                    color: #6B7280;
                                    cursor: pointer;
                                    white-space: nowrap;
                                    position: relative;

                                    a {
                                        position: absolute;
                                        width: 100%;
                                        height: 100%;
                                        top: 0;
                                        left: 0;
                                        z-index: 999;
                                    }

                                    &:hover {
                                        color: #000;
                                        background-color: rgba(0, 0, 0, 0.12);
                                    }
                                }
                            }
                        }
                    }

                    .dLm-words {
                        width: 100%;
                        height: 48px;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 2;
                        /* 限制行数为2 */
                        overflow: hidden;
                        text-overflow: ellipsis;
                        margin-bottom: 12px;
                        position: relative;

                        &:hover {
                            p {
                                color: #333;
                            }
                        }

                        a {
                            position: absolute;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            top: 0;
                        }

                        p {
                            font-size: 16px;
                            line-height: 24px;
                            color: #4B5563;
                            margin: 0;
                            cursor: pointer;
                        }
                    }
                }
            }
        }
    }
}

.mid-list-active {
    & {
        color: var(--primary-color) !important;
        border-bottom: 2px solid var(--primary-color) !important;
    }
}

.bg-left {
    float: left;
    width: 75%;
    height: 100%;
    background-color: #FAFAFC;

    .post-zl {
        width: 100%;
        height: 44px;
        background-color: #fff;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 16px;

        .zl-lt {
            width: 72%;
            height: 100%;
            display: flex;
            align-items: center;

            span {
                font-size: 16px;
                color: var(--primary-color);
                line-height: 16px;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 1;
                /* 限制行数为1 */
                overflow: hidden;
                text-overflow: ellipsis;
                cursor: pointer;
                min-width: 70px;

                &:hover {
                    text-decoration: underline
                }
            }

            b {
                width: 16px;
                height: 16px;
                margin: 0 4px;
            }

            h3 {
                margin: 0;
                font-size: 16px;
                color: var(--nomal-color);
                display: -webkit-box;
                -webkit-box-orient: vertical;
                cursor: pointer;
                -webkit-line-clamp: 1;
                /* 限制行数为1 */
                overflow: hidden;
                text-overflow: ellipsis;

                &:hover {
                    text-decoration: underline
                }
            }
        }

        .zl-rt {
            width: 28%;
            height: 100%;
            margin-left: 10px;
            display: flex;
            justify-content: flex-end;
            align-items: center;

            .icon-bgg {
                display: flex;

                .collect-icon {
                    width: 28px;
                    height: 28px;
                    background: url(collect-2.png) no-repeat center 100% / 100% 100%;
                    margin-right: 20px;
                    cursor: pointer;

                    &:hover {
                        width: 28px;
                        height: 28px;
                        background: url(collect-2-active.png) no-repeat center 100% / 100% 100%;
                    }
                }

                .like-bg {
                    margin-right: 20px;
                    cursor: pointer;
                    display: flex;

                    &:hover {
                        .like-icon {
                            width: 28px;
                            height: 28px;
                            background: url(like-hover.png) no-repeat center 100% / 100% 100%;
                        }

                        span {
                            color: var(--primary-color);
                        }
                    }

                    .like-icon {
                        width: 28px;
                        height: 28px;
                        background: url(like.png) no-repeat center 100% / 100% 100%;
                    }

                    span {
                        font-size: 14px;
                        color: var(--nomal-color);
                        line-height: 28px;
                        white-space: nowrap;
                        position: relative;
                        top: 3px;
                    }
                }

                .reply-bg {
                    display: flex;
                    margin-right: 20px;

                    .reply-icon {
                        width: 28px;
                        height: 28px;
                        background: url(reply.png) no-repeat center 100% / 100% 100%;
                    }

                    span {
                        font-size: 14px;
                        color: var(--nomal-color);
                        line-height: 28px;
                        white-space: nowrap;
                        position: relative;
                        top: 3px;
                    }
                }
            }

            .quick-reply {
                margin-left: 24px;

                p {
                    transition: background-color 0.2s ease;
                }

                &:hover {
                    p {
                        background-color: #ffa800 !important;
                    }
                }

                p {
                    color: #fff;
                    font-size: 12px;
                    border-radius: 4px;
                    line-height: 28px;
                    border: 4px;
                    background-color: var(--orange-color);
                    margin: 0;
                    padding: 0 10px;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 1;
                    /* 限制行数为1 */
                    overflow: hidden;
                    text-overflow: ellipsis;
                    cursor: pointer;
                }
            }

            .Post-xl {
                position: relative;
                width: 64px;
                height: 28px;
                background-color: var(--orange-color);
                border-radius: 4px;
                cursor: pointer;
                text-align: center;
                display: flex;
                justify-content: center;
                align-items: center;

                a {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    z-index: 999;

                }

                p {
                    color: #fff;
                    font-size: 12px;
                    line-height: 28px;
                    margin: 0;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 1;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }

                .xl-icon {
                    width: 12px;
                    height: 6px;
                    background: url(post-xl.png) no-repeat center 100% / 100% 100%;
                    margin-left: 6px;
                }
            }
        }
    }

    .answer-lt {
        width: 300px;
        height: initial;
        background-color: #fff;
        margin-right: 10px;

        .user-bg {
            width: 100%;
            height: 231px;
            background-color: #fff;
            border-bottom: 1px solid #eee;
            padding: 20px 16px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            .user-top {
                width: 100%;
                height: 50px;
                display: flex;
                justify-content: space-between;
                cursor: pointer;

                img {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    border: 1px solid #eee;
                    margin-right: 10px;
                }

                .uese-top-r {
                    width: calc(100% - 60px);
                    height: 100%;

                    .user-name {
                        width: 100%;
                        height: 24px;
                        margin-bottom: 5px;

                        p {
                            font-weight: bold;
                            font-size: 18px;
                            color: var(--nomal-color);
                            line-height: 24px;
                            margin: 0;
                            display: -webkit-box;
                            -webkit-box-orient: vertical;
                            display: inline;
                            -webkit-line-clamp: 1;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            cursor: pointer;
                        }
                    }

                    .user-label {
                        width: 100%;
                        height: 21px;
                        display: flex;
                        overflow-x: auto;
                        -ms-overflow-style: none;
                        /* IE 10+ */
                        scrollbar-width: none;

                        /* Firefox */
                        &::-webkit-scrollbar {
                            display: none;
                        }

                        .laber-dl {
                            height: 100%;
                            margin-right: 10px;
                            cursor: pointer;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            background-color: #F5F6F7;
                            padding: 0 6px;
                            border-radius: 2px;
                            flex-shrink: 0;



                            span {
                                font-size: 13px;
                                line-height: 21px;
                                color: #6B7280;
                                display: -webkit-box;
                                -webkit-box-orient: vertical;
                                -webkit-line-clamp: 1;
                                overflow: hidden;
                                text-overflow: ellipsis;
                            }

                            .user-grade {
                                width: 10px;
                                height: 10px;
                                margin-left: 4px;
                            }
                        }
                    }
                }
            }

            .user-mid {
                width: 100%;
                height: 78px;
                background-color: #FAFAFA;

                ul {
                    width: 100%;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: space-around;

                    li {
                        font-size: 0;
                        cursor: pointer;

                        .user-midbg {
                            display: flex;
                            flex-direction: column;

                            &:hover {
                                p {
                                    color: var(--primary-color) !important;
                                }
                            }

                            p {
                                font-size: 15px;
                                color: var(--nomal-color);
                                margin: 0;
                                text-align: center;
                                line-height: 24px;
                            }

                            span {
                                font-size: 13px;
                                color: #6B7280;
                                line-height: 24px;
                            }
                        }

                    }
                }
            }

            .user-btm {
                width: 100%;
                height: 32px;
                display: flex;
                justify-content: space-between;

                a {
                    color: var(--nomal-color);
                }

                .follow-botton {
                    width: 120px;
                    height: 32px;
                    border-radius: 16px;
                    background-color: var(--orange-color);
                    font-size: 14px;
                    color: #fff;
                    text-align: center;
                    line-height: 32px;
                    cursor: pointer;
                    transition: background-color 0.2s ease;
                    /* 文字颜色过渡 */

                    &:hover {
                        background-color: #ffa800;
                    }
                }

                .contact-botton {
                    width: 120px;
                    height: 32px;
                    text-align: center;
                    cursor: pointer;
                    line-height: 32px;
                    font-size: 14px;
                    border-radius: 16px;
                    background-color: #fff;
                    border: 1px solid rgba(0, 0, 0, 0.1);
                    transition:
                        color 0.2s ease,
                        /* 文字颜色过渡 */
                        border-color 0.2s ease;
                    /* 边框颜色过渡 */

                    &:hover {
                        color: #000;
                        border: 1px solid rgba(0, 0, 0, 0.6);
                    }
                }
            }
        }
    }

    .main-qyde {
        .answer-bg {
            width: 100%;
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;

            .answer-rt {
                width: calc(100% - 310px);
                height: 100%;
                background-color: #fff;
                padding: 20px 30px;

                .answer-rtbg {
                    width: 100%;

                    .answer-title {
                        width: 100%;
                        margin-bottom: 10px;

                        h3 {
                            font-size: 24px;
                            color: var(--nomal-color);
                            font-weight: bold;
                            display: -webkit-box;
                            -webkit-box-orient: vertical;
                            line-height: 35px;
                            -webkit-line-clamp: 2;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            margin: 0;
                            cursor: pointer;
                        }
                    }

                    .answer-cz {
                        width: 100%;
                        height: 20px;
                        margin-bottom: 20px;

                        ul {
                            width: 100%;
                            height: 100%;
                            display: flex;

                            li {
                                display: flex;
                                align-items: center;
                                margin-right: 20px;

                                .czeye-icon {
                                    width: 20px;
                                    height: 20px;
                                    background: url(eyes.png) no-repeat center 100%/ 100% 100%;
                                }

                                .czawn-icon {
                                    width: 20px;
                                    height: 20px;
                                    background: url(anw.png) no-repeat center 100%/ 100% 100%;
                                }

                                p {
                                    margin: 0;
                                    font-size: 14px;
                                    line-height: 20px;
                                    color: #6B7280;
                                    display: -webkit-box;
                                    -webkit-box-orient: vertical;
                                    line-height: 35px;
                                    -webkit-line-clamp: 1;
                                    overflow: hidden;
                                    text-overflow: ellipsis;
                                    margin: 0;
                                }
                            }
                        }
                    }

                    .answer-container {
                        margin-bottom: 20px;
                        min-height: 160px;
                    }

                    .report-bg {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        width: 100%;
                        height: 50px;
                        background-color: #FAFAFA;
                        padding: 0 20px;

                        .report-lt {
                            display: flex;
                            align-items: center;

                            .report-icon {
                                width: 16px;
                                height: 16px;
                                background: url(report.png) no-repeat center 100% / 100% 100%;
                                margin-right: 8px;

                            }

                            p {
                                color: #9E9E9E;
                                font-size: 14px;
                                display: -webkit-box;
                                -webkit-box-orient: vertical;
                                -webkit-line-clamp: 1;
                                overflow: hidden;
                                text-overflow: ellipsis;
                                line-height: 35px;
                                margin: 0;
                            }
                        }

                        .report-rt {
                            cursor: pointer;
                            font-size: 14px;
                            color: var(--nomal-color);
                            display: -webkit-box;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: 1;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            color: var(--nomal-color);

                            &:hover {
                                color: var(--primary-color);
                            }
                        }
                    }
                }
            }
        }
    }


    &::after {
        content: "";
        display: block;
        clear: both;
    }
}

.main-container {
    /* position: relative; */
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FAFAFC;

    .main-bg {
        position: relative;
        margin: 0 auto;
        height: 100%;
        max-width: 1540px;
        padding-top: 20px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding-bottom: 60px;
    }

}

.post-reply {
    width: 100%;
    margin-top: 20px;

    .post-reply-title {
        margin-bottom: 14px;

        p {
            line-height: 26px;
            font-size: 18px;
            font-weight: bold;
            color: var(--nomal-color);
            margin: 0;
        }
    }

    textarea {
        width: 100%;
        padding: 16px 20px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        min-height: 134px;
        margin-bottom: 4px;

        &::placeholder {
            font-size: 14px;
            color: #999CAB;
            line-height: 26px;
        }
    }

    .post-reply-bottom {
        width: 100%;
        height: 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .prt-lt {
            display: flex;
            align-items: center;

            .image-icon {
                width: 20px;
                height: 20px;
                background: url(image.png) no-repeat center 100% / 100% 100%;
                cursor: pointer;
            }

            .smile-icon {
                width: 20px;
                height: 20px;
                background: url(smile.png) no-repeat center 100% / 100% 100%;
                margin-left: 18px;
                margin-right: 8px;
                cursor: pointer;
            }

            p {
                line-height: 20px;
                font-size: 14px;
                color: var(--nomal-color);
                margin: 0;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 1;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }

        .prt-rt {
            width: 90px;
            height: 40px;
            background-color: var(--orange-color);
            border-radius: 4px;
            font-size: 14px;
            color: #fff;
            line-height: 42px;
            text-align: center;
            cursor: pointer;
            transition: background-color 0.2s ease;

            &:hover {
                background-color: #ffa800;
            }
        }
    }
}

.box-shadow {
    box-shadow: 1px 2px 3px rgba(28, 28, 40, 0.08)
}

.comment-per {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;

    .comment-rt {
        width: calc(100% - 310px);
        height: 100%;
        background-color: #fff;

        .coet-rttop {
            display: flex;
            align-items: center;
            width: 100%;
            height: 40px;
            border-bottom: 1px solid #eee;
            padding: 0 30px;
        }

        .czpost-contain {
            width: 100%;
            padding: 20px 30px;
        }
    }
}

.comment-cz {
    width: 100%;
    height: 30px;
    margin-bottom: 20px;

    ul {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: flex-end;

        li {
            margin-left: 24px;
            cursor: pointer;

            .com-czbg {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .com-czbg-like {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            img {
                width: 30px;
                height: 30px;
                margin-right: 3px;
            }

            p {
                margin: 0;
                font-size: 14px;
                color: #666D7F;
                line-height: 30px;
            }
        }
    }
}

.comment-czaw {
    width: 100%;
    background-color: #FAFAFA;
    padding: 20px 20px;

    >ul {
        width: 100%;
        height: 100%;

        >li {
            width: 100%;
            display: flex;
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;

            &:nth-last-child(2) {
                border: 0;
                margin-bottom: 0;
                padding-bottom: 0;
            }

            .czaw-lt {
                width: 28px;
                margin-right: 10px;

                img {
                    width: 28px;
                    height: 28px;
                    border-radius: 50%;
                    cursor: pointer;
                    border: 1px solid #eee;
                }
            }

            .czaw-mid {
                width: calc(100% - 38px);

                .czaw-midt {
                    width: 100%;
                    height: 28px;
                    margin-bottom: 6px;

                    .midt-name {
                        display: flex;
                        align-items: center;

                        p {
                            color: var(--nomal-color);
                            margin: 0;
                            font-size: 14px;
                            display: -webkit-box;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: 1;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            max-width: 400px;
                            line-height: 28px;
                        }

                        >ul {
                            width: auto;
                            height: 100%;
                            margin-left: 8px;
                            display: flex;

                            >li {
                                margin-right: 6px;

                                p {
                                    margin: 0;
                                    color: #0055FF;
                                    padding: 0 4px;
                                    background-color: rgba(0, 85, 255, 0.1);
                                    line-height: 28px;
                                    border-radius: 4px 0 4px 0;
                                }
                            }
                        }
                    }
                }

                .czaw-midm {
                    width: 100%;
                }

                .czaw-midb {
                    width: 100%;
                    height: 26px;
                    margin-bottom: 6px;

                    >.czpost-wz {
                        color: #AFB4BE;

                        p {
                            color: #AFB4BE;
                        }
                    }
                }

                .btom-pl {
                    width: 100%;
                    height: 20px;

                    ul {
                        width: 100%;
                        height: 100%;
                        display: flex;
                        justify-content: flex-end;

                        li {
                            margin-left: 10px;
                            cursor: pointer;

                            .com-czbg {
                                display: flex;
                                align-items: center;
                                justify-content: center;
                            }

                            .com-czbg-like {
                                display: flex;
                                align-items: center;
                                justify-content: center;

                            }

                            img {
                                width: 20px;
                                height: 20px;
                                margin-right: 3px;
                            }

                            p {
                                margin: 0;
                                font-size: 14px;
                                color: #666D7F;
                                line-height: 20px;
                            }
                        }
                    }
                }
            }
        }
    }
}

.post-response {
    width: 100%;
    background-color: #fff;
    margin-top: 10px;
    padding: 10px 10px 40px 10px;
    display: flex;
    justify-content: space-between;

    .response-lt {
        width: 290px;
        height: 300px;
        background-color: #FAFAFA;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;

        .response-bg {
            width: 100%;
            text-align: center;

            img {
                width: 100px;
                height: 100px;
                margin-bottom: 10px;
                border-radius: 50%;
                border: 1px solid #eee;
            }

            p {
                line-height: 26px;
                font-size: 18px;
                color: var(--nomal-color);
                margin: 0;
                font-weight: bold;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 1;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }
    }

    .response-rt {
        width: calc(100% - 300px);
        display: flex;
        align-items: center;
        padding-right: 20px;
        padding-left: 30px;
    }
}

.collect-icon-active {
    background: url(collect-2-active.png) no-repeat center 100% / 100% 100% !important;
}

.like-icon-active {
    background: url(like-active.png) no-repeat center 100% / 100% 100% !important;
}