/* roulang page: index */
:root {
            --brand-red: #E8443A;
            --brand-red-dark: #A92C2B;
            --acid-lime: #C8F161;
            --ink-black: #101216;
            --ink-gray: #1D2026;
            --paper: #F7F5F0;
            --paper-deep: #EFECE4;
            --line-light: #DCD8CE;
            --text-main: #202226;
            --text-sub: #5F646D;
            --white: #ffffff;
            --radius: 18px;
            --radius-pill: 999px;
            --shadow: 0 2px 10px rgba(0, 0, 0, .03);
            --shadow-hover: 0 12px 28px rgba(0, 0, 0, .07);
            --section-pad: 88px;
            --font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-family);
            font-size: 16px;
            color: var(--text-main);
            background: var(--paper);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: var(--brand-red);
            text-decoration: none;
            transition: color .2s ease;
        }

        a:hover {
            color: var(--brand-red-dark);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-main);
            margin-top: 0;
        }

        p {
            margin-top: 0;
        }

        .container-xxl {
            max-width: 1320px;
            padding-left: 24px;
            padding-right: 24px;
        }

        section {
            padding: var(--section-pad) 0;
        }

        .text-sub {
            color: var(--text-sub);
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(232, 68, 58, .08);
            color: var(--brand-red);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .02em;
            padding: 5px 14px;
            border-radius: 999px;
            margin-bottom: 14px;
        }

        .section-eyebrow::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--brand-red);
        }

        .section-title {
            font-size: 30px;
            line-height: 1.3;
            margin-bottom: 14px;
        }

        .section-desc {
            color: var(--text-sub);
            font-size: 16px;
            margin-bottom: 0;
        }

        .link-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            font-size: 14px;
            color: var(--brand-red);
        }

        .link-more i {
            transition: transform .2s ease;
        }

        .link-more:hover i {
            transform: translateX(4px);
        }

        /* 按钮 */
        .ts-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 48px;
            padding: 0 26px;
            border-radius: var(--radius-pill);
            border: 0;
            font-size: 15px;
            font-weight: 600;
            line-height: 1;
            cursor: pointer;
            text-align: center;
            transition: all .2s ease;
            box-shadow: none;
        }

        .ts-btn-primary {
            background: var(--brand-red);
            color: #fff;
        }

        .ts-btn-primary:hover {
            background: var(--brand-red-dark);
            color: #fff;
            transform: translateY(-2px);
        }

        .ts-btn-primary:active {
            box-shadow: inset 0 3px 8px rgba(0, 0, 0, .18);
            transform: translateY(0);
        }

        .ts-btn-light {
            background: #fff;
            color: var(--text-main);
            border: 1px solid var(--line-light);
        }

        .ts-btn-light:hover {
            border-color: var(--brand-red);
            color: var(--brand-red);
            transform: translateY(-2px);
        }

        .ts-btn-ghost-white {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, .62);
            color: #fff;
        }

        .ts-btn-ghost-white:hover {
            background: rgba(255, 255, 255, .16);
            color: #fff;
            border-color: #fff;
        }

        .ts-btn-sm {
            min-height: 42px;
            padding: 0 20px;
            font-size: 14px;
        }

        /* 顶部信息条 */
        .ts-topbar {
            background: var(--ink-black);
            height: 40px;
            color: rgba(255, 255, 255, .78);
            font-size: 13px;
        }

        .ts-topbar .container-xxl {
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
        }

        .ts-topbar a {
            color: var(--acid-lime);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }

        .ts-topbar a:hover {
            color: #fff;
        }

        .ts-topbar .topbar-marquee {
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        /* Header */
        .ts-header {
            position: sticky;
            top: 0;
            z-index: 1040;
            background: rgba(247, 245, 240, .84);
            backdrop-filter: saturate(160%) blur(16px);
            -webkit-backdrop-filter: saturate(160%) blur(16px);
            border-bottom: 1px solid rgba(0, 0, 0, .06);
        }

        .ts-header-row {
            padding: 14px 0;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: nowrap;
        }

        .ts-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-main);
            flex-shrink: 0;
        }

        .ts-logo:hover {
            color: var(--text-main);
        }

        .ts-logo-badge {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            background: var(--brand-red);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -.02em;
            transform: rotate(-4deg);
            box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .15), 0 6px 14px rgba(232, 68, 58, .28);
        }

        .ts-logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .ts-logo-text strong {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: .01em;
        }

        .ts-logo-text small {
            font-size: 11px;
            letter-spacing: .16em;
            color: var(--text-sub);
            margin-top: 4px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .ts-header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: auto;
            flex-shrink: 0;
        }

        .ts-header-action {
            height: 42px;
            display: inline-flex;
            align-items: center;
            border: 1px solid var(--line-light);
            background: #fff;
            border-radius: 999px;
            padding: 0 18px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
        }

        .ts-header-action:hover {
            color: var(--brand-red);
            border-color: var(--brand-red);
        }

        /* 搜索 */
        .ts-search-shell {
            position: relative;
            width: 100%;
            max-width: 660px;
            margin: 0 auto;
        }

        .ts-search-form {
            background: #fff;
            border: 1px solid var(--line-light);
            border-radius: var(--radius-pill);
            height: 50px;
            display: flex;
            align-items: center;
            padding-left: 20px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
            transition: border-color .2s, box-shadow .2s;
        }

        .ts-search-form:focus-within {
            border-color: var(--brand-red);
            box-shadow: 0 0 0 4px rgba(232, 68, 58, .08);
        }

        .ts-search-form .search-icon {
            color: var(--text-sub);
            font-size: 15px;
        }

        .ts-search-form input {
            border: 0;
            outline: 0;
            background: transparent;
            flex: 1;
            padding: 0 12px;
            font-size: 15px;
            min-width: 0;
            color: var(--text-main);
        }

        .ts-search-submit {
            height: 100%;
            padding: 0 24px;
            border: 0;
            border-radius: 0 999px 999px 0;
            background: var(--brand-red);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background .2s;
        }

        .ts-search-submit:hover {
            background: var(--brand-red-dark);
        }

        .ts-search-panel {
            position: absolute;
            inset-inline: 0;
            top: calc(100% + 10px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            background: #fff;
            border: 1px solid var(--line-light);
            box-shadow: 0 24px 50px rgba(0, 0, 0, .10);
            border-radius: 18px;
            padding: 20px;
            z-index: 20;
            transition: all .2s ease;
        }

        .ts-search-shell:focus-within .ts-search-panel {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .ts-search-panel .panel-title {
            font-size: 12px;
            color: var(--text-sub);
            letter-spacing: .06em;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .search-hot-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .search-hot-tags a {
            font-size: 13px;
            padding: 5px 13px;
            border-radius: 999px;
            background: var(--paper);
            color: var(--text-main);
        }

        .search-hot-tags a:hover {
            background: rgba(232, 68, 58, .08);
            color: var(--brand-red);
        }

        /* 导航行 */
        .ts-navbar {
            display: flex;
            align-items: center;
            gap: 4px;
            padding-bottom: 8px;
            overflow-x: auto;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }

        .ts-navbar::-webkit-scrollbar {
            display: none;
        }

        .ts-nav-link {
            position: relative;
            padding: 6px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-main);
            border-radius: 999px;
            white-space: nowrap;
            transition: all .2s;
        }

        .ts-nav-link:hover {
            color: var(--brand-red);
            background: rgba(232, 68, 58, .06);
        }

        .ts-nav-link.active {
            background: var(--ink-black);
            color: #fff;
            font-weight: 600;
        }

        .ts-nav-link .badge-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--acid-lime);
            border-radius: 50%;
            margin-left: 5px;
            position: relative;
            bottom: 1px;
        }

        .ts-nav-item-hospital {
            font-size: 13px;
            color: var(--text-sub);
            margin-left: auto;
            padding-right: 2px;
            white-space: nowrap;
        }

        @media (max-width: 1199.98px) {
            .ts-logo-text strong {
                font-size: 17px;
            }
            .ts-logo-text small {
                font-size: 10px;
            }
            .ts-search-shell {
                max-width: 440px;
            }
            .ts-search-submit {
                padding: 0 16px;
            }
        }

        @media (max-width: 991.98px) {
            .ts-desktop-search {
                display: none !important;
            }
            .ts-header-actions .ts-header-action {
                display: none;
            }
            .ts-navbar {
                padding-bottom: 12px;
            }
            .ts-mobile-search {
                display: block !important;
                padding-bottom: 10px;
            }
        }

        @media (min-width: 992px) {
            .ts-mobile-search {
                display: none !important;
            }
        }

        /* Hero */
        .ts-hero {
            position: relative;
            padding: 84px 0;
            color: #fff;
            background:
                linear-gradient(110deg, rgba(10, 11, 15, .94) 0%, rgba(16, 18, 22, .78) 52%, rgba(16, 18, 22, .62) 100%),
                url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            overflow: hidden;
        }

        .ts-hero:before {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            right: 14%;
            top: -90px;
            background: repeating-linear-gradient(45deg, rgba(200, 241, 97, .12) 0 8px, transparent 8px 20px);
            transform: rotate(10deg);
            pointer-events: none;
        }

        .ts-hero:after {
            content: "";
            position: absolute;
            width: 180px;
            height: 180px;
            left: -60px;
            bottom: 60px;
            background: rgba(232, 68, 58, .25);
            border-radius: 44px;
            transform: rotate(18deg);
            pointer-events: none;
        }

        .ts-hero .container-xxl {
            position: relative;
            z-index: 2;
        }

        .ts-hero-caption {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            background: rgba(255, 255, 255, .10);
            border: 1px solid rgba(255, 255, 255, .14);
            padding: 6px 16px;
            border-radius: 999px;
            margin-bottom: 22px;
            color: #f2f0eb;
        }

        .ts-hero-caption .lime {
            color: var(--acid-lime);
        }

        .ts-hero h1 {
            color: #fff;
            font-size: 46px;
            font-weight: 800;
            line-height: 1.18;
            margin-bottom: 20px;
            letter-spacing: -.01em;
        }

        .ts-hero h1 span {
            color: var(--acid-lime);
        }

        .ts-hero-subtitle {
            color: rgba(255, 255, 255, .82);
            font-size: 17px;
            max-width: 520px;
            margin-bottom: 14px;
            line-height: 1.8;
        }

        .ts-hero-points {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 18px 0 28px;
        }

        .ts-hero-points span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .12);
            padding: 6px 14px;
            border-radius: 999px;
            font-size: 13px;
            color: #e8e6e0;
        }

        .ts-hero-points i {
            color: var(--acid-lime);
        }

        .ts-hero-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .ts-hero-visual {
            max-width: 420px;
            margin-left: auto;
            position: relative;
        }

        .ts-login-demo {
            background: rgba(255, 255, 255, .97);
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
            padding: 24px;
            color: var(--text-main);
            backdrop-filter: blur(8px);
            transform: rotate(1deg);
        }

        .ts-login-demo-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
        }

        .ts-login-demo-head .title {
            font-weight: 700;
            font-size: 17px;
        }

        .ts-login-demo-head .status {
            font-size: 12px;
            color: #fff;
            background: var(--brand-red);
            border-radius: 999px;
            padding: 3px 12px;
            font-weight: 600;
        }

        .ts-field {
            margin-bottom: 14px;
        }

        .ts-field label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-sub);
            margin-bottom: 5px;
        }

        .ts-input-box {
            height: 42px;
            border-radius: 12px;
            background: var(--paper);
            display: flex;
            align-items: center;
            padding: 0 13px;
            border: 1px solid var(--line-light);
            color: var(--text-sub);
            font-size: 13px;
        }

        .ts-input-box i {
            margin-right: 8px;
            color: var(--brand-red);
        }

        .ts-login-demo-btn {
            width: 100%;
            height: 44px;
            border: 0;
            border-radius: 12px;
            background: var(--brand-red);
            color: #fff;
            font-weight: 700;
            font-size: 15px;
            margin-top: 6px;
        }

        .ts-login-demo-foot {
            display: flex;
            justify-content: space-between;
            margin-top: 12px;
            font-size: 13px;
            color: var(--brand-red);
        }

        .ts-login-demo-note {
            margin-top: 15px;
            border-top: 1px dashed var(--line-light);
            padding-top: 12px;
            font-size: 12px;
            color: var(--text-sub);
            text-align: center;
        }

        @media (max-width: 991.98px) {
            .ts-hero {
                padding: 56px 0;
            }
            .ts-hero h1 {
                font-size: 36px;
            }
            .ts-hero-visual {
                margin: 30px auto 0;
            }
            .section-title {
                font-size: 26px;
            }
            section {
                --section-pad: 64px;
            }
        }

        @media (max-width: 575.98px) {
            .ts-hero h1 {
                font-size: 30px;
            }
            section {
                --section-pad: 48px;
            }
            .ts-hero-btn-group .ts-btn {
                width: 100%;
            }
            .ts-login-demo {
                padding: 18px;
            }
        }

        /* 信任条 */
        .ts-trust-strip {
            background: var(--paper-deep);
            border-bottom: 1px solid rgba(0, 0, 0, .04);
            padding: 18px 0;
        }

        .ts-trust-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px 18px;
            color: var(--text-sub);
            font-size: 14px;
        }

        .ts-trust-inner .item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .ts-trust-inner .item i {
            color: var(--brand-red);
        }

        /* 服务板块 */
        .ts-services {
            background: var(--paper);
        }

        .ts-service-card {
            height: 100%;
            border-radius: var(--radius);
            background: #fff;
            box-shadow: var(--shadow);
            padding: 30px;
            border: 1px solid rgba(0, 0, 0, .03);
            transition: all .25s ease;
            position: relative;
            overflow: hidden;
        }

        .ts-service-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .ts-service-card.dark {
            background: var(--ink-black);
            color: #fff;
        }

        .ts-service-card.dark h3 {
            color: #fff;
        }

        .ts-service-card.dark .inner-text {
            color: rgba(255, 255, 255, .72);
        }

        .ts-service-card .ts-card-icon {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            background: rgba(232, 68, 58, .1);
            color: var(--brand-red);
            margin-bottom: 18px;
            position: relative;
            z-index: 1;
        }

        .ts-service-card.dark .ts-card-icon {
            background: rgba(255, 255, 255, .1);
            color: var(--acid-lime);
        }

        .ts-service-card h3 {
            margin-bottom: 9px;
            font-size: 20px;
        }

        .ts-service-card p {
            font-size: 15px;
            color: var(--text-sub);
            margin-bottom: 18px;
            line-height: 1.7;
        }

        .ts-service-card.dark p {
            color: rgba(255, 255, 255, .72);
        }

        .ts-service-orbit {
            background: radial-gradient(circle at 100% 0%, rgba(200, 241, 97, .16), transparent 60%),
                var(--ink-black);
        }

        .ts-service-orbit:after {
            content: "\f0a8";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: -10px;
            bottom: -26px;
            font-size: 80px;
            color: rgba(255, 255, 255, .04);
            transform: rotate(20deg);
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            display: flex;
            gap: 10px;
            padding: 10px 0;
            border-top: 1px solid rgba(255, 255, 255, .08);
            align-items: flex-start;
            font-size: 15px;
        }

        .feature-list li i {
            color: var(--acid-lime);
            font-size: 13px;
            margin-top: 5px;
        }

        /* 数据区 */
        .ts-metrics {
            background:
                radial-gradient(circle at 88% 10%, rgba(200, 241, 97, .12), transparent 22%),
                linear-gradient(135deg, #101216 0%, #14171c 70%);
            color: #fff;
            position: relative;
            overflow: hidden;
            padding: 88px 0;
        }

        .ts-metrics .metric-wrap {
            display: flex;
            flex-direction: column;
        }

        .metric-number {
            font-family: "Inter", "PingFang SC", sans-serif;
            font-size: 50px;
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -.02em;
            color: var(--acid-lime);
            font-variant-numeric: tabular-nums;
            margin-bottom: 8px;
        }

        .metric-label {
            font-size: 15px;
            color: rgba(255, 255, 255, .84);
        }

        @media (max-width: 767.98px) {
            .metric-number {
                font-size: 38px;
            }
        }

        /* 案例 */
        .ts-cases {
            background: var(--paper);
        }

        .ts-case-card {
            position: relative;
            border-radius: 22px;
            overflow: hidden;
            display: block;
            background: var(--ink-black);
            transition: all .3s ease;
            box-shadow: var(--shadow);
        }

        .ts-case-card:hover .case-thumb img {
            transform: scale(1.03);
        }

        .ts-case-card.big {
            height: 100%;
            min-height: 360px;
        }

        .ts-case-card.small .case-thumb {
            position: relative;
            overflow: hidden;
        }

        .ts-case-card.small .case-thumb {
            padding-bottom: 65%;
        }

        .ts-case-card.small .case-thumb img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ts-case-card.big .case-thumb {
            position: absolute;
            inset: 0;
        }

        .ts-case-card.big .case-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

        .ts-case-card .case-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, .22) 48%, rgba(0, 0, 0, .86) 100%);
            display: flex;
            align-items: flex-end;
            padding: 24px;
            color: #fff;
        }

        .ts-case-card.big .case-overlay {
            padding: 32px;
        }

        .ts-case-tag {
            display: inline-block;
            background: var(--brand-red);
            color: #fff;
            font-size: 12px;
            padding: 3px 12px;
            border-radius: 999px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .ts-case-card h3 {
            color: #fff;
            font-size: 19px;
            margin-bottom: 6px;
        }

        .ts-case-card p {
            color: rgba(255, 255, 255, .74);
            font-size: 14px;
            margin-bottom: 0;
        }

        /* 流程 */
        .ts-flow {
            background: var(--paper-deep);
        }

        .ts-flow-steps {
            position: relative;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 18px;
            margin: 0;
        }

        .ts-flow-steps:before {
            content: "";
            position: absolute;
            left: 16px;
            top: 18px;
            bottom: 18px;
            border-left: 2px dashed rgba(232, 68, 58, .35);
        }

        .ts-flow-step {
            position: relative;
            padding-left: 56px;
            min-height: 58px;
        }

        .ts-flow-step .step-no {
            position: absolute;
            left: 0;
            top: 0;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #fff;
            color: var(--brand-red);
            border: 2px solid var(--brand-red);
            font-weight: 800;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .ts-flow-step .step-title {
            font-weight: 700;
            font-size: 17px;
            margin-bottom: 2px;
        }

        .ts-flow-step .step-text {
            font-size: 14px;
            color: var(--text-sub);
        }

        .ts-flow-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow);
            height: 100%;
        }

        @media (min-width: 992px) {
            .ts-flow-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 32px;
                align-items: center;
            }
        }

        /* CMS资讯区 */
        .ts-latest {
            background: var(--paper);
        }

        .ts-latest-card {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid rgba(0, 0, 0, .03);
            padding: 22px;
            transition: all .25s ease;
            height: 100%;
        }

        .ts-latest-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .ts-empty-card {
            border: 2px dashed var(--line-light);
            border-radius: var(--radius);
            padding: 40px;
            text-align: center;
            background: rgba(255, 255, 255, .5);
        }

        .ts-empty-card i {
            font-size: 30px;
            color: var(--line-light);
            margin-bottom: 6px;
        }

        .ts-empty-card p {
            color: var(--text-sub);
            margin: 0;
            font-size: 15px;
        }

        .ts-latest-item {
            background: #fff;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 18px;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, .03);
            transition: all .2s;
        }

        .ts-latest-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .ts-latest-item .item-meta {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            flex-wrap: wrap;
            font-size: 13px;
            color: var(--text-sub);
            margin-bottom: 6px;
        }

        .ts-latest-item .item-meta a {
            font-weight: 600;
            color: var(--brand-red);
        }

        .ts-latest-item h3 {
            font-size: 17px;
            margin-bottom: 8px;
        }

        .ts-latest-item p {
            font-size: 14px;
            color: var(--text-sub);
            margin-bottom: 0;
        }

        /* FAQ */
        .ts-faq-section {
            background: var(--white);
        }

        .ts-faq-card-list {
            border-top: 1px solid var(--line-light);
            background: #fff;
        }

        .accordion-item.ts-faq-accordion {
            background: transparent;
            border: 0;
            border-top: 1px solid var(--line-light);
            border-radius: 0;
        }

        .accordion-item.ts-faq-accordion:last-child {
            border-bottom: 1px solid var(--line-light);
        }

        .ts-faq-accordion .accordion-button {
            background: transparent;
            font-size: 17px;
            font-weight: 650;
            color: var(--text-main);
            padding: 22px 40px 22px 6px;
            box-shadow: none;
            word-break: break-word;
        }

        .ts-faq-accordion .accordion-button::after {
            background-image: none;
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            content: "\2b";
            position: absolute;
            right: 4px;
            font-size: 22px;
            color: var(--brand-red);
            transform: none;
            transition: transform .2s ease;
        }

        .ts-faq-accordion .accordion-button:not(.collapsed)::after {
            transform: rotate(45deg);
            color: var(--brand-red);
        }

        .ts-faq-accordion .accordion-body {
            padding: 0 40px 24px 6px;
            color: var(--text-sub);
            font-size: 16px;
            line-height: 1.8;
        }

        .ts-faq-accordion .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }

        /* CTA */
        .ts-cta {
            background: var(--ink-black);
            position: relative;
            overflow: hidden;
        }

        .ts-cta:before {
            content: "";
            position: absolute;
            right: 4%;
            top: 20%;
            width: 280px;
            height: 280px;
            background: repeating-linear-gradient(135deg, rgba(200, 241, 97, .12) 0 10px, transparent 10px 30px);
            border-radius: 48px;
            transform: rotate(20deg);
        }

        .ts-cta .cta-content {
            max-width: 720px;
            position: relative;
            z-index: 2;
            color: #fff;
        }

        .ts-cta h2 {
            color: #fff;
            margin-bottom: 12px;
        }

        .ts-cta p {
            color: rgba(255, 255, 255, .78);
            margin-bottom: 24px;
            font-size: 16px;
        }

        /* Footer */
        .ts-footer {
            background: #0b0c0f;
            color: rgba(255, 255, 255, .68);
            padding: 64px 0 0;
            font-size: 14px;
        }

        .ts-footer .footer-title {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .ts-footer a {
            color: rgba(255, 255, 255, .68);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 3px 0;
        }

        .ts-footer a:hover {
            color: #fff;
        }

        .ts-footer .footer-brand {
            color: rgba(255, 255, 255, .92);
            font-weight: 700;
            font-size: 18px;
            margin: 10px 0 8px;
        }

        .ts-footer .footer-brand-text {
            line-height: 1.8;
        }

        .ts-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            margin-top: 50px;
            padding: 18px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, .44);
        }

        @media (max-width: 767.98px) {
            .ts-footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* 通用 */
        .bg-paper {
            background: var(--paper);
        }

        .bg-white {
            background: #fff;
        }

        .rounded-18 {
            border-radius: var(--radius);
        }

        .img-cover {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }

        @media (max-width: 575.98px) {
            .ts-logo-text strong {
                font-size: 16px;
            }
            .ts-logo {
                gap: 8px;
            }
            .ts-logo-badge {
                width: 42px;
                height: 42px;
                font-size: 18px;
                border-radius: 12px;
            }
            .ts-btn {
                padding: 0 20px;
                font-size: 14px;
            }
            .ts-hero-btn-group .ts-btn {
                width: 100%;
            }
            .section-title {
                font-size: 24px;
            }
            .ts-service-card {
                padding: 20px;
            }
        }

/* roulang page: article */
:root{
  --ts-red:#E8443A;
  --ts-red-dark:#A92C2B;
  --ts-lime:#C8F161;
  --ts-ink:#101216;
  --ts-ink-gray:#1D2026;
  --ts-paper:#F7F5F0;
  --ts-paper-deep:#EFECE4;
  --ts-line:#DCD8CE;
  --ts-text:#202226;
  --ts-muted:#5F646D;
  --ts-white:#fff;
  --ts-radius-card:18px;
  --ts-radius-pill:999px;
  --ts-shadow-sm:0 2px 10px rgba(0,0,0,0.03);
  --ts-shadow-lg:0 12px 28px rgba(0,0,0,0.07);
  --bs-primary:#E8443A;
  --bs-primary-rgb:232,68,58;
  --bs-link-color:#cf3730;
  --bs-link-hover-color:#A92C2B;
  --bs-border-radius:16px;
  --bs-body-color:#202226;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",-apple-system,BlinkMacSystemFont,Arial,sans-serif;
  background:var(--ts-paper);
  color:var(--ts-text);
  font-size:16px;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:#c9342c;text-decoration:none;transition:color .2s ease;}
a:hover{color:var(--ts-red-dark);}
p{margin:0 0 24px;}
ul,ol{padding-left:0;margin:0;list-style:none;}
button,input,textarea{font-family:inherit;font-size:inherit;}
.container-xxl{max-width:1320px;}

/* 按钮系统 */
.ts-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  height:48px;padding:0 26px;border-radius:var(--ts-radius-pill);
  font-size:15px;font-weight:600;border:1px solid transparent;
  transition:transform .2s ease,box-shadow .2s ease,background-color .2s ease,border-color .2s ease,color .2s ease;
  white-space:nowrap;cursor:pointer;
}
.ts-btn:hover{transform:translateY(-2px);}
.ts-btn:focus-visible{outline:3px solid rgba(232,68,58,.35);outline-offset:2px;}
.ts-btn-primary{background:var(--ts-red);border-color:var(--ts-red);color:#fff !important;}
.ts-btn-primary:hover{background:var(--ts-red-dark);border-color:var(--ts-red-dark);color:#fff !important;box-shadow:0 12px 24px rgba(169,44,43,.18);}
.ts-btn-primary:active{transform:translateY(0);box-shadow:inset 0 2px 6px rgba(0,0,0,.18);}
.ts-btn-secondary{background:#fff;border-color:#D2CCC0;color:var(--ts-text);}
.ts-btn-secondary:hover{border-color:var(--ts-red);color:var(--ts-red);background:#fff;}
.ts-btn-sm{height:42px;padding:0 20px;font-size:14px;}

/* 导航 */
.ts-header{
  position:sticky;top:0;left:0;right:0;z-index:1030;
  background:rgba(247,245,240,.86);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.ts-header-row{
  display:grid;
  grid-template-columns:minmax(240px,calc(264px - 2%)) 1fr auto;
  gap:20px;align-items:center;
  min-height:80px;
}
.ts-logo{display:inline-flex;align-items:center;gap:12px;min-width:0;}
.ts-logo-badge{
  flex:0 0 auto;width:42px;height:42px;border-radius:12px;
  background:var(--ts-red);color:#fff;display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:17px;letter-spacing:.02em;
  box-shadow:0 6px 16px rgba(232,68,58,.24);
}
.ts-logo-text{display:flex;flex-direction:column;line-height:1.15;min-width:0;}
.ts-logo-text strong{font-size:17px;font-weight:750;color:var(--ts-text);white-space:nowrap;}
.ts-logo-text small{font-size:11px;letter-spacing:.1em;color:var(--ts-muted);margin-top:4px;font-family:Inter,-apple-system,BlinkMacSystemFont,sans-serif;}

.ts-search-shell{position:relative;width:100%;max-width:680px;margin:0 auto;z-index:10;}
.ts-search-form{
  display:flex;align-items:center;gap:10px;
  background:#fff;border:1px solid var(--ts-line);border-radius:var(--ts-radius-pill);
  height:50px;padding:0 6px 0 18px;box-shadow:var(--ts-shadow-sm);
  transition:border-color .2s ease,box-shadow .2s ease;
}
.ts-search-shell:focus-within .ts-search-form{border-color:var(--ts-red);box-shadow:0 0 0 4px rgba(232,68,58,.1);}
.ts-search-form .search-icon{color:var(--ts-muted);font-size:16px;}
.ts-search-form input{
  flex:1;min-width:0;height:100%;border:0;outline:0;background:transparent;
  font-size:14px;color:var(--ts-text);
}
.ts-search-form input::placeholder{color:#9B9992;}
.ts-search-submit{
  height:38px;padding:0 22px;border:0;border-radius:var(--ts-radius-pill);
  background:var(--ts-red);color:#fff;font-size:14px;font-weight:600;cursor:pointer;
  transition:background .2s ease;
}
.ts-search-submit:hover{background:var(--ts-red-dark);}
.ts-search-panel{
  position:absolute;top:calc(100% + 14px);left:0;right:0;
  background:#fff;border:1px solid #EDE9E0;border-radius:18px;
  box-shadow:0 18px 44px rgba(0,0,0,.09);
  padding:18px 20px;
  opacity:0;visibility:hidden;transform:translateY(-6px);
  transition:opacity .2s ease,transform .2s ease,visibility 0s linear .2s;
}
.ts-search-shell:focus-within .ts-search-panel{
  opacity:1;visibility:visible;transform:translateY(0);
  transition:opacity .2s ease,transform .2s ease;
}
.panel-title{font-size:13px;color:var(--ts-muted);margin-bottom:12px;}
.search-hot-tags{display:flex;flex-wrap:wrap;gap:8px;}
.search-hot-tags a{
  border:1px solid #E5E0D6;border-radius:var(--ts-radius-pill);
  color:var(--ts-text);font-size:13px;padding:6px 14px;
  transition:all .2s ease;
}
.search-hot-tags a:hover{border-color:var(--ts-red);color:var(--ts-red);background:#FDF6F4;}

.ts-header-actions{display:flex;align-items:center;gap:12px;justify-content:flex-end;}
.ts-header-action{
  color:var(--ts-text);font-size:14px;font-weight:500;
  padding:10px 4px;white-space:nowrap;
}
.ts-header-action:hover{color:var(--ts-red);}

.ts-navbar{
  display:flex;align-items:center;gap:8px 28px;flex-wrap:nowrap;
  border-top:1px solid rgba(0,0,0,.06);
  min-height:48px;
  overflow-x:auto;
  scrollbar-width:none;
}
.ts-navbar::-webkit-scrollbar{display:none;}
.ts-nav-link{
  position:relative;display:inline-flex;align-items:center;
  padding:13px 2px;color:var(--ts-text);
  font-size:15px;font-weight:500;white-space:nowrap;
  border-bottom:3px solid transparent;
}
.ts-nav-link:hover{color:var(--ts-red);}
.ts-nav-link.active{font-weight:650;color:var(--ts-red);border-bottom-color:var(--ts-red);}
.badge-dot{display:none;width:7px;height:7px;border-radius:50%;background:var(--ts-red);margin-left:7px;vertical-align:middle;}
.ts-nav-link.active .badge-dot{display:none;}
.ts-nav-item-hospital{
  margin-left:auto;display:inline-flex;align-items:center;gap:6px;
  color:var(--ts-muted);font-size:13px;white-space:nowrap;padding:10px 0;
}

/* 移动导航 */
.ts-mobile-toggle{
  display:none;width:44px;height:44px;border-radius:14px;border:1px solid var(--ts-line);
  background:#fff;color:var(--ts-text);align-items:center;justify-content:center;
  font-size:18px;cursor:pointer;
}
.ts-mobile-panel{display:none;}
.ts-mobile-panel.open{
  display:block;border-top:1px solid var(--ts-line);
  background:#fff;padding:20px 0 26px;
  box-shadow:0 18px 30px rgba(0,0,0,.07);
}
.ts-mobile-panel .container-xxl{display:flex;flex-direction:column;gap:18px;}
.ts-mobile-search{display:flex;background:var(--ts-paper);border:1px solid var(--ts-line);border-radius:999px;height:48px;padding:4px;align-items:center;}
.ts-mobile-search input{width:100%;height:100%;border:0;outline:0;background:transparent;padding:0 16px;font-size:15px;}
.ts-mobile-search button{height:38px;padding:0 22px;border-radius:999px;border:0;background:var(--ts-red);color:#fff;font-size:14px;font-weight:600;flex:0 0 auto;cursor:pointer;}
.ts-mobile-nav{display:flex;flex-direction:column;gap:6px;}
.ts-mobile-nav a{
  display:flex;align-items:center;gap:12px;padding:12px 16px;border-radius:14px;
  color:var(--ts-text);font-weight:500;background:transparent;
}
.ts-mobile-nav a:hover{background:var(--ts-paper);color:var(--ts-red);}
.ts-mobile-actions{display:flex;gap:12px;flex-wrap:wrap;}

/* 面包屑 */
.ts-breadcrumb-wrap{
  background:var(--ts-paper);
  padding:24px 0 0;
}
.ts-breadcrumb{
  display:flex;align-items:center;flex-wrap:wrap;
  font-size:13px;color:var(--ts-muted);gap:6px;
}
.ts-breadcrumb i{font-size:12px;color:#B5AFA3;}
.ts-breadcrumb a{color:var(--ts-muted);}
.ts-breadcrumb a:hover{color:var(--ts-red);}
.ts-breadcrumb .active{color:var(--ts-text);}

/* 文章主体 */
.ts-article-main{padding:34px 0 60px;}
.ts-article-paper{
  background:#fff;border-radius:20px;box-shadow:var(--ts-shadow-sm);
  padding:38px;
  border:1px solid rgba(0,0,0,.04);
}
.article-kicker{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--ts-red);color:#fff;font-size:12px;font-weight:600;
  padding:6px 12px;border-radius:999px;letter-spacing:.04em;
}
.article-title{
  font-size:38px;font-weight:760;line-height:1.26;color:var(--ts-text);
  margin:20px 0 0;
}
.article-meta{
  display:flex;flex-wrap:wrap;gap:14px 22px;
  padding:20px 0 24px;margin-top:20px;
  border-top:1px solid #F0EDE6;border-bottom:1px solid #F0EDE6;
  color:var(--ts-muted);font-size:13px;
}
.article-meta span{display:inline-flex;align-items:center;gap:7px;}
.article-meta i{color:var(--ts-red);}
.article-cover{
  border-radius:18px;overflow:hidden;margin:30px 0 34px;
  background:var(--ts-paper-deep);
}
.article-cover img{width:100%;aspect-ratio:16 / 9;object-fit:cover;}

.article-content{font-size:16px;color:#2A2C31;line-height:1.85;}
.article-content > *:last-child{margin-bottom:0;}
.article-content p{margin:0 0 26px;}
.article-content h2,.article-content h3{
  color:var(--ts-text);font-weight:700;
  margin:2.1em 0 .9em;line-height:1.4;
  border-left:4px solid var(--ts-red);
  padding-left:16px;
}
.article-content h2{font-size:26px;}
.article-content h3{font-size:20px;}
.article-content a{color:var(--ts-red);text-decoration:underline;text-underline-offset:3px;}
.article-content a:hover{color:var(--ts-red-dark);}
.article-content ul,.article-content ol{
  margin:0 0 28px;padding-left:0;
}
.article-content ul li{
  position:relative;padding-left:24px;margin-bottom:12px;
}
.article-content ul li::before{
  content:"";position:absolute;left:4px;top:.75em;
  width:8px;height:8px;border-radius:2px;background:var(--ts-red);
}
.article-content ol{counter-reset:article-list;}
.article-content ol li{
  position:relative;counter-increment:article-list;
  padding-left:38px;margin-bottom:12px;
}
.article-content ol li::before{
  content:counter(article-list);
  position:absolute;left:0;top:.1em;width:26px;height:26px;
  background:var(--ts-paper-deep);border-radius:50%;
  color:var(--ts-red);font-size:13px;font-weight:700;
  display:flex;align-items:center;justify-content:center;
}
.article-content blockquote{
  margin:34px 0;padding:28px 32px;
  background:var(--ts-paper);border-radius:18px;
  border-left:4px solid var(--ts-red);
  font-size:17px;color:#3C3F44;
}
.article-content img{border-radius:18px;margin:20px 0;}
.article-content table{width:100%;max-width:100%;border-collapse:collapse;margin:0 0 28px;}
.article-content table th,
.article-content table td{border:1px solid #E5E0D6;padding:12px 14px;font-size:15px;}
.article-content table th{background:var(--ts-paper-deep);font-weight:600;}
.article-content code{
  background:var(--ts-ink);color:var(--ts-lime);
  padding:2px 8px;border-radius:6px;font-size:.9em;
}
.article-tags{display:flex;flex-wrap:wrap;gap:10px;margin:34px 0 0;}
.ts-tag{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--ts-paper);color:var(--ts-muted);
  border:1px solid #E3DED4;border-radius:999px;
  font-size:13px;padding:6px 14px;
}

/* 文末导航 */
.ts-article-page-nav{
  display:grid;grid-template-columns:1fr 1fr;gap:16px;
  margin:36px 0 20px;padding:0;border-top:1px solid #EDE9E0;
}
.ts-page-nav-item{
  display:block;padding:22px 20px 4px;border-radius:16px;
  color:var(--ts-text);transition:background .2s ease,color .2s ease;
}
.ts-page-nav-item:hover{background:var(--ts-paper);color:var(--ts-red);}
.ts-page-nav-item span{display:block;font-size:12px;color:var(--ts-muted);margin-bottom:8px;}
.ts-page-nav-item strong{font-size:16px;font-weight:650;}
.article-back-btn{display:flex;justify-content:center;}
.article-back-btn a{display:inline-flex;}

/* 内容未找到 */
.ts-article-missing{
  background:#fff;border-radius:20px;box-shadow:var(--ts-shadow-sm);
  padding:90px 30px;text-align:center;border:1px solid rgba(0,0,0,.04);
}
.ts-article-missing i{font-size:44px;color:var(--ts-red);display:block;margin-bottom:20px;}
.ts-article-missing h1{font-size:34px;font-weight:750;margin:0 0 14px;}
.ts-article-missing p{color:var(--ts-muted);margin:0 0 28px;}
.ts-article-missing .ts-btn{display:inline-flex;}

/* 侧栏 */
.ts-sidebar{display:flex;flex-direction:column;gap:22px;}
.ts-side-card{background:#fff;border-radius:20px;padding:28px 26px;box-shadow:var(--ts-shadow-sm);border:1px solid rgba(0,0,0,.04);}
.ts-side-title{font-size:18px;font-weight:700;color:var(--ts-text);margin:0 0 18px;position:relative;padding-left:14px;}
.ts-side-title::before{content:"";position:absolute;left:0;top:.18em;width:4px;height:20px;border-radius:4px;background:var(--ts-red);}
.ts-side-list{display:flex;flex-direction:column;gap:4px;}
.ts-side-list li{margin:0;}
.ts-side-list a{
  display:flex;align-items:flex-start;gap:10px;
  padding:12px 10px;border-radius:12px;color:var(--ts-text);
  font-size:14px;line-height:1.5;
  transition:background .2s ease,color .2s ease;
}
.ts-side-list a i{margin-top:5px;color:var(--ts-red);font-size:12px;}
.ts-side-list a:hover{background:var(--ts-paper);color:var(--ts-red);}
.ts-side-note{
  background:var(--ts-ink);border-radius:20px;color:rgba(255,255,255,.9);
  padding:28px 26px;position:relative;overflow:hidden;
}
.ts-side-note::after{
  content:"";position:absolute;width:120px;height:120px;border-radius:50%;
  background:var(--ts-lime);opacity:.12;right:-46px;top:-36px;
}
.ts-side-note h4{color:#fff;font-size:18px;font-weight:700;margin:0 0 12px;}
.ts-side-note p{color:rgba(255,255,255,.58);font-size:14px;line-height:1.75;margin:0 0 18px;}
.ts-side-note .ts-btn{background:var(--ts-lime);color:#171A0F;border:0;height:42px;font-size:14px;font-weight:700;width:100%;}
.ts-side-note .ts-btn:hover{background:#D9FF83;color:#101216;transform:none;}

/* 相关推荐 */
.ts-related-section{padding:0 0 64px;}
.ts-section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:30px;}
.ts-section-title{font-size:30px;font-weight:700;line-height:1.3;margin:0;}
.ts-section-title em{font-style:normal;color:var(--ts-red);}
.ts-section-sub{color:var(--ts-muted);font-size:14px;margin:0;padding-bottom:6px;}
.ts-related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.ts-article-card{
  background:#fff;border-radius:20px;overflow:hidden;box-shadow:var(--ts-shadow-sm);
  border:1px solid rgba(0,0,0,.04);transition:transform .25s ease,box-shadow .25s ease;
}
.ts-article-card:hover{transform:translateY(-5px);box-shadow:var(--ts-shadow-lg);}
.ts-article-card-media{position:relative;overflow:hidden;aspect-ratio:16 / 9;background:var(--ts-paper-deep);}
.ts-article-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.ts-article-card:hover .ts-article-card-media img{transform:scale(1.03);}
.ts-article-card-label{
  position:absolute;top:14px;left:14px;z-index:2;
  background:var(--ts-red);color:#fff;font-size:11px;font-weight:600;
  padding:5px 10px;border-radius:999px;
  box-shadow:0 4px 12px rgba(0,0,0,.12);
}
.ts-article-card-body{padding:22px 24px 24px;}
.ts-article-card-body h3{font-size:18px;font-weight:650;line-height:1.55;margin:0 0 12px;}
.ts-article-card-body h3 a{color:var(--ts-text);}
.ts-article-card-body h3 a:hover{color:var(--ts-red);}
.ts-article-card-body p{font-size:14px;color:var(--ts-muted);line-height:1.7;margin:0 0 16px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.ts-article-card-meta{display:flex;align-items:center;gap:14px;font-size:12px;color:var(--ts-muted);}

/* FAQ 区域 */
.ts-faq-section{padding:72px 0;background:var(--ts-paper-deep);}
.ts-faq-grid{display:grid;grid-template-columns:0.9fr 1.4fr;gap:56px;}
.ts-faq-intro .ts-section-title{margin-bottom:16px;}
.ts-faq-intro p{color:var(--ts-muted);margin-bottom:24px;}
.ts-faq-list{border-bottom:1px solid #D9D5CB;}
.ts-faq-item{border-top:1px solid #D9D5CB;}
.ts-faq-q{
  background:none;border:0;width:100%;padding:22px 0;text-align:left;
  display:flex;justify-content:space-between;align-items:center;gap:20px;
  font-size:16px;font-weight:600;color:var(--ts-text);cursor:pointer;
  transition:color .2s ease;
}
.ts-faq-q:hover{color:var(--ts-red);}
.ts-faq-q .fa-plus{
  flex:0 0 auto;width:24px;height:24px;border-radius:50%;
  background:var(--ts-red);color:#fff;display:flex;align-items:center;justify-content:center;
  font-size:13px;transition:transform .25s ease,background .25s ease;
}
.ts-faq-item.active .ts-faq-q .fa-plus{transform:rotate(45deg);background:var(--ts-ink);}
.ts-faq-a{
  max-height:0;overflow:hidden;transition:max-height .3s ease;
  color:var(--ts-muted);font-size:15px;line-height:1.85;
}
.ts-faq-a-inner{padding:0 0 24px;}
.ts-faq-a p:last-child{margin-bottom:0;}
.ts-clean-btn{background:none;border:0;}

/* CTA */
.ts-cta-band{padding:80px 0;background:var(--ts-ink);position:relative;overflow:hidden;}
.ts-cta-band::before{
  content:"";position:absolute;width:320px;height:320px;border-radius:50%;
  background:var(--ts-lime);opacity:.10;right:-120px;top:-130px;
}
.ts-cta-band::after{
  content:"";position:absolute;width:200px;height:260px;
  border:2px solid rgba(255,255,255,.08);transform:rotate(18deg);
  left:-50px;bottom:-120px;border-radius:32px;
}
.ts-cta-inner{
  position:relative;z-index:2;text-align:center;max-width:840px;margin:0 auto;
}
.ts-cta-inner h2{color:#fff;font-size:34px;font-weight:750;line-height:1.4;margin-bottom:18px;}
.ts-cta-inner p{color:rgba(255,255,255,.62);font-size:16px;margin-bottom:30px;}
.ts-cta-actions{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;}
.ts-btn-outline-light{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  height:48px;padding:0 28px;border-radius:999px;border:1px solid rgba(255,255,255,.35);
  background:transparent;color:#fff;font-weight:600;font-size:15px;
  transition:all .2s ease;
}
.ts-btn-outline-light:hover{background:rgba(255,255,255,.1);color:#fff;transform:translateY(-2px);}

/* 页脚 */
.ts-footer{background:var(--ts-ink);color:rgba(255,255,255,.76);padding:68px 0 0;}
.ts-footer .footer-brand{
  color:#fff;font-size:19px;font-weight:700;line-height:1.4;
}
.footer-brand-text{color:rgba(255,255,255,.48);font-size:14px;line-height:1.85;}
.ts-footer .footer-title{
  color:#fff;font-size:16px;font-weight:600;margin:0 0 18px;
  letter-spacing:.02em;
}
.ts-footer a{
  display:block;color:rgba(255,255,255,.52);font-size:14px;
  padding:5px 0;transition:color .2s ease,padding-left .2s ease;
}
.ts-footer a:hover{color:var(--ts-lime);padding-left:6px;}
.ts-footer p{color:rgba(255,255,255,.48);font-size:14px;line-height:1.85;}
.ts-footer .ts-logo-badge{margin-right:0;}
.ts-footer-bottom{
  margin-top:52px;padding:24px 0 30px;
  border-top:1px solid rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
  font-size:13px;color:rgba(255,255,255,.36);
}

/* 响应式 */
@media (max-width:1399.98px){
  .ts-search-shell{max-width:520px;}
  .ts-logo-text strong{font-size:16px;}
}
@media (max-width:1199.98px){
  .ts-desktop-search{display:none !important;}
  .ts-header-actions{display:none !important;}
  .ts-mobile-toggle{display:inline-flex;justify-self:end;}
  .ts-header-row{grid-template-columns:minmax(0,1fr) auto;}
  .ts-logo-text strong{font-size:18px;}
  .ts-nav-item-hospital{display:none;}
  .ts-article-main{padding:28px 0 48px;}
  .ts-related-grid{gap:18px;}
}
@media (max-width:991.98px){
  .ts-navbar{min-height:44px;gap:8px 22px;}
  .ts-nav-link{font-size:14px;padding:12px 0;}
  .ts-related-grid{grid-template-columns:1fr;}
  .ts-faq-grid{grid-template-columns:1fr;gap:32px;}
  .ts-article-paper{padding:28px 24px;}
  .article-title{font-size:34px;}
  .ts-cta-inner h2{font-size:29px;}
  .ts-section-title{font-size:27px;}
}
@media (max-width:767.98px){
  .ts-article-main{padding:20px 0 36px;}
  .ts-article-paper{padding:22px 18px;border-radius:16px;}
  .article-title{font-size:30px;line-height:1.32;}
  .article-kicker{font-size:11px;}
  .article-meta{gap:10px 14px;}
  .article-cover{border-radius:14px;margin:22px 0 26px;}
  .article-content{font-size:15px;line-height:1.8;}
  .article-content h2{font-size:22px;}
  .article-content h3{font-size:19px;}
  .article-content blockquote{padding:22px 20px;}
  .ts-article-page-nav{grid-template-columns:1fr;gap:8px;}
  .ts-page-nav-item{padding:16px 12px 4px;}
  .ts-sidebar{margin-top:26px;}
  .ts-cta-band{padding:64px 0;}
  .ts-cta-inner h2{font-size:26px;}
  .ts-footer{padding-top:52px;}
  .ts-footer-bottom{justify-content:center;text-align:center;}
  .ts-footer-bottom span{display:block;width:100%;}
}
@media (max-width:575.98px){
  .ts-header-row{min-height:72px;gap:12px;}
  .ts-logo-badge{width:38px;height:38px;font-size:15px;border-radius:11px;}
  .ts-logo-text strong{font-size:16px;}
  .ts-logo-text small{font-size:10px;}
  .ts-mobile-toggle{width:40px;height:40px;}
  .ts-breadcrumb-wrap{padding-top:18px;}
  .ts-breadcrumb{font-size:12px;}
  .ts-article-paper{padding:20px 16px;}
  .article-title{font-size:27px;}
  .article-cover{aspect-ratio:4/3;}
  .article-cover img{aspect-ratio:4/3;}
  .ts-section-title{font-size:24px;}
  .ts-section-head{display:block;}
  .ts-section-sub{margin-top:10px;}
  .ts-cta-actions .ts-btn{width:100%;}
  .ts-cta-actions .ts-btn-outline-light{width:100%;}
  .ts-faq-q{font-size:15px;padding:18px 0;}
}

/* roulang page: category1 */
:root {
            --brand-red: #E8443A;
            --brand-red-dark: #A92C2B;
            --acid-lime: #C8F161;
            --ink-black: #101216;
            --ink-gray: #1D2026;
            --paper: #F7F5F0;
            --paper-deep: #EFECE4;
            --line-light: #DCD8CE;
            --text-main: #202226;
            --text-sub: #5F646D;
            --white: #ffffff;
            --shadow-sm: 0 2px 10px rgba(0, 0, 0, .04);
            --shadow-md: 0 12px 28px rgba(0, 0, 0, .07);
            --radius: 18px;
            --radius-lg: 24px;
            --pill: 999px;
            --container-w: 1320px;
            --font-cn: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            --bs-primary: var(--brand-red);
            --bs-link-color: var(--brand-red);
            --bs-body-color: var(--text-main);
            --bs-border-radius: 16px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-cn);
            color: var(--text-main);
            background: var(--paper);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--brand-red);
            text-decoration: none;
            transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
        }

        a:hover {
            color: var(--brand-red-dark);
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: inline-block;
            vertical-align: middle;
        }

        button,
        input {
            font-family: inherit;
        }

        .container-xxl {
            max-width: var(--container-w);
            padding-left: 24px;
            padding-right: 24px;
        }

        .ts-section {
            padding: 88px 0;
        }

        .ts-section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 44px;
        }

        .ts-section-head h2 {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 4px;
            letter-spacing: .01em;
        }

        .ts-section-head p {
            color: var(--text-sub);
            margin: 0;
            max-width: 600px;
        }

        .ts-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .08em;
            color: var(--brand-red);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .ts-eyebrow::before {
            content: "";
            width: 24px;
            height: 3px;
            background: var(--brand-red);
            border-radius: 3px;
        }

        .ts-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 24px;
            border-radius: var(--pill);
            border: 1px solid transparent;
            font-size: 15px;
            font-weight: 600;
            line-height: 1;
            text-decoration: none;
            cursor: pointer;
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
            white-space: nowrap;
        }

        .ts-btn-primary {
            background: var(--brand-red);
            color: #fff;
            box-shadow: 0 8px 20px rgba(232, 68, 58, .24);
        }

        .ts-btn-primary:hover {
            background: var(--brand-red-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(169, 44, 43, .22);
        }

        .ts-btn-primary:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 6px rgba(0, 0, 0, .15);
        }

        .ts-btn-outline {
            background: rgba(255, 255, 255, .7);
            color: var(--text-main);
            border-color: #d8d3c8;
        }

        .ts-btn-outline:hover {
            color: var(--brand-red);
            border-color: var(--brand-red);
            background: #fff;
            transform: translateY(-2px);
        }

        .ts-btn-outline-light {
            background: transparent;
            border-color: rgba(255, 255, 255, .55);
            color: #fff;
        }

        .ts-btn-outline-light:hover {
            background: rgba(255, 255, 255, .12);
            color: #fff;
            border-color: #fff;
            transform: translateY(-2px);
        }

        .ts-btn-light {
            background: var(--white);
            color: var(--text-main);
            box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
        }

        .ts-btn-light:hover {
            transform: translateY(-2px);
            color: var(--brand-red-dark);
            box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
        }

        .ts-btn-sm {
            min-height: 40px;
            padding: 0 18px;
            font-size: 14px;
        }

        .ts-text-sub {
            color: var(--text-sub);
        }

        .ts-badge-red {
            background: var(--brand-red);
            color: #fff;
            display: inline-block;
            padding: 4px 12px;
            border-radius: var(--pill);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .03em;
        }

        .ts-badge-lime {
            background: var(--acid-lime);
            color: var(--text-main);
            display: inline-block;
            padding: 4px 12px;
            border-radius: var(--pill);
            font-size: 12px;
            font-weight: 600;
        }

        .ts-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, .03);
            height: 100%;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .ts-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: rgba(232, 68, 58, .08);
        }

        /* 已生成首页导航样式 */
        .ts-header {
            position: sticky;
            top: 0;
            z-index: 1035;
            background: rgba(247, 245, 240, .88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(16, 18, 22, .06);
        }

        .ts-header-row {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: nowrap;
            min-height: 80px;
        }

        .ts-logo {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-width: 230px;
            color: var(--text-main);
        }

        .ts-logo:hover {
            color: var(--text-main);
        }

        .ts-logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            border-radius: 15px;
            background: var(--brand-red);
            color: #fff;
            font-size: 17px;
            font-weight: 800;
            letter-spacing: .02em;
            flex: 0 0 auto;
            box-shadow: 0 0 0 4px rgba(232, 68, 58, .12);
        }

        .ts-logo-text strong {
            display: block;
            font-size: 19px;
            font-weight: 750;
            line-height: 1.2;
            letter-spacing: .01em;
        }

        .ts-logo-text small {
            display: block;
            font-size: 10px;
            letter-spacing: .16em;
            color: var(--text-sub);
            margin-top: 2px;
        }

        .ts-search-shell {
            position: relative;
            flex: 1 1 auto;
            max-width: 640px;
            margin: 0 auto;
        }

        .ts-search-form {
            display: flex;
            align-items: center;
            height: 48px;
            border-radius: var(--pill);
            background: rgba(255, 255, 255, .94);
            border: 1px solid rgba(32, 34, 38, .12);
            padding-left: 18px;
            padding-right: 6px;
            transition: border-color .2s, box-shadow .2s, background .2s;
        }

        .ts-search-form:focus-within {
            border-color: var(--brand-red);
            box-shadow: 0 0 0 4px rgba(232, 68, 58, .1);
        }

        .search-icon {
            color: var(--text-sub);
            font-size: 16px;
            margin-right: 12px;
        }

        .ts-search-form input {
            border: 0;
            background: transparent;
            flex: 1;
            min-width: 0;
            font-size: 15px;
            color: var(--text-main);
            outline: none;
        }

        .ts-search-form input::placeholder {
            color: #969b9f;
            font-size: 14px;
        }

        .ts-search-submit {
            border: 0;
            background: var(--ink-black);
            color: #fff;
            height: 36px;
            padding: 0 20px;
            border-radius: var(--pill);
            font-size: 14px;
            font-weight: 600;
            transition: background .2s ease, transform .2s ease;
        }

        .ts-search-submit:hover {
            background: var(--brand-red);
            color: #fff;
        }

        .ts-search-panel {
            position: absolute;
            top: calc(100% + 12px);
            left: 0;
            right: 0;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
            padding: 16px 18px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: opacity .2s, transform .2s, visibility .2s;
            z-index: 30;
        }

        .ts-search-shell:focus-within .ts-search-panel {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .ts-search-panel .panel-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-sub);
            margin-bottom: 10px;
        }

        .search-hot-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .search-hot-tags a {
            display: inline-block;
            padding: 6px 14px;
            border-radius: var(--pill);
            background: var(--paper);
            border: 1px solid transparent;
            font-size: 13px;
            color: var(--text-main);
        }

        .search-hot-tags a:hover {
            color: var(--brand-red);
            border-color: rgba(232, 68, 58, .18);
            background: #fff;
        }

        .ts-header-actions {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ts-header-action {
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-main);
            padding: 0 8px;
            min-height: 40px;
            border-radius: var(--pill);
            transition: background .2s, color .2s;
        }

        .ts-header-action:hover {
            color: var(--brand-red);
            background: rgba(232, 68, 58, .07);
        }

        .ts-navbar {
            display: flex;
            align-items: center;
            gap: 4px 8px;
            padding: 10px 0 8px;
            flex-wrap: nowrap;
        }

        .ts-nav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            color: var(--text-main);
            font-size: 15px;
            font-weight: 500;
            border-radius: var(--pill);
            transition: color .2s, background .2s, transform .2s;
            white-space: nowrap;
        }

        .ts-nav-link:hover {
            color: var(--brand-red);
            background: rgba(232, 68, 58, .06);
        }

        .ts-nav-link.active {
            color: var(--brand-red);
            background: rgba(232, 68, 58, .08);
            font-weight: 600;
        }

        .ts-nav-link .badge-dot {
            display: none;
        }

        .ts-nav-link.active .badge-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--brand-red);
            border-radius: 50%;
            margin-left: 2px;
        }

        .ts-nav-item-hospital {
            margin-left: auto;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-sub);
            padding-left: 22px;
            position: relative;
            white-space: nowrap;
        }

        .ts-nav-item-hospital::before {
            content: "";
            width: 1px;
            height: 16px;
            background: var(--line-light);
            position: absolute;
            left: 6px;
            top: 50%;
            transform: translateY(-50%);
        }

        /* 分类页 Hero */
        .category-hero {
            position: relative;
            overflow: hidden;
            color: #fff;
            background: var(--ink-black);
            padding: 92px 0 96px;
        }

        .category-hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: .24;
        }

        .category-hero-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(16, 18, 22, .96) 0%, rgba(16, 18, 22, .82) 55%, rgba(16, 18, 22, .35) 100%);
        }

        .category-hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            letter-spacing: .1em;
            color: var(--acid-lime);
            background: rgba(200, 241, 97, .1);
            padding: 8px 16px;
            border-radius: var(--pill);
            margin-bottom: 18px;
        }

        .category-hero h1 {
            font-size: 46px;
            font-weight: 750;
            line-height: 1.16;
            color: #fff;
            margin: 0 0 20px;
            letter-spacing: .01em;
        }

        .category-hero-subcopy {
            font-size: 17px;
            max-width: 630px;
            color: rgba(255, 255, 255, .72);
            line-height: 1.8;
            margin-bottom: 34px;
        }

        .category-hero-deco {
            position: absolute;
            width: 260px;
            height: 260px;
            right: -80px;
            bottom: -90px;
            border-radius: 38px;
            background: var(--brand-red);
            transform: rotate(18deg);
            opacity: .2;
            z-index: 1;
        }

        .category-hero-deco::before {
            content: attr(data-num);
            position: absolute;
            font-size: 96px;
            font-weight: 800;
            right: 28px;
            top: 50px;
            color: #fff;
            opacity: .6;
        }

        .breadcrumb-ts {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            padding: 18px 0 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, .5);
        }

        .breadcrumb-ts a {
            color: rgba(255, 255, 255, .75);
            text-decoration: none;
        }

        .breadcrumb-ts a:hover {
            color: var(--acid-lime);
        }

        .breadcrumb-ts i {
            font-size: 11px;
            color: rgba(255, 255, 255, .4);
        }

        .category-hero .container-xxl {
            position: relative;
            z-index: 3;
        }

        /* 登录前准备三栏卡片 */
        .ts-guide-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: -56px;
            position: relative;
            z-index: 5;
        }

        .ts-guide-card {
            min-height: 260px;
            padding: 32px 28px 26px;
            cursor: default;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .ts-guide-card::after {
            content: "";
            position: absolute;
            left: 30px;
            right: 30px;
            bottom: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(232, 68, 58, .25), transparent);
            transition: background .3s;
            opacity: 0;
        }

        .ts-guide-card:hover::after {
            opacity: 1;
        }

        .ts-icon-badge {
            width: 54px;
            height: 54px;
            border-radius: 17px;
            background: rgba(232, 68, 58, .08);
            color: var(--brand-red);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 23px;
            margin-bottom: 20px;
            transition: background .3s, color .3s, transform .3s;
        }

        .ts-guide-card:hover .ts-icon-badge {
            background: var(--brand-red);
            color: #fff;
            transform: rotate(-5deg) scale(.95);
        }

        .ts-guide-card h3 {
            font-size: 19px;
            font-weight: 650;
            line-height: 1.45;
            margin-bottom: 12px;
            color: var(--ink-black);
        }

        .ts-guide-card p {
            font-size: 15px;
            line-height: 1.8;
            color: #6B7078;
            flex: 1;
            margin-bottom: 20px;
        }

        .ts-guide-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-red);
        }

        .ts-guide-link i {
            transition: transform .2s;
        }

        .ts-guide-link:hover i {
            transform: translateX(4px);
        }

        .ts-card-dark {
            background: var(--ink-black);
            border-color: var(--ink-black);
        }

        .ts-card-dark h3,
        .ts-card-dark p {
            color: rgba(255, 255, 255, .82);
        }

        .ts-card-dark .ts-icon-badge {
            background: rgba(200, 241, 97, .16);
            color: var(--acid-lime);
        }

        /* 两行简介 + 图 */
        .ts-intro-duo {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 64px;
            align-items: center;
        }

        .ts-intro-copy h2 {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.35;
            margin-bottom: 24px;
        }

        .ts-intro-copy p {
            color: var(--text-sub);
            font-size: 16px;
            line-height: 1.85;
            margin-bottom: 20px;
        }

        .ts-intro-media {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .ts-intro-media img {
            width: 100%;
            display: block;
            aspect-ratio: 16/11;
            object-fit: cover;
        }

        .ts-intro-media::after {
            content: "";
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: inherit;
            pointer-events: none;
        }

        .ts-intro-note {
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 18px;
            background: rgba(16, 18, 22, .62);
            color: #fff;
            backdrop-filter: blur(10px);
            border-radius: 14px;
            padding: 14px 16px;
            font-size: 14px;
            letter-spacing: .02em;
            border-left: 3px solid var(--acid-lime);
        }

        /* 深色保障面板 */
        .ts-protect-panel {
            background: var(--ink-black);
            position: relative;
            overflow: hidden;
            padding: 88px 0;
        }

        .ts-protect-panel-bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: .15;
        }

        .ts-protect-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 38px;
            position: relative;
            z-index: 2;
            margin-top: 40px;
        }

        .ts-protect-item {
            padding: 28px 10px 10px 0;
            border-top: 1px solid rgba(255, 255, 255, .14);
            color: rgba(255, 255, 255, .5);
            transition: border-color .25s;
        }

        .ts-protect-item:hover {
            border-top-color: var(--acid-lime);
        }

        .ts-protect-num {
            font-size: 20px;
            font-weight: 800;
            color: var(--acid-lime);
            font-variant-numeric: tabular-nums;
            margin-bottom: 16px;
            display: block;
        }

        .ts-protect-item h3 {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }

        .ts-protect-item p {
            font-size: 14px;
            line-height: 1.75;
            margin-bottom: 0;
            color: rgba(255, 255, 255, .48);
        }

        .ts-panel-title {
            color: #fff;
            font-size: 30px;
            font-weight: 700;
            line-height: 1.35;
            max-width: 680px;
            margin-bottom: 12px;
        }

        .ts-panel-lead {
            color: rgba(255, 255, 255, .55);
            font-size: 16px;
            max-width: 620px;
            position: relative;
            z-index: 2;
        }

        /* 登录流程步骤 */
        .ts-steps-wrap {
            padding: 88px 0;
            background: var(--paper);
        }

        .ts-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
            margin-top: 40px;
        }

        .ts-step-card {
            background: #fff;
            border-radius: 18px;
            padding: 30px 24px;
            border: 1px solid rgba(0, 0, 0, .03);
            box-shadow: var(--shadow-sm);
            position: relative;
            height: 100%;
            transition: transform .25s, box-shadow .25s;
        }

        .ts-step-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .ts-step-index {
            font-size: 13px;
            color: var(--brand-red);
            font-weight: 700;
            letter-spacing: .08em;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ts-step-index::after {
            content: "";
            height: 1px;
            flex: 1;
            background: var(--line-light);
        }

        .ts-step-card h3 {
            font-size: 18px;
            font-weight: 650;
            margin-bottom: 12px;
        }

        .ts-step-card p {
            font-size: 15px;
            color: var(--text-sub);
            line-height: 1.8;
            margin: 0;
        }

        /* 场景角色 */
        .ts-role-section {
            background: #fff;
            padding: 88px 0;
        }

        .ts-role-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .ts-role-item {
            display: flex;
            gap: 18px;
            padding: 22px 24px;
            background: var(--paper);
            border-radius: 16px;
            border: 1px solid transparent;
            transition: border-color .2s, background .2s;
        }

        .ts-role-item:hover {
            border-color: rgba(232, 68, 58, .16);
            background: #fff;
        }

        .ts-role-icon {
            flex: 0 0 auto;
            width: 42px;
            height: 42px;
            border-radius: 13px;
            background: rgba(200, 241, 97, .3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-main);
        }

        .ts-role-item h4 {
            font-size: 17px;
            margin-bottom: 6px;
            font-weight: 650;
        }

        .ts-role-item p {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.75;
            margin-bottom: 0;
        }

        /* FAQ */
        .ts-faq-section {
            padding: 88px 0 92px;
            background: var(--paper);
        }

        .ts-faq-left h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .ts-faq-left p {
            color: var(--text-sub);
            max-width: 360px;
            margin-bottom: 28px;
        }

        .ts-faq-contact {
            background: var(--ink-black);
            color: #fff;
            border-radius: 18px;
            padding: 22px;
            max-width: 360px;
        }

        .ts-faq-contact h5 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ts-faq-contact p {
            color: rgba(255, 255, 255, .55);
            font-size: 14px;
            margin: 0;
        }

        .ts-accordion-custom {
            background: #fff;
            padding: 8px 28px;
            border-radius: 18px;
            box-shadow: var(--shadow-sm);
        }

        .ts-accordion-custom .accordion-item {
            background: transparent;
            border: 0;
            border-top: 1px solid rgba(32, 34, 38, .08);
        }

        .ts-accordion-custom .accordion-item:first-child {
            border-top: 0;
        }

        .ts-accordion-custom .accordion-button {
            padding: 18px 0;
            font-size: 17px;
            font-weight: 650;
            color: var(--text-main);
            background: transparent;
            box-shadow: none;
            border: 0;
            border-radius: 0;
            text-align: left;
            letter-spacing: .01em;
        }

        .ts-accordion-custom .accordion-button:hover {
            color: var(--brand-red);
        }

        .ts-accordion-custom .accordion-button:not(.collapsed) {
            color: var(--ink-black);
            background: transparent;
            border: 0;
            box-shadow: none;
        }

        .ts-accordion-custom .accordion-button::after {
            content: "\f067";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            width: auto;
            height: auto;
            background: none;
            color: var(--brand-red);
            font-size: 15px;
            transform: none;
            margin-left: 16px;
            flex: 0 0 auto;
        }

        .ts-accordion-custom .accordion-button:not(.collapsed)::after {
            content: "\f00d";
            transform: none;
        }

        .ts-accordion-custom .accordion-body {
            padding: 0 0 24px;
            color: var(--text-sub);
            font-size: 15px;
            line-height: 1.85;
        }

        /* 相关标签 */
        .ts-tags-block {
            background: #fff;
            padding: 54px 0;
        }

        .ts-tags-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            margin-right: 12px;
        }

        .ts-tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .ts-tag-list a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--paper);
            color: var(--text-sub);
            font-size: 14px;
            padding: 9px 18px;
            border-radius: var(--pill);
            min-height: 38px;
            transition: color .2s, background .2s, border-color .2s;
            border: 1px solid transparent;
        }

        .ts-tag-list a:hover {
            background: rgba(232, 68, 58, .07);
            color: var(--brand-red);
            border-color: rgba(232, 68, 58, .18);
        }

        .ts-tag-list a i {
            font-size: 12px;
        }

        /* CTA */
        .ts-cta-band {
            background: var(--brand-red);
            position: relative;
            overflow: hidden;
            color: #fff;
            padding: 68px 0;
        }

        .ts-cta-band::before {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            background: rgba(255, 255, 255, .14);
            border-radius: 40px;
            left: -80px;
            top: -120px;
            transform: rotate(18deg);
        }

        .ts-cta-band::after {
            content: "";
            position: absolute;
            width: 130px;
            height: 130px;
            border: 14px solid var(--acid-lime);
            border-radius: 30px;
            right: 50px;
            bottom: -52px;
            transform: rotate(35deg);
            opacity: .55;
        }

        .ts-cta-inner {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
            flex-wrap: nowrap;
        }

        .ts-cta-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 6px;
        }

        .ts-cta-text {
            font-size: 16px;
            color: rgba(255, 255, 255, .8);
            max-width: 640px;
        }

        .ts-cta-actions {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .ts-cta-band .ts-btn {
            border-radius: var(--pill);
        }

        .ts-btn-dark {
            background: var(--ink-black);
            color: #fff;
        }

        .ts-btn-dark:hover {
            background: #000;
            color: #fff;
            transform: translateY(-2px);
        }

        /* Footer */
        .ts-footer {
            background: var(--ink-black);
            color: rgba(255, 255, 255, .6);
            padding: 72px 0 0;
            position: relative;
        }

        .ts-footer .footer-title {
            font-size: 15px;
            font-weight: 650;
            color: #fff;
            margin-bottom: 18px;
            letter-spacing: .05em;
        }

        .ts-footer .footer-brand {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
        }

        .ts-footer .footer-brand-text {
            font-size: 15px;
            line-height: 1.9;
            color: rgba(255, 255, 255, .45);
        }

        .ts-footer a {
            display: block;
            color: rgba(255, 255, 255, .5);
            font-size: 15px;
            line-height: 2;
            width: fit-content;
            text-decoration: none;
            transition: color .2s, padding-left .2s;
        }

        .ts-footer a:hover {
            color: var(--acid-lime);
            padding-left: 4px;
        }

        .ts-footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-top: 56px;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, .08);
            font-size: 13px;
            color: rgba(255, 255, 255, .35);
        }

        /* Responsive */
        @media (max-width: 1399px) {
            .ts-logo {
                min-width: 200px;
            }

            .ts-logo-text strong {
                font-size: 17px;
            }

            .ts-search-shell {
                max-width: 520px;
            }
        }

        @media (max-width: 1199px) {
            .ts-header-row {
                flex-wrap: wrap;
                padding: 12px 0;
                row-gap: 12px;
            }

            .ts-logo {
                min-width: 200px;
            }

            .ts-search-shell {
                order: 3;
                flex-basis: 100%;
                max-width: none;
                margin: 0;
            }

            .ts-search-form input {
                width: 100%;
            }

            .ts-navbar {
                overflow-x: auto;
                scrollbar-width: none;
            }

            .ts-navbar::-webkit-scrollbar {
                display: none;
            }

            .ts-guide-cards {
                grid-template-columns: repeat(3, 1fr);
            }

            .ts-intro-duo {
                gap: 30px;
            }

            .ts-steps {
                gap: 14px;
            }

            .ts-step-card {
                padding: 20px;
            }

            .ts-protect-grid {
                gap: 20px;
            }
        }

        @media (max-width: 991px) {
            .ts-section {
                padding: 64px 0;
            }

            .ts-section-head {
                align-items: flex-start;
                flex-direction: column;
                gap: 8px;
                margin-bottom: 32px;
            }

            .category-hero {
                padding: 68px 0;
            }

            .category-hero h1 {
                font-size: 36px;
            }

            .ts-guide-cards {
                grid-template-columns: 1fr;
                margin-top: 32px;
            }

            .ts-intro-duo {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .ts-intro-media img {
                aspect-ratio: 16/10;
            }

            .ts-steps {
                grid-template-columns: 1fr 1fr;
            }

            .ts-protect-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }

            .ts-role-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }

            .ts-cta-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .ts-cta-actions {
                flex-wrap: wrap;
            }

            .ts-faq-section .row {
                row-gap: 24px;
            }

            .ts-navbar {
                gap: 2px;
            }

            .ts-nav-item-hospital {
                display: none;
            }
        }

        @media (max-width: 767px) {
            body {
                font-size: 15px;
            }

            .ts-section {
                padding: 48px 0;
            }

            .ts-section-head h2 {
                font-size: 24px;
            }

            .container-xxl {
                padding-left: 20px;
                padding-right: 20px;
            }

            .ts-header-row {
                min-height: auto;
                gap: 6px;
            }

            .ts-logo {
                min-width: 0;
            }

            .ts-logo-badge {
                width: 42px;
                height: 42px;
                border-radius: 14px;
                font-size: 15px;
            }

            .ts-logo-text strong {
                font-size: 16px;
            }

            .ts-logo-text small {
                font-size: 9px;
            }

            .ts-header-actions {
                margin-left: auto;
                gap: 4px;
            }

            .ts-header-action {
                display: none;
            }

            .ts-search-form {
                height: 46px;
            }

            .ts-navbar {
                padding-top: 6px;
            }

            .ts-nav-link {
                font-size: 14px;
                padding: 8px 12px;
            }

            .category-hero {
                padding: 52px 0 60px;
            }

            .category-hero h1 {
                font-size: 30px;
                line-height: 1.28;
            }

            .category-hero-subcopy {
                font-size: 16px;
            }

            .breadcrumb-ts {
                font-size: 12px;
            }

            .ts-intro-copy h2 {
                font-size: 24px;
            }

            .ts-panel-title {
                font-size: 24px;
            }

            .ts-protect-panel {
                padding: 64px 0;
            }

            .ts-protect-grid {
                grid-template-columns: 1fr;
                margin-top: 28px;
            }

            .ts-steps {
                grid-template-columns: 1fr;
                margin-top: 24px;
            }

            .ts-step-card {
                padding: 20px;
            }

            .ts-role-section {
                padding: 48px 0;
            }

            .ts-role-grid {
                grid-template-columns: 1fr;
            }

            .ts-faq-section {
                padding: 48px 0;
            }

            .ts-faq-left p {
                max-width: none;
            }

            .ts-faq-contact {
                max-width: none;
            }

            .ts-cta-title {
                font-size: 22px;
            }

            .ts-cta-actions .ts-btn {
                width: 100%;
            }

            .ts-cta-action-inner {
                width: 100%;
            }

            .ts-footer {
                padding-top: 56px;
            }

            .ts-footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                margin-top: 40px;
            }

            .ts-tag-list {
                row-gap: 8px;
            }

            .ts-cta-band {
                padding: 48px 0;
            }
        }

        @media (max-width: 575px) {
            .container-xxl {
                padding-left: 16px;
                padding-right: 16px;
            }

            .ts-logo {
                flex-direction: row;
            }

            .ts-logo-badge {
                width: 40px;
                height: 40px;
                border-radius: 13px;
            }

            .ts-logo-text strong {
                font-size: 15px;
            }

            .ts-logo-text small {
                font-size: 8px;
                letter-spacing: .08em;
            }

            .ts-header-actions .ts-btn {
                min-height: 38px;
                padding: 0 16px;
                font-size: 13px;
            }

            .ts-search-form {
                padding-left: 14px;
            }

            .ts-search-form input {
                font-size: 13px;
            }

            .ts-search-form input::placeholder {
                font-size: 13px;
            }

            .ts-search-submit {
                padding: 0 14px;
                font-size: 13px;
            }

            .ts-search-panel {
                padding: 12px 14px;
                margin-top: 6px;
            }

            .ts-search-panel .panel-title {
                font-size: 12px;
            }

            .ts-btn {
                min-width: 0;
            }

            .ts-nav-link {
                padding: 8px 10px;
            }

            .ts-breadcrumb-holder {
                overflow-x: auto;
            }

            .ts-guide-card {
                padding: 24px 20px;
                border-radius: 16px;
            }

            .ts-card {
                padding: 24px 20px;
                border-radius: 16px;
            }

            .ts-icon-badge {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }

            .ts-accordion-custom {
                padding: 4px 16px;
            }

            .ts-accordion-custom .accordion-button {
                font-size: 16px;
                padding: 16px 0;
            }
        }

        @media (max-width: 420px) {
            .ts-logo-text small {
                display: none;
            }

            .ts-logo-badge {
                margin-right: 2px;
            }

            .ts-logo {
                gap: 8px;
            }

            .ts-header-actions .ts-btn {
                padding: 0 14px;
            }
        }

/* roulang page: category2 */
:root {
            --brand-red: #E8443A;
            --brand-red-dark: #A92C2B;
            --acid-lime: #C8F161;
            --ink-black: #101216;
            --ink-gray: #1D2026;
            --paper: #F7F5F0;
            --paper-deep: #EFECE4;
            --line-light: #DCD8CE;
            --text-main: #202226;
            --text-sub: #5F646D;
            --white: #ffffff;
            --radius: 18px;
            --radius-sm: 12px;
            --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.03);
            --shadow-hover: 0 18px 36px rgba(0, 0, 0, 0.10);
            --space-section: 88px;
            --bs-primary: var(--brand-red);
            --bs-body-color: var(--text-main);
            --bs-link-color: var(--brand-red);
            --bs-border-radius: var(--radius-sm);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--paper);
            color: var(--text-main);
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Segoe UI", sans-serif;
            font-size: 16px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease, background .2s ease, border .2s ease, box-shadow .2s ease, transform .2s ease;
        }

        button,
        input {
            font-family: inherit;
        }

        h1,
        h2,
        h3,
        h4,
        p,
        ul {
            margin: 0;
        }

        ul {
            padding: 0;
            list-style: none;
        }

        h1,
        h2,
        h3 {
            letter-spacing: -0.02em;
            color: var(--text-main);
        }

        .container-xxl {
            max-width: 1320px;
        }

        /* Header */
        .ts-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: rgba(247, 245, 240, .88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(0, 0, 0, .06);
        }

        .ts-header-row {
            min-height: 80px;
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 12px 0;
        }

        .ts-logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .ts-logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            background: var(--brand-red);
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            border-radius: 14px;
            box-shadow: 0 8px 18px rgba(232, 68, 58, .24);
            transform: rotate(-3deg);
            letter-spacing: 0;
        }

        .ts-logo-text {
            line-height: 1.2;
        }

        .ts-logo-text strong {
            display: block;
            font-size: 18px;
            font-weight: 800;
            color: var(--ink-black);
            letter-spacing: .01em;
        }

        .ts-logo-text small {
            display: block;
            font-size: 10px;
            letter-spacing: .16em;
            color: var(--text-sub);
            margin-top: 2px;
        }

        .ts-search-shell {
            position: relative;
            flex: 1 1 auto;
            max-width: 620px;
            margin: 0 auto;
        }

        .ts-search-form {
            display: flex;
            align-items: center;
            background: var(--white);
            border: 1px solid var(--line-light);
            border-radius: 999px;
            height: 48px;
            padding: 0 6px 0 18px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
            transition: border-color .2s, box-shadow .2s;
        }

        .ts-search-form:focus-within {
            border-color: var(--brand-red);
            box-shadow: 0 0 0 4px rgba(232, 68, 58, .10);
        }

        .ts-search-form .search-icon {
            color: var(--text-sub);
            font-size: 15px;
            margin-right: 12px;
        }

        .ts-search-form input {
            flex: 1;
            border: 0;
            outline: 0;
            background: transparent;
            font-size: 14px;
            line-height: 20px;
            min-width: 0;
            color: var(--text-main);
        }

        .ts-search-submit {
            border: 0;
            background: var(--brand-red);
            color: #fff;
            height: 36px;
            padding: 0 20px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            transition: background-color .2s, transform .2s;
        }

        .ts-search-submit:hover {
            background: var(--brand-red-dark);
        }

        .ts-search-panel {
            position: absolute;
            left: 0;
            right: 0;
            top: calc(100% + 12px);
            background: #fff;
            border: 1px solid var(--line-light);
            border-radius: 16px;
            padding: 16px 18px;
            box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: .2s ease;
            z-index: 12;
        }

        .ts-search-shell:focus-within .ts-search-panel {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .ts-search-panel .panel-title {
            font-size: 13px;
            color: var(--text-sub);
            margin-bottom: 10px;
        }

        .search-hot-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .search-hot-tags a {
            padding: 6px 14px;
            background: var(--paper);
            border-radius: 999px;
            font-size: 13px;
            color: var(--text-sub);
            border: 1px solid transparent;
        }

        .search-hot-tags a:hover {
            color: var(--brand-red);
            border-color: var(--brand-red);
            background: rgba(232, 68, 58, .06);
        }

        .ts-header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .ts-header-action {
            font-size: 14px;
            color: var(--text-sub);
            padding: 8px 0;
            font-weight: 500;
            white-space: nowrap;
        }

        .ts-header-action:hover {
            color: var(--brand-red);
        }

        .ts-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 24px;
            border-radius: 999px;
            border: 1px solid transparent;
            font-size: 15px;
            font-weight: 600;
            line-height: 1;
            transition: all .2s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .ts-btn-primary {
            background: var(--brand-red);
            color: #fff;
            border-color: var(--brand-red);
        }

        .ts-btn-primary:hover {
            background: var(--brand-red-dark);
            border-color: var(--brand-red-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(232, 68, 58, .25);
        }

        .ts-btn-sm {
            min-height: 40px;
            padding: 0 18px;
            font-size: 14px;
        }

        .ts-navbar {
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 0 0 14px;
            overflow-x: auto;
            scrollbar-width: none;
            white-space: nowrap;
        }

        .ts-navbar::-webkit-scrollbar {
            display: none;
        }

        .ts-nav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            padding: 8px 0;
            letter-spacing: .01em;
        }

        .ts-nav-link:hover {
            color: var(--brand-red);
        }

        .ts-nav-link.active {
            color: var(--brand-red);
        }

        .ts-nav-link .badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand-red);
            display: none;
        }

        .ts-nav-link.active .badge-dot {
            display: inline-block;
        }

        .ts-nav-item-hospital {
            margin-left: auto;
            font-size: 13px;
            color: var(--text-sub);
            background: var(--paper-deep);
            padding: 6px 14px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .ts-mobile-search {
            display: none;
            padding-bottom: 14px;
        }

        .ts-footer .ts-logo-badge {
            width: 42px;
            height: 42px;
            font-size: 18px;
            border-radius: 12px;
            flex-shrink: 0;
        }

        /* Hero */
        .category-hero {
            position: relative;
            background: var(--ink-black);
            color: #fff;
            overflow: hidden;
            isolation: isolate;
            padding: 76px 0 84px;
            border-bottom: 6px solid var(--brand-red);
        }

        .category-hero .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -2;
            background-size: cover;
            background-position: center;
            opacity: .44;
        }

        .category-hero:after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(102deg, rgba(16, 18, 22, .97) 0%, rgba(16, 18, 22, .86) 38%, rgba(16, 18, 22, .55) 68%, rgba(16, 18, 22, .72) 100%);
        }

        .category-hero .hero-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, .85fr);
            gap: 72px;
            align-items: center;
        }

        .category-hero .hero-copy {
            max-width: 760px;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(200, 241, 97, .15);
            color: var(--acid-lime);
            border: 1px solid rgba(200, 241, 97, .2);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .08em;
            padding: 7px 16px;
            border-radius: 999px;
            margin-bottom: 24px;
        }

        .category-hero h1 {
            font-size: 46px;
            line-height: 1.18;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.03em;
        }

        .category-hero h1 span {
            color: var(--acid-lime);
        }

        .category-hero .hero-lead {
            margin-top: 18px;
            font-size: 17px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .76);
            max-width: 660px;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
            margin-top: 24px;
        }

        .hero-tags span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: rgba(255, 255, 255, .7);
            border: 1px solid rgba(255, 255, 255, .18);
            border-radius: 999px;
            padding: 6px 12px;
        }

        .hero-tags i {
            color: var(--acid-lime);
        }

        .category-hero .hero-cta {
            margin-top: 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .ts-btn-light {
            background: #fff;
            color: var(--ink-black);
            border-color: #fff;
        }

        .ts-btn-light:hover {
            background: rgba(255, 255, 255, .9);
            color: var(--ink-black);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
        }

        .ts-btn-ghost-light {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, .65);
        }

        .ts-btn-ghost-light:hover {
            background: rgba(255, 255, 255, .1);
            color: #fff;
            border-color: #fff;
        }

        .hero-login-card {
            background: var(--paper);
            border-radius: 24px;
            padding: 8px;
            box-shadow: 0 26px 60px rgba(0, 0, 0, .22);
        }

        .hero-login-card .login-inner {
            background: #fff;
            border-radius: 18px;
            padding: 28px;
        }

        .hero-login-card .card-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 22px;
        }

        .hero-login-card .card-head h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
        }

        .hero-login-card .card-head span {
            font-size: 12px;
            color: var(--brand-red);
            background: rgba(232, 68, 58, .08);
            padding: 4px 10px;
            border-radius: 999px;
        }

        .form-label-sm {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-sub);
            margin-bottom: 6px;
        }

        .mini-input {
            height: 46px;
            background: var(--paper);
            border: 1px solid var(--line-light);
            border-radius: 12px;
            padding: 0 14px;
            font-size: 14px;
            width: 100%;
            color: var(--text-main);
            outline: none;
            transition: .2s;
        }

        .mini-input:focus {
            border-color: var(--brand-red);
            box-shadow: 0 0 0 4px rgba(232, 68, 58, .08);
            background: #fff;
        }

        .hero-login-card .login-divider {
            margin: 20px 0;
            border-top: 1px solid var(--line-light);
        }

        .hero-login-card .login-bottom-links {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-sub);
            padding-top: 18px;
        }

        .hero-login-card .login-bottom-links a {
            color: var(--text-sub);
        }

        .hero-login-card .login-bottom-links a:hover {
            color: var(--brand-red);
        }

        .hero-login-card .login-note {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            background: var(--paper);
            border-radius: 12px;
            padding: 12px 14px;
            font-size: 12px;
            color: var(--text-sub);
        }

        .hero-login-card .login-note i {
            color: var(--acid-lime);
        }

        /* Capability band */
        .capability-band {
            padding: 88px 0;
            background: var(--paper);
        }

        .section-label-sm {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 700;
            color: var(--brand-red);
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 30px;
            font-weight: 700;
            color: var(--text-main);
            margin-top: 10px;
            line-height: 1.28;
        }

        .section-desc {
            margin-top: 12px;
            max-width: 640px;
            color: var(--text-sub);
            line-height: 1.8;
        }

        .capability-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            margin-top: 36px;
        }

        .capability-cell {
            background: #fff;
            border-radius: var(--radius);
            padding: 24px;
            border: 1px solid rgba(220, 216, 206, .6);
            box-shadow: var(--shadow-sm);
            transition: transform .2s, box-shadow .2s;
        }

        .capability-cell:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .capability-cell .cap-icon {
            width: 46px;
            height: 46px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(232, 68, 58, .08);
            color: var(--brand-red);
            border-radius: 14px;
            font-size: 19px;
            margin-bottom: 18px;
        }

        .capability-cell:nth-child(2) .cap-icon {
            background: rgba(200, 241, 97, .18);
            color: #708820;
        }

        .capability-cell:nth-child(3) .cap-icon {
            background: rgba(16, 18, 22, .06);
            color: var(--ink-black);
        }

        .capability-cell h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .capability-cell p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-sub);
        }

        /* Solution split */
        .solution-split {
            background: var(--paper-deep);
            padding: 88px 0;
        }

        .solution-main {
            height: 100%;
            background: var(--ink-black);
            border-radius: 24px;
            color: #fff;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .solution-main .solution-img {
            height: 230px;
            overflow: hidden;
            position: relative;
        }

        .solution-main .solution-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .solution-main .solution-img::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 26%, rgba(16, 18, 22, .86));
        }

        .solution-main .solution-body {
            padding: 26px 28px 30px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .solution-main .dot-lime {
            color: var(--acid-lime);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--acid-lime);
            display: inline-block;
            margin-right: 6px;
        }

        .solution-main h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            margin: 10px 0 12px;
        }

        .solution-main p {
            color: rgba(255, 255, 255, .66);
            line-height: 1.8;
        }

        .solution-main ul {
            margin-top: 18px;
            display: grid;
            gap: 10px;
        }

        .solution-main ul li {
            display: flex;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, .78);
        }

        .solution-main ul li i {
            color: var(--acid-lime);
            margin-top: 5px;
            font-size: 12px;
        }

        .solution-link {
            margin-top: auto;
            padding-top: 24px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--acid-lime);
            font-weight: 600;
            font-size: 14px;
        }

        .solution-link:hover {
            color: #fff;
        }

        .solution-card {
            background: #fff;
            border-radius: 18px;
            padding: 26px;
            box-shadow: var(--shadow-sm);
            transition: .2s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .solution-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .solution-card h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .solution-card p {
            color: var(--text-sub);
            font-size: 14px;
            line-height: 1.7;
        }

        .solution-card .sc-link {
            margin-top: 16px;
            color: var(--brand-red);
            font-size: 14px;
            font-weight: 600;
        }

        .solution-card .sc-link:hover {
            text-decoration: underline;
        }

        /* Process */
        .process-section {
            background: var(--paper);
            padding: 88px 0;
        }

        .process-grid {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            position: relative;
        }

        .process-step {
            background: #fff;
            border-radius: 18px;
            padding: 26px 22px;
            position: relative;
            box-shadow: var(--shadow-sm);
        }

        .process-step .step-num {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--ink-black);
            color: var(--acid-lime);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 16px;
        }

        .process-step h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .process-step p {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.7;
        }

        .process-step::after {
            content: "\f061";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: -18px;
            top: 46px;
            color: var(--brand-red);
            z-index: 2;
            font-size: 14px;
            opacity: .6;
        }

        .process-step:last-child::after {
            display: none;
        }

        /* Update list */
        .update-section {
            background: var(--paper-deep);
            padding: 88px 0;
        }

        .article-card {
            background: #fff;
            border-radius: 20px;
            padding: 16px;
            box-shadow: var(--shadow-sm);
            transition: .25s;
        }

        .article-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .article-card .ac-media {
            border-radius: 14px;
            overflow: hidden;
            height: 100%;
            min-height: 240px;
        }

        .article-card .ac-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .article-card .ac-content {
            padding: 14px 8px 8px;
            display: flex;
            flex-direction: column;
        }

        .ac-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 13px;
            color: var(--text-sub);
            margin-bottom: 12px;
        }

        .ac-meta .cat-tag {
            background: var(--brand-red);
            color: #fff;
            font-size: 12px;
            padding: 3px 10px;
            border-radius: 999px;
        }

        .article-card h3 {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 10px;
            color: var(--text-main);
        }

        .article-card p {
            color: var(--text-sub);
            font-size: 15px;
            line-height: 1.75;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-card .ac-link {
            margin-top: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-red);
        }

        .article-card .ac-link:hover {
            text-decoration: underline;
        }

        .ts-pager {
            margin-top: 42px;
            justify-content: center;
        }

        .ts-pager .page-link {
            border: 0;
            border-radius: 10px;
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--text-sub);
            background: #fff;
            margin: 0 4px;
            font-weight: 600;
            box-shadow: 0 1px 4px rgba(0,0,0,.04);
        }

        .ts-pager .page-link:hover {
            color: var(--brand-red);
            background: #fff;
        }

        .ts-pager .page-item.active .page-link {
            background: var(--brand-red);
            color: #fff;
        }

        /* FAQ */
        .faq-section {
            background: var(--paper);
            padding: 88px 0;
        }

        .faq-wrapper {
            margin-top: 36px;
        }

        .faq-item {
            border: 0;
            background: #fff;
            border-radius: 16px;
            margin-bottom: 10px;
            box-shadow: 0 1px 5px rgba(0,0,0,.03);
        }

        .faq-item .accordion-header {
            border-radius: 16px;
        }

        .faq-item .accordion-button {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            background: #fff;
            border: 0;
            box-shadow: none;
            padding: 20px 24px;
            border-radius: 16px !important;
            display: flex;
        }

        .faq-item .accordion-button::after {
            display: none;
        }

        .faq-item .accordion-button .question-mark {
            color: var(--brand-red);
            margin-right: 14px;
            font-size: 19px;
            flex-shrink: 0;
        }

        .faq-item .accordion-button:not(.collapsed) {
            color: var(--text-main);
            background: #fff;
        }

        .faq-item .accordion-body {
            padding: 2px 24px 22px 58px;
            color: var(--text-sub);
            font-size: 15px;
            line-height: 1.8;
        }

        /* CTA */
        .cta-section {
            background: var(--ink-black);
            position: relative;
            overflow: hidden;
            padding: 80px 0;
            color: #fff;
        }

        .cta-section::before {
            content: "";
            position: absolute;
            width: 460px;
            height: 460px;
            background: var(--brand-red);
            opacity: .26;
            filter: blur(120px);
            right: -80px;
            bottom: -160px;
        }

        .cta-section::after {
            content: "";
            position: absolute;
            left: 8%;
            bottom: 0;
            width: 360px;
            height: 220px;
            background-image: radial-gradient(rgba(200, 241, 97, .4) 1px, transparent 1px);
            background-size: 16px 16px;
            opacity: .24;
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 36px;
        }

        .cta-section h2 {
            color: #fff;
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .cta-section p {
            color: rgba(255, 255, 255, .7);
            max-width: 600px;
        }

        .cta-section .ts-btn-primary {
            background: #fff;
            color: var(--ink-black);
            border-color: #fff;
        }

        .cta-section .ts-btn-primary:hover {
            background: var(--acid-lime);
            border-color: var(--acid-lime);
            color: var(--ink-black);
        }

        /* Footer */
        .ts-footer {
            background: #0b0d11;
            color: #fff;
            padding: 72px 0 0;
        }

        .ts-footer .footer-brand {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
        }

        .ts-footer .footer-brand-text,
        .ts-footer p {
            color: rgba(255, 255, 255, .5);
            font-size: 14px;
            line-height: 1.8;
        }

        .ts-footer .footer-title {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 18px;
            color: #fff;
        }

        .ts-footer a {
            display: block;
            color: rgba(255, 255, 255, .58);
            font-size: 14px;
            margin-bottom: 12px;
        }

        .ts-footer a:hover {
            color: #fff;
        }

        .ts-footer-bottom {
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding: 22px 0;
            display: flex;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 13px;
            color: rgba(255, 255, 255, .45);
        }

        @media (max-width: 1199.98px) {
            :root {
                --space-section: 64px;
            }

            .capability-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px 18px;
            }

            .process-step::after {
                display: none;
            }

            .category-hero .hero-layout {
                grid-template-columns: 1.1fr .9fr;
                gap: 36px;
            }
        }

        @media (max-width: 991.98px) {
            .ts-logo-text strong {
                font-size: 16px;
            }

            .ts-logo-text small {
                font-size: 9px;
            }

            .ts-header-actions .ts-header-action {
                display: none;
            }

            .ts-desktop-search {
                display: none;
            }

            .ts-mobile-search {
                display: block;
            }

            .ts-navbar {
                gap: 22px;
            }

            .ts-nav-item-hospital {
                display: none;
            }

            .category-hero {
                padding: 52px 0 60px;
            }

            .category-hero .hero-layout {
                grid-template-columns: 1fr;
                gap: 44px;
            }

            .section-title {
                font-size: 28px;
            }

            .solution-main .solution-img {
                height: 280px;
            }

            .table {
                min-width: 720px;
            }
        }

        @media (max-width: 767.98px) {
            :root {
                --space-section: 48px;
            }

            .ts-header-row {
                min-height: 68px;
                flex-wrap: wrap;
                row-gap: 8px;
                padding: 10px 0 6px;
            }

            .ts-logo-badge {
                width: 40px;
                height: 40px;
                font-size: 18px;
                border-radius: 12px;
            }

            .ts-logo-text strong {
                font-size: 15px;
            }

            .ts-search-submit {
                padding: 0 16px;
            }

            .category-hero h1 {
                font-size: 30px;
            }

            .capability-grid {
                grid-template-columns: 1fr;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .cta-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 22px;
            }

            .cta-section h2 {
                font-size: 25px;
            }

            .ts-footer-bottom {
                flex-direction: column;
            }

            .section-title {
                font-size: 24px;
            }
        }

        @media (max-width: 575.98px) {
            .ts-logo-text small {
                display: none;
            }

            .ts-header-actions .ts-btn-sm {
                min-width: 76px;
                padding: 0 14px;
            }

            .ts-header {
                position: relative;
            }

            .ts-search-form {
                height: 44px;
            }

            .ts-search-submit {
                height: 32px;
                font-size: 13px;
            }

            .category-hero .hero-cta .ts-btn {
                width: 100%;
            }

            .hero-login-card .login-inner {
                padding: 22px 18px;
            }

            .article-card .ac-content {
                padding: 12px 2px 4px;
            }

            .faq-item .accordion-button {
                font-size: 15px;
                padding: 17px 16px;
            }

            .faq-item .accordion-body {
                padding: 0 18px 18px 30px;
            }
        }
