<style>
        :root {
            --primary-color: #ff9eb5; /* 主色调 */
            --secondary-color: #89c3eb; /* 辅色调 */
        }

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

        body {
            background: linear-gradient(135deg, #fff5f7 0%, #f0f9ff 100%);
            min-height: 100vh;
        }

        /* 头部样式 */
        header {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .logo {
            width: 300px;
            height: 100px;
            background: url('/imgs/zhenblogo.png') no-repeat center/contain;
            margin: 0 auto;
        }

        /* 主要内容区 */
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 15px;
        }

        /* 分类区块 */
        .section {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
            backdrop-filter: blur(5px);
        }

        h2 {
            color: #2c4c93;
            margin-bottom: 15px;
            padding-left: 10px;
            border-left: 4px solid var(--secondary-color);
        }

        /* 链接网格 */
        .link-grid {
            display: grid;
            grid-template-columns: repeat(10, 1fr);
            gap: 10px;
        }

        /* 图片链接区 */
        .image-links {
            display: flex;
            flex-wrap: wrap;
            grid-template-columns: repeat(10, 1fr);
            gap: 15px;
            justify-content: center;
        }

        .image-link {
            width: 75px;
            height: 75px;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .image-link img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-link:hover {
            transform: translateY(-5px);
        }

        /* 文字链接 */
        .link-item {
            text-align: center;
            padding: 8px;
            font-size: 13px;
            background: #ffdfb4;
            border-radius: 8px;
            color: #000000;
            text-decoration: none;
            transition: background 0.3s;
        }

        .link-item:hover {
            background: #bcc4ff;
        }

        /* 底部样式 */
        footer {
            background: rgba(255, 255, 255, 0.9);
            padding: 20px;
            text-align: center;
            margin-top: 40px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }

        .footer-links a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .link-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .image-link {
                width: 80px;
                height: 80px;
            }

            .container {
                padding: 0 10px;
            }

            h2 {
                font-size: 1.2rem;
            }
        }
    </style>