:root {
            --primary: #ff4d4f;
            --secondary: #1890ff;
            --accent: #722ed1;
            --bg-light: #fdfdfd;
            --text-dark: #262626;
            --text-gray: #595959;
            --white: #ffffff;
            --shadow: 0 8px 32px rgba(0,0,0,0.08);
            --radius: 24px;
        }

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

        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.8;
            overflow-x: hidden;
            word-break: keep-all;
        }

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

        /* 导航复用结构 */
        .hiLxq-veca {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .hiLxq-kazuw {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
        }
        .hiLxq-wefimef {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            flex-wrap: wrap;
        }
        .hiLxq-logo {
            display: flex;
            align-items: center;
            min-width: 0;
        }
        .hiLxq-logo img {
            height: 32px;
            width: auto;
        }
        .hiLxq-uhuwi {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            min-width: 0;
        }
        .hiLxq-xugupe-list {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }
        .hiLxq-xugupe {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
            position: relative;
            padding: 8px 0;
        }
        .hiLxq-xugupe:hover, .hiLxq-xugupe.active {
            color: var(--primary);
        }
        .hiLxq-xugupe.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        /* 核心展示区 - PAWU */
        .hiLxq-pawu {
            padding: 180px 0 100px;
            background: radial-gradient(circle at 90% 10%, rgba(255, 77, 79, 0.05) 0%, transparent 40%),
                        radial-gradient(circle at 10% 90%, rgba(24, 144, 255, 0.05) 0%, transparent 40%);
            overflow: hidden;
        }
        .hiLxq-pawu .hiLxq-wefimef {
            display: flex;
            align-items: center;
            gap: 64px;
            height: auto;
        }
        .hiLxq-uhuwi-content {
            flex: 1;
            min-width: 320px;
            word-break: break-word;
        }
        .hiLxq-pawu h1 {
            font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
            line-height: 1.1;
            margin-bottom: 32px;
            background: linear-gradient(135deg, #262626 0%, #595959 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hiLxq-pawu p {
            font-size: clamp(1.1rem, 1vw + 0.5rem, 1.3rem);
            color: var(--text-gray);
            margin-bottom: 48px;
            max-width: 600px;
        }
        .hiLxq-ihojaqa {
            display: inline-flex;
            align-items: center;
            padding: 18px 48px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            box-shadow: 0 10px 20px rgba(255, 77, 79, 0.2);
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .hiLxq-ihojaqa:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 77, 79, 0.3);
            color: var(--white);
        }

        /* 抽象视觉元素 */
        .hiLxq-visual-box {
            flex: 1;
            min-width: 320px;
            position: relative;
        }
        .hiLxq-shape-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .hiLxq-akoqumi-blob {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0,0,0,0.03);
            transition: 0.3s;
        }
        .hiLxq-akoqumi-blob:nth-child(even) {
            transform: translateY(40px);
        }
        .hiLxq-akoqumi-blob svg {
            width: 48px;
            height: 48px;
            margin-bottom: 24px;
            fill: var(--primary);
        }

        /* 功能卡片区 - UDUTUC */
        .hiLxq-udutuc {
            padding: 100px 0;
            background-color: #f8faff;
        }
        .hiLxq-zuvacot-header {
            text-align: center;
            margin-bottom: 80px;
            width: 100%;
        }
        .hiLxq-zuvacot-header h2 {
            font-size: clamp(2rem, 3vw, 3rem);
            margin-bottom: 16px;
        }
        .hiLxq-cawojih-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            width: 100%;
        }
        .hiLxq-cawojih {
            background: var(--white);
            padding: 48px;
            border-radius: var(--radius);
            transition: 0.4s;
            border: 1px solid transparent;
        }
        .hiLxq-cawojih:hover {
            border-color: rgba(24, 144, 255, 0.2);
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }
        .hiLxq-cawojih h3 {
            font-size: 24px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .hiLxq-cawojih-icon {
            width: 40px;
            height: 40px;
            background: rgba(24, 144, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
        }

        /* 动态内容区 - ZUVACOT */
        .hiLxq-zuvacot {
            padding: 100px 0;
        }
        .hiLxq-dynamic-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .hiLxq-sexocu-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 32px;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            flex-wrap: wrap;
            gap: 20px;
        }
        .hiLxq-sexocu-item span {
            color: var(--text-gray);
            font-size: 14px;
        }

        /* 页脚 - IBOTOBA */
        .hiLxq-ibotoba {
            background: #1a1a1a;
            color: rgba(255,255,255,0.7);
            padding: 80px 0 40px;
        }
        .hiLxq-ibotoba .hiLxq-wefimef {
            align-items: flex-start;
            height: auto;
            gap: 64px;
        }
        .hiLxq-ibotoba-brand {
            flex: 2;
            min-width: 280px;
        }
        .hiLxq-ibotoba-brand h4 {
            color: var(--white);
            font-size: 24px;
            margin-bottom: 24px;
        }
        .hiLxq-ibotoba-links {
            flex: 3;
            display: flex;
            gap: 48px;
            flex-wrap: wrap;
        }
        .hiLxq-ugej-group {
            min-width: 140px;
        }
        .hiLxq-ugej-group h5 {
            color: var(--white);
            margin-bottom: 24px;
            font-size: 16px;
        }
        .hiLxq-ugej-list {
            list-style: none;
        }
        .hiLxq-ugej-list li {
            margin-bottom: 12px;
        }
        .hiLxq-ugej {
            font-size: 14px;
            transition: 0.3s;
        }
        .hiLxq-ugej:hover {
            color: var(--primary);
        }
        .hiLxq-copyright {
            margin-top: 80px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 13px;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .hiLxq-kazuw { padding: 0 24px; }
            .hiLxq-uhuwi { display: none; } /* 移动端简化 */
            .hiLxq-pawu { padding: 120px 0 60px; }
            .hiLxq-pawu .hiLxq-wefimef { flex-direction: column; text-align: center; }
            .hiLxq-pawu p { margin: 0 auto 48px; }
            .hiLxq-akoqumi-blob:nth-child(even) { transform: translateY(0); }
            .hiLxq-cawojih-grid { grid-template-columns: 1fr; }
        }

.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;
            }}