/* 基础变量与重置 */
        :root {
            --hilxq-color-brand: #FF5A00;
            --hilxq-color-brand-light: #FFF0E6;
            --hilxq-color-purple: #8B5CF6;
            --hilxq-color-yellow: #FBBF24;
            --hilxq-color-text-main: #1F2937;
            --hilxq-color-text-sub: #4B5563;
            --hilxq-color-bg-page: #FAFAFC;
            --hilxq-color-bg-card: #FFFFFF;
            
            --hilxq-font-fluid-h1: clamp(2.5rem, 4vw + 1rem, 4rem);
            --hilxq-font-fluid-h2: clamp(2rem, 3vw + 0.5rem, 3rem);
            --hilxq-font-fluid-h3: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
            --hilxq-font-fluid-p: clamp(1rem, 1vw + 0.5rem, 1.125rem);
            
            --hilxq-space-xs: 8px;
            --hilxq-space-sm: 16px;
            --hilxq-space-md: 24px;
            --hilxq-space-lg: 32px;
            --hilxq-space-xl: 48px;
            --hilxq-space-2xl: 64px;
            --hilxq-space-3xl: 96px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--hilxq-color-bg-page);
            color: var(--hilxq-color-text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* 强制文本换行规范 */
        .hiLxq-text-wrap {
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }
        
        .hiLxq-text-zh {
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        /* 布局容器 */
        .hiLxq-kazuw {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--hilxq-space-md);
            width: 100%;
        }

        /* 导航栏 (复用结构) */
        .hiLxq-veca {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .hiLxq-veca .hiLxq-wefimef {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            min-height: 72px;
        }
        
        .hiLxq-veca .hiLxq-logo,
        .hiLxq-veca .hiLxq-uhuwi {
            min-width: 0;
        }

        .hiLxq-veca .hiLxq-logo img {
            height: 32px;
            display: block;
        }

        .hiLxq-xugupe-list {
            display: flex;
            flex-wrap: wrap;
            gap: var(--hilxq-space-md);
        }

        .hiLxq-xugupe {
            font-size: 1rem;
            color: var(--hilxq-color-text-sub);
            padding: var(--hilxq-space-xs) var(--hilxq-space-sm);
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
            min-width: 0;
        }

        .hiLxq-xugupe:hover,
        .hiLxq-xugupe.active {
            color: var(--hilxq-color-brand);
            background: var(--hilxq-color-brand-light);
        }

        /* 展示区域 1: 首屏 (pawu) - 对角线视觉风格 */
        .hiLxq-pawu {
            padding: var(--hilxq-space-3xl) 0;
            background: linear-gradient(135deg, #FFF0E6 0%, #FAFAFC 100%);
            position: relative;
            overflow: hidden;
        }

        .hiLxq-pawu::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 50%;
            height: 120%;
            background: linear-gradient(to bottom right, rgba(255,90,0,0.1), rgba(139,92,246,0.1));
            transform: rotate(-15deg);
            border-radius: 40px;
            z-index: 0;
        }

        .hiLxq-pawu-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: var(--hilxq-space-2xl);
            position: relative;
            z-index: 1;
        }

        .hiLxq-pawu-text,
        .hiLxq-pawu-visual {
            flex: 1 1 400px;
            min-width: 0;
        }

        .hiLxq-pawu-text h1 {
            font-size: var(--hilxq-font-fluid-h1);
            color: var(--hilxq-color-text-main);
            margin-bottom: var(--hilxq-space-md);
            line-height: 1.2;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .hiLxq-pawu-text h1 span {
            color: var(--hilxq-color-brand);
            position: relative;
            display: inline-block;
        }

        .hiLxq-pawu-text h1 span::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 12px;
            background: var(--hilxq-color-yellow);
            opacity: 0.4;
            z-index: -1;
            border-radius: 4px;
        }

        .hiLxq-pawu-text p {
            font-size: var(--hilxq-font-fluid-p);
            color: var(--hilxq-color-text-sub);
            margin-bottom: var(--hilxq-space-xl);
            line-height: 1.8;
            max-width: 90%;
        }

        .hiLxq-pawu-actions {
            display: flex;
            flex-wrap: wrap;
            gap: var(--hilxq-space-sm);
        }

        .hiLxq-ihojaqa {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            background: var(--hilxq-color-brand);
            color: white;
            font-size: 1.125rem;
            font-weight: bold;
            border-radius: 100px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 20px rgba(255, 90, 0, 0.25);
            min-width: 0;
        }

        .hiLxq-ihojaqa:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(255, 90, 0, 0.35);
        }

        .hiLxq-sexocu {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            background: white;
            color: var(--hilxq-color-text-main);
            font-size: 1.125rem;
            font-weight: bold;
            border-radius: 100px;
            border: 2px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            min-width: 0;
        }

        .hiLxq-sexocu:hover {
            border-color: var(--hilxq-color-brand);
            color: var(--hilxq-color-brand);
            transform: translateY(-3px);
        }

        /* 视觉徽章/插画替代 */
        .hiLxq-pawu-badge-group {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            max-width: 500px;
            margin: 0 auto;
        }

        .hiLxq-badge-main {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70%;
            height: 70%;
            background: white;
            border-radius: 32px;
            box-shadow: 0 24px 48px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0,0,0,0.02);
            z-index: 2;
        }

        .hiLxq-badge-float {
            position: absolute;
            background: white;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 12px 24px rgba(0,0,0,0.06);
            z-index: 3;
            transition: transform 0.5s ease;
        }

        .hiLxq-badge-float:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .hiLxq-badge-float-1 { top: 10%; left: 0; }
        .hiLxq-badge-float-2 { bottom: 15%; right: -5%; }
        .hiLxq-badge-float-3 { top: 20%; right: 5%; background: var(--hilxq-color-brand); color: white; border-radius: 50%; padding: 24px; }


        /* 展示区域 2: 核心功能 (udutuc) - 错落网格 */
        .hiLxq-udutuc {
            padding: var(--hilxq-space-3xl) 0;
            background: white;
        }

        .hiLxq-udutuc-header {
            text-align: center;
            margin-bottom: var(--hilxq-space-2xl);
        }

        .hiLxq-udutuc-header h2 {
            font-size: var(--hilxq-font-fluid-h2);
            margin-bottom: var(--hilxq-space-sm);
        }

        .hiLxq-udutuc-grid {
            display: flex;
            flex-wrap: wrap;
            gap: var(--hilxq-space-lg);
        }

        .hiLxq-cawojih {
            flex: 1 1 320px;
            min-width: 0;
            background: var(--hilxq-color-bg-page);
            border-radius: 24px;
            padding: var(--hilxq-space-xl) var(--hilxq-space-lg);
            border: 1px solid rgba(0,0,0,0.03);
            transition: transform 0.3s ease, background 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .hiLxq-cawojih:hover {
            transform: translateY(-8px);
            background: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
            border-color: rgba(255,90,0,0.1);
        }

        .hiLxq-cawojih-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--hilxq-space-lg);
        }
        
        .hiLxq-icon-purple { background: rgba(139, 92, 246, 0.1); color: var(--hilxq-color-purple); }
        .hiLxq-icon-orange { background: rgba(255, 90, 0, 0.1); color: var(--hilxq-color-brand); }
        .hiLxq-icon-yellow { background: rgba(251, 191, 36, 0.15); color: #D97706; }

        .hiLxq-cawojih h3 {
            font-size: var(--hilxq-font-fluid-h3);
            margin-bottom: var(--hilxq-space-sm);
            color: var(--hilxq-color-text-main);
        }

        .hiLxq-cawojih p {
            color: var(--hilxq-color-text-sub);
            line-height: 1.7;
        }

        /* 展示区域 3: 场景/图库展示 (zuvacot) - 瀑布流/标签墙 */
        .hiLxq-zuvacot {
            padding: var(--hilxq-space-3xl) 0;
            background: var(--hilxq-color-bg-page);
        }

        .hiLxq-zuvacot-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: var(--hilxq-space-2xl);
        }

        .hiLxq-zuvacot-info,
        .hiLxq-zuvacot-gallery {
            flex: 1 1 450px;
            min-width: 0;
        }

        .hiLxq-zuvacot-info h2 {
            font-size: var(--hilxq-font-fluid-h2);
            margin-bottom: var(--hilxq-space-md);
        }

        .hiLxq-zuvacot-info p {
            font-size: var(--hilxq-font-fluid-p);
            color: var(--hilxq-color-text-sub);
            margin-bottom: var(--hilxq-space-lg);
        }

        .hiLxq-zuvacot-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: var(--hilxq-space-sm);
        }

        .hiLxq-akoqumi {
            flex: 0 1 auto;
            min-width: 0;
            padding: 16px 24px;
            background: white;
            border-radius: 100px;
            font-weight: 600;
            color: var(--hilxq-color-text-main);
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .hiLxq-akoqumi:hover {
            background: var(--hilxq-color-brand);
            color: white;
            transform: scale(1.05);
        }
        
        /* 增加动态尺寸增强视觉丰富度 */
        .hiLxq-akoqumi:nth-child(2n) { padding: 20px 32px; font-size: 1.1rem; }
        .hiLxq-akoqumi:nth-child(3n) { padding: 12px 20px; font-size: 0.9rem; }

        /* 页脚区域 (复用结构重构) */
        .hiLxq-ibotoba {
            background: white;
            padding: var(--hilxq-space-3xl) 0 var(--hilxq-space-xl);
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .hiLxq-ibotoba .hiLxq-wefimef {
            display: flex;
            flex-wrap: wrap;
            gap: var(--hilxq-space-2xl);
            justify-content: space-between;
        }

        .hiLxq-ibotoba-brand {
            flex: 1 1 300px;
            min-width: 0;
        }

        .hiLxq-ibotoba-brand h4 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: var(--hilxq-space-sm);
            color: var(--hilxq-color-text-main);
        }

        .hiLxq-ibotoba-brand p {
            color: var(--hilxq-color-text-sub);
            max-width: 80%;
        }

        .hiLxq-ibotoba-links {
            flex: 2 1 500px;
            min-width: 0;
            display: flex;
            flex-wrap: wrap;
            gap: var(--hilxq-space-xl);
        }

        .hiLxq-ugej-group {
            flex: 1 1 120px;
            min-width: 0;
        }

        .hiLxq-ugej-group h5 {
            font-size: 1.125rem;
            margin-bottom: var(--hilxq-space-md);
            color: var(--hilxq-color-text-main);
        }

        .hiLxq-ugej-list {
            list-style: none;
        }

        .hiLxq-ugej-list li {
            margin-bottom: var(--hilxq-space-sm);
        }

        .hiLxq-ugej {
            color: var(--hilxq-color-text-sub);
            transition: color 0.3s ease;
        }

        .hiLxq-ugej:hover {
            color: var(--hilxq-color-brand);
        }
        
        .hiLxq-ibotoba-bottom {
            margin-top: var(--hilxq-space-2xl);
            padding-top: var(--hilxq-space-md);
            border-top: 1px solid rgba(0,0,0,0.05);
            text-align: center;
            color: var(--hilxq-color-text-sub);
            font-size: 0.875rem;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .hiLxq-veca .hiLxq-xugupe-list {
                display: none; /* 移动端简易处理，保持核心布局不崩 */
            }
            .hiLxq-pawu-inner {
                flex-direction: column-reverse;
                text-align: center;
            }
            .hiLxq-pawu-text p {
                max-width: 100%;
            }
            .hiLxq-pawu-actions {
                justify-content: center;
            }
            .hiLxq-pawu-badge-group {
                max-width: 300px;
            }
            .hiLxq-zuvacot-wrap {
                flex-direction: column;
            }
        }

.hiLxq-hdr-veca {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    word-break: keep-all;
    color: var(--hiLxq-text);
}
.hiLxq-hdr-veca,
.hiLxq-hdr-veca *,
.hiLxq-hdr-veca *::before,
.hiLxq-hdr-veca *::after {
    box-sizing: border-box;
}

.hiLxq-hdr-veca nav,
.hiLxq-hdr-veca div,
.hiLxq-hdr-veca section,
.hiLxq-hdr-veca article,
.hiLxq-hdr-veca aside,
.hiLxq-hdr-veca p,
.hiLxq-hdr-veca h1,
.hiLxq-hdr-veca h2,
.hiLxq-hdr-veca h3,
.hiLxq-hdr-veca h4,
.hiLxq-hdr-veca h5,
.hiLxq-hdr-veca h6,
.hiLxq-hdr-veca a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.hiLxq-hdr-veca p,
.hiLxq-hdr-veca h1,
.hiLxq-hdr-veca h2,
.hiLxq-hdr-veca h3,
.hiLxq-hdr-veca h4,
.hiLxq-hdr-veca h5,
.hiLxq-hdr-veca h6 {
    text-decoration: none;
}

.hiLxq-hdr-veca img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.hiLxq-hdr-veca {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.hiLxq-hdr-veca a.hiLxq-hdr-xugupe {
    --aisite-shell-nav-padding: 8px 16px;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: flex;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.hiLxq-hdr-veca a.hiLxq-hdr-xugupe,
.hiLxq-hdr-veca a.hiLxq-hdr-xugupe:hover,
.hiLxq-hdr-veca a.hiLxq-hdr-xugupe:focus,
.hiLxq-hdr-veca a.hiLxq-hdr-xugupe:active,
.hiLxq-hdr-veca a.hiLxq-hdr-xugupe.active,
.hiLxq-hdr-veca a.hiLxq-hdr-xugupe[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.hiLxq-hdr-veca .hiLxq-hdr-kazuw{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.hiLxq-hdr-veca .hiLxq-hdr-wefimef{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.hiLxq-hdr-veca .hiLxq-hdr-uhuwi{
            word-break: break-word;
            overflow-wrap: break-word;
            position: relative;
        }

.hiLxq-hdr-veca{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 16px 0;
        }

.hiLxq-hdr-veca .hiLxq-hdr-wefimef{
            justify-content: space-between;
            align-items: center;
        }

.hiLxq-hdr-veca .hiLxq-hdr-logo{
            flex: 0 0 auto;
            min-width: 0;
        }

.hiLxq-hdr-veca .hiLxq-hdr-logo img{
            height: 36px;
            display: block;
        }

.hiLxq-hdr-veca .hiLxq-hdr-xugupe-list{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
            list-style: none;
            gap: 8px;
        }

.hiLxq-hdr-veca .hiLxq-hdr-xugupe{
            text-decoration: none;
            color: #333333;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

.hiLxq-hdr-veca .hiLxq-hdr-xugupe:hover{
            color: #ff6a00;
            background: rgba(255, 106, 0, 0.05);
        }

.hiLxq-hdr-veca .hiLxq-hdr-xugupe.active{
            background: #ff6a00;
            color: #fff;
        }

@media (max-width: 768px){.hiLxq-hdr-veca .hiLxq-hdr-wefimef{
                flex-direction: column;
                gap: 16px;
            }

.hiLxq-hdr-veca .hiLxq-hdr-xugupe-list{
                justify-content: center;
            }}

.hiLxq-ftr-ibotoba {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    word-break: keep-all;
    color: var(--hiLxq-text);
}
.hiLxq-ftr-ibotoba,
.hiLxq-ftr-ibotoba *,
.hiLxq-ftr-ibotoba *::before,
.hiLxq-ftr-ibotoba *::after {
    box-sizing: border-box;
}

.hiLxq-ftr-ibotoba nav,
.hiLxq-ftr-ibotoba div,
.hiLxq-ftr-ibotoba section,
.hiLxq-ftr-ibotoba article,
.hiLxq-ftr-ibotoba aside,
.hiLxq-ftr-ibotoba p,
.hiLxq-ftr-ibotoba h1,
.hiLxq-ftr-ibotoba h2,
.hiLxq-ftr-ibotoba h3,
.hiLxq-ftr-ibotoba h4,
.hiLxq-ftr-ibotoba h5,
.hiLxq-ftr-ibotoba h6,
.hiLxq-ftr-ibotoba a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.hiLxq-ftr-ibotoba p,
.hiLxq-ftr-ibotoba h1,
.hiLxq-ftr-ibotoba h2,
.hiLxq-ftr-ibotoba h3,
.hiLxq-ftr-ibotoba h4,
.hiLxq-ftr-ibotoba h5,
.hiLxq-ftr-ibotoba h6 {
    text-decoration: none;
}

.hiLxq-ftr-ibotoba img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.hiLxq-ftr-ibotoba {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.hiLxq-ftr-ibotoba a,
.hiLxq-ftr-ibotoba a:hover,
.hiLxq-ftr-ibotoba a:focus,
.hiLxq-ftr-ibotoba a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.hiLxq-ftr-ibotoba .hiLxq-ftr-kazuw{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-wefimef{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.hiLxq-ftr-ibotoba{
            background: #1a1a1a;
            color: rgba(255,255,255,0.7);
            padding: 80px 0 40px;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-wefimef{
            justify-content: space-between;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-ibotoba-brand{
            flex: 1;
            min-width: 260px;
            margin-bottom: 40px;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-ibotoba-brand h4{
            color: #fff;
            font-size: 1.8rem;
            margin-bottom: 16px;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-ibotoba-links{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
            gap: 64px;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-ugej-group h5{
            color: #fff;
            margin-bottom: 24px;
            font-size: 1.1rem;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-ugej-list{
            list-style: none;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-ugej{
            display: block;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-ugej:hover{
            color: #ff6a00;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-copyright{
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.9rem;
        }

@media (max-width: 768px){.hiLxq-ftr-ibotoba .hiLxq-ftr-ibotoba-links{
                gap: 32px;
            }}