.story-grid-wrapper {
    padding: 0 var(--content-padding);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*gap: var(--content-padding); !* 元素之间的间距 *!*/
    gap: 4px; /* 元素之间的间距 */
}


.story-grid-item {
    display: block;
    background: var(--text-color-0-5);
    color: var(--text-color);
    padding-top: 160%;
    border-radius: 4px;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    position: relative;
}


.story-grid-item-inner {
    position: absolute;

    left: 0;
    top: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    --padding: 10px;
}


.story-grid-item-inner .bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: var(--padding);
    padding-top: 80px;
    background: linear-gradient(to top, #000, transparent);
}


.story-grid-item-inner .bottom .title {
    font-size: 13px;
    font-weight: bold;
}


.story-grid-item-inner .bottom .desc {
    font-size: 10px;
    margin: 10px 0;
    color: var(--text-color-5);
}


.story-grid-item-inner .bottom .characters {
    display: flex;
    align-items: center;
}

.story-grid-item-inner .bottom .characters .divider {
    height: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 8px;
}

.story-grid-item-inner .bottom .characters .avatar {
    background: var(--text-color-0-5);
    --size: 25px;
    height: var(--size);
    width: var(--size);
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*margin-right: 4px;*/
}


.story-grid-item-inner .top {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    /*padding: var(--padding);*/
    background: linear-gradient(to bottom, #000, transparent);

    display: flex;
    justify-content: space-between;

    padding: var(--padding);
    padding-bottom: 20px;



}


.story-grid-item-inner .top .word-count {
    font-size: 9px;
    padding: 4px var(--padding);
    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--text-color-1);

    border-radius: 4px;
}

.story-grid-item-inner .top .word-count i {
    font-size: 8px;
    margin-right: 4px;
}

.story-grid-item-inner .top .more-btn {
    display: flex;
    align-items: center;
    justify-content: center;


    /*width: var(--btn-size);*/
    /*height: var(--btn-size);*/
    /*border-radius: 50%;*/
}


.story-grid-item-inner .top .more-btn i {
    font-size: 12px;
}


.no-story-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-color-5);
}


.no-story-wrapper i {
    font-size: 36px;
    color: inherit;
    /*margin-bottom: 5px;*/
}


.no-story-wrapper .no-story-text  {
    color: inherit;
    margin: 10px 0;
}

.no-story-wrapper button {
    width: fit-content;
    padding: 0 35px;
    height: 35px;
}


.story-grid-item-loader {
    background: rgba(255, 255, 255, 0.1);
}


.retry-getting-story-list-wrapper {
    padding: 40px 0;

    text-align: center;

}


.retry-getting-story-list-wrapper button {
    width: fit-content;
    padding: 0 35px;
    height: 35px;

    font-size: 12px;
}

.retry-getting-story-list-wrapper button * {
    font-size: inherit;
}