        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            color: #3b3d40;
            font-family: Inter, Arial Fallback, arial, sans-serif;
            font-size: 1rem;
            line-height: 1.4;
            background: #fff;
        }
        ul {
            list-style: none;
        }
        a {
            text-decoration: none;
        }
        button {
            cursor: pointer;
            background: none;
            border: none;
        }
        /* 头部容器 */
        .navHeader__root {
            z-index: 100;
            background-color: #fff;
            width: 100%;
            height: 48px;
            margin: auto;
            position: sticky;
            top: 0;
            left: 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        @media screen and (min-width: 64em) {
            .navHeader__root {
                height: 64px;
            }
        }
        .navHeader__container {
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            height: 100%;
            padding: 0 20px;
        }
        /* 汉堡菜单 */
        .navHeader__menuToggle {
            order: 1;
            color: #3b3d40;
            background-color: #fff;
            border: 0;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            display: flex;
            cursor: pointer;
            flex-shrink: 0;
            border-radius: 8px;
        }
        @media screen and (min-width: 64em) {
            .navHeader__menuToggle {
                width: 40px;
                height: 64px;
            }
        }
        .navHeader__menuToggle:hover {
            background-color: #f5f5f5;
        }
        /* Logo */
/* Logo优化样式 */
.navHeader__logoLink {
    order: 2;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 24px;
    line-height: 0;  /* 移除行高影响 */
}

.navHeader__logoImg {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* 桌面端 */
@media (min-width: 769px) {
    .navHeader__logoLink {
        height: 46px;
        
    }
    .navHeader__logoImg {
        max-height: 46px;
        max-width: 140px;
    }
}
/**touoxiang**/
 /* 容器 */
        .user-menu {
            position: relative;
            display: inline-block;
        }

        /* 头像触发按钮 */
        .user-menu__trigger {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .user-menu__avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            object-fit: cover;
            display: block;
            margin-top: 4px;
        }

        /* 桌面端下拉菜单 */
        .user-menu__dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 220px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            border: 1px solid #e8e8e8;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: all 0.2s ease;
        }

        .user-menu[open] .user-menu__dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* 关闭按钮 */
        .user-menu__close {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 10;
        }

        .user-menu__close-icon {
            width: 18px;
            height: 18px;
            color: #333;
        }

        /* 菜单列表 */
        .user-menu__list {
            list-style: none;
            padding: 48px 0 16px;
        }

        .user-menu__item {
            display: block;
            border-bottom: 1px solid #f0f0f0;
        }

        .user-menu__item:last-child {
            border-bottom: none;
        }

        .user-menu__link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 20px;
            color: #333;
            text-decoration: none;
            font-size: 15px;
            transition: background 0.15s;
        }

        .user-menu__link:hover {
            background: #f9f9f9;
        }

        .user-menu__icon {
            width: 18px;
            height: 18px;
            color: #666;
            flex-shrink: 0;
        }
   .user-menu__link .icon {
    width: 18px !important; 
    height: 18px !important; 
    fill: currentColor;  
    margin-right: 6px;  
    vertical-align: middle; 
}

        /* ================================== */
        @media screen and (max-width: 768px) {
            /* 遮罩层：浅灰色背景 */
            .user-menu__dropdown::before {
                content: '';
                position: fixed;
                inset: 0;
                background: #fff; /* 浅灰色背景 */
                z-index: -1;
                opacity: 0;
                transition: opacity 0.25s ease;
            }

            .user-menu[open] .user-menu__dropdown::before {
                opacity: 1;
            }
            
 .user-menu__avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            object-fit: cover;
            display: block;

        }
            /* 左侧滑出弹窗：纯白背景 */
            .user-menu__dropdown {
                position: fixed;
                top: 0;
                left: 0;
                bottom: 0;
                width: 280px;
                max-width: 80vw;
                background: #fff; /* 纯白弹窗 */
                border-radius: 0;
                box-shadow: none;
                border: none;
                z-index: 500;

                /* 初始状态：在屏幕左侧外 */
                transform: translateX(-100%);
                opacity: 1;
                visibility: visible;
                transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
            }

            /* 打开时滑入 */
            .user-menu[open] .user-menu__dropdown {
                transform: translateX(0);
            }

            /* 移动端关闭按钮 */
            .user-menu__close {
                top: 16px;
                right: 16px;
                width: 32px;
                height: 32px;
            }

            .user-menu__close-icon {
                width: 20px;
                height: 20px;
            }

            /* 移动端菜单内边距 */
            .user-menu__list {
                padding: 60px 0 20px;
            }

            .user-menu__link {
                padding: 16px 24px;
                font-size: 16px;
            }
         }
 /**touxiangend**/




/* 移动端 */
@media (max-width: 768px) {
    .navHeader__logoLink {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin-right: 0;
        z-index: 2;
        height: 42px;      /* 固定高度便于垂直居中 */
        display: flex;
        align-items: center;
    }
    .navHeader__logoImg {
        max-height: 42px;
        max-width: 118px;
    }
}
        /* 桌面端搜索区域 - order 3，宽度加大 */
        .navHeader__searchArea {
            order: 3;
            background-color: #fff;
            flex: 1;
            max-width: 500px;
            min-width: 300px;
            margin-right: 24px;
        }
        @media screen and (max-width: 767px) {
            .navHeader__searchArea {
                display: none;
            }
        }
        /* 桌面端导航 - order 4 */
        .navHeader__desktopNav {
            order: 4;
            display: none;
            align-items: center;
            margin-right: 24px
        }
        @media screen and (min-width: 64em) {
            .navHeader__desktopNav {
                display: flex;
            }
        }
        .navHeader__desktopList {
            display: flex;
            align-items: center;
            height: 100%;
            gap: 4px;
        }
        .navHeader__desktopItem {
            height: 100%;
            display: flex;
            align-items: center;
        }
        .navHeader__desktopLink {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding-inline: 12px;
            font-size: 0.95rem;
            height: 64px;
            transition: background-color 0.25s;
            color: #3b3d40;
        }
        .navHeader__desktopLink:hover {
            background-color: #f5f5f5;
        }
        .navHeader__desktopLink svg {
            width: 28px;
            height: 28px;
        }
        /* 右侧按钮组 */
        .navHeader__rightGroup {
            order: 5;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: auto;
        }
     /* 桌面端专用 - 强制靠右 */
@media screen and (min-width: 1024px) {
    .navHeader__rightGroup {
        margin-left: 0 !important;  /* 加 !important 确保覆盖 */
    }
}
        
        
        /* 移动端搜索按钮 */
        .navHeader__mobileSearchBtn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: transparent;
            border-radius: 8px;
            cursor: pointer;
        }
        .navHeader__mobileSearchBtn:hover {
            background-color: #f5f5f5;
        }
        @media screen and (min-width: 48em) {
            .navHeader__mobileSearchBtn {
                display: none;
            }
        }
        .navHeader__mobileSearchBtn svg {
            width: 22px;
            height: 22px;
            fill: #3b3d40;
        }
        /* 搜索表单 */
        .navHeader__searchForm {
            display: flex;
            width: 100%;
        }
        .navHeader__searchInput {
            border: 1px solid #e0e0e0;
            border-right: 0;
            flex: 1;
            padding: 0 16px;
            height: 40px;
            font-size: 0.875rem;
            border-radius: 20px 0 0 20px;
            outline: none;
            background: #f8f9fa;
            transition: all 0.2s;
        }
        .navHeader__searchInput:focus {
            border-color: #667eea;
            background: #fff;
        }
        .navHeader__searchBtn {
            background: linear-gradient(95deg, #667eea 0%, #764ba2 100%);
            border: 0;
            border-radius: 0 20px 20px 0;
            width: 44px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        .navHeader__searchBtn:hover {
            background: linear-gradient(to bottom, #5a6fd6 0%, #6a4190 100%);
        }
        .navHeader__searchBtn svg {
            width: 18px;
            height: 18px;
            fill: #fff;
        }
        /* 移动端搜索弹窗 */
        .navHeader__mobileSearchPanel {
            position: fixed;
            top: 48px;
            left: 0;
            right: 0;
            background: #fff;
            padding: 12px 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 150;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .navHeader__mobileSearchPanel.open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        /* 用户菜单 */
        .userMenuWrapper {
            position: relative;
            display: inline-flex;
            align-items: center;
        }
        .userMenuSummary {
            display: flex;
            align-items: center;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
        }
        .userAvatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            display: block;
            margin: 0;
            border: 2px solid #e0e0e0;
            transition: border-color 0.2s;
        }
        .userMenuSummary:hover .userAvatar {
            border-color: #667eea;
        }
        .userDropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 200px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            border: 1px solid #e8e8e8;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: all 0.2s ease;
        }
        .userMenuWrapper[open] .userDropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .userMenuClose {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f5f5f5;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
        }
        .userMenuList {
            list-style: none;
            padding: 48px 0 12px;
        }
        .userMenuItem {
            border-bottom: 1px solid #f0f0f0;
        }
        .userMenuItem:last-child {
            border-bottom: none;
        }
        .userMenuLink {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: #333;
            font-size: 14px;
            transition: background 0.15s;
        }
        .userMenuLink:hover {
            background: #f9f9f9;
        }
        .userMenuIcon {
            width: 16px;
            height: 16px;
            fill: #666;
        }
        /* 左侧弹窗 */
        .navHeader__sideMenu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 90%;
            max-width: 420px;
            height: 100%;
            background: #fff;
            z-index: 200;
            transition: left 0.3s ease;
            overflow-y: auto;
            box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
        }
        @media screen and (max-width: 47.99em) {
    .navHeader__sideMenu {
       max-width: 220px;
        left: -390px;
    }
}
        .navHeader__sideHeader {
            display: flex;
            justify-content: flex-end;
            padding: 16px;
            border-bottom: 1px solid #e0e0e0;
            position: sticky;
            top: 0;
            background: #fff;
            z-index: 5;
        }
        .navHeader__sideClose {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f5f5f5;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.2s;
        }
        .navHeader__sideClose:hover {
            background: #e0e0e0;
        }
        .navHeader__sideClose svg {
            width: 20px;
            height: 20px;
            fill: #333;
        }
        .navHeader__sideNav {
            padding: 8px 0 80px;
        }
        .navHeader__sideCategory {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            border-bottom: 1px solid #f0f0f0;
            font-size: 0.875rem;
        }
        .navHeader__sideCategory a {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 12px;
            color: #3b3d40;
        }
        .navHeader__sideCategory span {
            flex: 1;
        }
        .navHeader__arrowRight {
            width: 16px;
            height: 16px;
            fill: #999;
        }
        .gmflIcon {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }
        /* 遮罩层 */
        .navHeader__overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(0, 0, 0, 0);
            z-index: 199;
            visibility: hidden;
            opacity: 0;
            transition: all 0.2s;
            pointer-events: none;
        }
        /* checkbox 控制侧边栏 */
        #sideMenuCheckbox {
            display: none;
        }
        #sideMenuCheckbox:checked ~ .navHeader__sideMenu {
            left: 0;
        }
        #sideMenuCheckbox:checked ~ .navHeader__overlay {
            visibility: visible;
            opacity: 1;
            background: rgba(0, 0, 0, 0.5);
            width: 100%;
            pointer-events: auto;
        }
        /* 汉堡菜单图标切换 */
        .navHeader__iconClose {
            display: none;
        }
        #sideMenuCheckbox:checked ~ .navHeader__menuToggle .navHeader__iconMenu {
            display: none;
        }
        #sideMenuCheckbox:checked ~ .navHeader__menuToggle .navHeader__iconClose {
            display: block;
        }
        .navHeader__menuToggle svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }
        /* 移动端适配 */
        @media screen and (max-width: 768px) {
            .navHeader__container {
                padding: 0 12px;
            }
            .userDropdown {
                position: fixed;
                top: 0;
                left: 0;
                bottom: 0;
                width: 280px;
                max-width: 80vw;
                border-radius: 0;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }
            .userMenuWrapper[open] .userDropdown {
                transform: translateX(0);
            }
            .userAvatar {
                width: 32px;
                height: 32px;
            }
        }
        .hiddenCheckbox {
            display: none;
        }
       
        
  /**footer**/
.footer{font-size: 0;text-align: center;padding: 20px 0;border-top:1px solid #E8E8E8; background:#fff;}
.footer img{width: auto;height: auto;}
.footerNav {margin-bottom: 12px;}
.footerNav a {font-size: 14px;color: #333;margin: 0 10px;}
.footerNav a:hover{color:#FF4F4F}
.footerNav span {font-size: 14px;border-left: 1px solid #9e9e9e;}
.footerNav span:nth-child(1){border-left: 0;}
.footerCopy{font-size: 14px;color:#9e9e9e;}
.footerCopy p{margin-top:12px;line-height: 20px;}
.footerCopy p>a{color: #9e9e9e;}
.footerCopy p>a:hover{color:#FF4F4F;text-decoration: underline;}
.footerMore{font-size: 14px;color: #9e9e9e;margin-top: 12px;}
.footerMore a {color: #9e9e9e;}
.footer {padding:20px 10px 10px 10px;}

  /*pagelist*/
.pagelist { text-align: center; color: #666; width: 100%; clear: both; margin: 10px 0 10px; }
.pagelist a { color: #666; margin: 0 5px 10px; padding: 5px 10px; background: #F7F7F7; display: inline-block; }
/*.pagelist a:nth-child(1) { display: none }*/
.pagelist a:hover, .pagelist > b { color: #3690cf; color: #FFF; background: #ff5555; }
.pagelist > b { display: inline-block;padding: 5px 10px;margin: 0 5px 10px; }
a.curPage { color: #ffffff; font-weight: bold; background: #000; }      
        