
        .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-image: url('../image/726.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}.content-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px 10px 0 0;
    box-sizing: border-box;
}

/* 响应式调整 */
.logo {
    max-width: 80%;
    height: auto;
    margin: 0 auto 10px;
    display: block;
}

.content-box h4 {
    margin: 8px 0;
    font-size: clamp(14px, 4vw, 18px);
}

/* 桌面端布局 */
@media (min-width: 768px) {
    .content-box {
        right: 20px;
        left: auto;
        bottom: 20px;
        width: auto;
        border-radius: 10px;
        background-color: rgba(0, 0, 0, 0.3);
    }
}

        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);
    }

