        /* ===== 全局重置 & 字体 ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f4f7fc;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem 1.5rem;
            color: #1e293b;
        }

        /* ===== 主卡片容器 ===== */
        .company-wrapper {
            max-width: 1280px;
            width: 100%;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border-radius: 3.5rem;
            padding: 3rem 2.5rem 3.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.6) inset;
            transition: all 0.2s ease;
        }

        /* ===== 公司头部 ===== */
        .company-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
            border-bottom: 2px solid rgba(0, 0, 0, 0.04);
            padding-bottom: 1.5rem;
        }

        .company-header .logo-icon {
            font-size: 2.8rem;
            color: #2563eb;
            background: #dbeafe;
            width: 4.5rem;
            height: 4.5rem;
            border-radius: 1.6rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 16px -8px rgba(37, 99, 235, 0.2);
        }

        .company-header .title-group h1 {
            font-size: 2.4rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            background: linear-gradient(145deg, #0f172a, #334155);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .company-header .title-group .subhead {
            font-size: 1rem;
            font-weight: 400;
            color: #64748b;
            margin-top: 0.1rem;
            letter-spacing: 0.3px;
        }

        .company-header .title-group .subhead i {
            margin-right: 0.4rem;
            color: #3b82f6;
        }

        /* ===== 工作室网格 ===== */
        .studios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
            gap: 2rem;
            margin-top: 0.75rem;
        }

        /* ===== 工作室卡片 ===== */
        .studio-card {
            background: #ffffff;
            border-radius: 2rem;
            padding: 1.8rem 1.6rem 2rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
            transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.2s;
            border: 1px solid rgba(226, 232, 240, 0.7);
            display: flex;
            flex-direction: column;
            position: relative;
            backdrop-filter: blur(2px);
        }

        .studio-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px #e2e8f0;
            border-color: #b9d0f0;
        }

        /* 卡片顶部：序号 + 图标 */
        .card-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .studio-number {
            font-size: 0.75rem;
            font-weight: 600;
            color: #94a3b8;
            letter-spacing: 0.5px;
            background: #f1f5f9;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
        }

        .studio-icon {
            font-size: 2rem;
            color: #2563eb;
            opacity: 0.7;
            transition: opacity 0.2s;
        }

        .studio-card:hover .studio-icon {
            opacity: 1;
        }

        /* 卡片主体 */
        .studio-name {
            font-size: 1.5rem;
            font-weight: 650;
            margin-bottom: 0.4rem;
            letter-spacing: -0.3px;
            color: #0f172a;
        }

        .studio-desc {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #475569;
            margin-bottom: 1.5rem;
            flex: 1;
        }

        /* 官网链接按钮 */
        .studio-link {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: #f8fafc;
            color: #1e293b;
            padding: 0.65rem 1.2rem;
            border-radius: 60px;
            font-weight: 500;
            font-size: 0.9rem;
            text-decoration: none;
            border: 1px solid #e2e8f0;
            transition: all 0.25s ease;
            margin-top: auto;
            align-self: flex-start;
            width: auto;
            backdrop-filter: blur(2px);
        }

        .studio-link i {
            font-size: 0.85rem;
            transition: transform 0.2s ease;
            color: #3b82f6;
        }

        .studio-link:hover {
            background: #2563eb;
            color: #ffffff;
            border-color: #2563eb;
            box-shadow: 0 8px 18px -8px rgba(37, 99, 235, 0.3);
            transform: scale(1.02);
        }

        .studio-link:hover i {
            color: #ffffff;
            transform: translateX(4px);
        }

        /* ===== 底部信息 ===== */
        .company-footer {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.04);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.8rem;
            font-size: 0.9rem;
            color: #94a3b8;
        }

        .company-footer .total-badge {
            background: #eef2ff;
            color: #4338ca;
            padding: 0.25rem 1rem;
            border-radius: 60px;
            font-weight: 500;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .company-footer .total-badge i {
            font-size: 0.8rem;
        }

        .company-footer .copyright {
            letter-spacing: 0.2px;
        }

        /* ===== 响应式微调 ===== */
        @media (max-width: 640px) {
            .company-wrapper {
                padding: 1.8rem 1.2rem 2.2rem;
                border-radius: 2.2rem;
            }

            .company-header .logo-icon {
                width: 3.6rem;
                height: 3.6rem;
                font-size: 2rem;
                border-radius: 1.2rem;
            }

            .company-header .title-group h1 {
                font-size: 1.8rem;
            }

            .studios-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .studio-card {
                padding: 1.5rem 1.2rem 1.6rem;
            }

            .company-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.6rem;
            }
        }

        @media (min-width: 641px) and (max-width: 900px) {
            .studios-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* 选中高亮装饰 (可选) */
        .studio-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 2rem;
            pointer-events: none;
            box-shadow: 0 0 0 2px transparent;
            transition: box-shadow 0.3s ease;
        }

        .studio-card:hover::after {
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
        }