/* ------修正版：逍遥2026年1月3日_联系QQ：2106870 专业开服经验15年，修复各种疑难杂症------ */
/* --------------------- 基础样式重置（用户提供，完整保留） --------------------- */
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: 180px;
    display: block;
    padding-left: 10px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px #FFD700); /* 新增武侠风发光，不破坏原有样式 */
}
.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;
    text-shadow: 0 0 10px #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, bannerShake 6s infinite alternate ease-in-out; /* 整合原有pulse和武侠风晃动 */
    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);
    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 span {
    color: #fcce30;
    text-shadow: 0 0 5px #fcce30; /* 新增武侠风高亮，不破坏原有样式 */
}
.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;
    }
}
/* 新增武侠风动画（公告标题闪烁、横幅晃动） */
@keyframes titleGlow {
    from { text-shadow: 0 0 10px #FFD700, 0 0 20px #FF0000; }
    to { text-shadow: 0 0 20px #FFD700, 0 0 30px #FF0000, 0 0 40px #FFD700; }
}
@keyframes bannerShake {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1.02) rotate(0.5deg); }
}

/* --------------------- 响应式设计（用户提供，完整保留） --------------------- */
@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;
    }
}

/* --------------------- 新增：客服+公告区域样式（武侠风+悬浮动效，规整统一） --------------------- */
/* 客服区域样式 */
.service-box {
    width: 80%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 25px;
    background: linear-gradient(135deg, rgba(20, 20, 60, 0.9), rgba(60, 10, 10, 0.9));
    border: 3px solid #FFD700;
    border-radius: 15px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    position: relative;
    box-sizing: border-box;
}
.service-box::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(255, 99, 71, 0.7);
    border-radius: 18px;
    z-index: -1;
    box-shadow: 0 0 25px rgba(255, 99, 71, 0.6);
}
.service-box h2 {
    color: #FFD700;
    font-size: 28px;
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FF4500;
    margin-bottom: 20px;
}
.service-box p {
    font-size: 17px;
    line-height: 2.2;
    margin: 10px 0;
    text-align: center;
    text-shadow: 0 0 5px #00BFFF;
}
.service-qq-link {
    color: #00BFFF;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}
.service-qq-link:hover {
    color: #FF4500;
    text-decoration: none;
    text-shadow: 0 0 10px #FF4500, 0 0 20px #FFD700;
    transform: scale(1.05);
}

/* 公告区域样式 */
.notice-box {
    width: 80%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px;
    /* 修复原有背景色书写错误 */
    background: linear-gradient(135deg, rgba(10, 10, 40, 0.95), rgba(50, 5, 5, 0.95));
    border: 3px solid #FF0000;
    border-radius: 15px;
    color: #FFFFFF;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    position: relative;
    box-sizing: border-box;
}
.notice-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 0 L100 100 M100 0 L0 100" stroke="rgba(255,215,0,0.1)" stroke-width="1" /></svg>') repeat;
    border-radius: 12px;
    z-index: 0;
    pointer-events: none;
}
.notice-title {
    text-align: center;
    font-size: 30px;
    color: #FFD700;
    margin-bottom: 25px;
    border-bottom: 2px solid #FF4500;
    padding-bottom: 15px;
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FF0000, 0 0 30px #FFD700;
    position: relative;
    z-index: 1;
    animation: titleGlow 2s infinite alternate;
}
.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}
.notice-item {
    font-size: 16px;
    line-height: 2.8;
    padding: 10px 15px;
    border-bottom: 2px dashed rgba(255, 215, 0, 0.3);
    color: #F0FFFF;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 5px;
}
.notice-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
/* 公告项悬浮动效 */
.notice-item:hover {
    transform: translate(8px, -3px) scale(1.03);
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(255, 99, 71, 0.1));
    border-bottom: 2px dashed #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    padding-left: 25px;
}
.notice-date {
    color: #FF4500;
    font-weight: bold;
    text-shadow: 0 0 5px #FF4500;
    transition: all 0.4s ease-in-out;
}
.notice-item:hover .notice-date {
    color: #FFD700;
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FF4500;
}
.notice-group-link {
    color: #00BFFF;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}
.notice-group-link:hover {
    color: #FFD700;
    text-decoration: none;
    text-shadow: 0 0 10px #FFD700, 0 0 20px #00BFFF;
    transform: scale(1.05);
}

/* --------------------- 补充：公告内链接样式（彻底解决紫色/蓝色默认样式） --------------------- */
/* 精准定位公告内的a标签，不影响其他链接 */
.notice-list .notice-item a {
    color: #F0FFFF; /* 与公告文字颜色一致，替换默认蓝/紫 */
    text-decoration: none; /* 去除默认下划线 */
    display: block; /* 铺满公告项，点击无死角 */
    width: 100%;
    height: 100%;
}
/* 覆盖已访问链接的紫色样式 */
.notice-list .notice-item a:visited {
    color: #F0FFFF; /* 访问前后颜色不变 */
}
/* 公告链接hover效果，与现有武侠风统一 */
.notice-list .notice-item a:hover {
    color: #FFD700;
    text-decoration: none;
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FF4500;
}
/* 公告链接激活状态（点击时） */
.notice-list .notice-item a:active {
    color: #fcce30;
}
/* 确保公告链接内的日期样式不受影响 */
.notice-list .notice-item a .notice-date {
    color: #FF4500;
    font-weight: bold;
    text-shadow: 0 0 5px #FF4500;
}
/* 公告链接hover时，日期同步发光 */
.notice-list .notice-item a:hover .notice-date {
    color: #FFD700;
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FF4500;
}