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

.skeleton_content {
    position: relative;
    padding: 20px;
    width: 98%;
}

.skeleton_img {
    height: 150px;
    border-radius: 5px;
}

.skeleton_avatar {
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.skeleton_title {
    height: 50px;
    width: 100%;
    margin: 15px 0 20px;
    border-radius: 5px;
}

.skeleton_time {
    height: 20px;
    width: 10%;
    margin: 20px 0 50px 0;
    border-radius: 5px;
}

.skeleton_text {
    height: 30px;
    margin-top: 15px;
    border-radius: 5px;
}

.skeleton_text_short {
    height: 30px;
    margin-top: 15px;
    width: 50%;
    border-radius: 5px;
}

.skeleton_text_h20 {
    height: 20px;
    margin-top: 15px;
    border-radius: 5px;
}

.skeleton_text_1 {
    margin-left: 80px;
    border-radius: 5px;
}

.skeleton_text_2 {
    margin-right: 150px;
    border-radius: 5px;
}


.loading {
    background: linear-gradient(90deg, #f2f2f2 25%, #d1d1d1 40%, #f2f2f2 50%);
    background-size: 400% 100%;
    animation: loading 1.4s ease infinite;
}

@keyframes loading {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

/* 日期&标题样式 */
.skeleton_list {
    display: flex;
    margin: 20px 0;
}
    .skeleton_list .skeleton_list_img {
        flex-basis: 30%;
        border-radius: 10px;
        height: 80px;
        width: 100px;
        margin-right: 20px;
    }
    .skeleton_list .skeleton_list_img2 {
        flex-basis: 15%;
        border-radius: 10px;
        height: 80px;
        width: 100px;
        margin-right: 20px;
    }
    .skeleton_list .skeleton_list_right {
        flex-basis: 85%;
    }
