:root {
            --primary-color: #ff6600;
            --text-dark: #222222;
            --text-gray: #666666;
            --bg-light: #f9f9f9;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

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

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

        /* 导航栏复用 */
        .hiLxq-veca {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid #eee;
        }
        .hiLxq-kazuw {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .hiLxq-wefimef {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .hiLxq-logo img {
            height: 32px;
            display: block;
        }
        .hiLxq-uhuwi {
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }
        .hiLxq-xugupe-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 32px;
        }
        .hiLxq-xugupe {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 16px;
            transition: var(--transition);
            position: relative;
        }
        .hiLxq-xugupe:hover, .hiLxq-xugupe.active {
            color: var(--primary-color);
        }
        .hiLxq-xugupe.active::after {
            content: '';
            position: absolute;
            bottom: -24px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-color);
        }

        /* 核心展示区 */
        .hiLxq-pawu {
            position: relative;
            padding-top: 160px;
            padding-bottom: 96px;
            background: linear-gradient(135deg, #fdfdfd 0%, #f1f1f1 100%);
            overflow: hidden;
        }
        .hiLxq-pawu-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }
        .hiLxq-zuvacot {
            flex: 1;
            min-width: 320px;
        }
        .hiLxq-zuvacot h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            line-height: 1.2;
            margin-bottom: 24px;
            color: #111;
        }
        .hiLxq-zuvacot p {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 40px;
            max-width: 540px;
        }
        .hiLxq-udutuc-media {
            flex: 1.2;
            min-width: 320px;
            position: relative;
        }
        .hiLxq-udutuc-media img {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* 按钮 */
        .hiLxq-ihojaqa {
            display: inline-block;
            padding: 16px 40px;
            background: var(--primary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 18px;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
        }
        .hiLxq-ihojaqa:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
        }

        /* 分类区块 */
        .hiLxq-udutuc {
            padding: 96px 0;
            background: var(--white);
        }
        .hiLxq-udutuc:nth-child(even) {
            background: #fafafa;
        }
        .hiLxq-udutuc-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            align-items: center;
        }
        .hiLxq-udutuc-reverse {
            flex-direction: row-reverse;
        }
        .hiLxq-udutuc-info {
            flex: 1;
            min-width: 300px;
        }
        .hiLxq-udutuc-info h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        .hiLxq-udutuc-img {
            flex: 1;
            min-width: 300px;
        }
        .hiLxq-udutuc-img img {
            width: 100%;
            border-radius: 16px;
        }

        /* 卡片组件 */
        .hiLxq-cawojih-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 32px;
            padding: 64px 0;
        }
        .hiLxq-cawojih {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid #f0f0f0;
            transition: var(--transition);
        }
        .hiLxq-cawojih:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }
        .hiLxq-cawojih-icon {
            width: 64px;
            height: 64px;
            background: rgba(255, 102, 0, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        .hiLxq-cawojih-icon svg {
            width: 32px;
            height: 32px;
            fill: var(--primary-color);
        }
        .hiLxq-cawojih h3 {
            margin-bottom: 12px;
            font-size: 1.4rem;
        }
        .hiLxq-cawojih p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        /* 标签云组件 */
        .hiLxq-akoqumi-box {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 32px;
        }
        .hiLxq-akoqumi {
            padding: 8px 20px;
            background: #f0f0f0;
            border-radius: 30px;
            font-size: 14px;
            color: var(--text-gray);
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
        }
        .hiLxq-akoqumi:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        /* 页脚复用 */
        .hiLxq-ibotoba {
            background: #1a1a1a;
            color: #fff;
            padding: 80px 0 40px;
        }
        .hiLxq-ibotoba-brand h4 {
            font-size: 24px;
            margin-bottom: 16px;
        }
        .hiLxq-ibotoba-brand p {
            color: #999;
            max-width: 400px;
            margin-bottom: 32px;
        }
        .hiLxq-ibotoba-links {
            display: flex;
            flex-wrap: wrap;
            gap: 80px;
        }
        .hiLxq-ugej-group h5 {
            font-size: 18px;
            margin-bottom: 24px;
        }
        .hiLxq-ugej-list {
            list-style: none;
        }
        .hiLxq-ugej-list li {
            margin-bottom: 12px;
        }
        .hiLxq-ugej {
            color: #999;
            text-decoration: none;
            transition: var(--transition);
        }
        .hiLxq-ugej:hover {
            color: var(--primary-color);
        }
        .hiLxq-sexocu {
            border-top: 1px solid #333;
            margin-top: 64px;
            padding-top: 32px;
            text-align: center;
            color: #666;
            font-size: 14px;
            width: 100%;
        }

        @media (max-width: 768px) {
            .hiLxq-uhuwi {
                display: none; /* 移动端简化 */
            }
            .hiLxq-zuvacot h1 {
                font-size: 2rem;
            }
            .hiLxq-udutuc-grid {
                gap: 32px;
            }
            .hiLxq-udutuc-reverse {
                flex-direction: row;
            }
            .hiLxq-ibotoba-links {
                gap: 40px;
            }
        }

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