
        :root {
            --pow_k1h-primary: #2563eb;
            --pow_k1h-secondary: #64748b;
            --pow_k1h-accent: #0f172a;
            --pow_k1h-bg: #f8fafc;
            --pow_k1h-white: #ffffff;
            --pow_k1h-text: #1e293b;
            --pow_k1h-gradient: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        }

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

        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-bg);
            word-break: keep-all;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }

        /* 导航复用 */
        .pow_k1h-cokumi {
            background: var(--pow_k1h-white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .pow_k1h-user {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .pow_k1h-amiqa {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        .pow_k1h-logo img {
            height: 40px;
            width: auto;
            display: block;
        }
        .pow_k1h-oret {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 20px;
        }
        .pow_k1h-oret a {
            font-size: 15px;
            font-weight: 500;
            color: var(--pow_k1h-secondary);
            padding: 8px 4px;
        }
        .pow_k1h-oret a:hover, .pow_k1h-oret a.pow_k1h-active {
            color: var(--pow_k1h-primary);
            border-bottom: 2px solid var(--pow_k1h-primary);
        }

        /* 独特展示区 - 错落布局 */
        .pow_k1h-fodede {
            padding: 96px 0;
            background: var(--pow_k1h-gradient);
            color: var(--pow_k1h-white);
            position: relative;
            overflow: hidden;
        }
        .pow_k1h-fodede::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 50%;
            filter: blur(80px);
        }
        .pow_k1h-poqufak {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
            position: relative;
            z-index: 2;
        }
        .pow_k1h-ixipi {
            flex: 1;
            min-width: 320px;
        }
        .pow_k1h-ixipi h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.2;
            margin-bottom: 24px;
            font-weight: 800;
        }
        .pow_k1h-ixipi p {
            font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
            opacity: 0.9;
            margin-bottom: 32px;
            max-width: 600px;
        }

        /* 按钮组件 */
        .pow_k1h-hilugeb {
            display: inline-block;
            background: var(--pow_k1h-primary);
            color: white;
            padding: 16px 40px;
            border-radius: 8px;
            font-weight: 600;
            transition: transform 0.3s;
            border: none;
            cursor: pointer;
        }
        .pow_k1h-hilugeb:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        /* 内容区块 - 流程化卡片 */
        .pow_k1h-bacoto {
            padding: 80px 0;
        }
        .pow_k1h-amiqa-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            width: 100%;
        }
        .pow_k1h-guzi {
            background: var(--pow_k1h-white);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            transition: 0.3s;
            display: flex;
            flex-direction: column;
            min-width: 0;
            word-break: break-word;
        }
        .pow_k1h-guzi:hover {
            border-color: var(--pow_k1h-primary);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }
        .pow_k1h-yokugu {
            width: 48px;
            height: 48px;
            background: #eff6ff;
            color: var(--pow_k1h-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-weight: bold;
            font-size: 20px;
            margin-bottom: 24px;
        }
        .pow_k1h-guzi h3 {
            font-size: 22px;
            margin-bottom: 16px;
            color: var(--pow_k1h-accent);
        }
        .pow_k1h-etujan {
            font-size: 16px;
            color: var(--pow_k1h-secondary);
            line-height: 1.8;
        }

        /* 技术矩阵表格 */
        .pow_k1h-ixipi-matrix {
            background: #fff;
            padding: 64px 0;
        }
        .pow_k1h-matrix-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 32px;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
        }
        .pow_k1h-matrix-table th, .pow_k1h-matrix-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #f1f5f9;
        }
        .pow_k1h-matrix-table th {
            background: #f8fafc;
            font-weight: 600;
            color: var(--pow_k1h-accent);
        }

        /* 问答区域 */
        .pow_k1h-kuwafe {
            padding: 80px 0;
            background: #f1f5f9;
        }
        .pow_k1h-faq-item {
            margin-bottom: 24px;
            background: #fff;
            padding: 32px;
            border-radius: 12px;
        }
        .pow_k1h-faq-item h4 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--pow_k1h-primary);
            display: flex;
            align-items: center;
        }

        /* 页脚 */
        .pow_k1h-azejuki {
            background: var(--pow_k1h-accent);
            color: rgba(255,255,255,0.7);
            padding: 64px 0 32px;
        }
        .pow_k1h-footer-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            margin-bottom: 48px;
        }
        .pow_k1h-footer-col {
            flex: 1;
            min-width: 200px;
        }
        .pow_k1h-footer-col h5 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 24px;
        }
        .pow_k1h-footer-col ul {
            list-style: none;
        }
        .pow_k1h-footer-col li {
            margin-bottom: 12px;
        }
        .pow_k1h-footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 32px;
            text-align: center;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .pow_k1h-amiqa { height: auto; padding: 16px 0; }
            .pow_k1h-oret { gap: 10px; margin-top: 16px; }
            .pow_k1h-ixipi h1 { font-size: 2.5rem; }
            .pow_k1h-matrix-table { display: block; overflow-x: auto; }
        }
    