* {
            padding: 0;
            margin: 0;
            list-style: none;
            font-family: Verdana, Helvetica, Arial, sans-serif;
            font-size: 14px;
            box-sizing: border-box;
        }
        body {
            background: #0a0502 url("/static/images/tyc_81.gif") repeat;
            font: 12px/1.8 "" , sans-serif;
            color: #edcb78;
            min-width: 320px;
        }
        a {
            color: #241304;
            text-decoration: none;
        }
        img {
            border: 0;
            vertical-align: top;
            max-width: 100%;
            height: auto;
        }
        .clear {
            display: block;
            font: 0/0 arial;
            height: 24px;
            clear: both;
        }
        .lt {
            float: left;
        }
        .rt {
            float: right;
        }
        .tx {
            text-align: center;
        }
        .mt10 {
            margin-top: 10px;
        }
        .mb10 {
            margin-bottom: 10px;
        }
        .pt10 {
            padding-top: 15px;
        }
        .w,
        .w1 {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 12px;
            width: 100%;
        }
        .top {
            width: 100%;
            background: url("/static/images/tyc_02.gif") repeat-x center top;
            background-size: auto 100%;
            min-height: 145px;
            padding: 0 0 10px;
        }
        .top_bj {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            background-size: 100% 100%;
            min-height: 145px;
            padding: 10px 0;
        }
        .logo {
            flex: 0 0 auto;
            width: 212px;
            max-width: 50%;
            padding: 6px 0 6px 20px;
        }
        .logo img {
            display: block;
            max-width: 100%;
            height: auto;
        }
        .lanmu {
            flex: 1 1 auto;
            min-width: 280px;
            padding: 10px 0;
        }
        .lanmu ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 6px 20px;
            padding: 0 10px;
        }
        .lanmu ul li {
            flex: 0 0 auto;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* ===== 导航按钮：flex 居中，图片自适应，背景用伪元素 ===== */
        .lanmu ul li a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 90px;
            height: 61px;
            border-radius: 6px;
            cursor: pointer;
            position: relative;
            line-height: normal;
            padding: 0;
            /* 移除原本的 background，改用伪元素 */
            background: none !important;
        }
        .lanmu ul li a img {
            display: block;
            width: 70%;
            height: 70%;
            object-fit: contain;
            pointer-events: none;
            position: relative;
            z-index: 1;
            flex-shrink: 0; /* 防止在 flex 容器中被压缩 */
        }
        /* 激活 / 悬停 背景使用伪元素，不干扰图片尺寸 */
        .lanmu ul li a:hover::before,
        .lanmu ul li a.cur::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("/static/images/dhbj.png") no-repeat center 50%;
            background-size: contain;
            pointer-events: none; /* 点击穿透 */
            z-index: 0;
            border-radius: inherit;
        }
        .tab-container {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 12px;
            width: 100%;
        }
        .tab-panel {
            display: none;
            animation: fadeIn 0.35s ease;
        }
        .tab-panel.active {
            display: block;
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(6px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .banner {
            max-width: 980px;
            margin: 0 auto;
            padding: 0;
            margin-left: -12px;
            margin-right: -12px;
        }
        .banner .slider {
            position: relative;
            width: 100%;
            max-width: 978px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 8px;
            aspect-ratio: 978 / 316;
            background: #1a0a04;
        }
        .banner .slider .conbox {
            display: flex;
            width: 500%;
            height: 100%;
            animation: slideBanner 20s infinite ease-in-out;
        }
        .banner .slider .conbox>div {
            flex: 0 0 20%;
            height: 100%;
        }
        .banner .slider .conbox>div img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes slideBanner {
            0%,
            16% {
                transform: translateX(0);
            }
            20%,
            36% {
                transform: translateX(-20%);
            }
            40%,
            56% {
                transform: translateX(-40%);
            }
            60%,
            76% {
                transform: translateX(-60%);
            }
            80%,
            96% {
                transform: translateX(-80%);
            }
            100% {
                transform: translateX(0);
            }
        }


        .content {
            background-size: 100% auto;
            padding: 10px 0 0;
        }

        .left {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 12px;
            width: 100%;
        }

        /* ===== 游戏入口 — 一行三列 Grid 布局 ===== */
        .game-entries {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px 30px;
            padding: 10px 0 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        .ting {
            aspect-ratio: 1 / 1;
            background: url("/static/images/tyc125.gif") no-repeat center;
            background-size: cover;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding-bottom: 18px;
            border-radius: 10px;
            width: 100%;
            height: auto;
            transition: transform 0.2s, box-shadow 0.2s;
            border: none;
        }
        .ting:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(237, 203, 120, 0.2);
        }
        .ting1 {
            background-image: url("/static/images/tyc113.gif");
        }
        .ting2 {
            background-image: url("/static/images/tyc1-14.gif");
        }
        .ting a {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            width: 100%;
            height: 100%;
            padding: 0 12px 12px 12px;
            color: #ff0000;
            font-weight: bold;
            font-size: 16px;
            text-shadow: 0 0 8px rgba(0,0,0,0.8);
            border: none;
            background: none;
            border-radius: 0;
            transition: background 0.25s;
            text-align: left;
            line-height: 1.4;
        }
        .ting a:hover {
            background: rgba(200, 120, 30, 0.2);
        }
        .ting a .sub {
            font-size: 12px;
            color: #ff6666;
            font-weight: normal;
            margin-top: 2px;
        }

        .panel-content {
            padding: 20px 18px 30px;
            background: rgba(10, 5, 2, 0.65);
            border-radius: 10px;
            border: 1px solid rgba(237, 203, 120, 0.15);
            min-height: 280px;
            margin-top: 8px;
        }
        .panel-content h2 {
            font-size: 22px;
            color: #edcb78;
            margin-bottom: 16px;
            font-weight: bold;
            letter-spacing: 2px;
            border-bottom: 1px solid rgba(237, 203, 120, 0.25);
            padding-bottom: 10px;
        }
        .panel-content h2 small {
            font-size: 13px;
            color: #a8833a;
            font-weight: normal;
            margin-left: 12px;
        }
        .panel-content p {
            color: #d4b87a;
            line-height: 2;
            font-size: 13px;
            margin-bottom: 10px;
        }
        .panel-content .highlight {
            color: #f5d98a;
            font-weight: bold;
        }
        .panel-content .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin-top: 14px;
        }
        .panel-content .grid-2 .item {
            background: rgba(237, 203, 120, 0.06);
            border-radius: 8px;
            padding: 16px 12px;
            text-align: center;
            border: 1px solid rgba(237, 203, 120, 0.08);
            transition: background 0.25s;
        }
        .panel-content .grid-2 .item:hover {
            background: rgba(237, 203, 120, 0.12);
        }
        .panel-content .grid-2 .item .icon {
            font-size: 32px;
            display: block;
            margin-bottom: 6px;
        }
        .panel-content .grid-2 .item .label {
            color: #edcb78;
            font-size: 14px;
            font-weight: bold;
        }
        .panel-content .grid-2 .item .desc {
            color: #b89e66;
            font-size: 12px;
            margin-top: 4px;
        }
        .tuijian {
            display: block;
            padding: 0;
        }
        .tuijian ul {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding: 8px 0;
            margin: 0;
            list-style: none;
        }
        .tuijian ul:last-child {
            padding-bottom: 0;
        }
        .tuijian li {
            padding: 0;
            max-width: 100%;
            text-align: center;
        }
        .tuijian li a {
            display: block;
        }
        .tuijian li img {
            max-width: 100%;
            height: auto;
            border-radius: 6px;
        }
        .tuijian .clear {
            display: none;
        }
        .container {
            background: rgba(10, 5, 2, 0.45);
            border-radius: 10px;
            padding: 18px 16px 12px;
            margin: 16px 0 8px;
            border: 1px solid rgba(237, 203, 120, 0.10);
            overflow-x: auto;
        }
        .container h2 {
            font-size: 16px;
            color: #edcb78;
            margin: 18px 0 10px;
            padding-bottom: 4px;
            border-bottom: 1px dashed rgba(237, 203, 120, 0.15);
        }
        .container h2:first-of-type {
            margin-top: 0;
        }
        .container table {
            width: 100%;
            min-width: 480px;
            border-collapse: collapse;
            font-size: 12px;
            background: rgba(0, 0, 0, 0.25);
            border-radius: 6px;
            overflow: hidden;
            margin: 6px 0 14px;
        }
        .container table thead th {
            background: rgba(237, 203, 120, 0.18);
            color: #f5d98a;
            font-weight: bold;
            padding: 10px 8px;
            text-align: center;
            border: 1px solid rgba(237, 203, 120, 0.12);
            font-size: 12px;
            letter-spacing: 0.5px;
        }
        .container table tbody td {
            padding: 9px 8px;
            text-align: center;
            border: 1px solid rgba(237, 203, 120, 0.08);
            color: #d4b87a;
            font-size: 12px;
            background: rgba(0, 0, 0, 0.12);
        }
        .container table tbody tr:nth-child(even) td {
            background: rgba(237, 203, 120, 0.04);
        }
        .container table tbody tr:hover td {
            background: rgba(237, 203, 120, 0.08);
        }
        .container table tbody td:first-child {
            color: #edcb78;
            font-weight: 500;
        }
        .register-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 12px;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            background: rgba(0, 0, 0, 0.2);
            padding: 16px 18px;
            border-radius: 8px;
            border: 1px solid rgba(237, 203, 120, 0.06);
        }
        .form-row.full-width {
            grid-template-columns: 1fr;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .form-group label {
            font-size: 13px;
            color: #edcb78;
            font-weight: bold;
            letter-spacing: 0.5px;
        }
        .form-group label .required {
            color: #ff6b6b;
            margin-left: 2px;
        }
        .form-group input,
        .form-group .input-group input {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(237, 203, 120, 0.3);
            color: #f5d98a;
            padding: 10px 14px;
            border-radius: 6px;
            font-size: 13px;
            transition: all 0.3s ease;
            width: 100%;
            outline: none;
        }
        .form-group input:focus,
        .form-group .input-group input:focus {
            border-color: #edcb78;
            box-shadow: 0 0 0 3px rgba(237, 203, 120, 0.15);
            background: rgba(0, 0, 0, 0.6);
        }
        .form-group .helper-text {
            font-size: 11px;
            color: #b89e66;
            margin-top: 2px;
        }
        .form-group .helper-text.highlight {
            color: #edcb78;
        }
        .input-group {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .input-group input {
            flex: 1;
        }
        .btn {
            padding: 10px 22px;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            letter-spacing: 1px;
            white-space: nowrap;
        }
        .btn-helper {
            background: rgba(237, 203, 120, 0.12);
            color: #edcb78;
            border: 1px solid rgba(237, 203, 120, 0.3);
            padding: 9px 16px;
            font-size: 12px;
        }
        .btn-helper:hover {
            background: rgba(237, 203, 120, 0.25);
            border-color: #edcb78;
        }
        .btn-primary {
            background: linear-gradient(145deg, #edcb78, #d4a84a);
            color: #0a0502;
            box-shadow: 0 4px 15px rgba(237, 203, 120, 0.2);
            min-width: 140px;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(237, 203, 120, 0.35);
            background: linear-gradient(145deg, #f5d98a, #e0b85c);
        }
        .btn-secondary {
            background: transparent;
            color: #edcb78;
            border: 1px solid rgba(237, 203, 120, 0.4);
        }
        .btn-secondary:hover {
            background: rgba(237, 203, 120, 0.1);
            border-color: #edcb78;
        }
        .form-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 8px;
            padding-top: 18px;
            border-top: 1px solid rgba(237, 203, 120, 0.08);
        }
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 14px;
            }
            .input-group {
                flex-wrap: wrap;
            }
            .btn-helper {
                width: 100%;
                justify-content: center;
            }
            .form-actions {
                flex-direction: column;
                gap: 12px;
            }
            .form-actions .btn {
                width: 100%;
                justify-content: center;
            }
        }
        .footer {
            background-color: #190003;
            padding: 20px 12px 10px;
            margin-top: 12px;
            width: 100%;
        }
        .footer .tx img {
            max-width: 100%;
            height: auto;
        }
        .bottom {
            background-size: contain;
            min-height: 100px;
            padding: 20px 10px 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
        }
        .bottom p {
            text-align: center;
            color: #7c4f09;
            padding: 10px;
            font-size: 12px;
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
        }
        #floatright {
            position: fixed;
            z-index: 999;
            right: 20px;
            top: 145px;
            width: auto;
            max-width: 120px;
            transition: transform 0.2s;
            cursor: pointer;
        }
        #floatright a {
            display: block;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
            transition: box-shadow 0.2s;
        }
        #floatright a:hover {
            box-shadow: 0 6px 24px rgba(200, 120, 30, 0.6);
        }
        #floatright img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 12px;
        }
        @media (min-width: 1025px) {
            .w,
            .w1 {
                padding: 0 20px;
            }
            .lanmu ul {
                gap: 10px 30px;
            }
            .lanmu ul li a {
                width: 100px;
                height: 68px;
            }
            #floatright {
                right: 30px;
                max-width: 140px;
            }
            .panel-content {
                padding: 28px 24px 34px;
            }
            .container {
                padding: 22px 20px 16px;
            }
            .container table {
                min-width: 560px;
            }
            .container table thead th,
            .container table tbody td {
                padding: 12px 14px;
                font-size: 13px;
            }
            .container h2 {
                font-size: 18px;
            }
            .game-entries {
                gap: 22px 35px;
                padding: 14px 0 24px;
            }
            .ting {
                border-radius: 12px;
                padding-bottom: 22px;
            }
            .ting a {
                font-size: 18px;
                padding: 0 16px 16px 16px;
            }
            .ting a .sub {
                font-size: 13px;
            }
        }
        @media (max-width: 1024px) {
            .top_bj {
                min-height: 120px;
                padding: 6px 0;
            }
            .logo {
                width: 170px;
                padding-left: 12px;
            }
            .lanmu {
                min-width: 200px;
                padding: 6px 0;
            }
            .lanmu ul {
                gap: 4px 12px;
            }
            .lanmu ul li {
                height: 58px;
            }
            .lanmu ul li a {
                width: 72px;
                height: 50px;
            }
            .game-entries {
                gap: 14px 20px;
                padding: 8px 0 16px;
                max-width: 700px;
            }
            .ting {
                border-radius: 8px;
                padding-bottom: 14px;
            }
            .ting a {
                font-size: 15px;
                padding: 0 10px 10px 10px;
            }
            .ting a .sub {
                font-size: 11px;
            }
            #floatright {
                right: 16px;
                top: 120px;
                max-width: 90px;
            }
            .panel-content {
                padding: 18px 14px 22px;
                min-height: 220px;
            }
            .panel-content h2 {
                font-size: 19px;
            }
            .container {
                padding: 14px 12px 10px;
            }
            .container h2 {
                font-size: 15px;
            }
            .container table {
                min-width: 420px;
            }
            .container table thead th,
            .container table tbody td {
                padding: 8px 6px;
                font-size: 11px;
            }
            .banner {
                margin-left: -12px;
                margin-right: -12px;
            }
        }
        @media (max-width: 768px) {
            .top {
                min-height: auto;
                padding-bottom: 6px;
            }
            .top_bj {
                flex-direction: column;
                align-items: center;
                min-height: auto;
                padding: 8px 0;
                background-size: 100% 100%;
            }
            .logo {
                width: 160px;
                max-width: 70%;
                padding: 4px 0;
                text-align: center;
            }
            .logo img {
                margin: 0 auto;
            }
            .lanmu {
                width: 100%;
                min-width: unset;
                padding: 4px 0;
            }
            .lanmu ul {
                justify-content: center;
                gap: 4px 8px;
                padding: 0 4px;
            }
            .lanmu ul li {
                height: 48px;
                flex: 0 0 auto;
            }
            .lanmu ul li a {
                width: 58px;
                height: 42px;
                border-radius: 4px;
            }
            /* 移动端无需额外限制，伪元素自动适应 */
            .banner {
                margin-left: -12px;
                margin-right: -12px;
            }
            .banner .slider {
                border-radius: 6px;
                aspect-ratio: 978 / 316;
            }
            .content {
                padding: 4px 0 0;
                background-size: 100% auto;
            }
            .left {
                padding: 0 8px;
            }
            .tuijian ul {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .game-entries {
                gap: 10px 12px;
                padding: 6px 0 12px;
                max-width: 100%;
            }
            .ting {
                border-radius: 6px;
                padding-bottom: 10px;
            }
            .ting a {
                font-size: 13px;
                padding: 0 8px 8px 8px;
            }
            .ting a .sub {
                font-size: 10px;
            }
            .footer {
                padding: 12px 8px 6px;
            }
            .bottom {
                min-height: 70px;
                padding: 12px 6px 6px;
            }
            .bottom p {
                font-size: 11px;
                padding: 6px;
                line-height: 1.6;
            }
            #floatright {
                right: 12px;
                top: 20%;
                transform: translateY(-20%);
                max-width: 72px;
                bottom: auto;
                z-index: 999;
                border-radius: 10%;
                overflow: hidden;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
            }
            #floatright a {
                display: block;
                border-radius: 10%;
                overflow: hidden;
                box-shadow: none;
                width: 100%;
                height: 100%;
            }
            #floatright img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 10%;
                background: transparent;
                padding: 2px;
            }
            #floatright::after {
                content: '';
                position: absolute;
                top: -15px;
                right: -12px;
                bottom: -12px;
                left: -12px;
                border-radius: 10%;
                background: transparent;
                z-index: -1;
            }
            .tab-container {
                padding: 0 8px;
            }
            .panel-content {
                padding: 14px 10px 18px;
                min-height: 180px;
                margin-top: 4px;
            }
            .panel-content h2 {
                font-size: 17px;
                margin-bottom: 10px;
                padding-bottom: 6px;
            }
            .panel-content h2 small {
                font-size: 11px;
                margin-left: 6px;
                display: inline-block;
            }
            .panel-content p {
                font-size: 12px;
                line-height: 1.8;
            }
            .panel-content .grid-2 {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .panel-content .grid-2 .item {
                padding: 12px 8px;
            }
            .panel-content .grid-2 .item .icon {
                font-size: 26px;
            }
            .panel-content .grid-2 .item .label {
                font-size: 13px;
            }
            .container {
                padding: 10px 6px 6px;
                margin: 10px 0 4px;
            }
            .container h2 {
                font-size: 13px;
                margin: 12px 0 6px;
            }
            .container table {
                min-width: 360px;
                font-size: 10px;
            }
            .container table thead th,
            .container table tbody td {
                padding: 6px 4px;
                font-size: 10px;
                word-break: break-word;
            }
            .container table thead th {
                padding: 7px 4px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                width: 120px;
                max-width: 60%;
            }
            .lanmu ul {
                gap: 2px 4px;
            }
            .lanmu ul li {
                height: 40px;
            }
            .lanmu ul li a {
                width: 46px;
                height: 34px;
            }
            .game-entries {
                gap: 6px 8px;
                padding: 4px 0 8px;
            }
            .ting {
                border-radius: 4px;
                padding-bottom: 6px;
            }
            .ting a {
                font-size: 11px;
                padding: 0 4px 4px 4px;
            }
            .ting a .sub {
                font-size: 9px;
            }
            .banner .slider {
                border-radius: 4px;
            }
            #floatright {
                right: 8px;
                max-width: 60px;
            }
            #floatright::after {
                top: -15px;
                right: -10px;
                bottom: -10px;
                left: -10px;
            }
            .panel-content {
                padding: 10px 8px 14px;
                min-height: 150px;
            }
            .panel-content h2 {
                font-size: 15px;
            }
            .panel-content .grid-2 {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }
            .panel-content .grid-2 .item {
                padding: 8px 4px;
            }
            .panel-content .grid-2 .item .icon {
                font-size: 20px;
            }
            .panel-content .grid-2 .item .label {
                font-size: 12px;
            }
            .panel-content .grid-2 .item .desc {
                font-size: 10px;
            }
            .tuijian ul {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .container {
                padding: 6px 4px 4px;
            }
            .container h2 {
                font-size: 12px;
                margin: 10px 0 4px;
            }
            .container table {
                min-width: 300px;
                font-size: 9px;
            }
            .container table thead th,
            .container table tbody td {
                padding: 4px 3px;
                font-size: 9px;
            }
        }
        @media (max-width: 359px) {
            .game-entries {
                gap: 4px 5px;
                padding: 2px 0 6px;
            }
            .ting {
                border-radius: 3px;
                padding-bottom: 4px;
            }
            .ting a {
                font-size: 9px;
                padding: 0 2px 2px 2px;
            }
            .ting a .sub {
                font-size: 8px;
            }
            .lanmu ul li a {
                width: 40px;
                height: 30px;
            }
        }
        @media (pointer: coarse) {
            .lanmu ul li a {
                min-height: 44px;
                min-width: 44px;
            }
            .lanmu ul li a img {
                pointer-events: none;
            }
        }

        .clear {
            clear: both;
            height: 0;
        }
        .STYLE1 {
            font-size: 24px;
            font-weight: bold;
        }
        .STYLE2 {
            color: #FFFF99;
            font-weight: bold;
        }
        .STYLE3 {
            color: #edcb78;
        }
        .STYLE4 {
            color: #FF0000;
        }
        .STYLE5 {
            color: #66FF00;
            font-weight: bold;
        }
        .STYLE6 {
            color: #FFFF00;
        }

        /* ----- 自定义弹窗样式（移动端适配） ----- */
        .custom-alert-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            animation: alertFadeIn 0.3s ease;
            padding: 20px;
        }

        .custom-alert-box {
            background: #1f130c;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            width: 100%;
            max-width: 400px;
            overflow: hidden;
            animation: alertSlideDown 0.35s ease;
            border: 1px solid rgba(237, 203, 120, 0.2);
        }

        .custom-alert-header {
            background: linear-gradient(135deg, #a67c3b, #7a5a2a);
            padding: 18px 20px;
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            text-align: center;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .custom-alert-body {
            padding: 28px 20px 24px;
            font-size: 16px;
            color: #edcb78;
            text-align: center;
            line-height: 1.8;
            word-break: break-word;
        }

        .custom-alert-footer {
            padding: 0 20px 24px;
            text-align: center;
        }

        .alert-btn {
            padding: 12px 48px;
            border: none;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 600;
            color: #1f130c;
            background: linear-gradient(145deg, #edcb78, #d4a84a);
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 6px 20px rgba(237, 203, 120, 0.3);
            min-height: 50px;
            min-width: 120px;
            touch-action: manipulation;
        }

        .alert-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(237, 203, 120, 0.5);
            background: linear-gradient(145deg, #f5d98a, #e0b85c);
        }

        .alert-btn:active {
            transform: scale(0.95);
        }

        @keyframes alertFadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        @keyframes alertSlideDown {
            from {
                transform: translateY(-40px) scale(0.95);
                opacity: 0;
            }
            to {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        @media (max-width: 480px) {
            .custom-alert-box {
                max-width: 95%;
                border-radius: 16px;
            }
            .custom-alert-header {
                font-size: 17px;
                padding: 14px 16px;
            }
            .custom-alert-body {
                font-size: 15px;
                padding: 22px 16px 18px;
            }
            .alert-btn {
                padding: 10px 32px;
                font-size: 15px;
                min-height: 44px;
                min-width: 100px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .custom-alert-box {
                max-width: 420px;
            }
            .custom-alert-header {
                font-size: 19px;
            }
            .custom-alert-body {
                font-size: 16px;
            }
        }
    .website-content {
    margin: 24px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.website-title {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 20px;
    font-weight: 700;
    color: #edcb78;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2a2525;
    letter-spacing: 1px;
}
.website-title span:last-child {
    font-size: 14px;
    font-weight: 400;
    color: #888;
}

.new-website .bg-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}
.new-website .list-content {
    background: #1a1616;
    border-radius: 10px;
    padding: 16px 14px 18px;
    border: 1px solid #2a2424;
    transition: 0.3s;
}
.new-website .list-content:hover {
    border-color: #b89e66;
}
.new-website .list-title {
    font-weight: 600;
    color: #edcb78;
    font-size: 15px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px dashed #2f2a2a;
}
.new-website .list-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.new-website .list-content ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #110f0f;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    transition: 0.3s;
    border: 1px solid transparent;
}
.new-website .list-content ul li a:hover {
    border-color: #b89e66;
    background: #1f1a1a;
}
.new-website .list-content ul li a p {
    margin: 0;
    color: #ccc;
    font-size: 13px;
}
.new-website .list-content ul li a span {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: #3c1e00;
    background: linear-gradient(135deg, #d6af5d, #ffe5af);
    padding: 4px 16px;
    border-radius: 20px;
    border: none;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(184, 158, 102, 0.2);
    line-height: 1.6;
}
.new-website .list-content ul li a:hover span {
   transform: scale(1.06);
    box-shadow: 0 4px 14px rgba(184, 158, 102, 0.4);
    background: linear-gradient(135deg, #e8c87a, #fff0d0);
}

.old-website {
    background: linear-gradient(145deg, #141010, #1c1717);
    border-radius: 14px;
    padding: 22px 20px 26px;
    border: 1px solid #2f2828;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(184, 158, 102, 0.08);
    position: relative;
    overflow: hidden;
}
.old-website::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 158, 102, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.old-website .website-title {
    border-bottom-color: #3a3131;
    position: relative;
    z-index: 1;
}
.old-website .website-title span:first-child::before {
    content: '👑 ';
    font-size: 18px;
}

.old-website .bg-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1;
}

.old-website .list-content {
    background: rgba(26, 21, 21, 0.7);
    backdrop-filter: blur(2px);
    border-radius: 10px;
    padding: 16px 14px 18px;
    border: 1px solid #2f2828;
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
}
.old-website .list-content:hover {
    border-color: #b89e66;
    background: rgba(32, 26, 26, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 158, 102, 0.10);
}


.old-website .list-title {
    font-weight: 600;
    color: #edcb78;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #2f2828;
    display: flex;
    align-items: center;
    gap: 6px;
}
.old-website .list-title::before {
    content: '▸';
    color: #b89e66;
    font-size: 16px;
}


.old-website .list-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}


.old-website .list-content ul li {
    background: rgba(17, 14, 14, 0.6);
    border-radius: 6px;
    border: 1px solid #252020;
    transition: 0.3s;
    overflow: hidden;
}
.old-website .list-content ul li:hover {
    border-color: #b89e66;
    background: rgba(30, 24, 24, 0.8);
}

.old-website .list-content ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 13px;
    gap: 8px;
    transition: 0.3s;
    color: #ccc;
}
.old-website .list-content ul li a:hover {
    color: #fff;
}

.old-website .list-content ul li a p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: #ccc;
    transition: 0.3s;
    word-break: break-all;
}
.old-website .list-content ul li a:hover p {
    color: #fff;
}
.old-website .list-content ul li a p s {
    color: #666;
    text-decoration: line-through;
    font-weight: 400;
}
.old-website .list-content ul li a:hover p s {
    color: #888;
}

.old-website .list-content ul li a span {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: #3c1e00;
    background: linear-gradient(135deg, #d6af5d, #ffe5af);
    padding: 4px 16px;
    border-radius: 20px;
    border: none;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(184, 158, 102, 0.2);
    line-height: 1.6;
}
.old-website .list-content ul li a:hover span {
    transform: scale(1.06);
    box-shadow: 0 4px 14px rgba(184, 158, 102, 0.4);
    background: linear-gradient(135deg, #e8c87a, #fff0d0);
}

@media (max-width: 992px) {
    .old-website .bg-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .new-website .bg-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .old-website .bg-content {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .new-website .bg-content {
        grid-template-columns: 1fr;
    }
    .panel-content {
        padding: 18px 14px 22px;
    }
    .panel-content h2 {
        font-size: 20px;
    }
    .top_bj {
        flex-direction: column;
        gap: 10px;
    }
    .lanmu ul {
        justify-content: center;
    }
    .lanmu ul li a {
        padding: 4px 10px;
    }
    .lanmu ul li a img {
        height: 22px;
    }
    .old-website {
        padding: 16px 12px 20px;
    }
}

@media (max-width: 400px) {
    .old-website .list-content ul li a {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 4px;
    }
    .old-website .list-content ul li a p {
        font-size: 12px;
        width: 100%;
    }
}    