    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Microsoft YaHei', sans-serif;
            background-color: #0f0a1e;
            overflow-x: hidden;
            color: white;
        }

           .announcement-title .xx1{
          font-size: 50px; position: relative; top: 10px;top: -7px;left: 50px;
        }
        .announcement-title .xx2{
            font-size: 50px;position: relative; top: 10px;top: -7px;left: -55px;
                }
        .announcement-tabs .image{
            width: 400px;
        }
        
        /* 导航栏样式 */
        .navbar {
            background-color: rgba(0, 0, 0, 0.7);
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
        }
        
        .nav-items {
            display: flex;
            list-style: none;
            margin-left: 80px; /* 调整菜单位置 */
        }
        
        .nav-item {
            margin: 0 32px; /* 缩小菜单项间距 */
            position: relative;
        }
        
        .nav-link {
            color: #ffd700;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            transition: color 0.3s ease;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
        }
        
        .nav-link:hover {
            color: #e0c468;
        }

 
        /* 登录按钮 */
        .login-btn {
            position: absolute;
            right: 24px;
            background-color: #c8a951;
            color: black;
            font-weight: bold;
            padding: 8px 24px;
            border-radius: 20px;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        










        
        /* 页脚样式 */
        .footer {
            background-color: #000000;
            padding: 30px 20px;
            position: relative;
            margin-top: 60px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .footer-left {
            display: flex;
            align-items: center;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-right: 40px;
        }
        
        .cat-logo {
            width: 40px;
            height: 40px;
            margin-right: 10px;
        }
        
        .logo-text {
            color: #ffffff;
            font-size: 18px;
            font-weight: bold;
        }
        
        .footer-links {
            display: flex;
            gap: 30px;
        }
        
        .footer-link {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .footer-link:hover {
            color: #c8a951;
        }
        
        
        
        .age-rating {
            background-color: #ff7700;
            color: #ffffff;
            padding: 5px 15px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            margin-right: 30px;
        }
        
        .warning-text {
            color: #888;
            font-size: 12px;
            line-height: 2.6;
        }
       


        
        /* 公告区域 */
        .announcement-section {
            background-image: url('/img/BG_02.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 40px 0;
        }
        
        .announcement-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #ffffff;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .announcement-title {
            text-align: center;
            color: #8a2be2;
            font-size: 28px;
            margin-bottom: 25px;
            font-weight: bold;
        }
        
        .announcement-title span {
            color: #ff9800;
            font-size: 24px;
            margin: 0 10px;
        }
        
        .announcement-tabs {
            display: flex;
            margin-bottom: 20px;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 5px;
        }
        
        .tab {
            margin: 0 20px;
            font-size: 18px;
            color: #666;
            cursor: pointer;
            padding: 5px 10px;
            transition: all 0.3s ease;
        }
        
        .tab.active {
            color: #8a2be2;
            font-weight: bold;
            position: relative;
        }
        
        .tab.active::after {
            content: '';
            position: absolute;
            bottom: -7px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #8a2be2;
        }
        
        .announcement-content {
            display: flex;
            position: relative;
        }
        
        .announcement-image {
            width: 40%;
            margin-right: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .announcement-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .announcement-list {
            width: 60%;
        }
        
    .announcement-item {
        position: relative; 
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }



    .announcement-text {
        color: #333;
        font-size: 16px;
        white-space: nowrap;
        text-overflow: ellipsis;
        display: inline-block;
        max-width: calc(100% - 110px);
    }

            

    .announcement-date {
        position: absolute; 
        right: -200px; 
        top: 50%; 
        transform: translateY(-50%); 
        width: 100px; 
        text-align: right; 
        color: #999;
        font-size: 14px;
        white-space: nowrap; 
    }
            
        .view-more-btn {
            position: absolute;
            bottom: 0;
            right: 0;
            background-color: #8a2be2;
            color: white;
            border: none;
            padding: 8px 25px;
            font-size: 16px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .view-more-btn:hover {
            background-color: #6a1b9a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
        }








        
        /* 响应式设计 */
        @media (max-width: 480px) {
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Microsoft YaHei', sans-serif;
            background-color: #0f0a1e;
            overflow-x: hidden;
            color: white;
        }
        
        /* 导航栏样式 */
        .navbar {
            background-color: rgba(0, 0, 0, 0.7);
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: fixed;
            top: 0;
            left: -90px;
            right: 0;
            z-index: 100;
        }
        
        .nav-items {
            display: flex;
            list-style: none;
            margin-left: 80px; /* 调整菜单位置 */
        }
        
        .nav-item {
            margin: 0 22px; /* 缩小菜单项间距 */
            position: relative;
        }
        
        .nav-link {
            color: #ffd700;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            transition: color 0.3s ease;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
        }
        
        .nav-link:hover {
            color: #e0c468;
        }
     
        
        /* 主视觉区域 */
        .hero-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
            padding-top: 60px;
        }
        
        /* 背景图 */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* 将图片向左移动，露出熊猫脸 */
            object-position: 73% center;  /* 水平位置30%，垂直居中 */
            z-index: 1;
        }
        
     .biaoyu {
            
            width: 100%;
            margin-left: 10px;
        }


        /* 背景遮罩 */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
            z-index: 2;
        }
        
        /* 游戏Logo */
        .logo {
            position: absolute;
            top: 70px;
            left: 20px;
            z-index: 3;
            width: 220px; /* 增大Logo尺寸 */
        }
        
       
        
      
        
        

       
        

        

   /* 公告区域 */
.announcement-section {
    background-image: url("/img/BG_03.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0; /* 设置合适的上下内边距来增加高度 */
    min-height: 900px; /* 强制设置最小高度，确保即使内容少也有足够高度 */
}

.announcement-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: calc(100% - 50px); /* 容器最小高度 = 父容器高度 - 上下内边距 */
}
        
        .announcement-title {
            text-align: center;
            color: #8a2be2;
            font-size: 28px;
            margin-bottom: 25px;
            font-weight: bold;
        }
        
        .announcement-title span {
            color: #ff9800;
            font-size: 24px;
            margin: 0 10px;
        }

        
        .tab {
            margin: 210 20px;
            font-size: 18px;
            color: #666;
            cursor: pointer;
            padding: 5px 10px;
            transition: all 0.3s ease;
        }
         .announcement-title .xx1{
          font-size: 50px; position: relative; top: 10px;top: 50px;left: 150px;
        }

   .announcement-title .xx2{
          font-size: 50px; position: relative; top: 10px;top: -65px;left: -150px;
        }

  .announcement-tabs-image{
          margin-left:-40px;
         margin-top: -50px;
         
        }
.announcement-item .announcement-date{
    position: relative;
    left: 20px !important;  /* 添加 !important 来覆盖内联样式 */
}
.announcement-list .announcement-item{
    margin-left: -100px;
}
     /* 隐藏图片本身（双重保险） */
  .announcement-image img,
  .announcement-image img.pic {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    z-index: -1 !important;
    opacity: 0 !important;
  }
  
/* 隐藏公告图片容器 */
  .announcement-image {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }


.announcement-list{
    margin-left: 100px;
    margin-top: -10px;
     min-height: 1000px;
}

        .tab.active {
            color: #8a2be2;
            font-weight: bold;
            position: relative;
        }
        
        .tab.active::after {
            content: '';
            position: absolute;
            bottom: -7px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #8a2be2;
        }
        
        .announcement-content {
            display: flex;
            position: relative;
        }
        
    
        
       
        .announcement-list {
            width: 60%;
            
        }
        
        .announcement-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .announcement-text {
            color: #333;
            font-size: 16px;
            flex: 1;
        }
        
        .announcement-date {
            color: #999;
            font-size: 14px;
            margin-left: 15px;
        }

        .view-more-btn {
            position: absolute;
            bottom: -25px;
            width: 130px;
            top: 266px;
           height:35px;
            right: 0;
            background-color: #8a2be2;
            color: white;
            border: none;
            padding: 8px 25px;
            font-size: 16px;
            border-radius: 20px;
            cursor: pointer;
         text-align: center;
            transition: all 0.3s ease;
        }
        
/* 修改span元素的display属性并增加优先级 */
.view-more-btn .span {
    /* 关键：将span改为内联块级元素，使垂直padding生效 */
    display: inline-block !important;
    /* 调整padding-top值，可以根据需要修改 */
    padding-top: -15px !important;
    /* 设置line-height也可以帮助调整垂直位置 */
    line-height: 1.2;
    /* 确保文字居中 */
    text-align: center;
}


        .view-more-btn:hover {
            background-color: #6a1b9a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
        }
 /* 重置页脚基础样式 */
  .footer {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 20px 15px !important;
    background-color: #111 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
  }
  
  /* 重置页脚内容容器 */
  .footer-content {
    width: 100% !important;
    max-width: 480px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
  }
  
  /* 隐藏左侧和右侧的大部分内容 */
  .footer-left,
  .footer-right,
  .footer-logo,
  .footer-links,
  .footer-link,
  .vertical-line,
  .fu15,
  .warning-text {
    display: none !important;
  }
  /* 只显示公司信息列表 */
  .footer-links ul {
    display: block !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
    list-style: none !important;
    width: 100% !important;
  }

        
}

