.news-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.news-hero {
    width: 100%;
    background: #dfeeff;
}

.news-hero__image {
    display: block;
    width: 100%;
    height: auto;
}

.news-section-head {
    text-align: center;
}

.news-section-head__title {
    color: #22262e;
    font-size: 28px;
    line-height: 1.36;
    font-weight: 500;
    letter-spacing: 0;
}

.news-wechat {
    width: min(760px, calc(100% - 96px));
    margin: 0 auto;
    padding-top: 72px;
}

.news-wechat__tip {
    display: block;
    width: 352px;
    max-width: 100%;
    margin: 16px auto 0;
}

.news-wechat__cards {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 42px;
}

.news-wechat__card img {
    display: block;
    width: 220px;
    height: auto;
}

.news-feed {
    width: min(1020px, calc(100% - 96px));
    margin: 76px auto 0;
    padding-bottom: 92px;
}

.news-feed__toolbar {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.news-tabs {
    display: flex;
    align-items: center;
    gap: 18px;
}

.news-tabs__item,
.news-feed__refresh,
.news-more {
    min-width: 118px;
    min-height: 34px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #f2f3f6;
    color: #9aa2af;
    font: inherit;
    font-size: 13px;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.news-tabs__item--active,
.news-tabs__item:hover,
.news-feed__refresh:hover,
.news-more:hover {
    background: linear-gradient(90deg, #6c6df6 0%, #338cff 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(79, 119, 244, 0.22);
}

.news-feed__refresh {
    min-width: 104px;
    background: transparent;
    color: #9da5b2;
}

.news-list {
    margin-top: 38px;
    display: grid;
    gap: 42px;
}

.news-list.is-loading {
    opacity: 0.6;
}

.news-card {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    align-items: center;
    gap: 52px;
    color: inherit;
    text-decoration: none;
}

.news-card + .news-card {
    padding-top: 42px;
    border-top: 1px solid #eef1f6;
}

.news-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 1.56 / 1;
    border-radius: 4px;
    object-fit: cover;
    object-position: center;
    background: #eef5ff;
}

.news-card__title {
    color: #232831;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 600;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-card__excerpt {
    margin-top: 16px;
    color: #7f8794;
    font-size: 14px;
    line-height: 1.9;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-card__meta {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #a6afbd;
    font-size: 13px;
}

.news-card__category {
    color: #4d8cff;
}

.news-card__footer {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9aa2af;
    font-size: 13px;
    line-height: 1;
}

.news-card__footer img {
    display: block;
    width: 13px;
    height: 13px;
    object-fit: contain;
}

.news-status {
    margin-top: 28px;
    color: #8b97a7;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.news-status[hidden],
.news-more[hidden] {
    display: none;
}

.news-status--error {
    color: #d06b55;
}

.news-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 38px auto 0;
    border: 1px solid rgba(76, 152, 255, 0.25);
    background: #ffffff;
    color: #4c8fff;
}

.news-more:disabled {
    opacity: 0.55;
    cursor: wait;
}

.news-cta {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 70px 20px 74px;
    background: #eef6ff;
}

.news-cta__inner {
    text-align: center;
}

.news-cta__title {
    color: #20252e;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 600;
}

.news-cta__text {
    margin-top: 18px;
    color: #7f8794;
    font-size: 15px;
    line-height: 1.7;
}

.news-cta__features {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    color: #8b97a7;
    font-size: 14px;
}

.news-cta__features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-cta__features li::before {
    content: "";
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background: url("../assets-web/mobile/文博资讯/check-蓝.png") center / contain no-repeat;
}

.news-cta__actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.news-cta__button {
    display: inline-flex;
    width: 160px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
}

.news-cta__button:focus-visible,
.news-tabs__item:focus-visible,
.news-feed__refresh:focus-visible,
.news-more:focus-visible,
.news-complaint-modal__close:focus-visible,
.news-complaint-modal__phone:focus-visible {
    outline: 2px solid #2e69ff;
    outline-offset: 4px;
}

.news-cta__button img {
    display: block;
    width: 100%;
    height: auto;
}

.news-modal-open {
    overflow: hidden;
}

.news-complaint-modal[hidden] {
    display: none;
}

.news-complaint-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.news-complaint-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(236, 239, 244, 0.86);
    cursor: pointer;
}

.news-complaint-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(900px, calc(100vw - 96px));
    min-height: 260px;
    padding: 58px 82px 62px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 68px rgba(80, 92, 114, 0.16);
}

.news-complaint-modal__close {
    position: absolute;
    top: 34px;
    right: 34px;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.news-complaint-modal__close span,
.news-complaint-modal__close span::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 44px;
    height: 4px;
    border-radius: 999px;
    background: #777777;
    content: "";
}

.news-complaint-modal__close span {
    transform: translate(-50%, -50%) rotate(45deg);
}

.news-complaint-modal__close span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.news-complaint-modal__head {
    display: flex;
    align-items: center;
    gap: 30px;
}

.news-complaint-modal__icon {
    display: block;
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: brightness(0);
}

.news-complaint-modal__title {
    color: #111111;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0;
}

.news-complaint-modal__phone {
    display: block;
    width: fit-content;
    margin: 60px auto 0;
    color: #111111;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0;
    text-decoration: none;
}

@media (max-width: 920px) {
    .news-feed__toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .news-wechat,
    .news-feed {
        width: calc(100% - 40px);
    }

    .news-wechat__cards,
    .news-tabs,
    .news-cta__features,
    .news-cta__actions {
        flex-wrap: wrap;
    }

    .news-complaint-modal__dialog {
        width: calc(100vw - 40px);
        min-height: 220px;
        padding: 48px 34px 52px;
    }

    .news-complaint-modal__close {
        top: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
    }

    .news-complaint-modal__close span,
    .news-complaint-modal__close span::after {
        width: 34px;
        height: 3px;
    }

    .news-complaint-modal__head {
        gap: 18px;
    }

    .news-complaint-modal__icon {
        width: 34px;
        height: 34px;
    }

    .news-complaint-modal__title {
        font-size: 32px;
    }

    .news-complaint-modal__phone {
        margin-top: 48px;
        font-size: 30px;
    }
}
