﻿:root {
            --frame-gap-x: 68px;
            --frame-gap-y: 20px;
            --frame-radius: 0px;
            --outer-bg: #30343a;
            --outer-bg-2: #3a3f46;

            /* ===== 电脑端：分开控制上下 ===== */
            --pc-logo-shift-y: -58px;
            --pc-menu-shift-y: 18px;
            --pc-qr-shift-y: 26px;

            /* ===== 手机端：分开控制上下 ===== */
            --m-shell-shift-y: -80px;
            --m-logo-shift-y: -6px;
            --m-menu-shift-y: -20px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            height: 100%;
            min-height: 100%;
            overflow: hidden;
            font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
            background: linear-gradient(180deg, var(--outer-bg-2) 0%, var(--outer-bg) 100%);
        }

        body {
            position: relative;
            color: #fff;
        }

        a, button {
            -webkit-tap-highlight-color: transparent;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .yx-page {
            position: fixed;
            inset: 0;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            background: linear-gradient(180deg, var(--outer-bg-2) 0%, var(--outer-bg) 100%);
        }

        @supports (height: 100dvh) {
            .yx-page {
                height: 100dvh;
            }
        }

        .yx-stage {
            position: fixed;
            inset: var(--frame-gap-y) var(--frame-gap-x);
            overflow: hidden;
            background: #282d33;
            border-radius: var(--frame-radius);
            z-index: 1;
        }

        .yx-video-frame {
            position: absolute;
            inset: 0;
            overflow: hidden;
            background:
                radial-gradient(circle at center, rgba(255,255,255,.06) 0%, rgba(255,255,255,0) 38%),
                #282d33;
            z-index: 1;
            border-radius: inherit;
            opacity: 0;
            transition: opacity .25s ease;
        }

        .yx-video-frame.is-ready {
            opacity: 1;
        }

        .yx-video-frame video {
            position: absolute;
            left: 50%;
            top: 50%;
            width: auto;
            height: auto;
            min-width: 80%;
            min-height: 80%;
            object-fit: cover;
            object-position: center center;
            display: block;
            background: #282d33;
            pointer-events: none;
            transform: translate(-50%, -50%) scale(1.08);
            transform-origin: center center;
        }

        .yx-mask {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to bottom, rgba(0,0,0,.16), rgba(0,0,0,.06) 22%, rgba(0,0,0,.12) 68%, rgba(0,0,0,.24)),
                rgba(0, 0, 0, 0.05);
            z-index: 2;
            pointer-events: none;
            border-radius: inherit;
        }

        .yx-content {
            position: absolute;
            inset: 0;
            z-index: 3;
            border-radius: inherit;
        }

        .yx-topbar {
            position: absolute;
            top: 38px;
            right: 58px;
            display: flex;
            gap: 14px;
            z-index: 20;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .yx-top-btn {
            min-width: 140px;
            height: 48px;
            padding: 0 20px;
            border-radius: 999px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            font-size: 15px;
            font-weight: 800;
            letter-spacing: 1px;
            transition: transform .25s ease, filter .25s ease;
            overflow: hidden;
            white-space: nowrap;
            border: 1px solid rgba(255,255,255,0.16);
        }

        .yx-top-btn:hover {
            transform: translateY(-2px);
            filter: brightness(1.06);
        }

        .yx-top-icon {
            font-size: 15px;
            line-height: 1;
        }

        .yx-btn-member {
            background: linear-gradient(180deg, #ffe07b 0%, #ffb01f 100%);
            color: #4c2d00;
            box-shadow:
                0 10px 24px rgba(0,0,0,.24),
                0 0 24px rgba(255,185,42,.28),
                inset 0 1px 0 rgba(255,255,255,.36);
        }

        .yx-btn-agent {
            background: linear-gradient(180deg, #86ddff 0%, #2aa9ff 100%);
            color: #ffffff;
            box-shadow:
                0 10px 24px rgba(0,0,0,.24),
                0 0 24px rgba(42,169,255,.28),
                inset 0 1px 0 rgba(255,255,255,.22);
        }

        .yx-main {
            position: absolute;
            inset: 0;
        }

        .yx-center {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .yx-center-shell {
            position: absolute;
            left: 50%;
            top: calc(50% - 54px);
            transform: translate(-50%, -50%);
            z-index: 10;
            width: 312px;
            max-width: min(88vw, 312px);
        }

        .yx-nav-group {
            width: 100%;
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .yx-logo-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 18px;
            transform: translateY(var(--pc-logo-shift-y));
        }

        .yx-logo {
            width: 236px;
            max-width: 38vw;
            min-width: 170px;
            display: block;
        }

        .yx-menu {
            width: 312px;
            max-width: 100%;
            display: flex;
            flex-direction: column;
            gap: 11px;
            align-items: center;
            justify-content: center;
            transform: translateY(var(--pc-menu-shift-y));
        }

        .yx-item {
            position: relative;
            width: 100%;
            height: 46px;
            border-radius: 12px;
            border: 1px solid rgba(166, 112, 30, 0.38);
            background: linear-gradient(
                90deg,
                #d89b3f 0%,
                #efcf7d 12%,
                #f6e3a6 28%,
                #fbefc2 50%,
                #f6e3a6 72%,
                #efcf7d 88%,
                #d89b3f 100%
            );
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,.58),
                inset 0 -1px 0 rgba(176,118,32,.12),
                0 6px 14px rgba(84,50,0,.14);
            transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
            cursor: pointer;
        }

        .yx-item::before {
            content: "";
            position: absolute;
            inset: 1px;
            border-radius: 11px;
            background: linear-gradient(
                180deg,
                rgba(255,255,255,.30) 0%,
                rgba(255,255,255,.10) 35%,
                rgba(255,255,255,0) 60%,
                rgba(255,255,255,.06) 100%
            );
            pointer-events: none;
        }

        .yx-item:hover {
            transform: translateY(-1px);
            filter: brightness(1.02);
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,.66),
                inset 0 -1px 0 rgba(176,118,32,.14),
                0 8px 18px rgba(84,50,0,.18);
        }

        .yx-item > span {
            position: relative;
            z-index: 1;
            color: #5b3908;
            font-size: 18px;
            font-weight: 800;
            letter-spacing: 4px;
            line-height: 1;
            text-shadow: 0 1px 0 rgba(255,255,255,.32);
            user-select: none;
        }

        .yx-modal-trigger {
            outline: none;
        }

        .yx-item-app {
            display: none;
        }

        .yx-item-app .yx-app-inline {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 0 16px;
        }

        .yx-item-app .yx-app-icons {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex: 0 0 auto;
        }

        .yx-item-app .yx-app-icons span {
            font-size: 20px;
            line-height: 1;
            color: #6a4510;
            text-shadow: 0 1px 0 rgba(255,255,255,.45);
        }

        .yx-item-app .yx-app-text {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-style: normal;
            font-size: 17px;
            font-weight: 800;
            letter-spacing: 2px;
            color: #6c4b1f;
            white-space: nowrap;
            text-shadow: 0 1px 0 rgba(255,255,255,.35);
        }

        .yx-qr-box {
            position: absolute;
            top: calc(50% + 143px);
            right: calc(100% + 138px);
            transform: translateY(calc(-50% + var(--pc-qr-shift-y)));
            width: 222px;
            min-width: 222px;
            padding: 16px 16px;
            border-radius: 18px;
            background: rgba(245, 245, 245, 0.30);
            border: 1px solid rgba(255,255,255,0.14);
            text-align: center;
            box-shadow: 0 10px 26px rgba(0,0,0,.16);
            z-index: 11;
        }

        .yx-qr-title {
            font-size: 15px;
            margin-bottom: 12px;
            letter-spacing: 1px;
            color: rgba(255,255,255,0.98);
        }

        .yx-qr-link {
            display: block;
            text-decoration: none;
        }

        .yx-qr-img {
            width: 182px;
            height: 182px;
            display: block;
            margin: 0 auto;
            object-fit: contain;
            background: #fff;
            padding: 8px;
            border-radius: 12px;
        }

        .yx-footer {
            position: absolute;
            left: 50%;
            bottom: 18px;
            transform: translateX(-50%);
            width: calc(100% - 40px);
            text-align: center;
            font-size: 12px;
            line-height: 1.6;
            color: rgba(255,255,255,0.92);
            z-index: 25;
            pointer-events: none;
            background: none;
            border: none;
            padding: 0;
            text-shadow:
                0 2px 8px rgba(0,0,0,0.75),
                0 0 12px rgba(0,0,0,0.35);
        }

        .yx-modal {
            position: fixed;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgba(0,0,0,.62);
            z-index: 9999;
            overscroll-behavior: contain;
        }

        .yx-modal.is-open {
            display: flex;
        }

        .yx-modal-dialog {
            width: min(92vw, 700px);
            max-width: 700px;
            max-height: min(88vh, 860px);
            border-radius: 22px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,.18);
            background: linear-gradient(180deg, rgba(255,248,222,.99) 0%, rgba(255,241,203,.98) 100%);
            box-shadow:
                0 24px 64px rgba(0,0,0,.38),
                0 8px 24px rgba(0,0,0,.22);
        }

        .yx-modal-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 18px 20px;
            background: linear-gradient(90deg, #cb8c2e 0%, #f3d483 50%, #cb8c2e 100%);
            border-bottom: 1px solid rgba(115,67,0,.18);
        }

        .yx-modal-title {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 2px;
            color: #5b3908;
            text-shadow: 0 1px 0 rgba(255,255,255,.32);
        }

        .yx-modal-close {
            width: 36px;
            height: 36px;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            background: rgba(91,57,8,.12);
            color: #6b4307;
            font-size: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all .2s ease;
        }

        .yx-modal-close:hover {
            background: rgba(91,57,8,.18);
            transform: rotate(90deg);
        }

        .yx-modal-body {
            padding: 22px 20px 12px;
            max-height: calc(min(88vh, 860px) - 156px);
            overflow: auto;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
        }

        .yx-modal-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            padding: 0 20px 20px;
        }

        .yx-modal-btn {
            min-width: 148px;
            height: 44px;
            padding: 0 18px;
            border-radius: 999px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 800;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all .2s ease;
        }

        .yx-modal-btn:hover {
            transform: translateY(-1px);
            filter: brightness(1.03);
        }

        .yx-modal-btn-primary {
            background: linear-gradient(180deg, #ffdf78 0%, #ffb225 100%);
            color: #5d3901;
            box-shadow: 0 8px 18px rgba(0,0,0,.16);
        }

        .yx-section-card {
            position: relative;
            margin-bottom: 16px;
            padding: 14px 14px 12px;
            border-radius: 16px;
            border: 1px solid rgba(197,138,41,.28);
            background: linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(255,248,230,.96) 100%);
            box-shadow:
                0 10px 22px rgba(113, 75, 12, 0.08),
                inset 0 1px 0 rgba(255,255,255,.85);
        }

        .yx-section-card:last-child {
            margin-bottom: 0;
        }

        .yx-section-title {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            padding: 6px 12px;
            border-radius: 999px;
            background: linear-gradient(180deg, #ffe7a1 0%, #f4ca63 100%);
            border: 1px solid rgba(181,121,20,.24);
            color: #6a4206;
            font-size: 15px;
            font-weight: 800;
            letter-spacing: .5px;
            box-shadow: 0 4px 10px rgba(0,0,0,.06);
        }

        .yx-section-desc {
            color: #5e4521;
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 10px;
        }

        .yx-note-list {
            display: grid;
            gap: 8px;
            margin-top: 8px;
        }

        .yx-note-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 12px;
            background: rgba(255,255,255,.56);
            border: 1px solid rgba(196,141,53,.18);
        }

        .yx-note-bullet {
            color: #c18423;
            margin-top: 2px;
            flex: 0 0 auto;
            font-weight: 700;
        }

        .yx-note-item span {
            color: #5c421d;
            font-size: 14px;
            line-height: 1.75;
        }

        .yx-table-wrap {
            margin-top: 10px;
            overflow: hidden;
            border-radius: 14px;
            border: 1px solid rgba(196,141,53,.22);
            background: rgba(255,255,255,.64);
        }

        .yx-data-table {
            width: 100%;
            border-collapse: collapse;
            table-layout: fixed;
        }

        .yx-data-table th,
        .yx-data-table td {
            padding: 12px 8px;
            text-align: center;
            border-bottom: 1px solid rgba(196,141,53,.16);
            color: #5b421d;
            font-size: 14px;
            line-height: 1.5;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .yx-data-table th {
            background: linear-gradient(180deg, rgba(251,227,162,.92) 0%, rgba(242,202,94,.88) 100%);
            color: #6a4104;
            font-weight: 800;
        }

        .yx-data-table tr:last-child td {
            border-bottom: none;
        }

        .yx-data-table td strong {
            color: #7c4a00;
        }

        .yx-kv-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
            margin-top: 10px;
        }

        .yx-kv-item {
            padding: 11px 12px;
            border-radius: 12px;
            background: rgba(255,255,255,.55);
            border: 1px solid rgba(196,141,53,.18);
        }

        .yx-kv-item b {
            display: block;
            margin-bottom: 4px;
            color: #764400;
            font-size: 14px;
        }

        .yx-kv-item span {
            color: #5e4521;
            font-size: 14px;
            line-height: 1.7;
        }

        @supports (height: 100dvh) {
            .yx-modal-dialog {
                max-height: min(88dvh, 860px);
            }

            .yx-modal-body {
                max-height: calc(min(88dvh, 860px) - 156px);
            }
        }

        @media (max-width: 1200px) {
            :root {
                --frame-gap-x: 68px;
                --frame-gap-y: 20px;
            }

            .yx-topbar {
                top: 24px;
                right: 32px;
            }

            .yx-center-shell {
                top: calc(50% - 42px);
                width: 320px;
                max-width: min(88vw, 320px);
            }

            .yx-logo {
                width: 242px;
            }

            .yx-menu {
                width: 320px;
            }

            .yx-item {
                height: 47px;
            }

            .yx-qr-box {
                width: 202px;
                min-width: 202px;
                right: calc(100% + 30px);
            }

            .yx-qr-img {
                width: 166px;
                height: 166px;
            }
        }

        @media (max-width: 980px) {
            :root {
                --frame-gap-x: 0px;
                --frame-gap-y: 0px;
                --m-shell-shift-y: -18px;
                --m-logo-shift-y: 18px;
                --m-menu-shift-y: 34px;
            }

            html, body,
            .yx-page {
                background: transparent;
            }

            .yx-stage {
                inset: 0;
                border-radius: 0;
                background: #1f2329 url('../img/index_m.jpg') center center / cover no-repeat;
            }

            .yx-video-frame {
                display: none;
                opacity: 1;
            }

            .yx-mask {
                background:
                    linear-gradient(to bottom, rgba(0,0,0,.16), rgba(0,0,0,.05) 22%, rgba(0,0,0,.10) 68%, rgba(0,0,0,.20)),
                    rgba(0,0,0,.02);
            }

            .yx-topbar {
                top: 18px;
                right: 14px;
                gap: 10px;
            }

            .yx-top-btn {
                min-width: 114px;
                height: 42px;
                font-size: 14px;
                padding: 0 14px;
            }

            .yx-main {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 88px 16px 110px;
            }

            .yx-center {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: 100%;
            }

            .yx-center-shell {
                position: static;
                width: min(92vw, 356px);
                max-width: min(92vw, 356px);
                transform: translateY(var(--m-shell-shift-y));
            }

            .yx-logo-wrap {
                margin-bottom: 18px;
                transform: translateY(var(--m-logo-shift-y));
            }

            .yx-logo {
                width: min(64vw, 248px);
                max-width: min(64vw, 248px);
                min-width: 188px;
            }

            .yx-menu {
                width: min(92vw, 356px);
                gap: 12px;
                transform: translateY(var(--m-menu-shift-y));
            }

            .yx-item {
                height: 50px;
                border-radius: 13px;
            }

            .yx-item > span {
                font-size: 19px;
                letter-spacing: 3px;
            }

            .yx-item-app {
                display: flex;
                width: 100%;
                height: 50px;
                margin-top: 0;
                padding: 0;
                border-radius: 13px;
                border: 1px solid rgba(255,255,255,.76);
                background: rgba(244, 246, 248, .80);
                box-shadow:
                    0 10px 24px rgba(0,0,0,.16),
                    inset 0 1px 0 rgba(255,255,255,.92);
            }

            .yx-item-app::before {
                background: linear-gradient(
                    180deg,
                    rgba(255,255,255,.48) 0%,
                    rgba(255,255,255,.18) 36%,
                    rgba(255,255,255,0) 62%,
                    rgba(255,255,255,.12) 100%
                );
            }

            .yx-item-app .yx-app-inline {
                gap: 10px;
                justify-content: center;
                padding: 0 12px;
            }

            .yx-item-app .yx-app-icons {
                gap: 8px;
            }

            .yx-item-app .yx-app-icons span {
                font-size: 18px;
                color: #5f6368;
                text-shadow: none;
            }

            .yx-item-app .yx-app-text {
                font-size: 17px;
                letter-spacing: 2px;
                color: #4e545a;
                text-shadow: none;
            }

            .yx-qr-box {
                display: none;
            }

            .yx-footer {
                bottom: 14px;
                width: calc(100% - 24px);
                font-size: 11px;
                line-height: 1.5;
            }

            .yx-modal {
                align-items: center;
                justify-content: center;
                padding:
                    max(12px, env(safe-area-inset-top))
                    max(10px, env(safe-area-inset-right))
                    max(12px, env(safe-area-inset-bottom))
                    max(10px, env(safe-area-inset-left));
            }

            .yx-modal-dialog {
                width: min(calc(100vw - 20px), 640px);
                max-width: calc(100vw - 20px);
                max-height: calc(100vh - 20px);
                border-radius: 18px;
            }

            .yx-modal-body {
                max-height: calc(100vh - 150px);
                -webkit-overflow-scrolling: touch;
                overscroll-behavior: contain;
            }

            .yx-modal-title {
                font-size: 20px;
            }

            @supports (height: 100dvh) {
                .yx-modal-dialog {
                    max-height: calc(100dvh - 20px);
                }

                .yx-modal-body {
                    max-height: calc(100dvh - 150px);
                }
            }
        }

        @media (max-width: 768px) {
            :root {
                --m-shell-shift-y: -22px;
                --m-logo-shift-y: 22px;
                --m-menu-shift-y: 42px;
            }

            .yx-main {
                padding: 82px 12px 104px;
            }

            .yx-topbar {
                top: 16px;
                right: 12px;
                gap: 8px;
            }

            .yx-top-btn {
                min-width: 102px;
                height: 39px;
                padding: 0 12px;
                font-size: 13px;
            }

            .yx-center-shell {
                width: min(94vw, 342px);
                max-width: min(94vw, 342px);
            }

            .yx-logo {
                width: min(66vw, 236px);
                min-width: 178px;
            }

            .yx-menu {
                width: min(94vw, 342px);
                gap: 11px;
            }

            .yx-item {
                height: 48px;
            }

            .yx-item > span {
                font-size: 18px;
                letter-spacing: 2px;
            }

            .yx-item-app {
                height: 48px;
                border-radius: 12px;
            }

            .yx-item-app .yx-app-icons span {
                font-size: 17px;
            }

            .yx-item-app .yx-app-text {
                font-size: 16px;
            }

            .yx-modal {
                padding:
                    max(10px, env(safe-area-inset-top))
                    max(10px, env(safe-area-inset-right))
                    max(10px, env(safe-area-inset-bottom))
                    max(10px, env(safe-area-inset-left));
            }

            .yx-modal-dialog {
                width: calc(100vw - 20px);
                max-width: calc(100vw - 20px);
                max-height: calc(100vh - 20px);
            }

            .yx-modal-head {
                padding: 16px 16px;
            }

            .yx-modal-title {
                font-size: 18px;
            }

            .yx-modal-body {
                padding: 18px 16px 10px;
                max-height: calc(100vh - 142px);
            }

            .yx-section-desc,
            .yx-note-item span {
                font-size: 14px;
                line-height: 1.8;
            }

            .yx-modal-actions {
                padding: 0 16px 16px;
            }

            .yx-modal-btn {
                min-width: 132px;
                height: 42px;
                font-size: 14px;
            }

            .yx-kv-grid {
                grid-template-columns: 1fr;
            }

            .yx-section-card {
                padding: 12px 12px 10px;
                border-radius: 14px;
            }

            .yx-data-table th,
            .yx-data-table td {
                padding: 10px 6px;
                font-size: 13px;
                line-height: 1.4;
            }

            @supports (height: 100dvh) {
                .yx-modal-dialog {
                    max-height: calc(100dvh - 20px);
                }

                .yx-modal-body {
                    max-height: calc(100dvh - 142px);
                }
            }
        }

        @media (max-width: 480px) {
            :root {
                --m-shell-shift-y: -26px;
                --m-logo-shift-y: 24px;
                --m-menu-shift-y: 46px;
            }

            .yx-main {
                padding: 76px 10px 100px;
            }

            .yx-topbar {
                width: calc(100% - 20px);
                justify-content: flex-end;
                top: 14px;
                right: 10px;
            }

            .yx-top-btn {
                min-width: 94px;
                height: 36px;
                font-size: 12px;
                padding: 0 10px;
            }

            .yx-center-shell {
                width: min(96vw, 320px);
                max-width: min(96vw, 320px);
            }

            .yx-logo {
                width: min(68vw, 220px);
                min-width: 168px;
            }

            .yx-logo-wrap {
                margin-bottom: 15px;
            }

            .yx-menu {
                width: min(96vw, 320px);
                gap: 10px;
            }

            .yx-item {
                height: 45px;
                border-radius: 11px;
            }

            .yx-item > span {
                font-size: 17px;
                letter-spacing: 2px;
            }

            .yx-item-app {
                height: 45px;
                border-radius: 11px;
            }

            .yx-item-app .yx-app-inline {
                gap: 8px;
                padding: 0 10px;
            }

            .yx-item-app .yx-app-icons {
                gap: 7px;
            }

            .yx-item-app .yx-app-icons span {
                font-size: 16px;
            }

            .yx-item-app .yx-app-text {
                font-size: 15px;
                letter-spacing: 1px;
            }

            .yx-footer {
                font-size: 10px;
                line-height: 1.35;
                width: calc(100% - 16px);
                bottom: 10px;
            }

            .yx-modal-dialog {
                width: calc(100vw - 12px);
                max-width: calc(100vw - 12px);
                max-height: calc(100vh - 12px);
                border-radius: 16px;
            }

            .yx-modal-title {
                font-size: 17px;
                letter-spacing: 1px;
            }

            .yx-modal-close {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }

            .yx-modal-body {
                max-height: calc(100vh - 132px);
            }

            .yx-modal-btn {
                width: 100%;
            }

            .yx-section-title {
                font-size: 14px;
                padding: 6px 10px;
            }

            .yx-data-table th,
            .yx-data-table td {
                padding: 8px 4px;
                font-size: 12px;
                line-height: 1.35;
            }

            @supports (height: 100dvh) {
                .yx-modal-dialog {
                    max-height: calc(100dvh - 12px);
                }

                .yx-modal-body {
                    max-height: calc(100dvh - 132px);
                }
            }
        }