.short-story-bg {
    margin: 0 auto;
    width: 1100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.short-story-item {
    display: flex;
    flex-direction: column;
    width: 500px;
    box-sizing: border-box;
    padding: 18px;
    background-color: #FFFFFF;
    border-width: 2px;
    border-style: solid;
    border-color: #F5F5F5;
    border-radius: 16px;
    margin-right: 32px;
    margin-bottom: 24px;
}

.short-story-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.short-story-info-main {
    flex: 1;
    position: relative;
}

.short-story-title {
    margin: 0;
    padding: 0;
    color: #333;
    font-size: 20px;
    line-height: 26px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    word-wrap: break-word;
}

.short-story-content {
    margin: 8px 0 0 0;
    padding: 0;
    line-height: 26px;
    color: #999999;
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    overflow: hidden;
    word-wrap: break-word;
}

.short-story-attribute {
    margin-top: 22px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.short-story-author-image {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    margin-right: 16px;
}

.short-story-box {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.short-story-author-name {
    margin: 0;
    padding: 0;
    max-width: 202px;
    height: 32px;
    font-size: 18px;
    color: #999999;
    line-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: nowrap;
}

.short-story-nav-fire-icon {
    margin-right: 8px;
    width: 24px;
    height: 24px;
}

.short-story-comment {
    margin: 0 16px 0 0;
    padding: 0;
    font-size: 16px;
    line-height: 32px;
    color: #999;
}

.short-story-like {
    margin: 0 4px 0 0;
    padding: 0;
    font-size: 16px;
    line-height: 32px;
    color: #999;
}

/* 手机端CSS适配 */
@media only screen and (max-width: 800px) {
    .short-story-bg {
        margin: 20px auto;
        width: 100%;
    }

    .short-story-item {
        width: 90%;
        padding: 20px;
        border-width: 1px;
        border-radius: 8px;
        margin-right: 5%;
        margin-left: 5%;
        margin-bottom: 12px;
    }

    .short-story-title {
        font-size: 14px;
        line-height: 18px;
    }

    .short-story-content {
        margin: 8px 0 0 0;
        line-height: 18px;
        font-size: 14px;
    }

    .short-story-attribute {
        margin-top: 11px;
    }

    .short-story-author-image {
        height: 24px;
        width: 24px;
        border-radius: 10px;
        margin-right: 8px;
    }

    .short-story-author-name {
        max-width: 50%;
        height: 24px;
        font-size: 12px;
        line-height: 24px;
    }

    .short-story-nav-fire-icon {
        margin-right: 4px;
        width: 15px;
        height: 15px;
    }

    .short-story-comment {
        margin: 0 8px 0 0;
        font-size: 12px;
        line-height: 24px;
    }

    .short-story-like {
        margin: 0 2px 0 0;
        padding: 0;
        font-size: 12px;
        line-height: 24px;
    }
}