
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            display: flex;
            min-height: 100vh;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            overflow-x: hidden;
        }
        
        /* 侧边栏样式 - 保持不变 */
        .sidebar {
            width: 60px;
            background: linear-gradient(135deg,  #ff9a9e 0%, #fad0c4 100%);
            color: white;
            transition: all 0.4s ease;
            height: 100vh;
            position: fixed;
            overflow-y: auto;
            overflow-x: hidden;
            z-index: 1000;
            box-shadow: 3px 0 15px rgba(0, 0, 0, 0.1);
        }
        
        .sidebar:hover {
            width: 280px;
        }
        
        .sidebar-header {
            padding: 20px 15px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .sidebar-header i {
            font-size: 24px;
            margin-right: 15px;
        }
        
        .sidebar-header h2 {
            font-size: 18px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.2s ease 0.2s;
        }
        
        .sidebar:hover .sidebar-header h2 {
            opacity: 1;
        }
        
        .menu {
            padding: 15px 0;
        }
        
        .menu-item {
            padding: 12px 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            transition: all 0.3s;
            position: relative;
        }
        
        .menu-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .menu-item i {
            font-size: 18px;
            margin-right: 15px;
            min-width: 24px;
        }
        
        .menu-item span {
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.2s ease 0.2s;
        }
        
        .sidebar:hover .menu-item span {
            opacity: 1;
        }
        
        .submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: rgba(0, 0, 0, 0.15);
            margin-left: 10px;
            border-radius: 4px;
        }
        
        .sidebar:hover .submenu.active {
            max-height: 500px;
        }
        
        .submenu-item {
            padding: 10px 20px 10px 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .submenu-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .sidebar:hover .submenu-item {
            opacity: 1;
        }
        
        .active-category > .menu-item {
            background: rgba(255, 255, 255, 0.15);
        }
        

        .active-page {
            background: rgba(255, 255, 255, 0.2) !important;
            border-left: 3px solid #ffcc00;
        }
        
        /* 主内容区域 - 修改为右侧对齐 */
        .main-content {
            flex: 1;
            margin-left: 60px;
            transition: margin-left 0.4s ease;
            padding: 20px;
            display: flex;
            justify-content: center; /* 关键修改：使内容向右对齐 */
        }
        
        .sidebar:hover ~ .main-content {
            margin-left: 280px;
        }
        
        .content-container {
            width: 100%; /* 控制内容区域宽度 */
            max-width: 2000px;
        }
        
        .content-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e0e8f0;
        }
        
        .content-header h1 {
            color: #1a2a6c;
            font-size: 32px;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(90deg, #1a2a6c, #3a6ea5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .search-box {
            display: flex;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            width: 300px;
            border: 1px solid #e0e6ed;
        }
        
        .search-box input {
            flex: 1;
            border: none;
            padding: 12px 20px;
            outline: none;
            font-size: 16px;
            background: transparent;
        }
        
        .search-box button {
            background: linear-gradient(135deg, #2a5298, #1a2a6c);
            color: white;
            border: none;
            padding: 0 22px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 16px;
        }
        
        .search-box button:hover {
            background: linear-gradient(135deg, #1a2a6c, #2a5298);
        }
        
        .wiki-content {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            padding: 40px;
            min-height: 70vh;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.6s forwards 0.4s;
            border: 1px solid #eef2f7;
            position: relative;
            overflow: hidden;
            
        }
        
        .wiki-content:before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom,  #ff9a9e 0%, #fad0c4 100%);
        }
        
        .wiki-content h2 {
            color: #1a2a6c;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #f0f4f9;
            font-size: 26px;
            position: relative;
        }
        
        .wiki-content h2:after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #2a5298, #3a6ea5);
            border-radius: 3px;
        }
        
        .wiki-content p {
            line-height: 1.0;
            margin-bottom: 22px;
            color: #444;
            font-size: 17px;
        }
        
        .wiki-content ul {
            margin: 25px 0;
            padding-left: 25px;
        }
        
        .wiki-content li {
            margin-bottom: 14px;
            line-height: 1.7;
            font-size: 16px;
            position: relative;
            padding-left: 20px;
        }

        .wiki-content img{
            width: auto;
            vertical-align: middle;
        }
        
        .info-box {
            background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
            border-left: 4px solid #2a5298;
            padding: 22px 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 4px 8px rgba(42, 82, 152, 0.08);
        }
        
        .info-box p {
            margin-bottom: 0;
            color: #1a2a6c;
            font-size: 16px;
        }
        
        .info-box strong {
            color: #1a2a6c;
        }
        
        .category-tag {
            display: inline-block;
            background: linear-gradient(135deg, #eef4ff 0%, #dfe9ff 100%);
            color: #2a5298;
            padding: 7px 16px;
            border-radius: 30px;
            font-size: 14px;
            margin-right: 10px;
            margin-bottom: 12px;
            border: 1px solid #d6e0f0;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .category-tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(42, 82, 152, 0.15);
        }
        
        .content-footer {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 2px solid #f0f4f9;
            display: flex;
            justify-content: space-between;
            color: #5a6c84;
            font-size: 15px;
            align-items: center;
        }
        
        .last-updated {
            background: #f0f7ff;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 500;
        }
        
        .contributors {
            display: flex;
            align-items: center;
        }
        
        .contributors span {
            margin-right: 12px;
            font-weight: 500;
        }
        
        .contributors img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            margin-left: 8px;
            border: 2px solid white;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
            transition: all 0.3s;
        }
        
        .contributors img:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* 动画效果 */
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .content-container {
                width: 92%;
            }
        }
        
        @media (max-width: 992px) {
            .content-container {
                width: 95%;
            }
            
            .wiki-content {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .sidebar {
                width: 50px;
            }
            
            .sidebar:hover {
                width: 260px;
            }
            
            .main-content {
                margin-left: 50px;
            }
            
            .sidebar:hover ~ .main-content {
                margin-left: 260px;
            }
            
            .content-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .search-box {
                width: 100%;
                margin-top: 20px;
            }
            .image-carousel-container {
                position: relative;
                width: 100%;
                margin-bottom: 30px;
                display: flex;
                justify-content: center;
            }      

            .image-carousel {
                position: relative;
                max-width: 100%;
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
                display: flex;
                justify-content: center;
                align-items: center;
            }
        
            .carousel-container {
                position: relative;
                width: 100%;
                max-width: 900px; /* 最大宽度限制 */
                overflow: hidden;
            }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }
        
        .carousel-slide.active {
            opacity: 1;
            z-index: 10;
        }
        
        .slide-caption {
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 15px 25px;
            width: 100%;
            text-align: center;
            font-size: 18px;
            backdrop-filter: blur(5px);
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            z-index: 20;
            padding: 0 20px;
        }
        
        .carousel-btn {
            background: rgba(255, 255, 255, 0.7);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .carousel-btn:hover {
            background: white;
            transform: scale(1.1);
        }
        
        .carousel-btn i {
            font-size: 24px;
            color: #1a2a6c;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 20;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .indicator.active {
            background: white;
            transform: scale(1.2);
        }
            
            .content-container {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .wiki-content {
                padding: 25px 20px;
            }
            
            .content-footer {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .contributors {
                margin-top: 20px;
            }
        }
        .chardata
        {
            margin: auto;
            width: 50%;
            padding: 10px;
            text-align: center;
        }
        .paneldata
        {
            padding: 20px;
            display: inline-block;

        }

        .item_text
        {
            flex: 1;
        }

        .item_img
        {
            width: 200px;        /* 固定宽度 */
            height: 200px;       /* 固定高度 */
            background-color: #f0f0f0; /* 可选：背景色 */
            display: flex;       /* 内部使用Flex布局 */
            align-items: center; /* 水平居中 */
            justify-content: center; /* 垂直居中 */

            
        }

        .charitem
        {
            display: flex;
            align-items: center;
            padding: 40px;
            background-color: white;
            box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
            border-radius: 16px;
        }

        
        .image-carousel-container {
            position: relative;
            width: 100%;
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
        }
        
        .image-carousel {
            position: relative;
            max-width: 100%;
            border-radius: 16px;
            overflow: hidden;
            filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 900px; /* 最大宽度限制 */
            overflow: hidden;
        }
        
        .carousel-slide {
            position: relative;
            width: 100%;
            display: none;
            transition: opacity 0.8s ease-in-out;
        }
        
        .carousel-slide.active {
            display: block;
            animation: slideIn 0.8s ease;
        }
        
        .carousel-slide img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }
        
        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            color: rgb(36, 36, 36);
            padding: 15px 25px;
            text-align: center;
            font-size: 18px;

        }
        
        /* 翻页按钮位置调整 */
        .carousel-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            z-index: 20;
            padding: 0;
            pointer-events: none;
        }
        
        .carousel-btn {
            background: rgba(255, 255, 255, 0.7);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            pointer-events: auto;
        }
        
        .prev-btn {
            margin-left: -70px; /* 向左移动 */
        }
        
        .next-btn {
            margin-right: -70px; /* 向右移动 */
        }
        
        .carousel-btn:hover {
            background: white;
            transform: scale(1.1);
        }
        
        .carousel-btn i {
            font-size: 24px;
            color: #1a2a6c;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 20;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .indicator.active {
            background: white;
            transform: scale(1.2);
        }
        #icon-btn {
            background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            position: relative;
        }

        
        #icon-btn:hover {
            transform: translateY(-5px) rotate(10deg);
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
            background: linear-gradient(135deg, #fad0c4 0%, #ff9a9e 100%);
        }
        
        #icon-btn i {
            font-size: 32px;
            color: #fff;
        }
        @keyframes abbr-tooltip-animation {
            from { 
                opacity: 0; 
                transform: translateX(-50%) translateY(10px); 
            }
            to { 
                opacity: 1; 
                transform: translateX(-50%) translateY(0); 
            }
        }
        
        /* 工具提示 */
        .tooltip {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        #icon-btn:hover .tooltip {
            opacity: 1;
            visibility: visible;
            bottom: -35px;
        }

        abbr {
        cursor: help;
        position: relative;
        text-decoration: none;
        transition: all 0.3s ease;
        }

                /* 自定义工具提示 */
        abbr[title]:hover::after {
            content: attr(title);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #2c3e50;
            color: white;
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 0.9rem;
            white-space: nowrap;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            animation: abbr-tooltip-animation 0.3s ease;
        }
        
        /* 为工具提示添加小箭头 */
        abbr[title]:hover::before {
            content: '';
            position: absolute;
            bottom: calc(100% - 5px);
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: #2c3e50;
        }

        /* 经典下划线样式 */
        .underline abbr {
        border-bottom: 2px dashed #3498db;
        }
        .underline abbr:hover {
        background-color: #e1f0fa;
        border-bottom: 2px solid #2980b9;
        }
        a
        {
            color: inherit;
            text-decoration: none;
        }
        .search-box {
            display: flex;
            width: 1000px;
            margin: 30px auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border-radius: 20px;
            overflow: hidden;
        }
        
        .search-box input {
            flex: 1;
            padding: 15px 25px;
            border: none;
            font-size: 1.1rem;
            background: rgba(255, 255, 255, 0.9);
        }
        
        .search-box button {
            padding: 0 25px;
            background: #e6f2ff;
            color: rgb(42, 46, 71);
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .search-box button:hover {
            background: #5783b1;
        }
        
        .categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }
        
        .category-btn {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: rgb(0, 0, 0);
            padding: 8px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .category-btn:hover, .category-btn.active {
            background: rgba(0, 0, 0, 0.3);
        }
        
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        
        .card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 12px;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }
        
        .card:hover {
            transform: translateY(-5px) scale(1.08);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            z-index: 10;
        }
        
        .icon-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .card:hover .icon-img {
            transform: scale(1.15);
        }
        
        .tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin-top: 10px;
        }
        
        .tag {
            background: rgba(255, 255, 255, 0.15);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        .empty-state {
            grid-column: 1 / -1;
            text-align: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            margin-top: 20px;
        }
        
        .empty-state i {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.6;
        }
       @media (max-width: 768px) {
            .grid {
                gap: 12px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            .search-box {
                max-width: 400px;
            }
        }
        
        @media (max-width: 480px) {
            .grid {
                grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
                gap: 10px;
            }
            
            .card {
                width: 65px;
                height: 65px;
            }
            
            .icon-img {
                width: 45px;
                height: 45px;
            }
        }
        
        /* ---------- 数据表格：与内容卡片风格统一 ---------- */
        .wiki-table {
            width: 100%;
            max-width: 760px;
            margin: 25px 0;
            border-collapse: separate;
            border-spacing: 0;
            overflow: hidden;
            background: #fff;
            border: 1px solid #e0e8f0;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(26, 42, 108, 0.08);
            font-size: 15px;
            line-height: 1.6;
            color: #333;
        }

        .wiki-table thead th {
            padding: 12px 20px;
            text-align: center;
            background: linear-gradient(135deg, #ff9a9e, #ff9a9e);
            color: #fff;
            font-weight: 600;
            letter-spacing: 1px;
            white-space: nowrap;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .wiki-table tbody td {
            padding: 11px 20px;
            text-align: center;
            border-bottom: 1px solid #eef2f7;
            color: #444;
        }

        .wiki-table tbody tr:nth-child(even) td {
            background: #f6f9fd;
        }
/*
        .wiki-table tbody tr:hover td {
            background: #ecf3fb;
        }
*/
        .wiki-table tbody tr:last-child td {
            border-bottom: none;
        }

    