* {
    padding: 0;
    margin: 0;
}

#app {
    background-color: #f6f6f6;
    height: 100vh;
    overflow-y: auto;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: black;
}

/* 导航栏 */
.top {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    height: 36px;
    background: #fff;
}

    .top img {
        margin-left: 10px;
        width: 20px;
        height: 20px;
    }

/* 内容 */
.content {
    padding: 50px 14px 0;
}

    .content .info .fontClass {
        color: #837979;
        font-size: 14px;
        margin-top: 3px;
        margin-right: 5px;
    }

    .content .info .data {
        display: flex;
    }

        .content .info .data div img {
            width: 65px;
            height: 65px;
            border-radius: 50%;
        }

        .content .info .data .right h4 {
            margin: 0;
        }

        .content .info .data .right {
            margin-left: 7px;
        }

            .content .info .data .right div {
                font-size: 12px;
            }

        .content .info .data .tag-top {
            display: flex;
            align-items: center;
        }

            .content .info .data .tag-top img {
                width: 16px;
                height: 16px;
            }

    .content .info .Introduction {
        display: flex;
        align-items: end;
        justify-content: space-between;
    }

        .content .info .Introduction .introContent {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            margin-top: 2px;
        }

        .content .info .Introduction img {
            width: 20px;
            height: 20px;
        }

/* 按钮 */
.buttonClass {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 20px;
}

    .buttonClass .button {
        text-align: center;
        height: 29px;
        line-height: 29px;
        width: 45%;
        background-color: #e5e0e0;
        border-radius: 3px;
        font-size: 12px;
    }

/* tag */
.tag {
    display: flex;
    height: 40px;
    line-height: 40px;
    /* background-color: #fff; */
    margin-top: 10px;
    color: #837979;
}

    .tag .tagItem {
        margin-right: 14px;
    }

.active {
    color: #000;
    border-bottom: 2px solid #000;
}

.message {
    margin: 10px 14px 0;
    padding-bottom: 10px;
}

    .message .essay {
        background-color: #fff;
        padding: 8px;
        border-radius: 5px;
        margin-top: 12px;
    }

        .message .essay .author {
            font-size: 15px;
        }

        .message .essay .time {
            font-size: 12px;
            color: #837979;
        }

        .message .essay .essay-content {
            display: flex;
            align-items: center;
            padding: 8px 3px;
            /* border-bottom: 1px solid red; */
        }

            .message .essay .essay-content .essay-content-left {
                flex: 1;
                margin-right: 10px;
            }

                .message .essay .essay-content .essay-content-left h5 {
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }

                .message .essay .essay-content .essay-content-left span {
                    color: #837979;
                    font-size: 12px;
                    margin-right: 3px;
                }

            .message .essay .essay-content .essay-content-right img {
                width: 60px;
                height: 60px;
                border-radius: 2px;
            }