  
* {
            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: 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;
        }
        

/* 角色展示区域 */
.characters-section {
    background-image: url('/img/BG_03.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
    height: 1000px;
}

.characters-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.characters-title {
    color: #ffd700;
    font-size: 32px;
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    letter-spacing: 2px;
}

.characters-title span {
    margin: 0 10px;
}

/* 角色展示框架 */
.character-display {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 500px;
}

/* 切换箭头 */
.character-arrow {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #ffd700;
    color: #ffd700;
    font-size: 36px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.character-arrow:hover {
    background-color: rgba(255, 215, 0, 0.8);
    color: #000;
    transform: scale(1.1);
}

.left-arrow {
    margin-right: 30px;
}

.right-arrow {
    margin-left: 30px;
}

/* 角色舞台 */
.character-stage {
    position: relative;
    width: 600px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 背景光晕 */
.character-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}


.spotlight.left {
    top: 60%;
    left: -50px;
    transform: rotate(-45deg);
}

.spotlight.right {
    top: 60%;
    right: -50px;
    transform: rotate(45deg);
}

/* 角色底座 */
.character-base {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.character-base img {
    max-width: 300px;
    height: auto;
}


.character-name-container {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-name-container img {
    max-width: 250px;
    height: auto;
}


.character-name {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* 确保在背景图上层 */
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}




.character-image {
    position: absolute;
    bottom: 160px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 4;
}

.character-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* 切换箭头 */
.character-arrow {
    background: rgba(255, 215, 0, 0.8);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: #0f0a1e;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-arrow:hover {
    background: rgba(255, 215, 0, 1);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.left-arrow {
    margin-right: 20px;
}

.right-arrow {
    margin-left: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .character-display {
        height: 400px;
    }
    
    .character-stage {
        width: 400px;
    }
    
    .character-base {
        width: 200px;
        height: 60px;
    }
    
    .character-image {
        width: 200px;
        height: 200px;
    }
    
    .character-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

   
        /* 页脚样式 */
        .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;
        }
        
      
        
        /* 响应式设计 */
        @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: -340px;
            right: 0;
            z-index: 100;
        }
        
        .nav-items {
            display: flex;
            list-style: none;
            margin-left: 80px; /* 调整菜单位置 */
        }
        
        .nav-item {
            margin: 0 19px; /* 缩小菜单项间距 */
            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;
            margin-top: 100px;
        }


        

   
   /* 调整角色展示区域 */
  .characters-section {
    height: auto !important;
    min-height: 800px;
    padding: 40px 0 60px !important;
  }
  
  /* 调整主容器 */
  .characters-container {
    padding: 0 10px !important;
  }
  
  /* 调整角色舞台 */
  .character-stage {
    width: 100% !important;
    height: 300px !important;
  }
  
  /* 调整角色图片 */
  .character-image {
    width: 180px !important;
    height: 180px !important;
    bottom: 150px !important;
  }
  
  /* 隐藏原始分散的头像布局 */
  .character-stage > div:first-of-type > div[style*="position: relative"] {
    display: none !important;
  }
  
  /* 隐藏原始箭头 */
  .character-stage > div[onclick^="left"],
  .character-stage > div[onclick^="right"] {
    display: none !important;
  }
  
  /* 创建手机端专用的头像网格容器 */
  .mobile-avatar-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 400px !important;
    margin: 30px auto 0 !important;
    padding: 0 10px !important;
  }
  
  /* 手机端头像样式 */
  .mobile-avatar-grid .avatar-item {
    width: 100% !important;
    padding-bottom: 100% !important;
    position: relative !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: 3px solid transparent !important;
  }
  
  /* 选中头像的高亮效果 */
  .mobile-avatar-grid .avatar-item.active {
    border-color: #ffd700 !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8) !important;
  }
  
  /* 头像图片样式 */
  .mobile-avatar-grid .avatar-item img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
  }
  
  /* 调整角色信息显示 */
  #characterInfo {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    writing-mode: horizontal-tb !important;
    font-size: 18px !important;
    text-align: center !important;
    padding: 15px !important;
    margin-top: 20px !important;
    color: #ffd700 !important;
  }

  /* 隐藏所有箭头元素 */
    .character-arrow,
    .character-arrow-up,
    .character-arrow-down,
    .character-arrow-left,
    .character-arrow-right {
        display: none !important;
    }
    .bo{
         display: none !important;
    }
    /* 隐藏原始的头像容器 */
    [id^="avatarContainer"] {
        display: none !important;
    }
    .yy{
       display: none !important;  
    }
        
    /* 手机端角色名称容器样式 - 简化版 */
    .mobile-character-name-container {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px 0;
    }
        
    /* 手机端角色名称文字样式 - 简化版，直接使用fixed定位 */
    .mobile-character-text {
        position: fixed; /* 使用fixed定位可以确保在屏幕上固定位置 */
        top: 480px; /* 调整这个值可以上下移动文字位置 */
        left: 200px;
        transform: translateX(-50%); /* 水平居中 */
        font-size: 46px; /* 根据需要调整字体大小 */
        font-weight: bold;
        color: #0f0a1e; /* 与原样式保持一致的文字颜色 */
        text-align: center;
        line-height: 1.2;
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8); /* 添加文字阴影以提高可读性 */
        z-index: 1000; /* 确保文字显示在最上层 */
    }

.kk{
    display: none !important; 
}

      /* 为确保所有页脚相关元素都被隐藏，可以添加以下样式 */
    .footer-content,
    .footer-left,
    .footer-right,
    .footer-bottom,
    .footer-links,
    .footer-copyright {
        display: none !important;
    }
    
    /* 如果页脚有特定的ID，也一并隐藏 */
    #footer {
        display: none !important;
    }
}

