/* welfare — 福利专区 */

.welfare-page {
    width: 100%;
    background: #0A0A0A;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
    box-sizing: border-box;
}

.welfare-main {
    width: 100%;
    max-width: 1552px;
    margin: 0 auto;
    padding: 36px 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 24px;
    display: flex;
    box-sizing: border-box;
}

.welfare-title {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
    font-weight: 600;
    line-height: 32px;
    word-wrap: break-word;
}

.welfare-banner-list {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 18px;
    display: flex;
}

.welfare-banner {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 720 / 300;
    min-height: 143px;
    background: #272727;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-sizing: border-box;
}

.welfare-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.welfare-banner-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
    font-weight: 400;
    line-height: 18px;
    pointer-events: none;
}

.welfare-empty {
    padding: 48px 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
    line-height: 20px;
}

@media (max-width: 767px) {
    .welfare-page.page-shell {
        width: 100%;
        max-width: 100%;
        padding: 0;
        gap: 0;
        align-items: stretch;
        box-sizing: border-box;
    }

    .welfare-main {
        width: 100%;
        max-width: 100%;
        padding: 12px 16px 24px;
        gap: 18px;
        box-sizing: border-box;
    }

    .welfare-title {
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
    }

    .welfare-banner-list {
        gap: 18px;
    }

    .welfare-banner {
        border-radius: 12px;
        min-height: 143px;
    }
}
