/* 全局重置与基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }

        /* 全局滚动条美化 */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-thumb {
            background: #38bdf8;
            border-radius: 3px;
        }

        ::-webkit-scrollbar-track {
            background: #1e293b;
        }

        body {
            background: #0f172a;
            background-image:
                radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.05) 0%, transparent 30%),
                radial-gradient(circle at 85% 80%, rgba(129, 140, 248, 0.05) 0%, transparent 30%);
            color: #e0e0e0;
            min-height: 100vh;
        }

        /* 应用容器 */
        #yingyongrongqi {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 24px;
        }

        /* 顶部标题 */
        .dingbu {
            grid-column: 1 / -1;
            margin-bottom: 16px;
            padding: 16px 24px;
            background: linear-gradient(135deg, #1e293b, #0f172a);
            border-radius: 12px;
            border: 1px solid #2d3748;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .biaoti {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .biaoti i {
            color: #38bdf8;
            font-size: 24px;
        }

        .biaoti h1 {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(90deg, #38bdf8, #818cf8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* 左侧导航 */
        #zuoce {
            background: #1e293b;
            border-radius: 12px;
            border: 1px solid #2d3748;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            height: fit-content;
        }

        #daohanglan {
            display: flex;
            flex-direction: column;
        }

        .daohang {
            padding: 16px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: #000000 solid 1px;
            border-top: #000000 solid 1px;
            border-radius: 4px;
            position: relative;
            overflow: hidden;
        }

        /* 导航遮罩，文字更清晰 */
        .daohang::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            z-index: 0;
        }

        .daohang>* {
            position: relative;
            z-index: 1;
        }

        /* 导航栏地图背景 */
        .daohang[data-ditu="ygzz"] {
            background: url(地图图片/源工重镇.webp)no-repeat center center / cover;
        }

        .daohang[data-ditu="ysxs"] {
            background: url(地图图片/隐世修所.webp)no-repeat center center / cover;
        }

        .daohang[data-ditu="ysdk"] {
            background: url(地图图片/幽邃地窟.webp)no-repeat center center / cover;
        }

        .daohang[data-ditu="yhkz"] {
            background: url(地图图片/盐海矿镇.webp)no-repeat center center / cover;
        }

        .daohang[data-ditu="nht"] {
            background: url(地图图片/霓虹町.webp)no-repeat center center / cover;
        }

        .daohang[data-ditu="yhxc"] {
            background: url(地图图片/亚海悬城.webp)no-repeat center center / cover;
        }

        .daohang[data-ditu="shmz"] {
            background: url(地图图片/深海明珠.webp)no-repeat center center / cover;
        }

        .daohang[data-ditu="wfdy"] {
            background: url(地图图片/微风岛屿.webp)no-repeat center center / cover;
        }

        .daohang[data-ditu="rlzc"] {
            background: url(地图图片/日落之城.webp)no-repeat center center / cover;
        }

        .daohang[data-ditu="lhgc"] {
            background: url(地图图片/莲华古城.webp)no-repeat center center / cover;
        }

        .daohang[data-ditu="lbxg"] {
            background: url(地图图片/裂变峡谷.webp)no-repeat center center / cover;
        }

        .daohang[data-ditu="shdg"] {
            background: url(地图图片/森寒冬港.webp)no-repeat center center / cover;
        }

        .daohang:hover {
            border-left-color: #38bdf8;
            transform: translateX(2px);
        }

        .daohang.xs {
            border-left-color: #07b5ff;
            background-color: rgba(56, 189, 248, 0.1);
        }

        .daohang span {
            font-size: 15px;
            font-weight: 500;
            color: #ffffff;
            text-shadow:
                -1px -1px 0 #000,
                1px -1px 0 #000,
                -1px 1px 0 #000,
                1px 1px 1px #000;
        }

        .daohang::before {
            content: "\f041";
            font-family: "Font Awesome 6 Free";
            font-weight: 600;
            color: #ffecec;
            font-size: 12px;
        }

        .daohang.xs::before {
            color: #00ffdd;
        }

        /* 右侧主体内容 */
        #youce {
            background: #1e293b;
            border-radius: 12px;
            border: 1px solid #2d3748;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            padding: 24px;
            min-height: 600px;
        }

        .dituming {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .dituming.xs {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* 箭种分类容器 */
        .jianzhong-fenlei {
            background: linear-gradient(135deg, #27273a, #1e293b);
            border-radius: 8px;
            padding: 20px;
            border: 1px solid #363652;
            transition: transform 0.2s ease;
        }

        .jianzhong-fenlei:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .jianzhong-fenlei h2 {
            font-size: 18px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .jianzhong-fenlei h2::before {
            content: "";
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        /* 各类箭种的颜色标识 */
        .jinong-dianji h2::before {
            background: #f59e0b;
            /* 进攻电击箭 - 橙色 */
        }

        .jinong-tance h2::before {
            background: #10b981;
            /* 进攻探测箭 - 绿色 */
        }

        .fangshou-dianji h2::before {
            background: #ef4444;
            /* 防守电击箭 - 红色 */
        }

        .fangshou-tance h2::before {
            background: #6366f1;
            /* 防守探测箭 - 紫色 */
        }

        /* 点位列表样式 */
        .dianwei-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
        }

        .dianwei-item {
            padding: 8px 12px;
            background: #33334d;
            border-radius: 6px;
            font-size: 14px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .dianwei-item:hover {
            background: #38bdf8;
            color: #0f172a;
            font-weight: 500;
        }

        .dianwei-item a {
            display: block;
            width: 100%;
            height: 100%;
            color: inherit;
            text-decoration: none;
        }

        /* 动画效果 */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            #yingyongrongqi {
                grid-template-columns: 1fr;
            }

            #zuoce {
                margin-bottom: 20px;
            }

            .biaoti h1 {
                font-size: 24px;
            }
        }

        @media (max-width: 576px) {
            #youce {
                padding: 16px;
            }

            .daohang {
                padding: 14px 16px;
            }

            .dingbu {
                padding: 12px 16px;
            }

            .dianwei-list {
                grid-template-columns: 1fr;
            }
        }

        /* 打赏按钮和弹窗样式 */
        .dashang-btn {
            display: inline-block;
            padding: 10px 5px;
            background: linear-gradient(135deg, #e67474, #ec4545);
            color: rgb(255, 250, 250);
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(221, 145, 145, 0.3);
            margin-top: 8px;
        }

        .dashang-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255, 0, 0, 0.4);
        }

        /* 弹窗遮罩层 */
        .dashang-mask {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            backdrop-filter: blur(4px);
        }

        /* 弹窗容器 */
        .dashang-popup {
            background: #1e293b;
            border-radius: 12px;
            padding: 20px;
            position: relative;
            width: 90%;
            max-width: 600px;
            border: 1px solid #363652;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
            animation: popupFadeIn 0.3s ease;
        }

        /* 弹窗关闭按钮 */
        .close-popup {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #33334d;
            color: white;
            border: none;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.2s ease;
        }

        .close-popup:hover {
            background: #ef4444;
            transform: rotate(90deg);
        }

        /* 二维码容器 */
        .qrcode-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 10px;
        }

        /* 二维码图片样式 */
        .qrcode-item {
            text-align: center;
        }

        .qrcode-item img {
            width: 200px;
            height: 200px;
            border-radius: 8px;
            border: 2px solid #363652;
            transition: transform 0.2s;
        }

        .qrcode-item img:hover {
            transform: scale(1.03);
        }

        .qrcode-item p {
            margin-top: 8px;
            font-size: 14px;
            color: #e0e0e0;
        }

        /* 弹窗淡入动画 */
        @keyframes popupFadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        /* 禁止选中文字 */
        body {
            user-select: none !important;
            -webkit-user-select: none !important;
        }

        /* 版权水印 */
        body::after {
            content: "© 抖音：点位备忘录（无畏契约）";
            position: fixed;
            bottom: 10px;
            right: 10px;
            opacity: 0.2;
            font-size: 12px;
            z-index: 999;
            pointer-events: none;
        }