/* roulang page: index */
:root {
            --primary: #E86A83;
            --primary-hover: #D95B75;
            --primary-dark: #C14D67;
            --primary-light: #FDE8EE;
            --bg: #F7F5F6;
            --text: #2E2830;
            --text-secondary: #6E6470;
            --border: #EDE3E6;
            --success: #2E7D5B;
            --warning: #F5A65B;
            --radius: 16px;
            --radius-sm: 10px;
            --shadow: 0 1px 2px rgba(46, 40, 48, 0.04), 0 4px 12px rgba(46, 40, 48, 0.06);
            --shadow-hover: 0 2px 4px rgba(46, 40, 48, 0.06), 0 12px 28px rgba(46, 40, 48, 0.12);
            --container-max: 1200px;
            --spacing-section: 96px;
            --spacing-section-mobile: 64px;
            --aside-width: 260px;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            font-size: 1rem;
            line-height: 1.75;
            color: var(--text);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease;
        }
        ul,
        ol {
            list-style: none;
        }
        button,
        input,
        select,
        textarea {
            font: inherit;
            color: inherit;
            border-radius: 0;
        }
        button {
            cursor: pointer;
            background: none;
            border: none;
        }

        /* 容器 */
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }
        .section {
            padding: var(--spacing-section) 0;
        }
        @media (max-width: 767.98px) {
            .section {
                padding: var(--spacing-section-mobile) 0;
            }
        }

        /* 移动端顶部栏 */
        .mobile-header {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 120;
            background: #fff;
            border-bottom: 1px solid var(--border);
            padding: 12px 20px;
            align-items: center;
            justify-content: space-between;
        }
        .mobile-brand {
            font-weight: 800;
            font-size: 1.125rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .mobile-brand .brand-icon {
            font-size: 1.25rem;
        }
        .hamburger {
            width: 40px;
            height: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            border-radius: 8px;
        }
        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: all .3s ease;
        }
        .hamburger.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger.is-open span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* 移动端抽屉 */
        .mobile-drawer {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            z-index: 110;
            padding: 80px 24px 24px;
            transform: translateX(100%);
            transition: transform .35s ease;
        }
        .mobile-drawer.is-open {
            transform: translateX(0);
        }
        .mobile-drawer .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 6px;
            height: 100%;
        }
        .mobile-drawer .drawer-nav a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 16px;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            color: var(--text);
            border: 1px solid transparent;
        }
        .mobile-drawer .drawer-nav a:hover {
            background: var(--primary-light);
            color: var(--primary);
        }
        .mobile-drawer .drawer-nav a.active {
            background: var(--primary-light);
            color: var(--primary);
            border-color: rgba(232, 106, 131, .25);
        }
        .mobile-drawer .drawer-bottom {
            margin-top: auto;
            padding: 20px 0;
            border-top: 1px solid var(--border);
        }
        .mobile-drawer .drawer-bottom p {
            font-size: .875rem;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        @media (max-width: 1023.98px) {
            .mobile-header {
                display: flex;
            }
            .mobile-drawer {
                display: flex;
            }
        }

        /* 左侧导航 */
        .site-aside {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 100;
            width: var(--aside-width);
            height: 100vh;
            background: #fff;
            border-right: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            padding: 32px 20px 24px;
        }
        .aside-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 8px 20px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 20px;
        }
        .aside-brand .brand-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--primary);
        }
        .aside-brand .brand-text {
            font-weight: 800;
            font-size: 1.125rem;
            color: var(--text);
            line-height: 1.3;
        }
        .aside-nav {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 8px 0;
        }
        .aside-nav a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            border-radius: var(--radius-sm);
            font-size: .95rem;
            font-weight: 600;
            color: var(--text-secondary);
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }
        .aside-nav a i {
            width: 20px;
            text-align: center;
            font-size: 1rem;
        }
        .aside-nav a:hover {
            background: rgba(232, 106, 131, .08);
            color: var(--primary);
        }
        .aside-nav a.active {
            background: var(--primary-light);
            color: var(--primary);
            border-left-color: var(--primary);
        }
        .aside-footer {
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }
        .aside-footer p {
            font-size: .875rem;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }

        .content-wrap {
            margin-left: var(--aside-width);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        @media (max-width: 1023.98px) {
            .site-aside {
                display: none;
            }
            .content-wrap {
                margin-left: 0;
                padding-top: 64px;
            }
        }

        /* 按钮 */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: .8rem 1.5rem;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: .95rem;
            line-height: 1.4;
            border: 1px solid transparent;
            transition: all .25s ease;
            cursor: pointer;
            text-decoration: none;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .btn-primary:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(232, 106, 131, .3);
        }
        .btn-primary:active {
            background: var(--primary-dark);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, .12);
            transform: translateY(0);
        }
        .btn-secondary {
            background: #fff;
            color: var(--text);
            border-color: var(--border);
        }
        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-1px);
        }
        .btn-white {
            background: #fff;
            color: var(--primary);
            border-color: #fff;
        }
        .btn-white:hover {
            background: var(--primary-light);
            color: var(--primary);
            border-color: var(--primary-light);
        }
        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1rem;
        }
        .btn-sm {
            padding: .55rem 1.1rem;
            font-size: .875rem;
        }

        /* 标签 */
        .tag-pill {
            display: inline-block;
            padding: 3px 12px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 999px;
            font-size: .8125rem;
            font-weight: 600;
            line-height: 1.5;
        }
        .tag-outline {
            background: transparent;
            border: 1px solid rgba(232, 106, 131, .35);
        }

        /* 卡片 */
        .card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: all .3s ease;
        }
        .card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        /* 指标卡 */
        .metric-card {
            background: #fff;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            border-top: 4px solid var(--primary);
            padding: 28px 24px 22px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all .3s ease;
        }
        .metric-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .metric-num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text);
            font-family: inherit;
            line-height: 1.2;
        }
        .metric-num sup {
            font-size: 1rem;
            color: var(--primary);
        }
        .metric-label {
            font-size: .875rem;
            color: var(--text-secondary);
            margin-top: 6px;
        }

        /* 服务卡 */
        .service-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px 26px;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow);
            transition: all .3s ease;
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--warning));
            opacity: 0;
            transition: opacity .3s ease;
        }
        .service-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        .service-card:hover::before {
            opacity: 1;
        }
        .service-card .card-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 16px;
        }
        .service-card .card-num {
            position: absolute;
            top: 20px;
            right: 22px;
            font-size: 2.5rem;
            font-weight: 800;
            color: rgba(232, 106, 131, .08);
            line-height: 1;
        }
        .service-card h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }
        .service-card p {
            font-size: .925rem;
            color: var(--text-secondary);
            line-height: 1.65;
            margin-bottom: 16px;
            flex: 1;
        }
        .service-card .card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 16px;
        }
        .service-card .card-link {
            font-size: .875rem;
            font-weight: 600;
            color: var(--primary);
            transition: all .25s ease;
        }
        .service-card .card-link i {
            transition: transform .25s ease;
        }
        .service-card .card-link:hover {
            color: var(--primary-hover);
        }
        .service-card .card-link:hover i {
            transform: translateX(4px);
        }
        .service-card.card-wide {
            background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
        }
        .service-card.card-banner {
            flex-direction: row;
            align-items: center;
            gap: 24px;
            padding: 32px 36px;
        }
        .service-card.card-banner .banner-content {
            flex: 1;
        }
        .service-card.card-banner h3 {
            font-size: 1.25rem;
            margin-bottom: 4px;
        }
        .service-card.card-banner p {
            margin-bottom: 0;
        }

        /* 对比区块 */
        .compare-section {
            background: var(--primary-light);
        }
        .compare-card {
            background: #fff;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            padding: 32px;
            height: 100%;
            box-shadow: var(--shadow);
        }
        .compare-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .compare-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }
        .compare-row:last-child {
            border-bottom: none;
        }
        .compare-before {
            background: #F1EDEF;
            color: var(--text-secondary);
            padding: 6px 14px;
            border-radius: 8px;
            font-size: .875rem;
            flex: 1;
        }
        .compare-arrow {
            color: var(--warning);
            font-size: .875rem;
            flex-shrink: 0;
        }
        .compare-after {
            background: var(--primary-light);
            color: var(--primary);
            padding: 6px 14px;
            border-radius: 8px;
            font-size: .875rem;
            font-weight: 600;
            flex: 1;
        }

        /* 里程碑 */
        .timeline {
            position: relative;
            padding-left: 32px;
        }
        .timeline::before {
            content: "";
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--primary), transparent);
        }
        .timeline-item {
            position: relative;
            padding: 16px 0 16px 20px;
        }
        .timeline-item::before {
            content: "";
            position: absolute;
            left: -28px;
            top: 22px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary);
            border: 3px solid #fff;
            box-shadow: 0 0 0 2px rgba(232, 106, 131, .3);
        }
        .timeline-date {
            font-size: .8125rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 4px;
        }
        .timeline-content {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 18px 22px;
            box-shadow: var(--shadow);
        }
        .timeline-content h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .timeline-content p {
            font-size: .875rem;
            color: var(--text-secondary);
            margin: 0;
        }

        /* 资讯 */
        .news-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-date {
            flex-shrink: 0;
            background: var(--primary-light);
            border-radius: 8px;
            padding: 6px 12px;
            text-align: center;
            font-size: .75rem;
            color: var(--primary);
            font-weight: 600;
            line-height: 1.4;
            min-width: 56px;
        }
        .news-item a {
            font-size: .925rem;
            font-weight: 600;
            color: var(--text);
            line-height: 1.5;
            transition: color .2s;
        }
        .news-item a:hover {
            color: var(--primary);
        }
        .side-recommend {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
        }
        .side-recommend h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border);
        }
        .side-recommend ul li {
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
        }
        .side-recommend ul li:last-child {
            border-bottom: none;
        }
        .side-recommend ul li a {
            font-size: .875rem;
            color: var(--text);
            font-weight: 500;
            transition: color .2s;
        }
        .side-recommend ul li a:hover {
            color: var(--primary);
        }

        /* 保障 */
        .guarantee-icon {
            width: 52px;
            height: 52px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 14px;
        }

        /* FAQ */
        .faq-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: box-shadow .3s;
        }
        .faq-item:hover {
            box-shadow: var(--shadow);
        }
        .faq-item .faq-q {
            width: 100%;
            text-align: left;
            padding: 18px 22px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }
        .faq-item .faq-q i {
            transition: transform .3s ease;
            color: var(--primary);
            font-size: .875rem;
            flex-shrink: 0;
        }
        .faq-item .faq-q[aria-expanded="true"] i {
            transform: rotate(180deg);
        }
        .faq-item .faq-a {
            display: none;
            padding: 0 22px 18px;
            font-size: .95rem;
            line-height: 1.7;
            color: var(--text-secondary);
            border-top: 1px solid var(--border);
            padding-top: 14px;
        }

        /* 表单 */
        .form-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        .form-card label {
            font-size: .875rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 6px;
        }
        .form-card input,
        .form-card select,
        .form-card textarea {
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: .7rem 1rem;
            font-size: .925rem;
            background: #fff;
            width: 100%;
            margin-bottom: 0;
            transition: all .25s ease;
            box-shadow: none;
            color: var(--text);
        }
        .form-card input:focus,
        .form-card select:focus,
        .form-card textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(232, 106, 131, .2);
            outline: none;
        }
        .form-card input::placeholder,
        .form-card textarea::placeholder {
            color: #A99DA8;
        }
        .form-card .form-error {
            font-size: .8125rem;
            color: #C0392B;
            display: none;
            margin-top: 4px;
        }
        .form-card .form-success {
            text-align: center;
            padding: 40px 20px;
            display: none;
        }
        .form-card .form-success i {
            font-size: 3rem;
            color: var(--success);
            margin-bottom: 16px;
        }
        .form-card .form-success p {
            font-size: 1rem;
            color: var(--text);
            margin-bottom: 8px;
        }

        /* CTA横幅 */
        .cta-banner {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 20px;
            padding: 48px 56px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: "";
            position: absolute;
            right: -60px;
            top: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
        }
        .cta-banner::after {
            content: "";
            position: absolute;
            right: 20px;
            bottom: -80px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .06);
        }
        .cta-banner h2 {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .cta-banner p {
            font-size: 1rem;
            opacity: .9;
            margin-bottom: 0;
        }
        @media (max-width: 767.98px) {
            .cta-banner {
                padding: 32px 24px;
            }
            .cta-banner h2 {
                font-size: 1.35rem;
            }
        }

        /* 页脚 */
        .site-footer {
            border-top: 1px solid var(--border);
            background: #FDFAFB;
            padding: 56px 0 24px;
            margin-top: auto;
        }
        .site-footer .footer-brand {
            font-size: 1.125rem;
            font-weight: 800;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }
        .site-footer .footer-desc {
            font-size: .875rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .site-footer h5 {
            font-size: .875rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
        }
        .site-footer ul li {
            margin-bottom: 8px;
        }
        .site-footer ul li a {
            font-size: .875rem;
            color: var(--text-secondary);
            transition: color .2s;
        }
        .site-footer ul li a:hover {
            color: var(--primary);
        }
        .site-footer .footer-bottom {
            border-top: 1px solid var(--border);
            margin-top: 40px;
            padding-top: 20px;
            font-size: .8125rem;
            color: var(--text-secondary);
            text-align: center;
        }

        /* 板块标题 */
        .section-header {
            margin-bottom: 40px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        .section-header h2 {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text);
        }
        .section-header .section-desc {
            font-size: .95rem;
            color: var(--text-secondary);
            margin-top: 8px;
            max-width: 520px;
        }
        .section-header .section-link {
            font-size: .875rem;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .section-header .section-link:hover i {
            transform: translateX(4px);
        }
        .section-header .section-link i {
            transition: transform .25s;
        }

        /* 文本装饰 */
        .text-primary {
            color: var(--primary) !important;
        }
        .text-secondary {
            color: var(--text-secondary) !important;
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, #2B2026 0%, #3A2430 100%);
            position: relative;
            padding: 80px 0;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: url('/assets/images/backpic/back-1.jpg') no-repeat center center / cover;
            opacity: .22;
        }
        .hero::after {
            content: "";
            position: absolute;
            top: -80px;
            right: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(232, 106, 131, .12);
        }
        .hero .hero-inner {
            position: relative;
            z-index: 2;
            display: flex;
            gap: 48px;
            align-items: center;
        }
        .hero .hero-left {
            flex: 1.1;
        }
        .hero .hero-right {
            flex: .9;
        }
        .hero .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(232, 106, 131, .18);
            border: 1px solid rgba(232, 106, 131, .3);
            color: #F9B8C4;
            padding: 6px 16px;
            border-radius: 999px;
            font-size: .8125rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        .hero h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            font-weight: 800;
            color: #fff;
            margin-bottom: 18px;
        }
        .hero h1 .highlight {
            color: #F9A8B8;
        }
        .hero .hero-desc {
            color: rgba(255, 255, 255, .78);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 28px;
            max-width: 520px;
        }
        .hero .hero-ctas {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .hero .hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 36px;
        }
        .hero .hero-stats .hs-item {
            border-left: 2px solid rgba(232, 106, 131, .5);
            padding-left: 14px;
        }
        .hero .hero-stats .hs-num {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.3;
        }
        .hero .hero-stats .hs-label {
            font-size: .8125rem;
            color: rgba(255, 255, 255, .6);
        }
        .hero-rank {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 20px;
            padding: 28px;
            backdrop-filter: blur(8px);
        }
        .hero-rank .rank-title {
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .hero-rank .rank-title i {
            color: #F9A8B8;
        }
        .hero-rank .rank-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .hero-rank .rank-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, .06);
            border-radius: 10px;
            padding: 12px 16px;
            transition: background .2s;
        }
        .hero-rank .rank-item:hover {
            background: rgba(255, 255, 255, .12);
        }
        .hero-rank .rank-item .rank-num {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(232, 106, 131, .5);
            color: #fff;
            font-size: .75rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .hero-rank .rank-item .rank-name {
            flex: 1;
            font-size: .875rem;
            color: rgba(255, 255, 255, .85);
            font-weight: 500;
        }
        .hero-rank .rank-item .rank-count {
            font-size: .8125rem;
            color: #F9A8B8;
            font-weight: 600;
            white-space: nowrap;
        }
        @media (max-width: 767.98px) {
            .hero h1 {
                font-size: 1.85rem;
            }
            .hero .hero-inner {
                flex-direction: column;
                gap: 32px;
            }
            .hero {
                padding: 50px 0;
            }
            .hero-stats {
                flex-wrap: wrap;
                gap: 16px !important;
            }
        }

        /* 按钮返回顶部 */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 90;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(232, 106, 131, .4);
            opacity: 0;
            visibility: hidden;
            transition: all .3s;
            font-size: 1rem;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--primary-hover);
            transform: translateY(-4px);
        }

        /* App 区块 */
        .app-section {
            background: #fff;
        }
        .app-section .app-visual {
            background: linear-gradient(135deg, var(--primary-light), #fff);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .app-section .app-visual::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(232, 106, 131, .1);
        }
        .app-section .app-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #fff;
            margin-bottom: 20px;
            box-shadow: 0 8px 24px rgba(232, 106, 131, .35);
        }

        /* 资讯区域 */
        .news-section {
            background: #fff;
        }

        /* 打印 */
        @media print {
            .site-aside {
                display: none;
            }
            .content-wrap {
                margin-left: 0;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #E86A83;
            --primary-hover: #D95B75;
            --primary-dark: #C14D67;
            --primary-light: #FDE8EE;
            --bg: #F7F5F6;
            --text: #2E2830;
            --text-secondary: #6E6470;
            --border: #EDE3E6;
            --success: #2E7D5B;
            --warning: #F5A65B;
            --radius: 16px;
            --radius-sm: 10px;
            --shadow: 0 1px 2px rgba(46, 40, 48, 0.04), 0 4px 12px rgba(46, 40, 48, 0.06);
            --shadow-hover: 0 2px 4px rgba(46, 40, 48, 0.06), 0 12px 28px rgba(46, 40, 48, 0.12);
            --container-max: 1200px;
            --spacing-section: 96px;
            --spacing-section-mobile: 64px;
            --aside-width: 260px;
        }
        html {
            scroll-behavior: smooth;
        }
        * {
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            font-size: 1rem;
            line-height: 1.75;
            color: var(--text);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease;
        }
        button,
        input,
        select,
        textarea {
            font: inherit;
            color: inherit;
            border-radius: 0;
        }
        button {
            cursor: pointer;
            background: none;
            border: none;
        }
        ul,
        ol,
        p,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0;
            padding: 0;
        }
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }
        .section {
            padding: var(--spacing-section) 0;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1.2;
            border: 1px solid transparent;
            transition: background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease, transform .2s ease;
            white-space: nowrap;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 2px 6px rgba(232, 106, 131, 0.25);
        }
        .btn-primary:hover {
            background: var(--primary-hover);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(232, 106, 131, 0.3);
        }
        .btn-primary:active {
            background: var(--primary-dark);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12);
            transform: translateY(0);
        }
        .btn-outline {
            background: #fff;
            border-color: var(--border);
            color: var(--text);
        }
        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .btn-light {
            background: #fff;
            color: var(--primary);
        }
        .btn-light:hover {
            background: var(--primary-light);
            color: var(--primary-dark);
        }
        .btn-block {
            width: 100%;
        }
        .link-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            color: var(--primary);
            font-size: .9rem;
            transition: gap .2s ease, color .2s ease;
        }
        .link-more:hover {
            gap: 12px;
            color: var(--primary-hover);
        }
        .pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 999px;
            font-size: .8125rem;
            font-weight: 600;
        }
        .site-aside {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: var(--aside-width);
            background: #fff;
            border-right: 1px solid var(--border);
            padding: 32px 24px;
            display: flex;
            flex-direction: column;
            z-index: 100;
        }
        .aside-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 8px 20px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 20px;
        }
        .aside-brand .brand-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--primary);
        }
        .aside-brand .brand-text {
            font-weight: 800;
            font-size: 1.125rem;
            color: var(--text);
            line-height: 1.3;
        }
        .aside-nav {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 8px 0;
        }
        .aside-nav a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            border-radius: var(--radius-sm);
            font-size: .95rem;
            font-weight: 600;
            color: var(--text-secondary);
            border-left: 3px solid transparent;
            transition: background .2s ease, color .2s ease;
        }
        .aside-nav a:hover {
            background: rgba(232, 106, 131, 0.08);
            color: var(--text);
        }
        .aside-nav a.active {
            background: var(--primary-light);
            color: var(--primary);
            border-left-color: var(--primary);
            font-weight: 700;
        }
        .aside-bottom {
            border-top: 1px solid var(--border);
            padding-top: 16px;
        }
        .aside-bottom p {
            font-size: .8125rem;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }
        .mobile-header {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 120;
            background: #fff;
            border-bottom: 1px solid var(--border);
            padding: 12px 20px;
            align-items: center;
            justify-content: space-between;
        }
        .mobile-brand {
            font-weight: 800;
            font-size: 1.125rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .mobile-brand .brand-icon {
            font-size: 1.25rem;
        }
        .hamburger {
            width: 40px;
            height: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            border-radius: 8px;
            transition: background .2s ease;
        }
        .hamburger:hover {
            background: var(--primary-light);
        }
        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: all .3s ease;
        }
        .hamburger.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger.is-open span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        .mobile-drawer {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            z-index: 110;
            padding: 80px 24px 24px;
            transform: translateX(100%);
            transition: transform .35s ease, visibility .35s ease;
            visibility: hidden;
        }
        .mobile-drawer.is-open {
            transform: translateX(0);
            visibility: visible;
        }
        .mobile-drawer .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 6px;
            height: 100%;
        }
        .mobile-drawer .drawer-nav a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 16px;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            color: var(--text);
            border: 1px solid transparent;
        }
        .mobile-drawer .drawer-nav a:hover {
            background: var(--primary-light);
            color: var(--primary);
        }
        .mobile-drawer .drawer-nav a.active {
            background: var(--primary-light);
            color: var(--primary);
            border-color: rgba(232, 106, 131, .25);
        }
        .mobile-drawer .drawer-bottom {
            margin-top: auto;
            padding: 20px 0;
            border-top: 1px solid var(--border);
        }
        .mobile-drawer .drawer-bottom p {
            font-size: .875rem;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }
        .main-wrapper {
            margin-left: var(--aside-width);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .main-wrapper main {
            flex: 1;
        }
        .category-header {
            padding: 64px 0 28px;
            background: #fff;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .875rem;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }
        .breadcrumb a {
            color: var(--text-secondary);
            transition: color .2s ease;
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb-sep {
            color: #ccc;
        }
        .breadcrumb .current {
            color: var(--text);
            font-weight: 600;
        }
        .category-title-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 32px;
        }
        .category-title h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
        }
        .category-title p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 560px;
        }
        .banner-card {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        .banner-bg {
            background-size: cover;
            background-position: center;
            min-height: 340px;
            display: flex;
            align-items: center;
            position: relative;
        }
        .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(46, 40, 48, 0.65) 0%, rgba(46, 40, 48, 0.3) 60%, rgba(46, 40, 48, 0.08) 100%);
        }
        .banner-content {
            position: relative;
            z-index: 2;
            color: #fff;
            max-width: 620px;
            padding: 56px 0;
        }
        .banner-content .pill-light {
            background: rgba(255, 255, 255, 0.18);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            margin-bottom: 16px;
            backdrop-filter: blur(4px);
        }
        .banner-content h2 {
            font-size: 2.25rem;
            line-height: 1.25;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .banner-content p {
            font-size: 1rem;
            opacity: .92;
            margin-bottom: 24px;
            max-width: 480px;
        }
        .feature-rows {
            padding: var(--spacing-section) 0;
        }
        .feature-row {
            margin-bottom: 72px;
            align-items: center;
        }
        .feature-row:last-child {
            margin-bottom: 0;
        }
        .feature-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .feature-image img {
            width: 100%;
            height: 100%;
            min-height: 260px;
            object-fit: cover;
        }
        .feature-content {
            padding: 24px 8px;
        }
        .feature-index {
            font-size: 3rem;
            font-weight: 800;
            color: rgba(232, 106, 131, 0.35);
            line-height: 1;
            display: block;
            margin-bottom: 8px;
            letter-spacing: .02em;
        }
        .feature-content h2 {
            font-size: 2rem;
            line-height: 1.3;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
        }
        .feature-content p {
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        .asset-grid-section {
            padding: var(--spacing-section) 0;
            background: #fff;
        }
        .section-head {
            margin-bottom: 40px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
        }
        .section-head .section-title {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.3;
            color: var(--text);
        }
        .section-head p {
            color: var(--text-secondary);
            margin-top: 6px;
            max-width: 520px;
        }
        .asset-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform .25s ease, box-shadow .25s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .asset-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .asset-cover {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4 / 3;
        }
        .asset-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }
        .asset-card:hover .asset-cover img {
            transform: scale(1.03);
        }
        .asset-cover .asset-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(255, 255, 255, 0.92);
            color: var(--primary);
            font-size: .75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 999px;
            backdrop-filter: blur(4px);
            box-shadow: 0 1px 4px rgba(46, 40, 48, 0.1);
        }
        .asset-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .asset-body h3 {
            font-size: 1.125rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 8px;
        }
        .asset-body p {
            font-size: .875rem;
            color: var(--text-secondary);
            line-height: 1.6;
            flex: 1;
            margin-bottom: 16px;
        }
        .asset-body .pill {
            align-self: flex-start;
            margin-bottom: 12px;
        }
        .compare-section {
            padding: var(--spacing-section) 0;
        }
        .compare-head {
            text-align: center;
            margin-bottom: 40px;
        }
        .compare-head h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 8px;
        }
        .compare-head p {
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto;
        }
        .table-wrap {
            max-width: 920px;
            margin: 0 auto;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            overflow-x: auto;
        }
        .compare-table {
            margin: 0;
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            min-width: 640px;
        }
        .compare-table th,
        .compare-table td {
            padding: 16px 20px;
            border-bottom: 1px solid var(--border);
            text-align: left;
            font-size: .95rem;
        }
        .compare-table thead th {
            background: var(--primary-light);
            color: var(--primary-dark);
            font-weight: 800;
            font-size: .875rem;
            letter-spacing: .02em;
        }
        .compare-table tbody tr:nth-child(even) {
            background: #FDF8FA;
        }
        .compare-table tbody tr:last-child td {
            border-bottom: none;
        }
        .compare-table td:first-child {
            font-weight: 700;
            color: var(--text);
        }
        .compare-table td.table-highlight {
            color: var(--primary);
            font-weight: 600;
        }
        .faq-section {
            padding: var(--spacing-section) 0;
            background: #fff;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 48px;
            align-items: start;
        }
        .faq-head h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
        }
        .faq-head p {
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        .faq-head .btn {
            margin-top: 4px;
        }
        .accordion {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .accordion-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            margin-bottom: 12px;
            overflow: hidden;
            transition: box-shadow .2s ease, border-color .2s ease;
        }
        .accordion-item:hover {
            border-color: rgba(232, 106, 131, 0.3);
        }
        .accordion-item.is-active {
            border-color: rgba(232, 106, 131, 0.4);
            box-shadow: var(--shadow);
        }
        .accordion-item .accordion-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 20px;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            background: #fff;
            border: none;
            border-radius: 0;
            transition: color .2s ease, background .2s ease;
        }
        .accordion-item .accordion-title:hover {
            color: var(--primary);
            background: #fff;
        }
        .accordion-item .accordion-title::before {
            display: none;
        }
        .accordion-item .accordion-title::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: .8125rem;
            color: var(--text-secondary);
            transition: transform .3s ease;
            flex-shrink: 0;
        }
        .accordion-item.is-active>.accordion-title::after {
            transform: rotate(180deg);
        }
        .accordion-item .accordion-content {
            border-top: 1px solid var(--border);
            padding: 16px 20px;
            background: #FDFAFB;
            font-size: .95rem;
            line-height: 1.7;
            color: var(--text-secondary);
        }
        .cta-banner {
            background: var(--primary);
            padding: 64px 0;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -60px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
        }
        .cta-banner::after {
            content: '';
            position: absolute;
            bottom: -120px;
            left: -40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }
        .cta-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            color: #fff;
            position: relative;
            z-index: 2;
        }
        .cta-text h2 {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .cta-text p {
            opacity: .92;
        }
        .site-footer {
            border-top: 1px solid var(--border);
            background: #FDFAFB;
            padding: 64px 0 32px;
        }
        .site-footer .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.125rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
        }
        .site-footer .footer-desc {
            font-size: .875rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
            max-width: 360px;
        }
        .site-footer h5 {
            font-size: .9375rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text);
        }
        .site-footer ul {
            list-style: none;
        }
        .site-footer ul li {
            margin-bottom: 10px;
        }
        .site-footer ul a {
            font-size: .875rem;
            color: var(--text-secondary);
            transition: color .2s ease;
        }
        .site-footer ul a:hover {
            color: var(--primary);
        }
        .site-footer .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: var(--primary-light);
            color: var(--primary);
            font-size: .875rem;
            transition: background .2s ease, transform .2s ease;
        }
        .site-footer .footer-social a:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }
        @media (max-width: 1023.98px) {
            .site-aside {
                display: none;
            }
            .main-wrapper {
                margin-left: 0;
                padding-top: 64px;
            }
            .mobile-header {
                display: flex;
            }
            .mobile-drawer {
                visibility: visible;
            }
            .section,
            .feature-rows,
            .asset-grid-section,
            .compare-section,
            .faq-section {
                padding: var(--spacing-section-mobile) 0;
            }
            .category-header {
                padding: 48px 0 20px;
            }
        }
        @media (max-width: 767.98px) {
            .category-title h1 {
                font-size: 1.875rem;
            }
            .category-title-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }
            .banner-bg {
                min-height: 300px;
            }
            .banner-content h2 {
                font-size: 1.75rem;
            }
            .banner-content p {
                font-size: .9375rem;
            }
            .feature-row {
                margin-bottom: 48px;
            }
            .feature-content h2 {
                font-size: 1.5rem;
            }
            .section-head {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }
            .section-head .section-title {
                font-size: 1.5rem;
            }
            .compare-head h2 {
                font-size: 1.5rem;
            }
            .faq-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .faq-head h2 {
                font-size: 1.5rem;
            }
            .cta-banner {
                padding: 48px 0;
            }
            .cta-inner {
                flex-direction: column;
                text-align: center;
            }
            .cta-text h2 {
                font-size: 1.5rem;
            }
            .cta-banner .btn-light {
                width: 100%;
            }
            .site-footer {
                padding: 48px 0 24px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .category-title p {
                font-size: .9375rem;
            }
            .banner-bg {
                min-height: 260px;
            }
            .banner-content h2 {
                font-size: 1.5rem;
            }
            .banner-content {
                padding: 40px 0;
            }
            .feature-image img {
                min-height: 200px;
            }
            .asset-body h3 {
                font-size: 1rem;
            }
            .compare-table th,
            .compare-table td {
                padding: 12px 14px;
                font-size: .875rem;
            }
            .accordion-item .accordion-title {
                padding: 16px;
                font-size: .9375rem;
            }
        }
