
        :root {
            --pow_k1h-primary: #0052cc;
            --pow_k1h-dark: #0a192f;
            --pow_k1h-light: #f4f7fa;
            --pow_k1h-accent: #64ffda;
            --pow_k1h-text: #334155;
            --pow_k1h-white: #ffffff;
            --pow_k1h-gap: 8px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            color: var(--pow_k1h-text);
            background-color: var(--pow_k1h-white);
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        /* 导航栏复用样式 */
        .pow_k1h-cokumi {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .pow_k1h-user {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .pow_k1h-amiqa {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            flex-wrap: wrap;
        }
        .pow_k1h-logo img {
            height: 40px;
            width: auto;
            display: block;
        }
        .pow_k1h-oret {
            display: flex;
            list-style: none;
            gap: 20px;
            flex-wrap: wrap;
        }
        .pow_k1h-oret li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
        }
        .pow_k1h-oret li a:hover, .pow_k1h-oret li a.pow_k1h-active {
            color: var(--pow_k1h-primary);
        }

        /* 创意布局样式 */
        .pow_k1h-fodede {
            padding: 96px 0;
            background: radial-gradient(circle at top right, #f0f7ff, #ffffff);
            overflow: hidden;
        }

        .pow_k1h-ixipi {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .pow_k1h-fodede-text {
            flex: 1;
            min-width: 320px;
        }

        .pow_k1h-fodede-text h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.2;
            color: var(--pow_k1h-dark);
            margin-bottom: 24px;
            font-weight: 800;
        }

        .pow_k1h-fodede-text p {
            font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
            color: #64748b;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .pow_k1h-yokugu {
            display: inline-block;
            padding: 16px 36px;
            background: var(--pow_k1h-primary);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .pow_k1h-yokugu:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 82, 204, 0.2);
        }

        .pow_k1h-poqufak {
            padding: 80px 0;
            background: var(--pow_k1h-dark);
            color: white;
        }

        .pow_k1h-poqufak-title {
            text-align: center;
            margin-bottom: 64px;
            width: 100%;
        }

        .pow_k1h-poqufak-title h2 {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .pow_k1h-poqufak-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            width: 100%;
        }

        .pow_k1h-guzi {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 12px;
            border-left: 4px solid var(--pow_k1h-accent);
            transition: background 0.3s;
        }

        .pow_k1h-guzi:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .pow_k1h-guzi h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--pow_k1h-accent);
        }

        .pow_k1h-guzi ul {
            list-style: none;
        }

        .pow_k1h-guzi ul li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }

        .pow_k1h-guzi ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--pow_k1h-accent);
        }

        .pow_k1h-bacoto {
            padding: 100px 0;
            background: var(--pow_k1h-light);
        }

        .pow_k1h-etujan {
            background: white;
            border-radius: 20px;
            padding: 48px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.03);
            margin-bottom: 40px;
            width: 100%;
        }

        .pow_k1h-etujan h4 {
            font-size: 1.8rem;
            margin-bottom: 24px;
            color: var(--pow_k1h-primary);
        }

        .pow_k1h-hilugeb {
            padding: 12px 24px;
            border: 2px solid var(--pow_k1h-primary);
            color: var(--pow_k1h-primary);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .pow_k1h-hilugeb:hover {
            background: var(--pow_k1h-primary);
            color: white;
        }

        .pow_k1h-azejuki {
            background: #0f172a;
            color: #94a3b8;
            padding: 64px 0 32px;
        }

        .pow_k1h-kuwafe {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
        }

        .pow_k1h-azejuki-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
        }

        .pow_k1h-azejuki-links {
            display: flex;
            gap: 48px;
            flex-wrap: wrap;
        }

        .pow_k1h-azejuki-col h5 {
            color: white;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .pow_k1h-azejuki-col a {
            display: block;
            color: #94a3b8;
            text-decoration: none;
            margin-bottom: 10px;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .pow_k1h-azejuki-col a:hover {
            color: var(--pow_k1h-accent);
        }

        .pow_k1h-copyright {
            margin-top: 64px;
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.85rem;
            width: 100%;
        }

        @media (max-width: 768px) {
            .pow_k1h-ixipi { padding: 0 16px; }
            .pow_k1h-fodede-text { text-align: center; }
            .pow_k1h-poqufak-grid { grid-template-columns: 1fr; }
            .pow_k1h-etujan { padding: 24px; }
            .pow_k1h-amiqa { height: auto; padding: 20px 0; }
            .pow_k1h-oret { justify-content: center; margin-top: 20px; }
        }
    