        /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 内容区域样式 */
        .content-wrapper {
            margin: 0px 0px 20px 0px;
        }
        
        /* 页面标题区域 */
        .page-header {
            background: linear-gradient(135deg, #c00, #d33);
            color: white;
            padding: 25px 0;
            text-align: center;
            margin-bottom: 25px;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 4px 15px rgba(192, 0, 0, 0.3);
        }
        
        .page-title {
            font-size: 28px;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .page-subtitle {
            font-size: 14px;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 筛选区域 - 改为一行5个 */
        .filter-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
            padding: 18px;
            margin-bottom: 20px;
        }
        
        .filter-title {
            font-size: 16px;
            color: #c00;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .filter-title i {
            font-size: 16px;
        }
        
        .filter-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px;
            margin-bottom: 12px;
        }
        
        .filter-group {
            margin-bottom: 10px;
        }
        
        .filter-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #555;
            font-size: 13px;
        }
        
        .filter-group select, .filter-group input {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 13px;
            transition: all 0.3s;
            background: white;
        }
        
        .filter-group select:focus, .filter-group input:focus {
            border-color: #c00;
            outline: none;
            box-shadow: 0 0 0 2px rgba(192,0,0,0.1);
        }
        
        .filter-advanced {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px dashed #eee;
        }
        
        .advanced-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #c00;
            font-size: 13px;
            cursor: pointer;
            margin-bottom: 12px;
        }
        
        .advanced-content {
            display: none;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px;
        }
        
        .advanced-content.active {
            display: grid;
        }
        
        .filter-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 12px;
        }
        
        .filter-stats {
            font-size: 13px;
            color: #666;
        }
        
        .filter-btns {
            display: flex;
            gap: 10px;
        }
        
        .filter-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 6px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .filter-submit {
            background: linear-gradient(135deg, #c00, #d33);
            color: white;
        }
        
        .filter-reset {
            background: #f0f0f0;
            color: #666;
        }
        
        .filter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        
        /* 排序和显示选项 */
        .list-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding: 12px 15px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }
        
        .sort-options {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .sort-label {
            font-weight: bold;
            color: #555;
            font-size: 13px;
        }
        
        .sort-select {
            padding: 6px 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: white;
            font-size: 13px;
        }
        
        .view-options {
            display: flex;
            gap: 6px;
        }
        
        .view-btn {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 13px;
        }
        
        .view-btn.active {
            background: #c00;
            color: white;
            border-color: #c00;
        }
        
        .view-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        
        /* 列表内容区域 */
        .list-section {
            margin-bottom: 25px;
        }
        
        /* 卡片视图 - 每排4条 */
        .card-view {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }
        
        .list-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #f0f0f0;
        }
        
        .list-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
        }
        
        .card-image {
            height: 120px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .card-badge {
            position: absolute;
            top: 6px;
            right: 6px;
            background: #c00;
            color: white;
            padding: 2px 6px;
            border-radius: 10px;
            font-size: 10px;
            font-weight: bold;
        }
        
        .card-content {
            padding: 10px;
        }
        
        .card-title {
            font-size: 13px;
            margin-bottom: 5px;
            line-height: 1.3;
        }
        
        .card-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .card-title a:hover {
            color: #c00;
        }
        
        .card-meta {
            display: flex;
            gap: 6px;
            margin-bottom: 6px;
            font-size: 10px;
            color: #888;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 2px;
        }
        
        .meta-item i {
            color: #c00;
            font-size: 9px;
        }
        
        .card-desc {
            font-size: 11px;
            color: #666;
            line-height: 1.3;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .card-features {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding: 5px 0;
            border-top: 1px solid #f5f5f5;
            border-bottom: 1px solid #f5f5f5;
        }
        
        .feature {
            text-align: center;
            flex: 1;
        }
        
        .feature-value {
            font-size: 11px;
            font-weight: bold;
            color: #c00;
        }
        
        .feature-label {
            font-size: 9px;
            color: #888;
            margin-top: 1px;
        }
        
        .card-actions {
            display: flex;
            justify-content: space-between;
        }
        
        .card-btn {
            padding: 4px 8px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 10px;
            transition: all 0.3s;
            text-align: center;
            flex: 1;
            margin: 0 2px;
        }
        
        .card-primary {
            background: linear-gradient(135deg, #c00, #d33);
            color: white;
        }
        
        .card-secondary {
            background: #f8f8f8;
            color: #666;
            border: 1px solid #eee;
        }
        
        .card-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        /* 表格视图 */
        .table-view {
            display: none;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
        }
        
        .list-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 12px;
        }
        
        .list-table th {
            background: #f8f8f8;
            padding: 8px 10px;
            text-align: left;
            font-weight: bold;
            color: #c00;
            border-bottom: 1px solid #eee;
        }
        
        .list-table td {
            padding: 8px 10px;
            border-bottom: 1px solid #eee;
            vertical-align: top;
        }
        
        .list-table tr:hover {
            background: #fffbfb;
        }
        
        .table-title {
            font-weight: bold;
            color: #333;
            margin-bottom: 2px;
            font-size: 12px;
        }
        
        .table-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .table-title a:hover {
            color: #c00;
        }
        
        .table-desc {
            font-size: 11px;
            color: #666;
            line-height: 1.3;
            margin-bottom: 3px;
        }
        
        .table-meta {
            font-size: 10px;
            color: #888;
        }
        
        .table-badge {
            display: inline-block;
            background: #fffbfb;
            color: #c00;
            padding: 1px 4px;
            border-radius: 3px;
            font-size: 10px;
            border: 1px solid #ffe6e6;
        }
        
        .table-action {
            display: inline-block;
            background: linear-gradient(135deg, #c00, #d33);
            color: white;
            padding: 3px 6px;
            border-radius: 3px;
            text-decoration: none;
            font-size: 10px;
            transition: all 0.3s;
        }
        
        .table-action:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(192, 0, 0, 0.2);
        }
        
        /* 分页区域 */
        .pagination-section {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .pagination {
            display: flex;
            gap: 5px;
        }
        
        .pagination li a {
            padding: 6px 12px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            text-decoration: none !important;
            color: #666;
            transition: all 0.3s;
            font-size: 12px;
        }

		  .page-item i {
            padding: 6px 12px;
            height: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            text-decoration: none !important;
            color: #666;
            transition: all 0.3s;
            font-size: 12px;
        }
        
        .pagination li a:active {
            background: #c00;
            color: white;
            border-color: #c00;
        }
		.pagination li a:active {
			background: #c00;
			color: white;
			border-color: #c00;
		}
		.pagination li {
			display: inline;
        }
        .pagination li a:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
.pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #c00;
    border-color: #c00;
}
        
        /* 侧边栏 - 7.5:2.5比例 */
        .content-with-sidebar {
            display: flex;
            gap: 18px;
        }
        
        .main-content {
            flex: 7.5;
        }
        
        .sidebar {
            flex: 2.5;
        }
        
       
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .filter-grid, .advanced-content {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .card-view {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .filter-grid, .advanced-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .card-view {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .content-with-sidebar {
                flex-direction: column;
            }
            
            .main-content, .sidebar {
                flex: 1;
            }
        }
        
        @media (max-width: 768px) {
            .filter-grid, .advanced-content {
                grid-template-columns: 1fr;
            }
            
            .card-view {
                grid-template-columns: 1fr;
            }
            
            .list-options {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .filter-actions {
                flex-direction: column;
                gap: 8px;
                align-items: flex-start;
            }
            
            .form-row {
                flex-direction: column;
                gap: 6px;
            }
        }


/*sertch2*/

.s-list-section {
    margin-bottom: 20px;
}

.s-article-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.s-article-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    margin-bottom: 11px;
}

.s-article-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.s-article-image {
    flex: 0 0 135px;
    height: 90px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 6px;
    margin: 9px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.s-article-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #c00;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: bold;
}

.s-article-content {
    flex: 1;
    padding: 9px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.s-article-header {
    margin-bottom: 6px;
}

.s-article-title {
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.s-article-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.s-article-title a:hover {
    color: #c00;
}

.s-article-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.s-article-keywords {
    display: flex;
    gap: 5px;
}

.s-keyword {
    background: #fffbfb;
    color: #c00;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    border: 1px solid #ffe6e6;
    transition: all 0.3s;
}

.s-keyword:hover {
    background: #c00;
    color: white;
    cursor: pointer;
}

.s-article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: #888;
}

.s-meta-item {
    display: flex;
    align-items: center;
    gap: 3px;
}

.s-meta-item i {
    color: #c00;
}

/* 响应式样式 */
@media (max-width: 1200px) {
    .s-article-image {
        flex: 0 0 120px;
    }
}

@media (max-width: 992px) {
    .s-article-item {
        flex-direction: column;
    }
    
    .s-article-image {
        flex: 0 0 135px;
        width: calc(100% - 18px);
        margin: 9px auto 0;
    }
}

@media (max-width: 768px) {
    .s-article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .s-article-image {
        flex: 0 0 120px;
        width: calc(100% - 18px);
    }
}
