/* style_6 前台页面样式：当前以首页主体为主，统一收口在页面作用域内 */
.page-home,
.page-home *,
.page-home *::before,
.page-home *::after {
    box-sizing: border-box;
}

.page-home {
    color: var(--color-black-700);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.page-home a {
    color: inherit;
    text-decoration: none;
}

.page-home button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    font-size: inherit;
}

.page-home img {
    display: block;
    max-width: 100%;
}

.page-home .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-home .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 24px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.page-home .btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.page-home .btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 16, 35, 0.35);
}

.page-home .hero {
    position: relative;
    min-height: 560px;
    background-color: #1a1a2e;
    background-image: url("../images/index/hero_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 0 100px;
    overflow: hidden;
}

.page-home .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 16, 35, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 16, 35, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-home .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.page-home .hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    letter-spacing: 0.04em;
    font-weight: 400;
}

.page-home .hero-search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-full);
    padding: 4px 4px 4px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: box-shadow var(--transition-base);
    max-width: 700px;
    margin: 0 auto;
}

.page-home .hero-search:focus-within {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(255, 16, 35, 0.2);
}

.page-home .hero-search .search-icon {
    color: var(--color-gray-400);
    font-size: 1rem;
    flex-shrink: 0;
}

.page-home .hero-search input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--color-black-700);
    background: transparent;
    outline: none;
    min-width: 0;
}

.page-home .hero-search input::placeholder {
    color: var(--color-gray-400);
    font-weight: 400;
}

.page-home .hero-search .btn-search {
    height: 48px;
    padding: 0 32px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.page-home .hero-search .btn-search:hover {
    background: var(--color-primary-hover);
    transform: scale(1.02);
}

.page-home .hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    margin-top: 20px;
}

.page-home .hero-tags .tag {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all var(--transition-fast);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.04);
}

.page-home .hero-tags .tag:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.page-home .entry-cards {
    position: relative;
    z-index: 2;
    margin-top: -52px;
    padding-bottom: 20px;
}

.page-home .entry-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.page-home .entry-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    cursor: default;
    border: 1px solid transparent;
}

.page-home .entry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 16, 35, 0.1);
}

.page-home .entry-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-home .entry-card .icon-wrap img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.page-home .entry-card .info {
    flex: 1;
    min-width: 0;
}

.page-home .entry-card .info .label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-black-700);
}

.page-home .entry-card .info .desc {
    font-size: 0.78rem;
    color: var(--color-gray-500);
    margin-top: 1px;
}

.page-home .entry-card .action-btn {
    padding: 6px 18px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    background: transparent;
}

.page-home .entry-card .action-btn:hover {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.04);
}

.page-home .entry-card .qr-trigger {
    position: relative;
    cursor: pointer;
}

.page-home .entry-card .qr-popup {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) scale(0.92);
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    width: 160px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gray-200);
    z-index: 10;
    pointer-events: none;
}

.page-home .entry-card .qr-trigger:hover .qr-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
}

.page-home .entry-card .qr-popup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.page-home .entry-card .qr-popup::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}

.page-home .section {
    padding: 60px 0;
}

.page-home .section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-black-700);
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.page-home .steps-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: stretch;
    gap: 0;
}

.page-home .step-item {
    text-align: center;
    position: relative;
    flex: 1;
}

.page-home .step-item .step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all var(--transition-base);
}

.page-home .step-item:hover .step-icon {
    transform: scale(1.06);
    background: rgba(255, 16, 35, 0.14);
}

.page-home .step-item .step-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.page-home .step-item .step-num {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 0 12px;
    border-radius: var(--radius-full);
    height: 22px;
    line-height: 22px;
    margin-bottom: 8px;
}

.page-home .step-item .step-label {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-black-700);
}

.page-home .step-item .step-desc {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    margin-top: 4px;
}

.page-home .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    color: var(--color-gray-300);
    font-size: 1.4rem;
    padding: 0 25px;
    flex: 0 0 auto;
}

.page-home .steps-action {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.page-home .steps-action .btn {
    height: 44px;
    padding: 0 36px;
    font-size: 0.9rem;
}

.page-home .category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    border-bottom: 3px solid var(--color-primary);
    margin-bottom: 32px;
}

.page-home .category-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gray-600);
    transition: all var(--transition-fast);
    cursor: pointer;
    background: transparent;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
}

.page-home .category-tab img {
    height: 16px;
    width: 16px;
    object-fit: contain;
}

.page-home .category-tab:hover,
.page-home .category-tab.active {
    color: var(--color-gray-10);
    background: var(--color-primary);
}

.page-home .category-tab.active {
    border-bottom-color: var(--color-primary);
}

.page-home .category-tab.active img {
    filter: brightness(0) invert(1);
}

.page-home .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
}

.page-home .card-item {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 18px 12px 16px;
    text-align: center;
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
}

.page-home .card-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.page-home .card-item:active {
    transform: translateY(-1px) scale(0.98);
}

.page-home .card-item .card-img {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    border-radius: var(--radius-sm);
    background: var(--color-gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
}

.page-home .card-item:hover .card-img {
    transform: scale(1.04);
}

.page-home .card-item .card-img img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.page-home .card-item .card-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-black-700);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-home .card-item .card-rate {
    font-size: 0.78rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 4px;
}

.page-home .card-item .card-rate .num {
    font-size: 1rem;
}

.page-home .card-slider-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.page-home .card-slider-nav button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
    transition: all var(--transition-fast);
    background: #fff;
}

.page-home .card-slider-nav button:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-light);
}

.page-home .card-slider-nav button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.page-home .advantages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.page-home .advantage-item {
    padding: 28px 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid transparent;
    background: var(--color-gray-10);
}

.page-home .advantage-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
    background: #fff;
}

.page-home .advantage-item .adv-number {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

.page-home .advantage-item:nth-child(1) .adv-number {
    color: rgba(255, 16, 35, 0.12);
}

.page-home .advantage-item:nth-child(2) .adv-number {
    color: rgba(255, 167, 16, 0.12);
}

.page-home .advantage-item:nth-child(3) .adv-number {
    color: rgba(16, 96, 255, 0.12);
}

.page-home .advantage-item:nth-child(4) .adv-number {
    color: rgba(136, 16, 255, 0.12);
}

.page-home .advantage-item:nth-child(5) .adv-number {
    color: rgba(0, 159, 74, 0.12);
}

.page-home .advantage-item .adv-icon {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.page-home .advantage-item .adv-icon img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.page-home .advantage-item .adv-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-black-700);
}

.page-home .advantage-item .adv-desc {
    font-size: 0.82rem;
    color: var(--color-gray-500);
    margin-top: 6px;
    line-height: 1.5;
}

.page-home .fade-in {
    animation: fadeIn 0.6s ease both;
}

.page-home .fade-in-d1 {
    animation-delay: 0.05s;
}

.page-home .fade-in-d2 {
    animation-delay: 0.1s;
}

.page-home .fade-in-d3 {
    animation-delay: 0.15s;
}

.page-home .fade-in-d4 {
    animation-delay: 0.2s;
}

.page-home .fade-in-d5 {
    animation-delay: 0.25s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .page-home .entry-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-home .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-home .steps-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .page-home .step-item {
        flex: 0 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }

    .page-home .step-arrow {
        display: flex;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .page-home .hero {
        min-height: 420px;
        padding: 40px 0 80px;
    }

    .page-home .hero-sub {
        font-size: 0.9rem;
    }

    .page-home .hero-search {
        padding: 4px 4px 4px 16px;
        flex-wrap: nowrap;
    }

    .page-home .hero-search input {
        padding: 10px 12px;
        font-size: 0.9rem;
        min-width: 80px;
    }

    .page-home .hero-search .btn-search {
        height: 42px;
        padding: 0 20px;
        font-size: 0.85rem;
    }

    .page-home .hero-tags .tag {
        font-size: 0.7rem;
        padding: 2px 10px;
    }

    .page-home .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .page-home .step-item {
        flex: none;
        width: min(100%, 280px);
        max-width: 280px;
    }

    .page-home .step-arrow {
        padding: 0;
        font-size: 1.1rem;
        transform: rotate(90deg);
    }

    .page-home .entry-cards {
        margin-top: -32px;
    }

    .page-home .entry-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .page-home .entry-card {
        padding: 14px 16px;
    }

    .page-home .entry-card .icon-wrap {
        width: 40px;
        height: 40px;
    }

    .page-home .entry-card .icon-wrap img {
        width: 22px;
        height: 22px;
    }

    .page-home .entry-card .info .label {
        font-size: 0.85rem;
    }

    .page-home .section {
        padding: 40px 0;
    }

    .page-home .section-title {
        font-size: 1.4rem;
        margin-bottom: 28px;
    }

    .page-home .steps-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .page-home .step-item {
        flex: 0 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }

    .page-home .step-item .step-icon {
        width: 56px;
        height: 56px;
    }

    .page-home .step-item .step-icon img {
        width: 26px;
        height: 26px;
    }

    .page-home .step-item .step-label {
        font-size: 0.9rem;
    }

    .page-home .category-tabs {
        gap: 2px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
    }

    .page-home .category-tab {
        padding: 6px 14px;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .page-home .category-tab img {
        height: 14px;
        width: 14px;
    }

    .page-home .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .page-home .card-item {
        padding: 14px 8px 12px;
    }

    .page-home .card-item .card-img {
        width: 44px;
        height: 44px;
    }

    .page-home .card-item .card-img img {
        width: 34px;
        height: 34px;
    }

    .page-home .card-item .card-name {
        font-size: 0.78rem;
    }

    .page-home .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .page-home .advantage-item {
        padding: 20px 14px 16px;
    }

    .page-home .advantage-item .adv-number {
        font-size: 2.4rem;
    }

    .page-home .advantage-item .adv-icon img {
        height: 28px;
    }

    .page-home .advantage-item .adv-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-home .container {
        padding: 0 14px;
    }

    .page-home .hero-search .btn-search {
        padding: 0 14px;
        font-size: 0.8rem;
        height: 38px;
    }

    .page-home .hero-search input {
        font-size: 0.8rem;
        padding: 8px 10px;
    }

    .page-home .card-grid {
        gap: 8px;
    }

    .page-home .card-item {
        padding: 10px 6px;
    }

    .page-home .card-item .card-img {
        width: 36px;
        height: 36px;
    }

    .page-home .card-item .card-img img {
        width: 28px;
        height: 28px;
    }

    .page-home .card-item .card-name,
    .page-home .card-item .card-rate {
        font-size: 0.7rem;
    }

    .page-home .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .page-home .step-item {
        flex: none;
        width: min(100%, 260px);
        max-width: 260px;
    }

    .page-home .step-item .step-icon {
        width: 48px;
        height: 48px;
    }

    .page-home .step-item .step-icon img {
        width: 22px;
        height: 22px;
    }

    .page-home .step-item .step-label {
        font-size: 0.82rem;
    }

    .page-home .step-item .step-desc {
        font-size: 0.72rem;
    }

    .page-home .step-arrow {
        padding: 0;
        font-size: 1rem;
        transform: rotate(90deg);
    }

    .page-home .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .page-home .entry-card .action-btn {
        padding: 4px 12px;
        font-size: 0.7rem;
    }
}

/* style_6 卡券回收页：主体样式统一收口到 frontend.css，并限制在页面作用域内 */
.page-card-recycle,
.page-card-recycle *,
.page-card-recycle *::before,
.page-card-recycle *::after {
    box-sizing: border-box;
}

.page-card-recycle {
    width: 100%;
    padding: 0 0 60px;
    background: #f8f9fa;
    color: var(--black-700);
    line-height: 1.6;
    font-family: var(--font-sans);
    overflow-x: hidden;
}

.page-card-recycle a {
    color: inherit;
    text-decoration: none;
}

.page-card-recycle button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    outline: none;
}

.page-card-recycle input,
.page-card-recycle textarea {
    font-family: inherit;
    outline: none;
    border: none;
    background: none;
}

.page-card-recycle .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-card-recycle .search-section {
    margin-bottom: 40px;
    background: var(--primary);
    padding: 24px 0;
}

.page-card-recycle .search-box {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 4px 4px 4px 16px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all var(--transition);
}

.page-card-recycle .search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(255, 16, 35, 0.12);
}

.page-card-recycle .search-box input {
    flex: 1;
    min-width: 0;
    padding: 8px 0;
    font-size: 14px;
    color: var(--black-700);
    background: transparent;
}

.page-card-recycle .search-box input::placeholder {
    color: var(--gray-400);
}

.page-card-recycle .btn-search {
    flex-shrink: 0;
    padding: 10px 20px;
    border-radius: 6px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition);
}

.page-card-recycle .btn-search:hover {
    background: #e0142f;
}

.page-card-recycle .section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--black-700);
}

.page-card-recycle .section-title .bar {
    display: inline-block;
    width: 4px;
    height: 20px;
    border-radius: 2px;
    background: var(--primary);
    flex-shrink: 0;
}

.page-card-recycle .section-title .count {
    margin-left: auto;
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-400);
}

.page-card-recycle .category-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.page-card-recycle .category-scroll::-webkit-scrollbar {
    display: none;
}

.page-card-recycle .category-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--gray-200);
    background: #fff;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.page-card-recycle .category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.page-card-recycle .category-btn.active {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 16, 35, 0.12);
}

.page-card-recycle .category-btn .emoji img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
    vertical-align: middle;
}

.page-card-recycle .card-grid,
.page-card-recycle #goodsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
    margin-top: 4px;
}

.page-card-recycle .card-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 14px 14px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--gray-200);
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
}

.page-card-recycle .card-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.page-card-recycle .card-item.active,
.page-card-recycle .card-active {
    border-color: var(--primary) !important;
    background: var(--primary-light) !important;
    box-shadow: 0 0 0 3px rgba(255, 16, 35, 0.08);
}

.page-card-recycle .card-item .card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}

.page-card-recycle .card-item.active .card-icon {
    background: #fff;
}

.page-card-recycle .card-item .card-name {
    min-height: 36px;
    color: var(--black-700);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-card-recycle .card-item .discount-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    padding: 2px 12px;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.page-card-recycle .card-item .check-mark {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 8px 0 12px 0;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
}

.page-card-recycle .card-item.active .check-mark {
    display: flex;
}

.page-card-recycle .face-value-grid,
.page-card-recycle #faceGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 4px;
}

.page-card-recycle .face-empty-state {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 76px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    border: 1.5px dashed var(--gray-200);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.page-card-recycle .face-value-btn {
    padding: 16px 12px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--gray-200);
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
}

.page-card-recycle .face-value-btn:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.page-card-recycle .face-value-btn.active {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(255, 16, 35, 0.08);
}

.page-card-recycle .face-value-btn.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.page-card-recycle .face-value-btn .amount {
    color: var(--black-700);
    font-size: 18px;
    font-weight: 700;
}

.page-card-recycle .face-value-btn .price {
    margin-top: 2px;
    color: var(--gray-500);
    font-size: 13px;
}

.page-card-recycle .face-value-btn .price .highlight {
    color: var(--primary);
    font-weight: 600;
}

.page-card-recycle .submit-method {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.page-card-recycle .method-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--gray-200);
    background: #fff;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
    cursor: pointer;
}

.page-card-recycle .method-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-card-recycle .method-btn.active {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

.page-card-recycle .method-btn .radio-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.page-card-recycle .method-btn.active .radio-dot {
    border-color: var(--primary);
}

.page-card-recycle .method-btn.active .radio-dot::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.page-card-recycle .method-btn.is-hidden,
.page-card-recycle .tab-pane.is-hidden,
.page-card-recycle .form-group.is-hidden,
.page-card-recycle .hidden {
    display: none;
}

.page-card-recycle .tab-pane {
    margin-top: 16px;
}

.page-card-recycle .form-group {
    margin-top: 18px;
    max-width: 520px;
}

.page-card-recycle .form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
}

.page-card-recycle .form-group .input-wrap {
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--gray-200);
    background: #fff;
    transition: all var(--transition);
}

.page-card-recycle .form-group .input-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 16, 35, 0.08);
}

.page-card-recycle .form-group .input-wrap input {
    flex: 1;
    min-width: 0;
    padding: 13px 0;
    color: var(--black-700);
    font-size: 14px;
    background: transparent;
}

.page-card-recycle .form-group .input-wrap input::placeholder,
.page-card-recycle .line-numbered-textarea textarea::placeholder,
.page-card-recycle .upload-preview-empty,
.page-card-recycle .upload-area__hint {
    color: var(--gray-400);
}

.page-card-recycle .form-group .input-wrap .input-icon {
    margin-right: 10px;
    flex-shrink: 0;
    color: var(--gray-400);
    font-size: 16px;
}

.page-card-recycle .batch-tip,
.page-card-recycle .text-muted {
    color: var(--gray-500);
    font-size: 13px;
}

.page-card-recycle .agreement {
    margin-top: 22px;
    max-width: 520px;
}

.page-card-recycle .agreement-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.5;
}

.page-card-recycle .agreement-item .custom-checkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: 5px;
    border: 2px solid var(--gray-300);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.page-card-recycle .agreement-item .custom-checkbox.checked {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.page-card-recycle .agreement-item .custom-checkbox.checked::after {
    content: "✓";
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.page-card-recycle .agreement-item a,
.page-card-recycle .protocol-link {
    color: var(--primary);
    font-weight: 500;
    transition: color var(--transition);
}

.page-card-recycle .agreement-item a:hover,
.page-card-recycle .protocol-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.page-card-recycle .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 14px 56px;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(255, 16, 35, 0.3);
    transition: all var(--transition);
}

.page-card-recycle .btn-submit:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 24px rgba(255, 16, 35, 0.4);
    transform: translateY(-2px);
}

.page-card-recycle .btn-submit:active {
    transform: scale(0.97);
}

.page-card-recycle .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.page-card-recycle .submit-action-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.page-card-recycle .submit-action-row #submitBtn {
    justify-content: center;
    width: 100%;
    max-width: 420px;
    min-height: 54px;
    margin: 28px auto 0;
    padding-right: 40px;
    padding-left: 40px;
}

.page-card-recycle .submit-action-row .quick-tips {
    justify-content: center;
}

.page-card-recycle .btn-light {
    padding: 8px 16px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--gray-200);
    background: #fff;
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition);
}

.page-card-recycle .btn-light:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-card-recycle .quick-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-top: 6px;
    color: var(--gray-400);
    font-size: 12px;
}

.page-card-recycle .quick-tips span {
    cursor: default;
}

.page-card-recycle .block-loading-mask {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.85);
}

.page-card-recycle .block-loading-mask.is-visible {
    display: flex;
}

.page-card-recycle .block-loading-mask__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 13px;
}

.page-card-recycle .block-loading-mask__spinner {
    width: 24px;
    height: 24px;
    border: 2.5px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: pageCardRecycleSpin 0.7s linear infinite;
}

@keyframes pageCardRecycleSpin {
    to {
        transform: rotate(360deg);
    }
}

.page-card-recycle .upload-area {
    padding: 32px;
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
}

.page-card-recycle .upload-area:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.page-card-recycle .upload-area__icon {
    margin-bottom: 8px;
    color: var(--gray-300);
    font-size: 32px;
}

.page-card-recycle .upload-area__text {
    color: var(--gray-600);
    font-size: 14px;
}

.page-card-recycle .image-file-input {
    display: none;
}

.page-card-recycle .upload-preview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.page-card-recycle .upload-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}

.page-card-recycle .upload-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-card-recycle .upload-preview-item__remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.page-card-recycle .submit-textarea {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.page-card-recycle .submit-textarea__field {
    flex: 1;
    min-width: 0;
}

.page-card-recycle .line-numbered-textarea {
    display: flex;
    height: 300px;
    overflow: hidden;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: #fff;
}

.page-card-recycle .line-numbered-textarea .line-numbers {
    width: 42px;
    min-width: 42px;
    padding: 10px 6px;
    overflow: hidden;
    background: var(--gray-100);
    border-right: 1px solid var(--gray-200);
    color: var(--gray-400);
    font-size: 12px;
    line-height: 1.8;
    text-align: right;
    user-select: none;
}

.page-card-recycle .line-numbered-textarea .line-numbers span {
    display: block;
}

.page-card-recycle .line-numbered-textarea .line-numbers span.is-active {
    color: var(--primary);
    font-weight: 600;
}

.page-card-recycle .line-numbered-textarea textarea {
    flex: 1;
    min-width: 0;
    height: 300px;
    padding: 10px 12px;
    resize: none;
    color: var(--black-700);
    font-size: 14px;
    line-height: 1.8;
    background: transparent;
    font-family: inherit;
}

.page-card-recycle .submit-tip {
    width: 220px;
    height: 300px;
    flex-shrink: 0;
    overflow-y: auto;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: #f8fafc;
}

.page-card-recycle .submit-tip .text-main {
    color: var(--black-700);
    font-size: 14px;
}

.page-card-recycle .submit-tip .text-muted {
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.8;
}

.page-card-recycle .fw600 {
    font-weight: 600;
}

.page-card-recycle .mt16 {
    margin-top: 16px;
}

.page-card-recycle .mt24 {
    margin-top: 24px;
}

.page-card-recycle .mt-20 {
    margin-top: 20px;
}

.page-card-recycle .ml8 {
    margin-left: 8px;
}

.page-card-recycle .mb-6 {
    margin-bottom: 24px;
}

.page-card-recycle .flex {
    display: flex;
}

.page-card-recycle .alcenter {
    align-items: center;
}

.page-card-recycle .text-danger {
    color: var(--danger, #ef4444);
}

.page-card-recycle .is-loading {
    pointer-events: none;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .page-card-recycle .container {
        padding: 0 16px;
    }

    .page-card-recycle #goodsGrid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-card-recycle .search-box {
        padding: 2px 2px 2px 16px;
        border-radius: var(--radius-lg);
    }

    .page-card-recycle .search-box input {
        padding: 10px 0;
        font-size: 14px;
    }

    .page-card-recycle .btn-search {
        padding: 10px 20px;
        font-size: 14px;
    }

    .page-card-recycle .category-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .page-card-recycle #goodsGrid,
    .page-card-recycle #faceGrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .page-card-recycle .card-item {
        padding: 14px 10px 10px;
    }

    .page-card-recycle .card-item .card-name {
        min-height: 32px;
        font-size: 13px;
    }

    .page-card-recycle .face-value-btn .amount {
        font-size: 16px;
    }

    .page-card-recycle .form-group,
    .page-card-recycle .agreement {
        max-width: 100%;
    }

    .page-card-recycle .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .page-card-recycle .section-title {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .page-card-recycle #submitAreaWrap {
        margin-left: 0;
        margin-right: 0;
        padding: 0 12px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .page-card-recycle .submit-method {
        width: 100%;
        gap: 10px;
    }

    .page-card-recycle .method-btn {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        justify-content: center;
        padding: 10px 12px;
        font-size: 13px;
    }

    .page-card-recycle #singlePane,
    .page-card-recycle #batchPane {
        width: 100%;
        overflow: hidden;
    }

    .page-card-recycle .submit-textarea {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }

    .page-card-recycle .submit-textarea__field {
        width: 100%;
    }

    .page-card-recycle .submit-tip {
        width: 100%;
        height: auto !important;
        max-height: none;
        margin: 0;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--color-primary-light, rgba(255, 16, 35, 0.06));
        border: 1px solid rgba(255, 16, 35, 0.12);
        font-size: 12px;
    }

    .page-card-recycle .submit-tip .text-main {
        font-size: 12px;
    }

    .page-card-recycle .submit-tip .text-muted {
        font-size: 11px;
        line-height: 1.6;
    }

    .page-card-recycle .line-numbered-textarea {
        width: 100%;
        height: calc(100vh - 260px);
        min-height: 360px;
        max-height: none;
        margin: 0;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    }

    .page-card-recycle .line-numbered-textarea textarea {
        width: 100%;
        height: 100%;
        min-height: 0;
        padding: 14px;
        font-size: 16px;
        line-height: 1.9;
    }

    .page-card-recycle .line-numbered-textarea .line-numbers {
        width: 40px;
        min-width: 40px;
        padding: 14px 4px;
        font-size: 12px;
    }

    .page-card-recycle #batchErrorTip,
    .page-card-recycle #batchFormatHint,
    .page-card-recycle .agreement,
    .page-card-recycle #submitBtn,
    .page-card-recycle #countDisplay {
        width: 100%;
        box-sizing: border-box;
    }

    .page-card-recycle .mt24.flex.alcenter.mt-20 {
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
    }

    .page-card-recycle .mt24.flex.alcenter.mt-20 .ml8 {
        margin-left: 0;
    }

    .page-card-recycle #batchFormatHint,
    .page-card-recycle #arrangeBatchBtn,
    .page-card-recycle #countDisplay {
        font-size: 12px;
    }

    .page-card-recycle #arrangeBatchBtn {
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .page-card-recycle .container {
        padding: 0 12px;
    }

    .page-card-recycle #goodsGrid,
    .page-card-recycle #faceGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-card-recycle .card-item .discount-tag {
        top: 6px;
        left: 6px;
        padding: 1px 8px;
        font-size: 10px;
    }
}

@media (max-width: 380px) {
    .page-card-recycle #submitAreaWrap {
        padding: 0 10px;
    }

    .page-card-recycle .method-btn {
        flex-basis: 100%;
    }

    .page-card-recycle .line-numbered-textarea {
        min-height: 320px;
        height: calc(100vh - 240px);
    }
}

/* style_6 下载页：主体样式统一收口到 frontend.css，并限制在页面作用域内 */
.page-download,
.page-download *,
.page-download *::before,
.page-download *::after {
    box-sizing: border-box;
}

.page-download {
    color: var(--color-black-700);
    background: #ffffff;
    line-height: 1.6;
    font-family: var(--font-sans);
    overflow-x: hidden;
}

.page-download a {
    color: inherit;
    text-decoration: none;
}

.page-download button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    font-size: inherit;
}

.page-download img {
    display: block;
    max-width: 100%;
    height: auto;
}

.page-download .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.page-download .hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 320px;
    padding: 6rem 0 4rem;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, var(--download-hero-start) 0%, var(--download-hero-mid) 50%, var(--download-hero-end) 100%);
}

.page-download .hero::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(255, 16, 35, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.page-download .hero .container {
    position: relative;
    z-index: 1;
}

.page-download .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.375rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.page-download .hero-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.page-download .hero h1 {
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-download .hero p {
    max-width: 640px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.125rem;
    line-height: 1.7;
}

.page-download .hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.page-download .hero-tags span {
    padding: 0.375rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
}

.page-download .section {
    padding: 4rem 0;
}

.page-download .bg-white {
    background: #ffffff;
}

.page-download .bg-slate-50 {
    background: var(--color-gray-50);
}

.page-download .section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.page-download .section-title h2 {
    margin-bottom: 0.5rem;
    color: var(--color-black-700);
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.page-download .section-title p {
    max-width: 480px;
    margin: 0 auto;
    color: var(--color-gray-500);
    font-size: 1rem;
    line-height: 1.6;
}

.page-download .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.page-download .product-card,
.page-download .trade-card,
.page-download .online-card {
    background: #ffffff;
    border: 1px solid var(--color-gray-100);
}

.page-download .product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.page-download .product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 16, 35, 0.14);
    box-shadow: var(--shadow-md);
}

.page-download .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 1.25rem;
    border-radius: var(--radius-lg);
    background: var(--color-primary-light);
    color: var(--color-primary);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.page-download .product-card:hover .icon-circle {
    transform: scale(1.05);
    background: var(--color-primary);
    color: #ffffff;
}

.page-download .icon-circle svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.8;
}

.page-download .product-tag,
.page-download .badge {
    display: inline-block;
    padding: 0.15rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.page-download .product-card .product-tag {
    margin-bottom: 0.625rem;
}

.page-download .product-card h3,
.page-download .trade-card h3,
.page-download .online-card h3 {
    color: var(--color-black-700);
    font-weight: 600;
}

.page-download .product-card h3 {
    margin-bottom: 0.375rem;
    font-size: 1.125rem;
}

.page-download .product-card p {
    max-width: 220px;
    margin: 0 auto;
    color: var(--color-gray-500);
    font-size: 0.875rem;
    line-height: 1.7;
}

.page-download .trade-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.page-download .trade-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 2rem 1.5rem;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download .trade-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--color-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-download .trade-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.page-download .trade-card:hover::before {
    opacity: 1;
}

.page-download .trade-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    background: var(--color-gray-50);
    color: var(--color-gray-600);
    transition: background 0.3s ease, color 0.3s ease;
}

.page-download .trade-card:hover .trade-icon {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.page-download .trade-icon svg {
    width: 28px;
    height: 28px;
}

.page-download .trade-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.0625rem;
}

.page-download .trade-card p {
    max-width: 200px;
    margin: 0 auto;
    color: var(--color-gray-500);
    font-size: 0.875rem;
    line-height: 1.6;
}

.page-download .trade-card .badge {
    margin-top: 0.625rem;
}

.page-download .online-card {
    max-width: 520px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.page-download .online-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.page-download .icon-big {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: var(--radius-lg);
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 16, 35, 0.3);
}

.page-download .icon-big svg {
    width: 34px;
    height: 34px;
}

.page-download .online-card h3 {
    margin-bottom: 0.375rem;
    font-size: 1.25rem;
}

.page-download .online-card .desc {
    margin-bottom: 1.5rem;
    color: var(--color-gray-500);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.page-download .qr-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    padding: 0.5rem;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.page-download .qr-wrap:hover {
    border-color: var(--color-primary);
}

.page-download .qr-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.page-download .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    min-width: 160px;
    min-height: 44px;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    background: var(--color-primary);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.page-download .btn-primary:hover {
    background: var(--color-primary-hover);
    box-shadow: 0 8px 24px rgba(255, 16, 35, 0.3);
}

.page-download .btn-primary:active {
    transform: scale(0.96);
}

.page-download .btn-primary svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.page-download .trust-divider {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-gray-100);
}

.page-download .trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
}

.page-download .trust-item {
    padding: 0.5rem;
    text-align: center;
}

.page-download .trust-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 0.625rem;
    border-radius: var(--radius-md);
    background: var(--color-gray-50);
    transition: background 0.3s ease, transform 0.3s ease;
}

.page-download .trust-item:hover .icon {
    transform: scale(1.04);
    background: var(--color-primary-light);
}

.page-download .trust-item .icon svg {
    width: 26px;
    height: 26px;
}

.page-download .trust-item .icon.blue {
    color: #2563eb;
}

.page-download .trust-item .icon.green {
    color: #10b981;
}

.page-download .trust-item .icon.purple {
    color: #8b5cf6;
}

.page-download .trust-item .icon.orange {
    color: #f97316;
}

.page-download .trust-item h4 {
    margin-bottom: 0.125rem;
    color: var(--color-black-700);
    font-size: 0.9375rem;
    font-weight: 600;
}

.page-download .trust-item p {
    max-width: 160px;
    margin: 0 auto;
    color: var(--color-gray-400);
    font-size: 0.8125rem;
    line-height: 1.5;
}

.page-download .toast {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    max-width: 90%;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--color-black-700);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-1rem);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-download .toast.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.page-download .toast svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.page-download a:focus-visible,
.page-download button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

@media (min-width: 640px) {
    .page-download .container {
        padding: 0 24px;
    }

    .page-download .hero {
        min-height: 380px;
        padding: 7rem 0 5rem;
    }

    .page-download .hero h1 {
        font-size: 3rem;
    }

    .page-download .section {
        padding: 5rem 0;
    }

    .page-download .section-title h2 {
        font-size: 2.25rem;
    }

    .page-download .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }

    .page-download .trade-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }

    .page-download .trust-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .page-download .container {
        padding: 0 40px;
    }

    .page-download .hero {
        min-height: 420px;
        padding: 8rem 0 5.5rem;
    }

    .page-download .hero h1 {
        font-size: 3.5rem;
    }

    .page-download .section {
        padding: 6rem 0;
    }

    .page-download .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 639px) {
    .page-download .hero h1 {
        font-size: 1.75rem;
    }

    .page-download .hero p {
        font-size: 1rem;
    }

    .page-download .section-title {
        margin-bottom: 2.25rem;
    }

    .page-download .section-title h2 {
        font-size: 1.5rem;
    }

    .page-download .product-card {
        min-height: 200px;
        padding: 1.5rem 1rem;
    }

    .page-download .trade-card {
        min-height: 180px;
        padding: 1.5rem 1rem;
    }

    .page-download .online-card {
        padding: 1.5rem 1rem;
    }

    .page-download .qr-wrap {
        width: 140px;
        height: 140px;
    }

    .page-download .btn-primary {
        min-width: 140px;
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .page-download .container {
        padding: 0 14px;
    }

    .page-download .hero {
        min-height: 300px;
        padding: 5.5rem 0 3.5rem;
    }

    .page-download .hero-tags {
        gap: 0.5rem;
    }

    .page-download .hero-tags span {
        padding: 0.3rem 0.9rem;
        font-size: 0.75rem;
    }

    .page-download .trust-grid {
        gap: 1.5rem 1rem;
    }
}

/* style_6 下载页：移动端 H5 人机工学视觉优化 */
@media (max-width: 768px) {
    .page-download {
        background: #f8f4f5;
        color: #241618;
    }

    .page-download .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .page-download .hero {
        align-items: flex-start;
        min-height: auto !important;
        padding: 82px 0 30px !important;
        text-align: left;
        border-radius: 0 0 28px 28px;
        box-shadow: 0 18px 36px rgba(92, 15, 25, 0.16);
    }

    .page-download .hero::after {
        top: -36%;
        right: -42%;
        width: 116%;
        height: 136%;
        background:
            radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.2), transparent 24%),
            radial-gradient(ellipse, rgba(255, 16, 35, 0.2) 0%, transparent 68%);
    }

    .page-download .hero-badge {
        margin-bottom: 12px;
        padding: 6px 11px;
        border-radius: 999px;
        font-size: 12px;
        background: rgba(255, 255, 255, 0.14);
    }

    .page-download .hero h1 {
        max-width: 340px;
        margin-bottom: 10px;
        font-size: 30px !important;
        line-height: 1.12;
        letter-spacing: -0.04em;
    }

    .page-download .hero p {
        max-width: 330px;
        margin: 0;
        font-size: 14px !important;
        line-height: 1.72;
        color: rgba(255, 255, 255, 0.78);
    }

    .page-download .hero-tags {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 16px;
    }

    .page-download .hero-tags span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 7px 8px !important;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        font-size: 12px !important;
        white-space: nowrap;
    }

    .page-download .section {
        padding: 32px 0 !important;
    }

    .page-download .bg-white,
    .page-download .bg-slate-50 {
        background: #f8f4f5 !important;
    }

    .page-download .section-title {
        margin-bottom: 20px !important;
    }

    .page-download .section-title h2 {
        margin-bottom: 7px;
        font-size: 23px !important;
        line-height: 1.25;
        letter-spacing: -0.02em;
    }

    .page-download .section-title p {
        max-width: 310px;
        font-size: 13px;
        line-height: 1.65;
        color: #7a676a;
    }

    .page-download .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        margin-top: 0;
    }

    .page-download .product-card {
        align-items: flex-start;
        justify-content: flex-start;
        min-height: 178px !important;
        padding: 14px 10px 13px !important;
        border-color: rgba(245, 210, 215, 0.92);
        border-radius: 18px;
        background: #ffffff;
        box-shadow: 0 10px 24px rgba(92, 15, 25, 0.06);
        text-align: left;
    }

    .page-download .icon-circle {
        width: 44px;
        height: 44px;
        margin: 0 0 10px;
        border-radius: 14px;
    }

    .page-download .icon-circle svg {
        width: 22px;
        height: 22px;
    }

    .page-download .product-tag,
    .page-download .badge {
        padding: 2px 8px;
        font-size: 10px;
        line-height: 1.5;
    }

    .page-download .product-card .product-tag {
        margin-bottom: 7px;
    }

    .page-download .product-card h3 {
        margin-bottom: 5px;
        font-size: 15px;
        line-height: 1.35;
    }

    .page-download .product-card p {
        max-width: none;
        margin: 0;
        font-size: 12px;
        line-height: 1.55;
        color: #7a676a;
    }

    .page-download main > section:nth-of-type(3) {
        padding-top: 4px !important;
    }

    .page-download .trade-grid {
        gap: 10px !important;
        margin-top: 0;
    }

    .page-download .trade-card {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        align-items: center;
        justify-content: initial;
        min-height: 108px !important;
        padding: 14px 12px !important;
        border-color: rgba(245, 210, 215, 0.92);
        border-radius: 18px;
        background: #ffffff;
        box-shadow: 0 10px 24px rgba(92, 15, 25, 0.06);
        text-align: left;
        column-gap: 12px;
    }

    .page-download .trade-card::before {
        width: 4px;
        height: 100%;
        inset: 0 auto 0 0;
        opacity: 1;
        border-radius: 18px 0 0 18px;
        background: linear-gradient(180deg, var(--color-primary), #ff6b7a);
    }

    .page-download .trade-icon {
        grid-row: 1 / span 3;
        width: 46px;
        height: 46px;
        margin: 0;
        border-radius: 15px;
        background: var(--color-primary-light);
        color: var(--color-primary);
    }

    .page-download .trade-icon svg {
        width: 22px;
        height: 22px;
    }

    .page-download .trade-card h3 {
        margin: 0 0 4px;
        font-size: 15px;
        line-height: 1.35;
    }

    .page-download .trade-card p {
        max-width: none;
        margin: 0;
        font-size: 12px;
        line-height: 1.5;
        color: #7a676a;
    }

    .page-download .trade-card .badge {
        width: max-content;
        margin-top: 8px;
    }

    .page-download main > section:nth-of-type(4) {
        padding-top: 2px !important;
    }

    .page-download .online-card {
        max-width: none;
        padding: 18px 14px 16px !important;
        border-color: rgba(245, 210, 215, 0.95);
        border-radius: 22px;
        background: linear-gradient(180deg, #ffffff 0%, #fff8f9 100%);
        box-shadow: 0 14px 32px rgba(92, 15, 25, 0.08);
    }

    .page-download .icon-big {
        width: 52px;
        height: 52px;
        margin-bottom: 12px;
        border-radius: 16px;
        box-shadow: 0 10px 22px rgba(255, 16, 35, 0.22);
    }

    .page-download .icon-big svg {
        width: 25px;
        height: 25px;
    }

    .page-download .online-card h3 {
        margin-bottom: 6px;
        font-size: 18px;
        line-height: 1.35;
    }

    .page-download .online-card .desc {
        max-width: 310px;
        margin: 0 auto 14px;
        font-size: 13px;
        line-height: 1.7;
        color: #7a676a;
    }

    .page-download .qr-wrap {
        width: 132px !important;
        height: 132px !important;
        margin-bottom: 14px;
        padding: 7px;
        border-radius: 18px;
        box-shadow: inset 0 0 0 1px rgba(255, 238, 240, 0.9);
    }

    .page-download .qr-wrap img {
        border-radius: 13px;
    }

    .page-download .btn-primary {
        width: 100%;
        min-height: 46px;
        padding: 12px 16px;
        border-radius: 15px;
        font-size: 15px;
        box-shadow: 0 12px 26px rgba(255, 16, 35, 0.2);
    }

    .page-download .trust-divider {
        margin-top: 22px;
        padding-top: 0;
        border-top: 0;
    }

    .page-download .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .page-download .trust-item {
        min-height: 118px;
        padding: 14px 10px 12px;
        border: 1px solid rgba(245, 210, 215, 0.92);
        border-radius: 18px;
        background: #ffffff;
        box-shadow: 0 10px 24px rgba(92, 15, 25, 0.06);
        text-align: left;
    }

    .page-download .trust-item .icon {
        justify-content: center;
        width: 36px;
        height: 36px;
        margin: 0 0 8px;
        border-radius: 12px;
    }

    .page-download .trust-item .icon svg {
        width: 21px;
        height: 21px;
    }

    .page-download .trust-item h4 {
        margin-bottom: 5px;
        font-size: 14px;
        line-height: 1.35;
    }

    .page-download .trust-item p {
        max-width: none;
        margin: 0;
        font-size: 12px;
        line-height: 1.5;
        color: #7a676a;
    }
}

@media (max-width: 380px) {
    .page-download .hero h1 {
        font-size: 28px !important;
    }

    .page-download .product-grid,
    .page-download .trust-grid {
        grid-template-columns: 1fr !important;
    }

    .page-download .product-card,
    .page-download .trust-item {
        min-height: auto !important;
    }
}

/* style_6 公告/协议页：主体样式统一收口到 frontend.css，并限制在页面作用域内 */
.page-notice-shared,
.page-notice-shared *,
.page-notice-shared *::before,
.page-notice-shared *::after {
    box-sizing: border-box;
}

.page-notice-shared {
    padding-bottom: 72px;
    background:
        radial-gradient(circle at top left, rgba(255, 16, 35, 0.08), transparent 30%),
        linear-gradient(180deg, #fff7f8 0, #fffafb 220px, #f8f4f5 100%);
    color: var(--notice-title-text);
    font-family: var(--font-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.page-notice-shared a {
    color: inherit;
    text-decoration: none;
}

.page-notice-shared img {
    display: block;
    max-width: 100%;
    height: auto;
}

.page-notice-shared .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-notice-shared .hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 116px;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 22%),
        radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.1), transparent 18%),
        linear-gradient(135deg, var(--notice-hero-start) 0%, var(--notice-hero-mid) 54%, var(--notice-hero-end) 100%);
}

.page-notice-shared .hero::before,
.page-notice-shared .hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.page-notice-shared .hero::before {
    top: -140px;
    right: -100px;
    width: 360px;
    height: 360px;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(8px);
}

.page-notice-shared .hero::after {
    left: 8%;
    bottom: -120px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.08);
}

.page-notice-shared .hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-notice-shared .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff4f6;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(12px);
}

.page-notice-shared .hero h1 {
    margin-top: 20px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.page-notice-shared .hero p {
    max-width: 760px;
    margin-top: 18px;
    color: var(--notice-hero-text);
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.85;
}

.page-notice-shared .notice-page-shell {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: -54px auto 0;
    padding: 0 24px;
}

.page-notice-shared .notice-page-shell .content {
    display: grid;
    grid-template-columns: 284px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    min-width: 0;
}

.page-notice-shared .sidebar {
    position: sticky;
    top: 94px;
    border: 1px solid rgba(239, 182, 192, 0.68);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 50px rgba(122, 31, 42, 0.08);
    backdrop-filter: blur(16px);
    padding: 24px 18px 18px;
}

.page-notice-shared .tree-drawer {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-notice-shared .tree-drawer li + li {
    margin-top: 8px;
}

.page-notice-shared .tree-drawer li a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 18px;
    color: var(--notice-title-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
    transition: all var(--transition-base, 0.25s ease);
}

.page-notice-shared .tree-drawer li a .arrow {
    display: inline-flex;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--notice-muted-text);
    border-right: 2px solid var(--notice-muted-text);
    transform: rotate(45deg);
    transition: transform var(--transition-base, 0.25s ease), border-color var(--transition-base, 0.25s ease);
}

.page-notice-shared .tree-drawer li a:hover,
.page-notice-shared .tree-drawer li a.cur {
    border-color: rgba(255, 16, 35, 0.12);
    background: linear-gradient(135deg, #fff6f7 0%, #fffdfd 100%);
    color: var(--color-primary);
    box-shadow: inset 0 0 0 1px rgba(255, 16, 35, 0.04);
}

.page-notice-shared .tree-drawer li a:hover .arrow,
.page-notice-shared .tree-drawer li a.cur .arrow {
    border-color: var(--color-primary);
    transform: translateX(2px) rotate(45deg);
}

.page-notice-shared .details {
    min-width: 0;
    padding: 30px 32px 36px;
    border: 1px solid rgba(239, 182, 192, 0.68);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 58px rgba(122, 31, 42, 0.08);
    backdrop-filter: blur(18px);
}

.page-notice-shared .cur-pos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(244, 221, 226, 0.9);
    color: var(--notice-muted-text);
    font-size: 14px;
    line-height: 1.7;
}

.page-notice-shared .cur-pos a {
    color: var(--color-primary);
}

.page-notice-shared .cur-pos a:hover {
    color: var(--color-primary-hover);
}

.page-notice-shared .notice-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-notice-shared .notice-list li {
    display: flex;
    align-items: stretch;
    gap: 20px;
    padding: 22px;
    border: 1px solid rgba(239, 182, 192, 0.68);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(122, 31, 42, 0.04);
    transition: transform var(--transition-base, 0.25s ease), box-shadow var(--transition-base, 0.25s ease), border-color var(--transition-base, 0.25s ease);
}

.page-notice-shared .notice-list li + li {
    margin-top: 16px;
}

.page-notice-shared .notice-list li:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 16, 35, 0.18);
    box-shadow: 0 18px 40px rgba(122, 31, 42, 0.08);
}

.page-notice-shared .notice-list .notice-item-link {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.page-notice-shared .notice-list .date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 92px;
    min-width: 92px;
    padding: 16px 12px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffecef 0%, #fff7f8 100%);
    color: #7d1b27;
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.page-notice-shared .notice-list .date .date-main {
    display: block;
    white-space: nowrap;
    word-break: normal;
}

.page-notice-shared .notice-list .date .year {
    display: block;
    color: var(--notice-muted-text);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0;
}

.page-notice-shared .notice-list .text {
    flex: 1;
    min-width: 0;
}

.page-notice-shared .notice-list .text h5 {
    margin: 0;
    color: var(--notice-title-text);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.45;
}

.page-notice-shared .notice-list .text p {
    margin-top: 12px;
    color: var(--notice-body-text);
    font-size: 15px;
    line-height: 1.9;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.page-problem .notice-list .text p {
    -webkit-line-clamp: 5;
}

.page-notice-shared .notice-list .notice-empty {
    justify-content: center;
    padding: 42px 24px;
    text-align: center;
}

.page-notice-shared .notice-list .notice-empty .text {
    max-width: 420px;
}

.page-notice-shared .notice-list .notice-empty .text h5 {
    color: #7d5260;
}

.page-notice-shared .notice-list .notice-empty .text p {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

.page-notice-shared .agreement-article {
    margin-top: 24px;
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid rgba(239, 182, 192, 0.68);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fffafb 100%);
    box-shadow: 0 14px 34px rgba(122, 31, 42, 0.05);
    color: var(--notice-body-text);
    font-size: 16px;
    line-height: 1.95;
    word-break: break-word;
}

.page-notice-shared .agreement-article > *:first-child {
    margin-top: 0 !important;
}

.page-notice-shared .agreement-article > *:last-child {
    margin-bottom: 0 !important;
}

.page-notice-shared .agreement-article h1,
.page-notice-shared .agreement-article h2,
.page-notice-shared .agreement-article h3,
.page-notice-shared .agreement-article h4,
.page-notice-shared .agreement-article h5,
.page-notice-shared .agreement-article h6 {
    margin: 1.8em 0 0.8em;
    color: var(--notice-title-text);
    font-weight: 800;
    line-height: 1.35;
}

.page-notice-shared .agreement-article h1 {
    font-size: clamp(28px, 4vw, 36px);
}

.page-notice-shared .agreement-article h2 {
    padding-left: 16px;
    border-left: 4px solid var(--color-primary);
    font-size: clamp(22px, 3vw, 28px);
}

.page-notice-shared .agreement-article h3 {
    font-size: 22px;
}

.page-notice-shared .agreement-article h4,
.page-notice-shared .agreement-article h5,
.page-notice-shared .agreement-article h6 {
    font-size: 18px;
}

.page-notice-shared .agreement-article p,
.page-notice-shared .agreement-article ul,
.page-notice-shared .agreement-article ol,
.page-notice-shared .agreement-article table,
.page-notice-shared .agreement-article blockquote {
    margin: 1em 0;
}

.page-notice-shared .agreement-article ul,
.page-notice-shared .agreement-article ol {
    padding-left: 1.5em;
}

.page-notice-shared .agreement-article li + li {
    margin-top: 0.55em;
}

.page-notice-shared .agreement-article strong,
.page-notice-shared .agreement-article b {
    color: var(--notice-title-text);
    font-weight: 700;
}

.page-notice-shared .agreement-article a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-notice-shared .agreement-article blockquote {
    padding: 16px 18px;
    border-left: 4px solid rgba(255, 16, 35, 0.36);
    border-radius: 0 18px 18px 0;
    background: #fff1f3;
    color: #6e3a44;
}

.page-notice-shared .agreement-article table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    border-style: hidden;
    box-shadow: 0 0 0 1px rgba(239, 182, 192, 0.9);
}

.page-notice-shared .agreement-article th,
.page-notice-shared .agreement-article td {
    padding: 14px 16px;
    border: 1px solid rgba(239, 182, 192, 0.74);
    text-align: left;
    vertical-align: top;
}

.page-notice-shared .agreement-article th {
    background: #fff2f4;
    color: var(--notice-title-text);
    font-weight: 700;
}

.page-notice-shared .agreement-article img {
    margin: 1.5em auto;
    border-radius: 18px;
}

.page-about .agreement-article h2,
.page-about .agreement-article blockquote,
.page-about .agreement-article [style*="border-left"] {
    border-left: none !important;
    padding-left: 0 !important;
}

.page-notice-shared .pagination {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.page-notice-shared .pagination ul.pagination {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-notice-shared .pagination ul.pagination > li {
    margin: 0;
    list-style: none;
}

.page-notice-shared .pagination ul.pagination > li > a,
.page-notice-shared .pagination ul.pagination > li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(239, 182, 192, 0.8);
    border-radius: 14px;
    background: #ffffff;
    color: var(--notice-title-text);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-base, 0.25s ease);
}

.page-notice-shared .pagination ul.pagination > li > a:hover {
    color: var(--color-primary);
    border-color: rgba(255, 16, 35, 0.24);
    background: #fff4f6;
}

.page-notice-shared .pagination ul.pagination > li.active > span,
.page-notice-shared .pagination ul.pagination > li.active > a,
.page-notice-shared .pagination ul.pagination > li > span.current {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff5a68 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 14px 26px rgba(255, 16, 35, 0.22);
}

.page-notice-shared .pagination ul.pagination > li.disabled > span,
.page-notice-shared .pagination ul.pagination > li.disabled > a {
    color: var(--notice-muted-text);
    background: #fff8f9;
    cursor: not-allowed;
}

.page-notice-shared .pagination select {
    height: 42px;
    min-width: 84px;
    padding: 0 36px 0 14px;
    border: 1px solid rgba(239, 182, 192, 0.8);
    border-radius: 14px;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ff1023' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.page-notice-shared .pagination select:focus {
    border-color: rgba(255, 16, 35, 0.24);
    box-shadow: 0 0 0 4px rgba(255, 16, 35, 0.08);
}

.page-notice-shared .mgt20 {
    margin-top: 20px;
}

.page-notice-shared .mgt30 {
    margin-top: 30px;
}

.page-notice-shared .mgl10 {
    margin-left: 10px;
}

.page-notice-shared .mgr6 {
    margin-right: 6px;
}

.page-notice-shared .mgr10 {
    margin-right: 10px;
}

.page-notice-shared .clear::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 1024px) {
    .page-notice-shared .notice-page-shell .content {
        grid-template-columns: 248px minmax(0, 1fr);
        gap: 22px;
    }

    .page-notice-shared .details {
        padding: 26px 24px 30px;
    }
}

@media (max-width: 900px) {
    .page-notice-shared .hero {
        padding: 52px 0 34px;
    }

    .page-notice-shared .notice-page-shell {
        margin-top: 0;
        padding: 0 16px;
    }

    .page-notice-shared .notice-page-shell .content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .page-notice-shared .sidebar {
        position: static;
        padding: 12px;
        border-radius: 20px;
    }

    .page-notice-shared .tree-drawer {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 0;
    }

    .page-notice-shared .tree-drawer li {
        min-width: 0;
    }

    .page-notice-shared .tree-drawer li + li {
        margin-top: 0;
    }

    .page-notice-shared .tree-drawer li a {
        min-height: 44px;
        justify-content: center;
        padding: 0 14px;
        border-radius: 14px;
        font-size: 14px;
        text-align: center;
    }

    .page-notice-shared .details {
        border-radius: 24px;
    }
}

@media (max-width: 640px) {
    .page-notice-shared {
        padding-bottom: 56px;
    }

    .page-notice-shared .hero {
        padding: 40px 0 26px;
    }

    .page-notice-shared .hero p {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.75;
    }

    .page-notice-shared .details {
        padding: 20px 16px 22px;
        border-radius: 22px;
    }

    .page-notice-shared .notice-list li {
        flex-direction: column;
        gap: 16px;
        padding: 18px;
        border-radius: 20px;
    }

    .page-notice-shared .notice-list .notice-item-link {
        flex-direction: column;
        gap: 16px;
    }

    .page-notice-shared .notice-list .date {
        width: 100%;
        min-width: 0;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 14px;
        border-radius: 16px;
        font-size: 22px;
    }

    .page-notice-shared .notice-list .text h5 {
        font-size: 18px;
    }

    .page-notice-shared .notice-list .text p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.8;
        -webkit-line-clamp: 4;
    }

    .page-problem .notice-list .text p {
        -webkit-line-clamp: 5;
    }

    .page-notice-shared .agreement-article {
        padding: 22px 18px;
        border-radius: 20px;
        font-size: 15px;
        line-height: 1.85;
    }

    .page-notice-shared .agreement-article h2 {
        padding-left: 12px;
        font-size: 22px;
    }

    .page-notice-shared .agreement-article h3 {
        font-size: 19px;
    }

    .page-notice-shared .agreement-article table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .page-notice-shared .sidebar {
        padding: 10px;
        border-radius: 18px;
    }

    .page-notice-shared .tree-drawer {
        gap: 8px;
    }

    .page-notice-shared .tree-drawer li a {
        min-height: 40px;
        padding: 0 12px;
        border-radius: 12px;
        font-size: 13px;
    }

    .page-notice-shared .cur-pos {
        gap: 6px;
        padding-bottom: 14px;
        font-size: 13px;
    }

    .page-notice-shared .pagination ul.pagination {
        gap: 8px;
    }

    .page-notice-shared .pagination ul.pagination > li > a,
    .page-notice-shared .pagination ul.pagination > li > span {
        min-width: 38px;
        height: 38px;
        padding: 0 12px;
        border-radius: 12px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .page-notice-shared .container {
        padding: 0 14px;
    }

    .page-notice-shared .notice-page-shell {
        padding: 0 12px;
    }

    .page-notice-shared .notice-page-shell .content {
        gap: 12px;
    }

    .page-notice-shared .tree-drawer {
        grid-template-columns: 1fr;
    }

    .page-notice-shared .tree-drawer li a {
        justify-content: flex-start;
        min-height: 42px;
        font-size: 14px;
        text-align: left;
    }

    .page-notice-shared .notice-list li {
        padding: 16px 14px;
    }

    .page-notice-shared .notice-list .date {
        padding: 10px 12px;
    }

    .page-notice-shared .agreement-article {
        padding: 18px 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-notice-shared .hero::before,
    .page-notice-shared .hero::after,
    .page-notice-shared .notice-list li,
    .page-notice-shared .tree-drawer li a,
    .page-notice-shared .pagination ul.pagination > li > a,
    .page-notice-shared .pagination ul.pagination > li > span {
        transition: none !important;
        animation: none !important;
    }
}

/* style_6 文章列表页：主体样式统一收口到 frontend.css，并限制在页面作用域内 */
.page-article-index,
.page-article-index *,
.page-article-index *::before,
.page-article-index *::after {
    box-sizing: border-box;
}

.page-article-index {
    min-height: calc(100vh - 68px - 320px);
    padding: 28px 0 48px;
    background: var(--gray-10);
    color: var(--black-700);
    font-family: var(--font-base);
    line-height: 1.6;
}

.page-article-index a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.page-article-index img {
    display: block;
    max-width: 100%;
    height: auto;
}

.page-article-index .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-article-index .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    color: var(--gray-500);
    font-size: 0.8125rem;
    grid-column: 1 / -1;
}

.page-article-index .breadcrumb a {
    color: var(--gray-500);
}

.page-article-index .breadcrumb a:hover {
    color: var(--primary);
}

.page-article-index .breadcrumb .current {
    color: var(--primary);
    font-weight: 500;
}

.page-article-index .breadcrumb-sep {
    color: var(--gray-300);
}

.page-article-index .main-grid {
    display: grid;
    grid-template-columns: 140px 1fr 340px;
    gap: 28px;
    align-items: start;
}

.page-article-index .sidebar-nav {
    overflow: hidden;
    padding: 6px 0;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.page-article-index .sidebar-nav .nav-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border-left: 3px solid transparent;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.page-article-index .sidebar-nav .nav-item:hover {
    background: var(--gray-50);
    color: var(--black-700);
}

.page-article-index .sidebar-nav .nav-item.active {
    border-left-color: var(--primary);
    background: var(--primary-subtle);
    color: var(--primary);
}

.page-article-index .sidebar-nav .nav-item .badge {
    margin-left: auto;
    padding: 0 8px;
    border-radius: 12px;
    background: var(--gray-100);
    color: var(--gray-400);
    font-size: 0.6875rem;
    font-weight: 400;
    line-height: 20px;
}

.page-article-index .sidebar-nav .nav-item.active .badge {
    background: var(--primary-light);
    color: var(--primary);
}

.page-article-index .news-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.page-article-index .news-banner {
    position: relative;
    overflow: hidden;
    padding: 36px 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary) 0%, #cc0e1e 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 16, 35, 0.25);
}

.page-article-index .news-banner h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.page-article-index .news-banner p {
    margin-top: 6px;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.85;
}

.page-article-index .news-banner .deco,
.page-article-index .news-banner .deco2 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.page-article-index .news-banner .deco {
    top: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
}

.page-article-index .news-banner .deco2 {
    right: 60px;
    bottom: -40px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
}

.page-article-index .news-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.page-article-index .news-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    padding: 18px 20px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    cursor: pointer;
}

.page-article-index .news-card:hover {
    transform: translateY(-2px);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
}

.page-article-index .news-card-image {
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
}

.page-article-index .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.page-article-index .news-card:hover .news-card-image img {
    transform: scale(1.03);
}

.page-article-index .news-card-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.page-article-index .news-card-title {
    display: -webkit-box;
    overflow: hidden;
    color: var(--black-700);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.5;
    transition: color var(--transition);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.page-article-index .news-card:hover .news-card-title {
    color: var(--primary);
}

.page-article-index .news-card-excerpt {
    display: -webkit-box;
    flex: 1;
    overflow: hidden;
    margin-top: 8px;
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.7;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.page-article-index .news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-50);
    color: var(--gray-400);
    font-size: 0.75rem;
}

.page-article-index .news-card-footer .date,
.page-article-index .news-card-footer .views {
    display: flex;
    align-items: center;
    gap: 4px;
}

.page-article-index .news-card-footer .views svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.page-article-index .news-empty {
    padding: 32px 20px;
    border: 1px dashed var(--gray-200);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--gray-500);
    font-size: 0.95rem;
    text-align: center;
}

.page-article-index .pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
    padding: 14px 20px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.page-article-index .pagination-info {
    color: var(--gray-500);
    font-size: 0.8125rem;
}

.page-article-index .pagination-controls {
    display: flex;
    align-items: center;
    gap: 4px;
}

.page-article-index .pagination-controls .pagination {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-article-index .pagination-controls .pagination > li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-article-index .pagination-controls .pagination > li > a,
.page-article-index .pagination-controls .pagination > li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}

.page-article-index .pagination-controls .pagination > li > a:hover,
.page-article-index .pagination-controls .pagination > li > span:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 16, 35, 0.28);
    background: rgba(255, 16, 35, 0.06);
    color: var(--primary);
}

.page-article-index .pagination-controls .pagination > li.active > a,
.page-article-index .pagination-controls .pagination > li.active > span,
.page-article-index .pagination-controls .pagination > li > span.current {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, #d90f22 100%);
    box-shadow: 0 8px 18px rgba(255, 16, 35, 0.22);
    color: #fff;
}

.page-article-index .pagination-controls .pagination > li.disabled > a,
.page-article-index .pagination-controls .pagination > li.disabled > span {
    border-color: var(--gray-100);
    background: var(--gray-50);
    box-shadow: none;
    color: var(--gray-400);
    cursor: not-allowed;
    pointer-events: none;
}

.page-article-index .pagination-controls .pagination select,
.page-article-index .pagination-total select.form-control {
    height: 36px !important;
    min-width: 74px;
    padding: 0 32px 0 12px !important;
    border: 1.5px solid var(--color-primary) !important;
    border-radius: 10px !important;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ff1023' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center !important;
    color: var(--color-primary) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    outline: none !important;
    transition: all 0.2s ease !important;
}

.page-article-index .pagination-controls .pagination select:hover,
.page-article-index .pagination-total select.form-control:hover {
    border-color: var(--color-primary-hover) !important;
    background-color: var(--color-primary-fade) !important;
}

.page-article-index .pagination-controls .pagination select:focus,
.page-article-index .pagination-total select.form-control:focus {
    border-color: var(--color-primary-hover) !important;
    box-shadow: 0 0 0 3px rgba(255, 16, 35, 0.12) !important;
    outline: none !important;
}

.page-article-index .sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-article-index .sidebar-card {
    padding: 18px 20px 16px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.page-article-index .sidebar-card-title {
    position: relative;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-50);
    color: var(--black-700);
    font-size: 0.9375rem;
    font-weight: 600;
}

.page-article-index .sidebar-card-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 32px;
    height: 2px;
    border-radius: 2px;
    background: var(--primary);
}

.page-article-index .sidebar-news-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-50);
    transition: all var(--transition);
}

.page-article-index .sidebar-news-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.page-article-index .sidebar-news-item:hover .sidebar-news-title {
    color: var(--primary);
}

.page-article-index .sidebar-news-item--single {
    grid-template-columns: 1fr;
    gap: 0;
}

.page-article-index .sidebar-news-image {
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
}

.page-article-index .sidebar-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-article-index .sidebar-news-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.page-article-index .sidebar-news-title {
    display: -webkit-box;
    overflow: hidden;
    color: var(--black-700);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.5;
    transition: color var(--transition);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.page-article-index .sidebar-news-title--full {
    display: block;
    overflow: visible;
    white-space: normal;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
}

.page-article-index .sidebar-news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 6px;
    color: var(--gray-400);
    font-size: 0.6875rem;
}

.page-article-index .sidebar-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-article-index .sidebar-tag-cloud__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border: 1px solid var(--gray-100);
    border-radius: 999px;
    background: var(--gray-50);
    color: var(--gray-600);
    font-size: 12px;
    line-height: 1.2;
    transition: all var(--transition);
}

.page-article-index .sidebar-tag-cloud__link:hover {
    border-color: rgba(255, 16, 35, 0.2);
    background: var(--color-primary-fade);
    color: var(--primary);
}

@media (max-width: 1200px) {
    .page-article-index .main-grid {
        grid-template-columns: 120px 1fr 280px;
        gap: 20px;
    }

    .page-article-index .container {
        padding: 0 16px;
    }
}

@media (max-width: 992px) {
    .page-article-index .main-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .page-article-index .sidebar-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 2px;
        overflow-x: auto;
        padding: 6px 10px;
    }

    .page-article-index .sidebar-nav .nav-item {
        flex-shrink: 0;
        padding: 8px 14px;
        border-bottom: 3px solid transparent;
        border-left: none;
        font-size: 0.8125rem;
    }

    .page-article-index .sidebar-nav .nav-item.active {
        border-bottom-color: var(--primary);
        border-left: none;
    }

    .page-article-index .sidebar-nav .nav-item .badge {
        display: none;
    }

    .page-article-index .news-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .page-article-index .news-card-image {
        max-height: 200px;
        aspect-ratio: 16 / 9;
    }

    .page-article-index .news-banner {
        padding: 24px 28px;
    }

    .page-article-index .news-banner h1 {
        font-size: 1.5rem;
    }

    .page-article-index .pagination-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .page-article-index .pagination-controls {
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-article-index .sidebar {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .page-article-index {
        min-height: auto;
        padding: 20px 0 36px;
    }

    .page-article-index .container {
        padding: 0 14px;
    }

    .page-article-index .news-banner {
        padding: 18px 20px;
    }

    .page-article-index .news-banner h1 {
        font-size: 1.25rem;
    }

    .page-article-index .news-card {
        padding: 14px 16px;
    }

    .page-article-index .sidebar-card {
        padding: 14px 16px;
    }

    .page-article-index .sidebar-news-item {
        grid-template-columns: 70px 1fr;
    }

    .page-article-index .sidebar-news-item--single {
        grid-template-columns: 1fr;
    }
}

/* style_6 article index mobile redesign */
@media (max-width: 768px) {
    body.template-style-6-article-index {
        overflow-x: hidden;
        background: #f5f7fa;
    }

    body.template-style-6-article-index .page-article-index {
        min-height: auto;
        padding: 14px 0 32px;
        background: #f5f7fa;
    }

    body.template-style-6-article-index .page-article-index .container {
        width: 100%;
        max-width: 100%;
        padding: 0 12px;
    }

    body.template-style-6-article-index .page-article-index .breadcrumb {
        display: none;
    }

    body.template-style-6-article-index .page-article-index .main-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    body.template-style-6-article-index .page-article-index .sidebar-nav {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
        margin: 0;
        padding: 10px;
        overflow-x: auto;
        border: 1px solid #e8ebf0;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    body.template-style-6-article-index .page-article-index .sidebar-nav::-webkit-scrollbar {
        display: none;
    }

    body.template-style-6-article-index .page-article-index .sidebar-nav .nav-item {
        display: inline-flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        padding: 0 14px;
        border: 1px solid #e5e7eb;
        border-radius: 9px;
        background: #f8fafc;
        color: #475569;
        font-size: 13px;
        font-weight: 600;
        line-height: 1;
        white-space: nowrap;
    }

    body.template-style-6-article-index .page-article-index .sidebar-nav .nav-item.active {
        border-color: #e11d32;
        background: #e11d32;
        color: #fff;
        box-shadow: 0 5px 12px rgba(225, 29, 50, 0.2);
    }

    body.template-style-6-article-index .page-article-index .news-area {
        gap: 12px;
        min-width: 0;
    }

    body.template-style-6-article-index .page-article-index .news-banner {
        min-height: 104px;
        padding: 20px;
        border-radius: 12px;
        background: linear-gradient(135deg, #8f1424 0%, #d51d35 100%);
        box-shadow: 0 10px 24px rgba(143, 20, 36, 0.18);
    }

    body.template-style-6-article-index .page-article-index .news-banner .deco,
    body.template-style-6-article-index .page-article-index .news-banner .deco2 {
        display: none;
    }

    body.template-style-6-article-index .page-article-index .news-banner h1 {
        margin: 0;
        font-size: 22px;
        font-weight: 700;
        line-height: 1.35;
        letter-spacing: 0;
    }

    body.template-style-6-article-index .page-article-index .news-banner p {
        margin: 6px 0 0;
        font-size: 13px;
        line-height: 1.6;
        opacity: 0.86;
    }

    body.template-style-6-article-index .page-article-index .news-list {
        gap: 10px;
    }

    body.template-style-6-article-index .page-article-index .news-card {
        display: grid;
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 12px;
        align-items: stretch;
        min-width: 0;
        min-height: 108px;
        padding: 10px;
        border: 1px solid #e6eaf0;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 5px 16px rgba(15, 23, 42, 0.045);
        transform: none;
    }

    body.template-style-6-article-index .page-article-index .news-card-image {
        width: 108px;
        height: 88px;
        max-height: none;
        border-radius: 9px;
        aspect-ratio: auto;
    }

    body.template-style-6-article-index .page-article-index .news-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    body.template-style-6-article-index .page-article-index .news-card-body {
        justify-content: flex-start;
        min-width: 0;
        min-height: 88px;
    }

    body.template-style-6-article-index .page-article-index .news-card-title {
        margin: 0;
        color: #172033;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.45;
        -webkit-line-clamp: 2;
    }

    body.template-style-6-article-index .page-article-index .news-card-excerpt {
        flex: 0 1 auto;
        margin-top: 4px;
        color: #667085;
        font-size: 12px;
        line-height: 1.45;
        -webkit-line-clamp: 2;
    }

    body.template-style-6-article-index .page-article-index .news-card-footer {
        gap: 8px;
        margin-top: auto;
        padding-top: 5px;
        border-top: 0;
        color: #98a2b3;
        font-size: 11px;
        line-height: 1.2;
    }

    body.template-style-6-article-index .page-article-index .news-card-footer .date {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.template-style-6-article-index .page-article-index .news-card-footer .views {
        flex: 0 0 auto;
    }

    body.template-style-6-article-index .page-article-index .news-card-footer .views svg {
        width: 12px;
        height: 12px;
    }

    body.template-style-6-article-index .page-article-index .pagination-wrap {
        align-items: center;
        gap: 10px;
        margin-top: 2px;
        padding: 12px;
        border-radius: 12px;
        box-shadow: 0 5px 16px rgba(15, 23, 42, 0.04);
    }

    body.template-style-6-article-index .page-article-index .pagination-info {
        width: 100%;
        text-align: center;
    }

    body.template-style-6-article-index .page-article-index .pagination-controls {
        justify-content: flex-start;
        width: 100%;
        padding-bottom: 2px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    body.template-style-6-article-index .page-article-index .pagination-controls::-webkit-scrollbar {
        display: none;
    }

    body.template-style-6-article-index .page-article-index .pagination-controls .pagination {
        flex-wrap: nowrap;
        margin: 0 auto;
    }

    body.template-style-6-article-index .page-article-index .pagination-controls .pagination > li > a,
    body.template-style-6-article-index .page-article-index .pagination-controls .pagination > li > span {
        min-width: 34px;
        height: 34px;
        padding: 0 10px;
        border-radius: 8px;
        font-size: 12px;
    }

    body.template-style-6-article-index .page-article-index .sidebar {
        display: flex;
        flex-direction: column;
        gap: 12px;
        min-width: 0;
    }

    body.template-style-6-article-index .page-article-index .sidebar-card {
        padding: 14px;
        border: 1px solid #e6eaf0;
        border-radius: 12px;
        box-shadow: 0 5px 16px rgba(15, 23, 42, 0.04);
    }

    body.template-style-6-article-index .page-article-index .sidebar-card-title {
        margin-bottom: 8px;
        padding-bottom: 10px;
        font-size: 15px;
        font-weight: 700;
    }

    body.template-style-6-article-index .page-article-index .sidebar-card-title::after {
        width: 28px;
    }

    body.template-style-6-article-index .page-article-index .sidebar-news-item {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 10px;
        padding: 10px 0;
    }

    body.template-style-6-article-index .page-article-index .sidebar-news-item--single {
        grid-template-columns: minmax(0, 1fr);
    }

    body.template-style-6-article-index .page-article-index .sidebar-news-image {
        width: 76px;
        height: 58px;
        border-radius: 8px;
        aspect-ratio: auto;
    }

    body.template-style-6-article-index .page-article-index .sidebar-news-title {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.45;
    }

    body.template-style-6-article-index .page-article-index .sidebar-news-meta {
        gap: 8px;
        font-size: 11px;
    }

    body.template-style-6-article-index .page-article-index .sidebar-news-meta span:first-child {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.template-style-6-article-index .page-article-index .sidebar-tag-cloud {
        gap: 8px;
    }

    body.template-style-6-article-index .page-article-index .sidebar-tag-cloud__link {
        min-height: 30px;
        padding: 0 11px;
        border-radius: 8px;
        background: #f8fafc;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    body.template-style-6-article-index .page-article-index .container {
        padding: 0 10px;
    }

    body.template-style-6-article-index .page-article-index .news-card {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 9px;
        padding: 9px;
    }

    body.template-style-6-article-index .page-article-index .news-card-image {
        width: 92px;
        height: 80px;
    }

    body.template-style-6-article-index .page-article-index .news-card-body {
        min-height: 80px;
    }

    body.template-style-6-article-index .page-article-index .news-card-title {
        font-size: 13px;
    }

    body.template-style-6-article-index .page-article-index .news-card-excerpt {
        -webkit-line-clamp: 1;
    }
}

/* style_6 文章详情页：主体样式统一收口到 frontend.css，并限制在页面作用域内 */
.page-article-detail,
.page-article-detail *,
.page-article-detail *::before,
.page-article-detail *::after {
    box-sizing: border-box;
}

.page-article-detail {
    display: block;
    min-height: calc(100vh - 68px - 320px);
    padding: 0 0 52px;
    background: var(--article-detail-bg);
    color: var(--article-detail-text);
    font-family: var(--font-base);
    line-height: 1.7;
}

.page-article-detail a {
    color: inherit;
    text-decoration: none;
    transition: color var(--article-detail-transition);
}

.page-article-detail img {
    display: block;
    max-width: 100%;
    height: auto;
}

.page-article-detail .mgauto {
    margin-left: auto;
    margin-right: auto;
}

.page-article-detail .relative {
    position: relative;
}

.page-article-detail .tcenter {
    text-align: center;
}

.page-article-detail .wp90,
.page-article-detail .article-page-shell {
    width: min(1280px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.page-article-detail .mgt10 {
    margin-top: 10px;
}

.page-article-detail .mgt20 {
    margin-top: 20px;
}

.page-article-detail .mgt30 {
    margin-top: 30px;
}

.page-article-detail .mgb30 {
    margin-bottom: 30px;
}

.page-article-detail .mgr6 {
    margin-right: 6px;
}

.page-article-detail .mgr10 {
    margin-right: 10px;
}

.page-article-detail .mgl10 {
    margin-left: 10px;
}

.page-article-detail .font14 {
    font-size: 14px;
}

.page-article-detail .font16 {
    font-size: 16px;
}

.page-article-detail .font28 {
    font-size: 28px;
}

.page-article-detail .colorff5c38 {
    color: var(--article-detail-primary);
}

.page-article-detail .banner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--article-detail-primary) 0%, #d90f22 100%);
}

.page-article-detail .banner > div {
    width: 100%;
    max-width: none;
    margin: 0;
}

.page-article-detail .banner > div > img {
    display: block;
    width: 100%;
}

.page-article-detail .article-page-shell.article-detail-shell {
    --color-primary: var(--article-detail-primary);
    --color-primary-hover: var(--article-detail-primary-hover);
    --color-accent: var(--article-detail-accent);
    --color-bg: var(--article-detail-bg);
    --color-surface: var(--article-detail-surface);
    --color-text: var(--article-detail-text);
    --color-text-muted: var(--article-detail-text-muted);
    --color-text-light: var(--article-detail-text-light);
    --color-border: var(--article-detail-border);
    --color-border-soft: var(--article-detail-border-soft);
    --color-tag-bg: var(--article-detail-tag-bg);
    --color-tag-text: var(--article-detail-tag-text);
    --shadow-sm: var(--article-detail-shadow-sm);
    --shadow-md: var(--article-detail-shadow-md);
    --shadow-hover: var(--article-detail-shadow-hover);
    --radius-sm: var(--article-detail-radius-sm);
    --radius-md: var(--article-detail-radius-md);
    --radius-lg: var(--article-detail-radius-lg);
    --transition: var(--article-detail-transition);
    color: var(--color-text);
}

.page-article-detail .cur-pos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 0;
    padding: 28px 0 16px;
    border-bottom: 1px solid var(--color-border-soft);
    color: var(--color-text-muted);
    font-size: 13px;
}

.page-article-detail .cur-pos i {
    color: var(--color-text-light);
}

.page-article-detail .cur-pos a:hover {
    color: var(--color-primary);
}

.page-article-detail .cur-pos > span:not(.iconfont) {
    max-width: min(100%, 520px);
    color: var(--color-text);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-article-detail .content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.page-article-detail .newsdetail {
    flex: 1 1 auto;
    min-width: 0;
    margin-right: 0;
    padding: 36px 40px;
    background: var(--color-surface);
    border: 1px solid rgba(255, 16, 35, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.page-article-detail .newsdetail article {
    min-width: 0;
}

.page-article-detail .top {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-border-soft);
}

.page-article-detail .top h1 {
    margin: 0;
    color: var(--color-text);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.45;
    word-break: break-word;
}

.page-article-detail .article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    color: var(--color-text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.page-article-detail .article-meta > span {
    display: inline-flex;
    align-items: center;
}

.page-article-detail .article-meta i {
    color: var(--color-text-light);
}

.page-article-detail .article-tags {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.page-article-detail .article-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--color-tag-bg);
    color: var(--color-tag-text);
    font-size: 12px;
    line-height: 1.4;
}

.page-article-detail .article-tag:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.page-article-detail .edit-text {
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.9;
    word-break: break-word;
}

.page-article-detail .edit-text > *:first-child {
    margin-top: 0;
}

.page-article-detail .edit-text > *:last-child {
    margin-bottom: 0;
}

.page-article-detail .edit-text p,
.page-article-detail .edit-text ul,
.page-article-detail .edit-text ol,
.page-article-detail .edit-text table,
.page-article-detail .edit-text blockquote {
    margin: 0 0 16px;
}

.page-article-detail .edit-text ul,
.page-article-detail .edit-text ol {
    padding-left: 1.4em;
}

.page-article-detail .edit-text li + li {
    margin-top: 8px;
}

.page-article-detail .edit-text h1,
.page-article-detail .edit-text h2,
.page-article-detail .edit-text h3,
.page-article-detail .edit-text h4,
.page-article-detail .edit-text h5,
.page-article-detail .edit-text h6 {
    margin: 28px 0 14px;
    color: var(--color-text);
    line-height: 1.45;
}

.page-article-detail .edit-text h2,
.page-article-detail .edit-text h3 {
    padding-left: 12px;
    border-left: 3px solid var(--color-primary);
}

.page-article-detail .edit-text h2 {
    font-size: 21px;
}

.page-article-detail .edit-text h3 {
    border-left-color: var(--color-accent);
    font-size: 18px;
}

.page-article-detail .edit-text img {
    border-radius: var(--radius-sm);
}

.page-article-detail .edit-text a {
    color: var(--color-primary);
}

.page-article-detail .edit-text a:hover {
    color: var(--color-primary-hover);
}

.page-article-detail .edit-text blockquote {
    padding: 12px 16px;
    border-left: 3px solid var(--color-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: var(--color-tag-bg);
    color: var(--color-text-muted);
}

.page-article-detail .edit-text table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}

.page-article-detail .edit-text th,
.page-article-detail .edit-text td {
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    text-align: left;
}

.page-article-detail .edit-text th {
    background: var(--color-tag-bg);
    font-weight: 600;
}

.page-article-detail .edit-text pre,
.page-article-detail .edit-text code {
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
    background: #f8fafc;
}

.page-article-detail .edit-text code {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

.page-article-detail .edit-text pre {
    overflow-x: auto;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    line-height: 1.7;
}

.page-article-detail .article-nav {
    display: flex;
    gap: 16px;
    margin-top: 44px;
    padding: 24px 0;
    border-top: 1px solid var(--color-border-soft);
    border-bottom: 1px solid var(--color-border-soft);
}

.page-article-detail .article-nav-item {
    flex: 1 1 50%;
    min-width: 0;
}

.page-article-detail .article-nav-item-next {
    text-align: right;
}

.page-article-detail .article-nav-prev,
.page-article-detail .article-nav-next,
.page-article-detail .article-nav-empty {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    padding: 12px 18px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.5;
}

.page-article-detail .article-nav-prev span,
.page-article-detail .article-nav-next span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-article-detail .article-nav-prev:hover,
.page-article-detail .article-nav-next:hover {
    border-color: rgba(255, 16, 35, 0.22);
    background: var(--color-tag-bg);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.page-article-detail .article-nav-prev i,
.page-article-detail .article-nav-next i {
    flex-shrink: 0;
    color: var(--color-text-light);
}

.page-article-detail .article-nav-prev:hover i,
.page-article-detail .article-nav-next:hover i {
    color: var(--color-primary);
}

.page-article-detail .article-nav-empty {
    color: var(--color-text-light);
}

.page-article-detail .related-articles {
    margin-top: 36px;
}

.page-article-detail .related-title {
    margin: 0 0 18px;
    padding-left: 12px;
    border-left: 3px solid var(--color-primary);
    color: var(--color-text);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
}

.page-article-detail .related-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.page-article-detail .related-item {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-article-detail .related-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 16, 35, 0.22);
    box-shadow: var(--shadow-sm);
}

.page-article-detail .related-item-link {
    display: flex;
    gap: 16px;
    padding: 16px;
}

.page-article-detail .related-item-cover {
    width: 100px;
    height: 68px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
    background: var(--color-border-soft);
}

.page-article-detail .related-item-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-article-detail .related-item-body {
    min-width: 0;
    flex: 1 1 auto;
}

.page-article-detail .related-item-body h4 {
    margin: 0 0 8px;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.page-article-detail .related-item:hover .related-item-body h4 {
    color: var(--color-primary);
}

.page-article-detail .related-item-body p {
    margin: 0;
    color: #6e5660;
    font-size: 12px;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.page-article-detail .related-empty {
    grid-column: 1 / -1;
    padding: 32px 0;
    color: var(--color-text-light);
    font-size: 14px;
    text-align: center;
}

.page-article-detail .sidebar {
    display: flex;
    flex: 0 0 280px;
    flex-direction: column;
    gap: 20px;
    width: 280px;
    min-width: 0;
}

.page-article-detail .recommend-tw {
    padding: 22px 22px 16px;
    border: 1px solid rgba(255, 16, 35, 0.06);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-md);
}

.page-article-detail .recommend-tw h4 {
    display: flex;
    align-items: center;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border-soft);
    color: var(--color-text);
    font-size: 16px;
    font-weight: 600;
}

.page-article-detail .recommend-tw h4 i {
    color: var(--color-primary);
}

.page-article-detail .recommend-tw ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-article-detail .sidebar-link-item {
    margin: 0;
    padding: 12px;
    border-radius: 12px;
    transition: background-color 0.2s ease;
}

.page-article-detail .sidebar-link-item + .sidebar-link-item {
    margin-top: 4px;
}

.page-article-detail .sidebar-link-item:hover {
    background: var(--color-tag-bg);
}

.page-article-detail .sidebar-link-item .texts {
    display: block;
    height: auto;
}

.page-article-detail .sidebar-link-item h3 {
    margin: 0;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.page-article-detail .sidebar-link-item:hover h3 {
    color: var(--color-primary);
}

.page-article-detail .sidebar-link-item .desc {
    margin: 6px 0 0;
    color: var(--color-text-light);
    font-size: 12px;
    line-height: 1.6;
}

.page-article-detail .empty-side-item .texts h3 {
    color: var(--color-text-light);
    font-weight: 400;
}

@media (max-width: 1100px) {
    .page-article-detail .newsdetail {
        padding: 32px 28px;
    }

    .page-article-detail .sidebar {
        flex-basis: 248px;
        width: 248px;
    }
}

@media (max-width: 900px) {
    .page-article-detail .content {
        flex-direction: column;
    }

    .page-article-detail .newsdetail,
    .page-article-detail .sidebar {
        width: 100%;
    }

    .page-article-detail .sidebar {
        flex-basis: auto;
    }
}

@media (max-width: 768px) {
    .page-article-detail {
        min-height: auto;
        padding-bottom: 36px;
    }

    .page-article-detail .wp90,
    .page-article-detail .article-page-shell {
        width: calc(100% - 28px);
    }

    .page-article-detail .cur-pos {
        padding: 18px 0 14px;
        font-size: 12px;
    }

    .page-article-detail .cur-pos > span:not(.iconfont) {
        max-width: 100%;
        white-space: normal;
    }

    .page-article-detail .newsdetail {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .page-article-detail .top {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .page-article-detail .top h1 {
        font-size: 22px;
    }

    .page-article-detail .article-meta {
        gap: 10px 14px;
        font-size: 12px;
    }

    .page-article-detail .edit-text {
        font-size: 15px;
        line-height: 1.85;
    }

    .page-article-detail .edit-text h2 {
        font-size: 19px;
    }

    .page-article-detail .edit-text h3 {
        font-size: 17px;
    }

    .page-article-detail .article-nav {
        flex-direction: column;
        gap: 12px;
    }

    .page-article-detail .article-nav-item,
    .page-article-detail .article-nav-item-next {
        width: 100%;
        text-align: left;
    }

    .page-article-detail .article-nav-prev,
    .page-article-detail .article-nav-next,
    .page-article-detail .article-nav-empty {
        width: 100%;
        border-radius: 16px;
    }

    .page-article-detail .related-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .page-article-detail .related-item-link {
        padding: 14px;
    }

    .page-article-detail .related-item-cover {
        width: 90px;
        height: 64px;
    }

    .page-article-detail .recommend-tw {
        padding: 18px 16px 14px;
        border-radius: 16px;
    }

    .page-article-detail .sidebar-link-item {
        padding: 14px 12px;
    }
}

@media (max-width: 480px) {
    .page-article-detail .wp90,
    .page-article-detail .article-page-shell {
        width: calc(100% - 24px);
    }

    .page-article-detail .top h1 {
        font-size: 19px;
    }

    .page-article-detail .font28 {
        font-size: 19px;
    }

    .page-article-detail .edit-text {
        font-size: 14px;
    }

    .page-article-detail .related-item-link {
        gap: 12px;
        padding: 12px;
    }

    .page-article-detail .related-item-cover {
        width: 76px;
        height: 56px;
    }

    .page-article-detail .article-nav-prev,
    .page-article-detail .article-nav-next,
    .page-article-detail .article-nav-empty {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* style_6 商务合作页：主体样式统一收口到 frontend.css，并限制在页面作用域内 */
.page-cooperate,
.page-cooperate *,
.page-cooperate *::before,
.page-cooperate *::after {
    box-sizing: border-box;
}

.page-cooperate {
    min-height: calc(100vh - 68px - 320px);
    background: #ffffff;
    color: var(--color-black-700);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.page-cooperate a {
    color: inherit;
    text-decoration: none;
}

.page-cooperate img {
    display: block;
    max-width: 100%;
}

.page-cooperate button {
    font-family: inherit;
}

.page-cooperate .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-cooperate .hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: 5rem 0 4rem;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, var(--cooperate-hero-start) 0%, var(--cooperate-hero-mid) 50%, var(--cooperate-hero-end) 100%);
}

.page-cooperate .hero::after {
    content: "";
    position: absolute;
    top: -40%;
    right: 10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(255, 16, 35, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.page-cooperate .hero .container {
    position: relative;
    z-index: 1;
}

.page-cooperate .hero h1 {
    margin: 0 0 0.75rem;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.page-cooperate .hero h1 .highlight {
    color: var(--color-primary);
}

.page-cooperate .hero-sub {
    max-width: 520px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.04em;
}

.page-cooperate .cooperate-main {
    min-height: calc(100vh - 200px);
    padding-top: 48px;
}

.page-cooperate .section-header {
    margin-bottom: 32px;
    text-align: center;
}

.page-cooperate .section-header--compact {
    margin-bottom: 20px;
}

.page-cooperate .section-header .label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-cooperate .section-header .line {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-primary);
}

.page-cooperate .section-header h2 {
    margin: 0;
    color: var(--color-black-700);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.page-cooperate .section-header p {
    margin: 6px 0 0;
    color: var(--color-gray-500);
    font-size: 15px;
}

.page-cooperate .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.page-cooperate .card-item {
    position: relative;
    display: flex;
    min-height: 200px;
    flex-direction: column;
    align-items: center;
    padding: 32px 20px 28px;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
}

.page-cooperate .card-item:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.page-cooperate .card-item:focus-visible {
    outline: 2px solid rgba(255, 16, 35, 0.3);
    outline-offset: 3px;
}

.page-cooperate .card-item .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 28px;
    transition: all var(--transition);
}

.page-cooperate .card-item:hover .icon-wrap {
    transform: scale(1.05);
    background: var(--color-primary);
    color: #ffffff;
}

.page-cooperate .card-title {
    margin-bottom: 4px;
    color: var(--color-black-700);
    font-size: 15px;
    font-weight: 600;
    transition: color var(--transition);
}

.page-cooperate .card-item:hover .card-title {
    color: var(--color-primary);
}

.page-cooperate .card-desc {
    margin-top: 4px;
    color: var(--color-gray-500);
    font-size: 13px;
    line-height: 1.5;
}

.page-cooperate .card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    border-radius: var(--radius-md);
    background: var(--color-primary);
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.page-cooperate .card-item:hover .card-overlay {
    opacity: 1;
    visibility: visible;
}

.page-cooperate .overlay-icon {
    color: rgba(255, 255, 255, 0.9);
    font-size: 32px;
}

.page-cooperate .overlay-title {
    font-size: 15px;
    font-weight: 600;
}

.page-cooperate .btn-overlay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    margin-top: 4px;
    padding: 0 20px;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    color: var(--color-primary);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
}

.page-cooperate .btn-overlay:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.page-cooperate .timeline-section {
    margin-bottom: 48px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-gray-10);
    box-shadow: var(--shadow-sm);
    padding: 36px 28px 40px;
}

.page-cooperate .timeline-scroll {
    overflow-x: auto;
    padding: 8px 4px 16px;
    -webkit-overflow-scrolling: touch;
}

.page-cooperate .timeline-scroll::-webkit-scrollbar {
    height: 4px;
}

.page-cooperate .timeline-scroll::-webkit-scrollbar-track {
    border-radius: 4px;
    background: var(--color-gray-200);
}

.page-cooperate .timeline-scroll::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: var(--color-primary);
}

.page-cooperate .timeline-track {
    display: flex;
    align-items: stretch;
    gap: 12px;
    min-width: 900px;
    padding: 12px 0;
}

.page-cooperate .timeline-node {
    position: relative;
    display: flex;
    min-width: 120px;
    flex: 1;
    flex-direction: column;
    align-items: center;
}

.page-cooperate .timeline-node::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 0;
    height: 2px;
    transform: translateY(-50%);
    background: var(--color-gray-200);
}

.page-cooperate .timeline-node:first-child::before {
    left: 50%;
}

.page-cooperate .timeline-node:last-child::before {
    right: 50%;
}

.page-cooperate .timeline-node.active::before {
    background: var(--color-primary);
}

.page-cooperate .node-badge {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-gray-400);
    box-shadow: var(--shadow-sm);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    transition: all var(--transition);
}

.page-cooperate .timeline-node.active .node-badge {
    background: var(--color-primary);
    box-shadow: 0 4px 16px rgba(255, 16, 35, 0.35);
}

.page-cooperate .node-line {
    width: 2px;
    min-height: 28px;
    flex: 1;
    margin: 4px 0 0;
    background: var(--color-gray-200);
    transition: background var(--transition);
}

.page-cooperate .timeline-node.active .node-line {
    background: var(--color-primary);
}

.page-cooperate .node-content {
    width: 100%;
    padding-top: 10px;
    text-align: center;
}

.page-cooperate .node-year {
    color: var(--color-black-700);
    font-size: 16px;
    font-weight: 700;
}

.page-cooperate .node-events {
    margin-top: 4px;
    color: var(--color-gray-500);
    font-size: 13px;
    line-height: 1.6;
}

.page-cooperate .node-events p {
    margin: 0;
}

@media (max-width: 1024px) {
    .page-cooperate .container {
        padding: 0 16px;
    }
}

@media (max-width: 820px) {
    .page-cooperate .hero {
        min-height: 220px;
        padding: 4rem 0 3rem;
    }

    .page-cooperate .hero h1 {
        font-size: 2rem;
    }

    .page-cooperate .hero-sub {
        font-size: 1rem;
    }

    .page-cooperate .cooperate-main {
        padding-top: 36px;
    }

    .page-cooperate .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }

    .page-cooperate .card-item {
        min-height: 160px;
        padding: 20px 12px 16px;
    }

    .page-cooperate .card-item .icon-wrap {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .page-cooperate .section-header h2 {
        font-size: 22px;
    }

    .page-cooperate .timeline-track {
        min-width: 700px;
        gap: 8px;
    }

    .page-cooperate .node-badge {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

@media (hover: none) and (max-width: 820px) {
    .page-cooperate .card-item.mobile-active .card-overlay {
        opacity: 1;
        visibility: visible;
    }

    .page-cooperate .card-item.mobile-active .icon-wrap,
    .page-cooperate .card-item.mobile-active .card-title,
    .page-cooperate .card-item.mobile-active .card-desc {
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .page-cooperate .container {
        padding: 0 14px;
    }

    .page-cooperate .hero {
        min-height: 180px;
        padding: 3rem 0 2.5rem;
    }

    .page-cooperate .hero h1 {
        font-size: 1.5rem;
    }

    .page-cooperate .hero-sub {
        font-size: 0.9375rem;
    }

    .page-cooperate .cooperate-main {
        padding-top: 28px;
    }

    .page-cooperate .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .page-cooperate .card-item {
        min-height: 140px;
        padding: 16px 8px 12px;
        border-radius: var(--radius-sm);
    }

    .page-cooperate .card-item .icon-wrap {
        width: 38px;
        height: 38px;
        margin-bottom: 10px;
        font-size: 18px;
    }

    .page-cooperate .card-title {
        font-size: 13px;
    }

    .page-cooperate .card-desc {
        font-size: 11px;
    }

    .page-cooperate .card-overlay {
        padding: 12px 8px;
    }

    .page-cooperate .overlay-title {
        font-size: 13px;
    }

    .page-cooperate .btn-overlay {
        height: 28px;
        padding: 0 14px;
        font-size: 11px;
    }

    .page-cooperate .section-header h2 {
        font-size: 19px;
    }

    .page-cooperate .timeline-section {
        padding: 28px 18px 30px;
    }

    .page-cooperate .timeline-track {
        min-width: 520px;
        gap: 4px;
    }

    .page-cooperate .node-badge {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .page-cooperate .node-year {
        font-size: 13px;
    }

    .page-cooperate .node-events {
        font-size: 11px;
    }
}

/* Card recycle face-value price layout */
.face-price-layout {
    width: 100%;
    min-height: 58px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px;
    box-sizing: border-box;
}

.face-price-original {
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ff5a1f !important;
    font-size: 18px !important;
    font-weight: 500;
    line-height: 1.2 !important;
    white-space: nowrap;
}

.face-price-meta {
    position: static !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    color: #4b5563;
    font-size: 14px !important;
    line-height: 1.2 !important;
    white-space: nowrap;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.face-price-amount,
.face-price-discount {
    position: static !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

.face-price-amount {
    color: #4b5563 !important;
}

.face-price-discount {
    color: #ff5f57 !important;
}

.face-price-divider {
    display: block !important;
    flex: 0 0 1px !important;
    width: 1px !important;
    height: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: #d1d5db !important;
    color: transparent !important;
    overflow: hidden;
}

@media (max-width: 480px) {
    .face-price-layout {
        gap: 6px;
    }

    .face-price-original {
        font-size: 16px !important;
    }

    .face-price-meta {
        gap: 6px !important;
        font-size: 13px !important;
    }
}

.style6-real-auth-dialog {
    overflow: hidden;
    border-radius: 14px !important;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.24) !important;
}

.style6-real-auth-dialog .layui-layer-title {
    height: 48px;
    padding: 0 56px 0 20px;
    border-bottom: 1px solid #f0f1f3;
    background: #fff;
    color: var(--black-700);
    font-size: 16px;
    font-weight: 700;
    line-height: 48px;
}

.style6-real-auth-dialog .layui-layer-content {
    padding: 24px 20px 18px;
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.7;
}

.style6-real-auth-dialog .layui-layer-btn {
    padding: 0 20px 20px;
    text-align: right;
}

.style6-real-auth-dialog .layui-layer-btn a {
    height: 36px;
    margin: 0 0 0 10px;
    padding: 0 20px;
    border-radius: 8px;
    line-height: 36px;
}

.style6-real-auth-dialog .layui-layer-btn .layui-layer-btn0 {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.style6-real-auth-dialog .layui-layer-btn .layui-layer-btn1 {
    border-color: var(--gray-200);
    background: #fff;
    color: var(--gray-700);
}

@media (max-width: 480px) {
    .style6-real-auth-dialog {
        width: calc(100vw - 32px) !important;
        max-width: 360px;
    }
}

/* style_6 首页文章列表 */
.page-home .home-articles-section {
    background: #f7f9fc;
    border-top: 1px solid var(--color-gray-100);
}

.page-home .home-articles-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.page-home .home-articles-heading-copy {
    text-align: center;
}

.page-home .home-articles-heading .section-title {
    margin-bottom: 6px;
    text-align: center;
}

.page-home .home-articles-heading-copy p {
    margin: 0;
    color: var(--color-gray-500);
    font-size: 0.92rem;
}

.page-home .home-articles-more,
.page-home .home-articles-more-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-primary);
    font-size: 0.88rem;
    font-weight: 600;
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.page-home .home-articles-more {
    position: absolute;
    right: 0;
    bottom: 4px;
}

.page-home .home-articles-more:hover,
.page-home .home-articles-more-mobile:hover {
    gap: 12px;
    color: var(--color-primary-hover);
}

.page-home .home-articles-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 24px;
    align-items: stretch;
}

.page-home .home-article-featured {
    display: flex;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 12px 36px rgba(30, 41, 59, 0.07);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.page-home .home-article-featured:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 16, 35, 0.18);
    box-shadow: 0 18px 44px rgba(30, 41, 59, 0.12);
}

.page-home .home-article-featured-image {
    position: relative;
    flex: 0 0 44%;
    min-height: 390px;
    overflow: hidden;
    background: var(--color-gray-50);
}

.page-home .home-article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.page-home .home-article-featured:hover .home-article-featured-image img {
    transform: scale(1.04);
}

.page-home .home-article-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    height: 100%;
    min-height: inherit;
    color: var(--color-gray-400);
    background: #eef2f7;
}

.page-home .home-article-image-placeholder i {
    font-size: 3rem;
}

.page-home .home-article-image-placeholder span {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.page-home .home-article-featured-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    padding: 34px 30px;
}

.page-home .home-article-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--color-gray-400);
    font-size: 0.76rem;
    line-height: 1.4;
}

.page-home .home-article-meta i {
    margin-right: 4px;
}

.page-home .home-article-featured-content h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 18px 0 12px;
    color: var(--color-black-700);
    font-size: 1.48rem;
    font-weight: 700;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page-home .home-article-featured-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--color-gray-500);
    font-size: 0.9rem;
    line-height: 1.8;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.page-home .home-article-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.page-home .home-article-list-item {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 76px;
    padding: 17px 46px 17px 18px;
    border-bottom: 1px solid var(--color-gray-100);
    background: #fff;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.page-home .home-article-list {
    overflow: hidden;
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 12px 36px rgba(30, 41, 59, 0.05);
    counter-reset: home-article-index 1;
}

.page-home .home-article-list:empty {
    display: none;
}

.page-home .home-article-list-item:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.page-home .home-article-list-item:last-child {
    border-bottom: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.page-home .home-article-list-item:hover {
    z-index: 1;
    background: #fff;
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.09);
    transform: translateX(-4px);
}

.page-home .home-article-index {
    flex: 0 0 42px;
    color: rgba(255, 16, 35, 0.2);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
}

.page-home .home-article-list-item {
    counter-increment: home-article-index;
}

.page-home .home-article-index::before {
    content: "0" counter(home-article-index);
}

.page-home .home-article-list-content {
    min-width: 0;
}

.page-home .home-article-list-content h3 {
    overflow: hidden;
    margin: 0 0 5px;
    color: var(--color-black-700);
    font-size: 0.95rem;
    font-weight: 650;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.page-home .home-article-list-item:hover h3 {
    color: var(--color-primary);
}

.page-home .home-article-list-content p {
    overflow: hidden;
    margin: 0 0 6px;
    color: var(--color-gray-500);
    font-size: 0.78rem;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-home .home-article-chevron {
    position: absolute;
    top: 50%;
    right: 18px;
    color: var(--color-gray-300);
    font-size: 0.72rem;
    transform: translateY(-50%);
    transition: color var(--transition-fast), right var(--transition-fast);
}

.page-home .home-article-list-item:hover .home-article-chevron {
    right: 14px;
    color: var(--color-primary);
}

.page-home .home-articles-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    gap: 14px;
    border: 1px dashed var(--color-gray-200);
    border-radius: var(--radius-md);
    color: var(--color-gray-400);
    background: #fff;
    text-align: center;
}

.page-home .home-articles-empty i {
    font-size: 2.5rem;
}

.page-home .home-articles-empty p {
    margin: 0;
    font-size: 0.9rem;
}

.page-home .home-articles-more-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .page-home .home-articles-layout {
        grid-template-columns: 1fr;
    }

    .page-home .home-article-featured-image {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .page-home .home-articles-section {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .page-home .home-articles-heading {
        align-items: flex-start;
        margin-bottom: 22px;
    }

    .page-home .home-articles-heading .section-title {
        margin-bottom: 4px;
    }

    .page-home .home-articles-heading-copy p {
        font-size: 0.82rem;
    }

    .page-home .home-articles-more {
        display: none;
    }

    .page-home .home-article-featured {
        flex-direction: column;
    }

    .page-home .home-article-featured-image {
        flex: none;
        width: 100%;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .page-home .home-article-featured-content {
        padding: 22px 20px 24px;
    }

    .page-home .home-article-featured-content h3 {
        margin-top: 12px;
        font-size: 1.18rem;
    }

    .page-home .home-article-featured-content p {
        font-size: 0.84rem;
        -webkit-line-clamp: 3;
    }

    .page-home .home-article-read {
        padding-top: 18px;
    }

    .page-home .home-article-list-item {
        min-height: 88px;
        padding: 16px 40px 16px 14px;
    }

    .page-home .home-article-index {
        flex-basis: 36px;
        font-size: 1.2rem;
    }

    .page-home .home-article-list-content h3 {
        display: -webkit-box;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .page-home .home-article-list-content p {
        display: none;
    }

    .page-home .home-article-chevron {
        right: 14px;
    }

    .page-home .home-articles-more-mobile {
        display: flex;
        min-height: 44px;
        margin-top: 18px;
        border: 1px solid rgba(255, 16, 35, 0.22);
        border-radius: var(--radius-full);
        background: #fff;
    }
}

@media (max-width: 480px) {
    .page-home .home-articles-heading-copy p {
        max-width: 250px;
        line-height: 1.55;
    }

    .page-home .home-article-featured-content {
        padding: 19px 16px 21px;
    }

    .page-home .home-article-featured-content h3 {
        font-size: 1.08rem;
    }

    .page-home .home-article-meta {
        gap: 12px;
        font-size: 0.7rem;
    }

    .page-home .home-article-list-item {
        padding-left: 12px;
    }

    .page-home .home-article-index {
        flex-basis: 32px;
        font-size: 1.05rem;
    }

    .page-home .home-article-list-content h3 {
        font-size: 0.88rem;
    }
}

/* style_6 首页：移动端 H5 人机工学视觉优化 */
@media (max-width: 768px) {
    .page-home {
        background: #f8f4f5;
        color: #241618;
    }

    .page-home .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .page-home .hero {
        min-height: auto !important;
        padding: 84px 0 64px !important;
        border-radius: 0 0 28px 28px;
        background-position: center top;
        box-shadow: 0 18px 36px rgba(92, 15, 25, 0.16);
    }

    .page-home .hero::before {
        background:
            linear-gradient(180deg, rgba(19, 10, 18, 0.25), rgba(19, 10, 18, 0.46)),
            radial-gradient(circle at 15% 22%, rgba(255, 16, 35, 0.22) 0%, transparent 42%),
            radial-gradient(circle at 85% 64%, rgba(255, 128, 142, 0.14) 0%, transparent 46%);
    }

    .page-home .hero-content {
        max-width: none;
        text-align: left;
    }

    .page-home .hero-sub {
        max-width: 330px;
        margin: 0 0 16px;
        color: rgba(255, 255, 255, 0.88);
        font-size: 24px !important;
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: -0.03em;
    }

    .page-home .hero-search {
        max-width: none;
        min-height: 48px;
        margin: 0;
        padding: 5px 5px 5px 14px !important;
        border-radius: 16px;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    }

    .page-home .hero-search .search-icon {
        font-size: 14px;
    }

    .page-home .hero-search input {
        min-width: 0;
        padding: 10px 10px !important;
        font-size: 14px !important;
    }

    .page-home .hero-search .btn-search {
        height: 38px !important;
        min-width: 66px;
        padding: 0 14px !important;
        border-radius: 12px;
        font-size: 13px !important;
    }

    .page-home .hero-tags {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 8px;
        margin: 14px -14px 0;
        padding: 0 14px 4px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .page-home .hero-tags::-webkit-scrollbar {
        display: none;
    }

    .page-home .hero-tags .tag {
        flex: 0 0 auto;
        min-height: 32px;
        padding: 6px 11px !important;
        border-radius: 999px;
        font-size: 12px !important;
        color: rgba(255, 255, 255, 0.86);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(8px);
    }

    .page-home .entry-cards {
        margin-top: -36px !important;
        padding-bottom: 22px;
    }

    .page-home .entry-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .page-home .entry-card {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
        min-height: 102px;
        padding: 13px 10px !important;
        border-radius: 18px;
        border-color: rgba(245, 210, 215, 0.95);
        box-shadow: 0 10px 24px rgba(92, 15, 25, 0.08);
    }

    .page-home .entry-card .icon-wrap {
        width: 42px !important;
        height: 42px !important;
        border-radius: 14px;
    }

    .page-home .entry-card .icon-wrap img {
        width: 24px !important;
        height: 24px !important;
    }

    .page-home .entry-card .info .label {
        font-size: 14px !important;
        line-height: 1.35;
    }

    .page-home .entry-card .info .desc {
        margin-top: 2px;
        font-size: 12px;
        line-height: 1.35;
    }

    .page-home .entry-card .qr-trigger {
        grid-column: 1 / -1;
    }

    .page-home .entry-card .action-btn {
        width: 100%;
        min-height: 32px;
        padding: 6px 8px !important;
        border-radius: 11px;
        background: var(--color-primary-light);
        font-size: 12px !important;
    }

    .page-home .entry-card .qr-popup {
        display: none;
    }

    .page-home .section {
        padding: 34px 0 !important;
    }

    .page-home .section[style*="padding-top: 40px"] {
        padding-top: 18px !important;
    }

    .page-home .section-title {
        margin-bottom: 20px !important;
        font-size: 23px !important;
        line-height: 1.25;
        letter-spacing: -0.02em;
    }

    .page-home .steps-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px !important;
        align-items: stretch;
    }

    .page-home .step-item {
        width: auto !important;
        max-width: none !important;
        min-height: 126px;
        padding: 14px 10px 12px;
        border: 1px solid rgba(245, 210, 215, 0.95);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 10px 24px rgba(92, 15, 25, 0.06);
        text-align: left;
    }

    .page-home .step-arrow {
        display: none !important;
    }

    .page-home .step-item .step-icon {
        width: 42px !important;
        height: 42px !important;
        margin: 0 0 8px;
        border-radius: 14px;
    }

    .page-home .step-item .step-icon img {
        width: 22px !important;
        height: 22px !important;
    }

    .page-home .step-item .step-num {
        height: auto;
        margin-bottom: 5px;
        padding: 2px 8px;
        font-size: 10px;
        line-height: 1.45;
    }

    .page-home .step-item .step-label {
        font-size: 15px !important;
        line-height: 1.35;
    }

    .page-home .step-item .step-desc {
        margin-top: 4px;
        color: #7a676a;
        font-size: 12px !important;
        line-height: 1.45;
    }

    .page-home .steps-action {
        margin-top: 16px;
    }

    .page-home .steps-action a,
    .page-home .steps-action .btn {
        width: 100%;
    }

    .page-home .steps-action .btn {
        height: 44px;
        border-radius: 14px;
        font-size: 14px;
    }

    .page-home .category-tabs {
        flex-wrap: nowrap;
        gap: 8px !important;
        margin: 0 -14px 16px;
        padding: 0 14px 8px;
        overflow-x: auto;
        border-bottom: 0;
        scrollbar-width: none;
    }

    .page-home .category-tabs::-webkit-scrollbar {
        display: none;
    }

    .page-home .category-tab {
        min-height: 38px;
        margin-bottom: 0;
        padding: 8px 13px !important;
        border: 1px solid rgba(245, 210, 215, 0.9);
        border-radius: 13px !important;
        background: #fff;
        box-shadow: 0 8px 18px rgba(92, 15, 25, 0.04);
        font-size: 12px !important;
        white-space: nowrap;
    }

    .page-home .category-tab img {
        width: 16px !important;
        height: 16px !important;
    }

    .page-home .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .page-home .card-grid > a {
        min-width: 0;
        display: block;
    }

    .page-home .card-item {
        min-height: 136px;
        padding: 13px 9px 12px !important;
        border-color: rgba(245, 210, 215, 0.95);
        border-radius: 18px;
        box-shadow: 0 10px 24px rgba(92, 15, 25, 0.06);
    }

    .page-home .card-item .card-img {
        width: 46px !important;
        height: 46px !important;
        margin-bottom: 8px;
        border-radius: 14px;
    }

    .page-home .card-item .card-img img {
        width: 36px !important;
        height: 36px !important;
    }

    .page-home .card-item .card-name {
        font-size: 13px !important;
        font-weight: 650;
        line-height: 1.35;
    }

    .page-home .card-item .card-rate {
        margin-top: 5px;
        font-size: 12px !important;
    }

    .page-home .card-item .card-rate .num {
        font-size: 17px;
        font-weight: 800;
    }

    .page-home .card-slider-nav {
        margin-top: 18px;
    }

    .page-home .card-slider-nav button {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }

    .page-home .advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .page-home .advantage-item {
        min-height: 132px;
        padding: 14px 10px 12px !important;
        border: 1px solid rgba(245, 210, 215, 0.95);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 10px 24px rgba(92, 15, 25, 0.06);
        text-align: left;
    }

    .page-home .advantage-item .adv-number {
        margin-bottom: -4px;
        font-size: 26px !important;
    }

    .page-home .advantage-item .adv-icon {
        justify-content: flex-start;
        height: 32px;
        margin-bottom: 6px;
    }

    .page-home .advantage-item .adv-icon img {
        height: 26px !important;
    }

    .page-home .advantage-item .adv-label {
        font-size: 15px !important;
        line-height: 1.35;
    }

    .page-home .advantage-item .adv-desc {
        margin-top: 4px;
        color: #7a676a;
        font-size: 12px;
        line-height: 1.5;
    }

    .page-home .advantage-item:nth-child(5) {
        grid-column: 1 / -1;
        min-height: 104px;
    }

    .page-home .home-articles-section {
        padding-top: 34px !important;
        padding-bottom: 38px !important;
        border-top: 0;
        background: #f8f4f5;
    }

    .page-home .home-articles-heading {
        margin-bottom: 18px !important;
    }

    .page-home .home-articles-heading-copy p {
        max-width: 300px;
        margin: 0 auto;
        color: #7a676a;
        font-size: 13px !important;
        line-height: 1.65;
    }

    .page-home .home-articles-layout {
        gap: 12px;
    }

    .page-home .home-article-featured,
    .page-home .home-article-list {
        border-color: rgba(245, 210, 215, 0.95);
        border-radius: 18px;
        box-shadow: 0 10px 24px rgba(92, 15, 25, 0.06);
    }

    .page-home .home-article-featured-image {
        aspect-ratio: 16 / 8.5 !important;
        border-radius: 18px 18px 0 0;
    }

    .page-home .home-article-featured-content {
        padding: 14px 14px 16px !important;
    }

    .page-home .home-article-featured-content h3 {
        margin: 8px 0 7px;
        font-size: 16px !important;
        line-height: 1.45;
    }

    .page-home .home-article-featured-content p {
        font-size: 12px !important;
        line-height: 1.55;
        -webkit-line-clamp: 2;
    }

    .page-home .home-article-read {
        padding-top: 12px;
        font-size: 12px;
    }

    .page-home .home-article-list-item {
        min-height: 76px !important;
        padding: 13px 36px 13px 12px !important;
    }

    .page-home .home-article-index {
        flex-basis: 30px !important;
        font-size: 18px !important;
    }

    .page-home .home-article-list-content h3 {
        font-size: 13px !important;
        line-height: 1.45;
    }

    .page-home .home-article-meta {
        gap: 10px;
        font-size: 11px !important;
    }

    .page-home .home-articles-more-mobile {
        min-height: 44px;
        margin-top: 14px;
        border-radius: 14px;
        box-shadow: 0 8px 18px rgba(92, 15, 25, 0.04);
    }
}

@media (max-width: 380px) {
    .page-home .hero-sub {
        font-size: 22px !important;
    }

    .page-home .entry-cards-grid,
    .page-home .steps-grid,
    .page-home .advantages-grid {
        grid-template-columns: 1fr !important;
    }

    .page-home .advantage-item:nth-child(5) {
        grid-column: auto;
    }
}

/* === NOTICE MOBILE CSS START === */
/* Style 6 notice and agreement pages: compact mobile reading layout. */
@media (max-width: 768px) {
    .page-notice-shared {
        padding-bottom: 28px;
        background: #f5f7fa;
    }

    .page-notice-shared .hero {
        padding: 22px 0 20px;
        background: linear-gradient(135deg, var(--notice-hero-start), var(--notice-hero-mid) 58%, var(--notice-hero-end));
    }

    .page-notice-shared .hero::before,
    .page-notice-shared .hero::after {
        display: none;
    }

    .page-notice-shared .container {
        padding: 0 16px;
    }

    .page-notice-shared .hero-content {
        align-items: flex-start;
        text-align: left;
    }

    .page-notice-shared .hero-badge {
        min-height: 26px;
        padding: 4px 8px;
        border-radius: 5px;
        font-size: 11px;
        line-height: 1.35;
    }

    .page-notice-shared .hero h1 {
        margin-top: 10px;
        font-size: 25px;
        line-height: 1.28;
        letter-spacing: 0;
    }

    .page-notice-shared .hero p {
        margin-top: 5px;
        font-size: 13px;
        line-height: 1.55;
    }

    .page-notice-shared .notice-page-shell {
        width: 100%;
        margin: 0;
        padding: 12px;
    }

    .page-notice-shared .notice-page-shell .content {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .page-notice-shared .sidebar {
        width: 100%;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .page-notice-shared .tree-drawer {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .page-notice-shared .tree-drawer li,
    .page-notice-shared .tree-drawer li + li {
        min-width: 0;
        margin: 0;
    }

    .page-notice-shared .tree-drawer li a {
        justify-content: center;
        min-height: 38px;
        padding: 0 6px;
        border: 1px solid #e0e5ec;
        border-radius: 6px;
        background: #ffffff;
        color: #4c5a6b;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
    }

    .page-notice-shared .tree-drawer li a .arrow {
        display: none;
    }

    .page-notice-shared .tree-drawer li a:hover,
    .page-notice-shared .tree-drawer li a.cur {
        border-color: transparent;
        background: linear-gradient(135deg, var(--color-primary) 0%, #ff5a68 100%);
        box-shadow: 0 5px 12px rgba(255, 16, 35, 0.18);
        color: #ffffff;
    }

    .page-notice-shared .details {
        width: 100%;
        min-width: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .page-notice-shared .cur-pos {
        gap: 6px;
        padding: 2px 2px 8px;
        color: #8a96a5;
        font-size: 12px;
        line-height: 1.4;
    }

    .page-notice-shared .cur-pos i {
        display: none;
    }

    .page-notice-shared .mgt30 {
        margin-top: 10px;
    }

    .page-notice-shared .notice-list li {
        display: block;
        padding: 14px 12px;
        border: 1px solid #e4e8ee;
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(31, 41, 55, 0.035);
    }

    .page-notice-shared .notice-list li + li {
        margin-top: 9px;
    }

    .page-notice-shared .notice-list li:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(31, 41, 55, 0.035);
    }

    .page-notice-shared .notice-list .date {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        width: auto;
        max-width: 100%;
        min-width: 0;
        min-height: 26px;
        margin: 0 0 9px;
        padding: 4px 8px;
        border-radius: 6px;
        background: #fff0f2;
        color: var(--color-primary);
        font-size: 13px;
        font-weight: 700;
        line-height: 1.35;
        white-space: nowrap;
    }

    .page-notice-shared .notice-list .date .date-main {
        display: inline;
        min-width: 0;
        font-size: inherit;
        line-height: inherit;
    }

    .page-notice-shared .notice-list .date .year {
        display: inline;
        margin: 0;
        color: #ad7180;
        font-size: 10px;
        line-height: 1.35;
        white-space: nowrap;
    }

    .page-notice-shared .notice-list .text {
        width: 100%;
        min-width: 0;
    }

    .page-notice-shared .notice-list .text h5 {
        display: -webkit-box;
        overflow: hidden;
        color: #202b3a;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.45;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .page-notice-shared .notice-list .text p {
        margin-top: 6px;
        color: #687586;
        font-size: 13px;
        line-height: 1.62;
        -webkit-line-clamp: 2;
        overflow-wrap: anywhere;
    }

    .page-problem .notice-list .text p {
        -webkit-line-clamp: 3;
    }

    .page-notice-shared .notice-list .notice-empty {
        display: block;
        padding: 36px 18px;
        text-align: center;
    }

    .page-notice-shared .pagination {
        justify-content: flex-start;
        overflow-x: auto;
        margin-top: 16px;
        padding: 2px 0;
    }

    .page-notice-shared .pagination ul.pagination {
        flex: 0 0 auto;
        justify-content: flex-start;
    }

    .page-notice-shared .agreement-article {
        width: 100%;
        margin-top: 10px;
        padding: 18px 16px 22px;
        border: 1px solid #e4e8ee;
        border-radius: 8px;
        background: #ffffff;
        box-shadow: none;
        color: #4e5b6b;
        font-size: 15px;
        line-height: 1.82;
    }

    .page-notice-shared .agreement-article h1,
    .page-notice-shared .agreement-article h2,
    .page-notice-shared .agreement-article h3,
    .page-notice-shared .agreement-article h4,
    .page-notice-shared .agreement-article h5,
    .page-notice-shared .agreement-article h6 {
        margin: 24px 0 12px;
        color: #202b3a;
        line-height: 1.45;
    }

    .page-notice-shared .agreement-article h1 {
        font-size: 22px;
    }

    .page-notice-shared .agreement-article h2 {
        padding-left: 10px;
        border-left-width: 3px;
        font-size: 19px;
    }

    .page-notice-shared .agreement-article h3 {
        font-size: 17px;
    }

    .page-notice-shared .agreement-article p {
        margin: 0 0 18px;
    }

    .page-notice-shared .agreement-article ul,
    .page-notice-shared .agreement-article ol {
        padding-left: 20px;
    }

    .page-notice-shared .agreement-article table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
        border-radius: 6px;
        -webkit-overflow-scrolling: touch;
    }

    .page-notice-shared .agreement-article th,
    .page-notice-shared .agreement-article td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 374px) {
    .page-notice-shared .notice-page-shell {
        padding: 10px;
    }

    .page-notice-shared .tree-drawer li a {
        font-size: 12px;
    }

    .page-notice-shared .notice-list li {
        padding: 12px 10px;
    }

    .page-notice-shared .notice-list .date {
        min-height: 24px;
        padding: 3px 7px;
        font-size: 12px;
    }

    .page-notice-shared .agreement-article {
        padding: 16px 14px 20px;
    }
}

/* === NOTICE MOBILE CSS END === */

/* === NOTICE DETAIL CSS START === */
body.notice-detail-body { min-width: 0 !important; width: auto !important; margin: 0; background: #f7f8fb; color: #2d2d3f; line-height: 1.6; overflow-x: hidden; }
.notice-detail-body a { color: inherit; text-decoration: none; }
.notice-detail-body img { display: block; max-width: 100%; height: auto; }
.notice-detail-container { width: min(1200px, 100%); margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
.notice-detail-hero { position: relative; overflow: hidden; margin-top: 0; padding: 58px 0 72px; border-bottom: 0; background: radial-gradient(circle at 18% 18%,rgba(255,255,255,0.16),transparent 22%),radial-gradient(circle at 82% 28%,rgba(255,255,255,0.1),transparent 18%),linear-gradient(135deg,var(--notice-hero-start,#5a1118) 0%,var(--notice-hero-mid,#a80f1f) 54%,var(--notice-hero-end,#7a1d28) 100%); }
.notice-detail-hero:before, .notice-detail-hero:after { content: ""; position: absolute; z-index: 0; border-radius: 999px; pointer-events: none; }
.notice-detail-hero:before { top: -140px; right: -100px; width: 360px; height: 360px; background: rgba(255,255,255,0.08); filter: blur(8px); }
.notice-detail-hero:after { left: 8%; bottom: -120px; width: 240px; height: 240px; background: rgba(255,255,255,0.08); }
.notice-detail-hero .notice-detail-container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 20px; }
.notice-detail-hero__copy { text-align: center; }
.notice-detail-hero__eyebrow { display: inline-flex; align-items: center; min-height: 30px; padding: 0 14px; border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; background: rgba(255,255,255,0.08); color: #fff4f6; font-size: 13px; font-weight: 600; }
.notice-detail-card__tag { display: inline-flex; align-items: center; height: 28px; padding: 0 12px; border-radius: 999px; background: rgba(var(--color-primary-rgb), 0.1); color: var(--color-primary); font-size: 13px; font-weight: 600; }
.notice-detail-hero h1 { margin: 18px 0 6px; color: #fff; font-size: clamp(34px,5vw,52px); line-height: 1.08; font-weight: 800; }
.notice-detail-hero p { margin: 0; color: var(--notice-hero-text,#fff4f6); font-size: 16px; line-height: 1.85; }
.notice-detail-hero__back { position: absolute; top: 50%; right: 24px; display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 18px; border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; background: rgba(255,255,255,0.96); color: var(--color-primary); font-size: 14px; font-weight: 700; box-shadow: 0 8px 22px rgba(70,4,14,0.18); transform: translateY(-50%); }
.notice-detail-back { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 18px; border: 1px solid rgba(var(--color-primary-rgb), 0.18); border-radius: 999px; background: #fff; color: var(--color-primary); font-size: 14px; font-weight: 600; box-shadow: 0 8px 22px rgba(0,0,0,0.05); }
.notice-detail-page { padding: 24px 0 52px; }
.notice-detail-breadcrumb { display: flex; align-items: center; gap: 8px; min-height: 40px; margin-bottom: 18px; color: #8f8fa7; font-size: 13px; flex-wrap: wrap; }
.notice-detail-layout { display: grid; grid-template-columns: 280px minmax(0,1fr); gap: 24px; align-items: start; }
.style6-notice-detail-page .notice-detail-layout > .sidebar { position: sticky; top: 94px; width: 100%; min-width: 0; margin: 0; padding: 18px; box-sizing: border-box; border: 1px solid rgba(239,182,192,0.68); border-radius: 8px; background: rgba(255,255,255,0.96); box-shadow: 0 18px 42px rgba(122,31,42,0.08); }
.style6-notice-detail-page .notice-detail-layout > .sidebar:before { content: "公告与协议"; display: block; margin-bottom: 14px; padding: 0 4px 14px; border-bottom: 1px solid #f3e6e9; color: #2e1b1f; font-size: 18px; line-height: 1.4; font-weight: 700; }
.style6-notice-detail-page .sidebar .tree-drawer { width: 100%; margin: 0; padding: 0; list-style: none; }
.style6-notice-detail-page .sidebar .tree-drawer li { width: 100%; margin: 0; padding: 0; list-style: none; }
.style6-notice-detail-page .sidebar .tree-drawer li + li { margin-top: 8px; }
.style6-notice-detail-page .sidebar .tree-drawer li a { display: flex; align-items: center; gap: 12px; width: 100%; min-height: 48px; box-sizing: border-box; padding: 0 14px; border: 1px solid transparent; border-radius: 7px; color: var(--notice-title-text,#2e1b1f); font-size: 14px; line-height: 1.4; font-weight: 600; transition: border-color .2s ease,background-color .2s ease,color .2s ease; }
.style6-notice-detail-page .sidebar .tree-drawer li a .arrow { display: inline-flex; flex: 0 0 auto; width: 9px; height: 9px; border-top: 2px solid var(--notice-muted-text,#8e6770); border-right: 2px solid var(--notice-muted-text,#8e6770); transform: rotate(45deg); transition: transform .2s ease,border-color .2s ease; }
.style6-notice-detail-page .sidebar .tree-drawer li a:hover,
.style6-notice-detail-page .sidebar .tree-drawer li a.cur { border-color: rgba(255,16,35,0.14); background: #fff4f5; color: var(--color-primary); }
.style6-notice-detail-page .sidebar .tree-drawer li a:hover .arrow,
.style6-notice-detail-page .sidebar .tree-drawer li a.cur .arrow { border-color: var(--color-primary); transform: translateX(2px) rotate(45deg); }
.notice-detail-main { min-width: 0; }
.notice-detail-card { overflow: hidden; border: 1px solid #eef1f6; border-radius: 20px; background: #fff; box-shadow: 0 12px 34px rgba(18,26,46,0.06); }
.notice-detail-card__head { padding: 32px 40px 24px; border-bottom: 1px solid #eef1f6; background: linear-gradient(180deg, #fff 0%, #fbfcff 100%); text-align: center; }
.notice-detail-card__head h2 { margin: 0; color: #171725; font-size: 28px; line-height: 1.45; font-weight: 700; word-break: break-word; overflow-wrap: anywhere; }
.notice-detail-card__meta { margin-top: 12px; color: #8f8fa7; font-size: 14px; }
.notice-detail-content { padding: 34px 40px 38px; color: #424b5f; font-size: 16px; line-height: 1.95; word-break: break-word; overflow-wrap: anywhere; }
.notice-detail-content > *:first-child { margin-top: 0 !important; } .notice-detail-content > *:last-child { margin-bottom: 0 !important; }
.notice-detail-content p { margin: 0 0 16px; } .notice-detail-content h1, .notice-detail-content h2, .notice-detail-content h3, .notice-detail-content h4, .notice-detail-content h5, .notice-detail-content h6 { margin: 1.25em 0 0.65em; color: #171725; line-height: 1.45; font-weight: 700; }
.notice-detail-content ul, .notice-detail-content ol { margin: 0 0 18px 24px; padding: 0; } .notice-detail-content ul { list-style: disc; } .notice-detail-content ol { list-style: decimal; } .notice-detail-content li { margin-bottom: 8px; }
.notice-detail-content blockquote { margin: 18px 0; padding: 14px 18px; border-left: 4px solid var(--color-primary); border-radius: 12px; background: rgba(var(--color-primary-rgb), 0.08); color: #5b6475; }
.notice-detail-content table { width: 100%; margin: 18px 0; border-collapse: collapse; table-layout: fixed; } .notice-detail-content th, .notice-detail-content td { padding: 12px 14px; border: 1px solid #e6eaf0; text-align: left; vertical-align: top; } .notice-detail-content th { background: #f8fafc; color: #171725; font-weight: 600; } .notice-detail-content img { margin: 18px auto; border-radius: 12px; }
.notice-detail-card__foot { display: flex; justify-content: center; padding: 0 40px 36px; }
.notice-detail-back { border-radius: 12px; background: var(--color-primary); color: #fff !important; box-shadow: 0 10px 24px rgba(var(--color-primary-rgb), 0.2); }
@media (max-width: 1024px) { .notice-detail-layout { grid-template-columns: 1fr; } .notice-detail-container { padding: 0 20px; } .style6-notice-detail-page .notice-detail-layout > .sidebar { position: static; top: auto; padding: 10px; } .style6-notice-detail-page .notice-detail-layout > .sidebar:before { display: none; } .style6-notice-detail-page .sidebar .tree-drawer { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; } .style6-notice-detail-page .sidebar .tree-drawer li + li { margin-top: 0; } .style6-notice-detail-page .sidebar .tree-drawer li a { justify-content: center; min-height: 40px; padding: 0 8px; text-align: center; white-space: nowrap; } .style6-notice-detail-page .sidebar .tree-drawer li a .arrow { display: none; } }
@media (max-width: 768px) { .notice-detail-hero { padding: 34px 0 32px; } .notice-detail-hero .notice-detail-container { flex-direction: column; align-items: center; gap: 18px; } .notice-detail-hero__back { position: static; transform: none; } .notice-detail-hero h1 { font-size: 28px; } .notice-detail-page { padding-bottom: 36px; } .notice-detail-card { border-radius: 16px; } .notice-detail-card__head { padding: 26px 20px 20px; } .notice-detail-card__head h2 { font-size: 22px; } .notice-detail-content { padding: 24px 20px 28px; font-size: 15px; line-height: 1.85; } .notice-detail-card__foot { padding: 0 20px 28px; } .notice-detail-back { width: 100%; } .notice-detail-body .right-bar { display: none; } }
@media (max-width: 480px) { .notice-detail-container { padding: 0 14px; } .notice-detail-hero h1 { font-size: 21px; } .notice-detail-card__head { padding: 22px 16px 18px; } .notice-detail-card__head h2 { font-size: 19px; } .notice-detail-content { padding: 22px 16px 24px; font-size: 14px; line-height: 1.8; } .notice-detail-card__foot { padding: 0 16px 24px; } }
@media (max-width: 420px) { .style6-notice-detail-page .sidebar .tree-drawer { grid-template-columns: repeat(2,minmax(0,1fr)); } }

/* === NOTICE DETAIL CSS END === */
