        /* --------------------- 基础样式重置 --------------------- */
        body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
            margin: 0;
            padding: 0;
            font-weight: normal;
        }
        p {
            text-align: justify;
            text-justify: inter-ideograph;
        }
        table {
            border-collapse: collapse;
            border-spacing: 0;
        }
        fieldset, img {
            border: 0;
        }
        abbr, acronym {
            border: 0;
            font-variant: normal;
        }
        del {
            text-decoration: line-through;
        }
        ol, ul {
            list-style: none;
        }
        q:before, q:after {
            content: '';
        }
        a:hover {
            text-decoration: none;
        }
        a {
            transition-property: background-color, color, transform;
            -moz-transition-property: background-color, color, transform;
            -o-transition-property: background-color, color, transform;
            -webkit-transition-property: background-color, color, transform;
            transition-duration: 0.4s;
            -moz-transition-duration: 0.4s;
            -o-transition-duration: 0.4s;
            -webkit-transition-duration: 0.4s;
            transition-timing-function: ease;
            -moz-transition-timing-function: ease;
            -o-transition-timing-function: ease;
            -webkit-transition-timing-function: ease;
        }
        ins, a {
            list-style-type: none;
            text-decoration: none;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
        }
        a:focus {
            list-style-type: none;
            text-decoration: none;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
        }
        em {
            font-style: normal;
        }
        input {
            padding-top: 0;
            padding-bottom: 0;
        }
        input::-moz-focus-inner {
            border: none;
            padding: 0;
        }
        select, input {
            vertical-align: middle;
        }
        select, input, textarea {
            font-size: 14px;
            margin: 0;
        }
        input[type="text"], input[type="number"], input[type="password"], textarea {
            outline-style: none;
            -webkit-appearance: none;
        }
        textarea {
            resize: none;
        }
        input, textarea {
            background: none;
            border: 1px #000 solid;
        }

        /* --------------------- 页面主体样式 --------------------- */
        body {
            background-color: #120503;
            color: #f8d9aa;
            font-family: 'Microsoft YaHei', sans-serif;
            overflow-x: hidden;
            position: relative;
        }
        .warp {
            position: relative;
            z-index: 1;
        }

        /* --------------------- 视频背景样式 --------------------- */
        video {
            position: fixed;
            top: 0;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -2;
            transform: translateX(-50%);
            object-fit: cover;
            opacity: 0.8; /* 提高视频透明度 */
        }
        .video-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(18, 5, 3, 0.5), rgba(18, 5, 3, 0.7)); /* 调整渐变透明度 */
            z-index: -1;
        }

        /* --------------------- 导航栏样式 --------------------- */
        .navs_box {
            width: 100%;
            height: 80px;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(88, 25, 9, 0.7));
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .navs_boxs {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 15px;
            box-sizing: border-box;
        }
        .leftlogo {
            height: 80px;
        }
        .leftlogo img {
            height: 80px;
            display: block;
            padding-left: 10px;
            animation: float 6s ease-in-out infinite;
        }
        .right_nav {
            display: flex;
            align-items: center;
        }
        .rightnavbox {
            margin-left: 20px;
        }
        .rightnavbox a {
            line-height: 80px;
            padding: 0 15px;
            color: #fff;
            display: block;
            font-size: 16px;
            font-weight: 500;
            position: relative;
        }
        .rightnavbox a:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #fcce30, #f35626);
            transition: width 0.4s ease;
        }
        .rightnavbox a:hover {
            color: #fcce30;
        }
        .rightnavbox a:hover:before {
            width: 100%;
        }
        .rightnavbox .paysss {
            line-height: 80px;
            padding: 0 15px;
            color: #fcce30;
            display: block;
            font-size: 16px;
            font-weight: 500;
            background-color: #581909;
            border-radius: 4px;
            transition: all 0.4s ease;
        }
        .rightnavbox .paysss:hover {
            background-color: #8b2517;
            transform: translateY(-3px);
        }

        /* --------------------- 横幅样式 --------------------- */
        .banner {
            width: 100%;
            height: 500px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('bg_banner.jpg') no-repeat center top;
            background-size: cover;
            text-align: center;
            margin-bottom: 30px;
        }
        .banner h1 {
            font-size: 48px;
            color: #fff;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 0 20px #fcce30;
            animation: pulse 3s infinite;
            letter-spacing: 2px;
        }

        /* --------------------- 页面内容区域样式 --------------------- */
        .page {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto 50px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 0 15px;
            box-sizing: border-box;
        }
        .pagebox {
            width: calc((100% - 60px) / 3); /* 三列布局，总间距60px (20px * 3) */
            height: 480px;
            margin-bottom: 30px;
            background: linear-gradient(to bottom, #1e0e0a, #2d1510);
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
            border: 1px solid #581909;
        }
        .pagebox:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
        }
        .pagebox:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #fcce30, #f35626, #fcce30);
            animation: borderMove 8s linear infinite;
            background-size: 200% 100%;
        }
        .page1 {
            background-image: none;
        }
        .page2 {
            background-image: none;
        }
        .page3 {
            background-image: none;
        }

        /* --------------------- 区块标题样式 --------------------- */
        .pagetitle {
            width: 100%;
            height: 80px;
            text-align: center;
            line-height: 80px;
            background: linear-gradient(to right, #581909, #8b2517);
            position: relative;
        }
        .pagetitle h1 {
            font-size: 28px;
            color: #fff;
            position: relative;
            display: inline-block;
        }
        .pagetitle h1:after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 3px;
            background: #fcce30;
            border-radius: 3px;
        }

        /* --------------------- 区块文本内容样式 --------------------- */
        .pagetext {
            padding: 25px;
            height: 280px;
            box-sizing: border-box;
        }
        .server {
            font-size: 20px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .server span {
            background-color: #00e36b;
            padding: 3px 10px;
            font-size: 14px;
            color: #fff;
            border-radius: 10px;
            margin-right: 10px;
            display: inline-flex;
            align-items: center;
            animation: pulse 2s infinite;
        }
        .server a {
            background-color: #f35626;
            padding: 3px 10px;
            font-size: 14px;
            color: #fff;
            border-radius: 10px;
            margin-left: 10px;
            display: inline-flex;
            align-items: center;
        }
        .server a i {
            margin-right: 5px;
        }
        
        /* --------------------- 推荐新区样式 --------------------- */
        .newserver {
            display: block;
            padding: 10px;
            text-align: center;
            font-size: 16px;
            font-weight: bold;
            background: linear-gradient(92deg, #f35626, #feab3a);
            -webkit-animation: hue 2s infinite linear;
            border: 2px solid #f35626;
            border-radius: 8px;
            margin: 15px 0;
            padding: 12px;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .newserver span {
            position: relative;
            z-index: 1;
            color: #fff;
        }
        .newserver:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(92deg, #f35626, #feab3a);
            -webkit-animation: hue 2s infinite linear;
            -webkit-background-clip: text;
            clip-path: inset(0 0 0 100%);
            transition: clip-path 0.4s ease;
        }
        .newserver:hover {
            transform: scale(1.05);
            border-color: #fcce30;
        }
        .newserver:hover:before {
            clip-path: inset(0 0 0 0);
        }

        .pagetext h2 {
            font-size: 18px;
            text-align: center;
            padding: 15px 0 10px;
            color: #fcce30;
            border-bottom: 1px dashed #581909;
            margin-bottom: 15px;
        }
        .js {
            font-size: 14px;
            line-height: 24px;
            text-align: left;
            color: #d4af37;
            min-height: 120px;
        }
        .js br {
            margin: 5px 0;
        }

        /* --------------------- 引导按钮样式 --------------------- */
        .go {
            width: 100%;
            max-width: 330px;
            height: 60px;
            display: block;
            margin: 20px auto 0;
            text-align: center;
            line-height: 60px;
            font-size: 22px;
            color: #581909;
            background: linear-gradient(to right, #fcce30, #f35626);
            font-weight: bold;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(243, 86, 38, 0.5);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        .go:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, #fff 0%, transparent 70%);
            transform: scale(0);
            opacity: 0;
            transition: transform 0.8s ease, opacity 1s ease;
        }
        .go:hover {
            background: linear-gradient(to right, #f35626, #fcce30);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(243, 86, 38, 0.7);
        }
        .go:hover:before {
            transform: scale(1);
            opacity: 0.3;
        }
        .go span {
            position: relative;
            z-index: 1;
        }

        /* --------------------- 进入区域样式 --------------------- */
        .goin {
            width: 100%;
            max-width: 1200px;
            margin: 50px auto;
            height: 150px;
            background: url("picbg.png") no-repeat center top;
            background-size: cover;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 0 15px;
            box-sizing: border-box;
        }
        .goin:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(18, 5, 3, 0.8), rgba(18, 5, 3, 0.4));
        }
        .goin-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        .goin h2 {
            font-size: 32px;
            color: #fcce30;
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
        .goin p {
            font-size: 18px;
            color: #fff;
        }

        /* --------------------- 页脚样式 --------------------- */
        .footer {
            width: 100%;
            margin-top: 50px;
            height: 100px;
            text-align: center;
            background: linear-gradient(to right, #120503, #220e0a);
            padding: 20px 0;
            box-sizing: border-box;
            border-top: 1px solid #581909;
        }
        .footer p {
            color: #800000;
            font-size: 14px;
            margin: 5px 0;
        }
        .footer p:last-child {
            color: #581909;
            font-size: 12px;
        }

        /* --------------------- 动画定义 --------------------- */
        @-webkit-keyframes hue {
            from {
                -webkit-filter: hue-rotate(0deg);
            }
            to {
                -webkit-filter: hue-rotate(-360deg);
            }
        }
        @keyframes pulse {
            0% {
                text-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 0 20px #fcce30, 0 0 30px #fcce30;
            }
            50% {
                text-shadow: 0 0 5px rgba(0, 0, 0, 0.5), 0 0 10px #fcce30, 0 0 20px #fcce30;
            }
            100% {
                text-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 0 20px #fcce30, 0 0 30px #fcce30;
            }
        }
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        @keyframes borderMove {
            0% {
                background-position: 0% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        /* --------------------- 响应式设计 --------------------- */
        @media (max-width: 1200px) {
            .pagebox {
                width: calc((100% - 30px) / 2); /* 两列布局，总间距30px (15px * 2) */
            }
        }
        @media (max-width: 768px) {
            .pagebox {
                width: 100%; /* 单列布局 */
            }
            .banner h1 {
                font-size: 36px;
            }
            .right_nav {
                overflow-x: auto;
                width: 100%;
                padding-bottom: 10px;
            }
            .rightnavbox {
                margin-left: 10px;
            }
        }