
        .icp-footer {
        position: relative;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        padding: 10px 0;
        z-index: 1000;
    }
        :root {
            --main-purple: #6a1b9a;
            --light-purple: #9c27b0;
            --accent: #e1bee7;
        }
        .st{
            width: 100px;
            height: 100px;
            position: fixed;
            right: 0px;
            top: 500px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }

        body {
            background: linear-gradient(135deg, var(--accent), #f3e5f5);
            line-height: 1.6;
        }
        

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            background: var(--main-purple);
            padding: 2rem;
            text-align: center;
            border-bottom: 3px solid var(--accent);
        }

        h1 {
            color: white;
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2rem 0;
        }

        .character-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .character-card:hover {
            transform: translateY(-5px);
        }

        .character-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-bottom: 3px solid var(--light-purple);
        }

        .character-info {
            padding: 1.5rem;
            background: linear-gradient(45deg, white, #f8f0fc);
        }

        h2 {
            color: var(--main-purple);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        p {
            color: #4a148c;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .character-img {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .character-card {
                margin: 0 10px;
            }
        }
           /* 新增放大镜样式 */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.8);
        z-index: 999;
        cursor: zoom-out;
    }

    .modal-img {
        position: absolute;
        max-width: 90%;
        max-height: 90%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 3px solid var(--light-purple);
        border-radius: 8px;
        box-shadow: 0 0 30px rgba(158, 41, 181, 0.6);
        object-fit: contain;
    }


    /* 适配移动端点击 */
    @media (hover: none) {
        .character-img {
            cursor: pointer;
        }
    }
   

    @keyframes starGlow {
        0% {
            filter: hue-rotate(0deg);
            text-shadow: 0 0 10px rgba(138,43,226,0.5);
        }
        100% {
            filter: hue-rotate(20deg);
            text-shadow: 0 0 30px rgba(138,43,226,0.8),
                         0 0 50px rgba(255,110,196,0.4);
        }
    }
    a {
  display: inline-block;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  color: white;
  background-color: #8a2be2; /* 基础紫色 */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin: 2px;
}

a:hover {
  background-color: #9932cc; /* 悬停时使用稍深的紫色 */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

a:active {
  background-color: #9400d3; /* 点击时使用更深的紫色 */
  transform: translateY(0);
}

a:visited {
  background-color: #9370db; /* 访问过的链接使用柔和的紫色 */
}


   
    .contributors-table {
        width: 100%;
        max-width: 800px;
        margin: 2rem auto;
        border-collapse: collapse;
        background: rgba(255,255,255,0.9);
        box-shadow: 0 0 20px rgba(138,43,226,0.1);
        border-radius: 12px;
        overflow: hidden;
    }

    .contributors-table th {
        background: linear-gradient(45deg, #6a1b9a, #9c27b0);
        color: white;
        padding: 1.2rem;
        font-size: 1.1rem;
        text-align: left;
    }

    .contributors-table td {
        padding: 1rem;
        border-bottom: 1px solid #e1bee7;
        color: #4a148c;
    }

    .contributors-table tr:last-child td {
        border-bottom: none;
    }

    .contributors-table tr:nth-child(even) {
        background-color: #f8f0fc;
    }

    .contributors-table tr:hover {
        background-color: #f3e5f5;
        transform: scale(1.02);
        transition: all 0.3s ease;
    }

    @media (max-width: 600px) {
        .contributors-table {
            margin: 1rem;
        }
        .contributors-table th,
        .contributors-table td {
            padding: 0.8rem;
            font-size: 0.9rem;
        }
    }
    :root {
        --trail-color-1: rgba(138,43,226,0.6);
        --trail-color-2: rgba(255,110,196,0.4);
    }


        /* 头部样式 */
        .header-banner {
            background-image: url(../image/726.webp);
            background-size: cover;
            background-position: center;
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        /* 内容容器 - 固定在右下角 */
        .content-container {
            position: absolute;
            right: 30px;
            bottom: 30px;
            width: 30%;
            text-align: right;
            z-index: 100;
            color: white;
            padding: 20px;
            background-color: rgba(0,0,0,0.3);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .content-container img {
            margin-bottom: 10px;
            max-width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }
        
        .content-container img:hover {
            transform: scale(1.05);
        }
        
        .content-container h4 {
            margin: 5px 0;
            font-weight: 300;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        }
        
        /* 主容器 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        
        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .fade-in {
            animation: fadeIn 1s ease-in;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .content-container {
                width: 40%;
            }
        }
        
        @media (max-width: 768px) {
            .content-container {
                width: 80%;
                right: 10%;
                bottom: 20px;
                text-align: center;
            }
            
            .character-grid {
                grid-template-columns: 1fr;
            }
            
            .character-info a {
                display: block;
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .contributors-table {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .content-container {
                width: 90%;
                right: 5%;
                padding: 15px;
            }
            
            .content-container img {
                height: 250px;
            }
            
            .character-img {
                height: 250px;
            }
            
            .contributors-table {
                font-size: 0.8rem;
            }
        }
           @media (min-width: 992px) {
            .header-banner {
                height: 100vh;
            }
        }
        
        @media (max-width: 991px) {
            .header-banner {
                height: 70vh;
            }
            
            .content-container {
                width: 40%;
            }
        }
        
       @media (max-width: 768px) {
            .header-banner {
                height: 70vh;
            }
            
            .content-container {
                width: 80%;
                right: 10%;
                bottom: 20px;
                /* 手机端边框透明 */
                border-color: transparent;
              
            }
            
            .character-grid {
                grid-template-columns: 1fr;
            }
            
            .character-info .links {
                flex-direction: column;
            }
            
            .contributors-table {
                font-size: 0.9rem;
            }
        }
    @media (max-width: 576px) {
            .header-banner {
                height: 60vh;
            }
            
            .content-container {
                width: 90%;
                right: 5%;
                padding: 20px;
                bottom: 15px;
                /* 进一步优化手机端样式 */
                border-radius: 12px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.4);
            }
            
            .content-container img {
                height: 160px;
            }
            
            .character-img {
                height: 250px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .contributors-table {
                font-size: 0.85rem;
            }
        }
        @media (max-width: 480px) {
            .header-banner {
                height: 45vh;
            }
            
            .content-container {
                position: relative;
                width: 90%;
                margin: 20px auto;
                right: auto;
                bottom: auto;
                text-align: center;
            }
        }
          /* 新增卡片样式 */
        .info-card {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 500px;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            border: 2px solid #6a0dad;
            animation: cardAppear 0.5s ease-out forwards;
            color: #fff;
            text-align: center;
        }
        
        .info-card h2 {
            color: #e94560;
            margin-bottom: 20px;
            font-size: 28px;
            text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
        }
        
        .info-card p {
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .info-card ul {
            text-align: left;
            margin: 20px 0;
            padding-left: 20px;
        }
        
        .info-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .info-card ul li:before {
            content: "✦";
            position: absolute;
            left: 0;
            color: #0f3460;
        }
        
        .close-btn {
            background: linear-gradient(to right, #e94560, #8a2be2);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 16px;
            margin-top: 15px;
            transition: all 0.3s;
            font-weight: bold;
        }
        
        .close-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
        }
        
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
            backdrop-filter: blur(5px);
        }
        
        .st {
            cursor: pointer;
            transition: all 0.3s;
            position: fixed;
            right: 0px;
            top: 500px;
        }
        
        .st:hover {
            transform: scale(1.05);
        }
        
        .st:hover img {
            filter: drop-shadow(0 0 10px #8a2be2);
        }
        
        @keyframes cardAppear {
            0% {
                opacity: 0;
                transform: translate(-50%, -40%);
            }
            100% {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }
        
        .highlight {
            color: #e94560;
            font-weight: bold;
        }