:root {
            --hiLxq-primary: #ff6a00;
            --hiLxq-secondary: #4a90e2;
            --hiLxq-dark: #1a1a1a;
            --hiLxq-light: #f8f9fa;
            --hiLxq-text: #333333;
            --hiLxq-glass: rgba(255, 255, 255, 0.85);
            --hiLxq-spacing: 8px;
        }

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

        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            color: var(--hiLxq-text);
            line-height: 1.6;
            background-color: #fff;
            overflow-x: hidden;
            word-break: keep-all;
        }

        /* 布局容器 */
        .hiLxq-kazuw {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

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

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

        /* 导航区域 - veca */
        .hiLxq-veca {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: var(--hiLxq-glass);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 16px 0;
        }

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

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

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

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

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

        .hiLxq-xugupe:hover {
            color: var(--hiLxq-primary);
            background: rgba(255, 106, 0, 0.05);
        }

        .hiLxq-xugupe.active {
            background: var(--hiLxq-primary);
            color: #fff;
        }

        /* 展示区域 - pawu */
        .hiLxq-pawu {
            padding: 160px 0 80px;
            background: radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.08) 0%, rgba(255, 255, 255, 0) 50%),
                        radial-gradient(circle at 10% 80%, rgba(255, 106, 0, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
        }

        .hiLxq-pawu .hiLxq-wefimef {
            align-items: center;
        }

        .hiLxq-pawu-info {
            flex: 1;
            min-width: 320px;
            padding-right: 48px;
        }

        .hiLxq-zuvacot {
            font-size: clamp(2rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--hiLxq-dark);
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .hiLxq-udutuc {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: #666;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .hiLxq-pawu-media {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        .hiLxq-pawu-media img {
            width: 100%;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .hiLxq-pawu-media:hover img {
            transform: translateY(-10px);
        }

        /* 按钮组件 - ihojaqa */
        .hiLxq-ihojaqa {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            background: var(--hiLxq-primary);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 106, 0, 0.2);
            transition: all 0.3s ease;
        }

        .hiLxq-ihojaqa:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 106, 0, 0.3);
            background: #ff7b1a;
        }

        .hiLxq-sexocu {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            background: transparent;
            color: var(--hiLxq-text);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: 2px solid #eee;
            margin-left: 16px;
            transition: all 0.3s ease;
        }

        .hiLxq-sexocu:hover {
            border-color: var(--hiLxq-primary);
            color: var(--hiLxq-primary);
        }

        /* 卡片组件 - cawojih */
        .hiLxq-cawojih-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            padding: 80px 0;
        }

        .hiLxq-cawojih {
            background: #fff;
            border-radius: 24px;
            padding: 40px;
            border: 1px solid #f0f0f0;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hiLxq-cawojih:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            border-color: var(--hiLxq-primary);
        }

        .hiLxq-akoqumi-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(255,106,0,0.1), rgba(74,144,226,0.1));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--hiLxq-primary);
        }

        .hiLxq-cawojih h3 {
            font-size: 1.5rem;
            color: var(--hiLxq-dark);
        }

        .hiLxq-cawojih p {
            color: #666;
            font-size: 1rem;
            line-height: 1.7;
        }

        .hiLxq-cawojih img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-top: 10px;
        }

        /* 资讯区块 */
        .hiLxq-dynamic-area {
            background: var(--hiLxq-light);
            padding: 100px 0;
        }

        .hiLxq-news-header {
            margin-bottom: 48px;
            text-align: center;
        }

        .hiLxq-news-header h2 {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .hiLxq-news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .hiLxq-news-item {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .hiLxq-news-item:hover {
            transform: scale(1.02);
        }

        .hiLxq-news-img {
            height: 180px;
            overflow: hidden;
        }

        .hiLxq-news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hiLxq-news-content {
            padding: 24px;
        }

        .hiLxq-news-date {
            font-size: 0.85rem;
            color: #999;
            margin-bottom: 8px;
        }

        .hiLxq-news-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--hiLxq-dark);
            margin-bottom: 12px;
            display: block;
            text-decoration: none;
        }

        .hiLxq-news-title:hover {
            color: var(--hiLxq-primary);
        }

        /* 页脚区域 - ibotoba */
        .hiLxq-ibotoba {
            background: var(--hiLxq-dark);
            color: rgba(255,255,255,0.7);
            padding: 80px 0 40px;
        }

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

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

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

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

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

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

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

        .hiLxq-ugej:hover {
            color: var(--hiLxq-primary);
        }

        .hiLxq-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-veca .hiLxq-wefimef {
                flex-direction: column;
                gap: 16px;
            }
            .hiLxq-xugupe-list {
                justify-content: center;
            }
            .hiLxq-pawu {
                padding-top: 120px;
                text-align: center;
            }
            .hiLxq-pawu-info {
                padding-right: 0;
                margin-bottom: 48px;
            }
            .hiLxq-sexocu {
                margin-left: 0;
                margin-top: 16px;
            }
            .hiLxq-ibotoba-links {
                gap: 32px;
            }
        }

        /* 图标SVG样式 */
        .hiLxq-svg-icon {
            width: 32px;
            height: 32px;
            fill: currentColor;
        }

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