        /* 产品列表区域 */
        .w-main {
            padding:0 0 40px 0;
        }
        
        .w-system-in {
            display: flex;
        }
		 .pagination-container {
            margin-top: 40px;
            text-align: center;
        }
        
        .page-numbers {
            display: inline-flex;
            list-style: none;
            padding: 0;
            margin: 0;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .page-numbers li {
            margin: 0;
        }
        
        .page-numbers a,
        .page-numbers span {
            display: block;
            padding: 10px 15px;
            color: #666;
            text-decoration: none;
            background: #fff;
            border-right: 1px solid #eee;
            transition: all 0.3s;
        }
        
        .page-numbers li:last-child a,
        .page-numbers li:last-child span {
            border-right: none;
        }
        
        .page-numbers a:hover {
            background: #f5f5f5;
            color: #003579;
        }
        
        .page-numbers .current {
            background: #003579;
            color: #fff;
            border-color: #003579;
        }
        
        .page-numbers .prev,
        .page-numbers .next {
            font-weight: bold;
        }
        
        
        /* 产品分类菜单 */
        .w-com-menu {
            width: 250px;
            margin-right: 30px;
            background: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .w-com-menu-in {
            padding: 20px 0;
        }
        
        .systitle {
            padding: 0 20px 15px;
            border-bottom: 1px solid #f0f0f0;
            font-size: 18px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        
        .ul-parent {
            transition: max-height 0.3s ease-out;
            overflow: hidden;
        }
        
        .ul-parent li {
            margin-bottom: 5px;
        }
        
        .div-parent {
            position: relative;
        }
        
        .div-parent a {
            display: block;
            padding: 12px 20px;
            font-size: 15px;
        }
        
        .div-parent a:hover {
            background: #f5f5f5;
            color: #003579;
        }
        
        .menu_simpline_cur {
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: #003579;
            transition: width 0.3s;
        }
        
        .div-parent:hover .menu_simpline_cur {
            width: 3px;
        }
        
        /* 产品列表 */
        .w-prd-list {
            flex: 1;
        }
        

        .w-prd-list-in {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
        }
        
        .w-prd-list-cell {
            width: 25%;
            padding: 0 10px 10px 10px;
        }
        
        .w-prd-list-cell-in {
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .w-prd-list-cell-in:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .w-prd-imgbox {
            position: relative;
            overflow: hidden;
        }
        
        .aspectRatio {
            padding-bottom: 100%;
        }
        
        .img-count-in {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }
        
        .img-count-in img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .w-prd-infobox {
            padding: 15px;
        }
        
        .w-prd-name {
            font-size: 15px;
            margin-bottom: 15px;
            line-height: 1.4;
            overflow: hidden;
        }
        
        .w-prd-name a {
            color: #333;
			display:block;
			height:40px;
        }
        
        .w-prd-name a:hover {
            color: #003579;
        }
        
        /* 查看详情按钮样式 */
        .view-detail-btn {
            display: inline-block;
            padding: 8px 16px;
            background: #003579;
            color: white;
            border-radius: 4px;
            font-size: 14px;
            text-align: center;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            width: 100%;
        }
        
        .view-detail-btn:hover {
            background: #0d62d9;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* 分页 */
		
		.page-numbers li{
			
		}
		
        .next1 {
            margin-top: 40px;
            text-align: center;
        }
        
        .next1 a {
            display: inline-block;
            padding: 8px 15px;
            margin: 0 3px;
            border: 1px solid #ddd;
            border-radius: 3px;
            color: #666;
        }
        
        .next1 a:hover, .next1 a.on1 {
            background: #003579;
            color: #fff;
            border-color: #003579;
        }
        

        

        /* 响应式设计 */
        @media (max-width: 1200px) {
            .container {
                width: 100%;
            }
            
            .w-prd-list-cell {
                width: 33.33%;
            }
        }
        
        @media (max-width: 992px) {
            .w-system-in {
                flex-direction: column;
            }
            
            .w-com-menu {
                width: 100%;
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .w-prd-list-cell {
                width: 50%; /* 平板设备上两列显示 */
            }
            
            .w-nav .nav_inner {
                display: none;
            }
            
            .mobile-nav-toggle {
                display: block;
            }
            
            /* 移动端产品分类菜单折叠样式 */
            .w-com-menu {
                position: relative;
            }
            
            .ul-parent {
                max-height: 0;
            }
            
            .w-com-menu.active .ul-parent {
                max-height: 500px; /* 足够容纳所有菜单项 */
            }
            
            .systitle i {
                transition: transform 0.3s;
            }
            
            .w-com-menu.active .systitle i {
                transform: rotate(180deg);
            }
        }
        
        @media (max-width: 768px) {
            .w-prd-list-cell {
                width: 50%; /* 移动设备上两列显示 */
                padding: 8px;
            }
            
            .w-prd-list-in {
                margin: 0 -8px;
            }
            
            .page-banner {
                padding: 30px 0;
            }
            
            .page-banner h1 {
                font-size: 1.5rem;
            }
            
            .w-prd-name {
                font-size: 14px;
           
            }
            
            .w-prd-infobox {
                padding: 12px;
            }
            
            .img-count-in {
                padding: 10px;
            }
            
            .view-detail-btn {
                padding: 6px 12px;
                font-size: 13px;
            }
        }
        
        @media (max-width: 480px) {
            .w-prd-list-cell {
                width: 50%; /* 小屏幕移动设备上保持两列显示 */
                padding: 6px;
            }
            
            .w-prd-list-in {
                margin: 0 -6px;
            }
            
            .w-prd-name {
                font-size: 13px;
      
            }
            
            .w-prd-infobox {
                padding: 10px;
            }
            
            .view-detail-btn {
                padding: 5px 10px;
                font-size: 12px;
            }
            
            .next1 a {
                padding: 6px 12px;
                margin: 0 2px;
                font-size: 14px;
            }
        }
        
 
 /* 增强产品分类菜单选中效果 */
.w-com-menu .li-parent.active {
    background-color: #f0f7ff;

}

.w-com-menu .li-parent.active .div-parent a {
    color: #003579;
    background-color: #f0f7ff;
}

.w-com-menu .li-parent.active .menu_simpline_cur {
    width: 3px;
    background: #003579;
}

/* 移除悬停效果对选中项的影响 */
.w-com-menu .li-parent.active:hover .div-parent a {
    background-color: #f0f7ff;
}

/* 菜单项悬停效果优化 */
.w-com-menu .div-parent:hover a {
    color: #003579;
    background-color: #f8f9fa;
}

.w-com-menu .div-parent:hover .menu_simpline_cur {
    width: 3px;
}


 
 
 
 	

        /* 右侧产品中心分类菜单样式 */
        .product-sidebar {
            background: #fff;
            border: 1px solid #e5e5e5;
            border-radius: 4px;
            margin-bottom: 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .sidebar-title {
            background: #1e73be;
            color: #fff;
            padding: 15px 20px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 4px 4px 0 0;
            margin: 0;
        }
        
        .sidebar-menu {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .sidebar-menu > li {
            border-bottom: 1px solid #f0f0f0;
            position: relative;
        }
        
        .sidebar-menu > li:last-child {
            border-bottom: none;
        }
        
        .menu-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .menu-item:hover {
            background: #f9f9f9;
            color: #1e73be;
        }
        
        .menu-item.active {
            background: #f5f9ff;
            color: #1e73be;
        
   
        }
        
        .menu-toggle {
            color: #999;
            font-size: 12px;
            transition: transform 0.3s ease;
            margin-left: 10px;
        }
        
        .menu-item.active .menu-toggle {
            transform: rotate(90deg);
            color: #1e73be;
        }
        
        .submenu {
            list-style: none;
            margin: 0;
            padding: 0;
            background: #f9f9f9;
            display: none;
            border-top: 1px solid #f0f0f0;
        }
        
        .menu-item.active + .submenu {
            display: block;
        }
        
        .submenu li {
            padding: 0;
        }
        
        .submenu a {
            display: block;
            padding: 8px 20px 8px 40px;
            color: #666;
            text-decoration: none;
            font-size: 13px;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .submenu a:before {
            content: "›";
            position: absolute;
            left: 25px;
            color: #999;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .submenu a:hover {
            background: #f0f0f0;
            color: #1e73be;
            border-left-color: #1e73be;
        }
        
        .submenu a:hover:before {
            color: #1e73be;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .product-sidebar {
                margin-bottom: 20px;
            }
            
            .sidebar-title {
                padding: 12px 15px;
                font-size: 15px;
            }
            
            .menu-item {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .submenu a {
                padding-left: 35px;
                font-size: 13px;
            }
            
            .submenu a:before {
                left: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .menu-item {
                padding: 8px 12px;
                font-size: 13px;
            }
            
            .submenu a {
                padding: 6px 12px 6px 30px;
                font-size: 12px;
            }
            
            .submenu a:before {
                left: 15px;
            }
        }
        
        /* 布局调整 */
        .w-system-in {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .product-sidebar {
            flex: 0 0 250px;
            max-width: 250px;
        }
        
        .w-prd-list {
            flex: 1;
            min-width: 0;
        }
        
        @media (max-width: 992px) {
            .w-system-in {
                flex-direction: column;
            }
            
            .product-sidebar {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }		
		
		
		
		
		
/* 子菜单选中状态 */
.submenu a.active {
    color: #1e73be; /* 主色调文字 */
    font-weight: 500;
    background-color: #f0f7ff; /* 子菜单选中背景 */
    border-left-color: #1e73be; /* 子菜单左侧标识线 */
}

/* 子菜单选中项箭头颜色 */
.submenu a.active:before {
    color: #1e73be; /* 选中项箭头颜色同步 */
}

/* 确保选中状态不受悬停影响 */
.sidebar-menu .menu-item.active:hover {
    background-color: #f0f7ff;
    color: #1e73be;
}