       /* szxjy-search.css - 搜索页定制样式 */

        .search-banner {
            position: relative;
            height: 400px;
            background: #0b1a33 url("../images/szxjy-banner-search.jpg") no-repeat center center;
            background-size: cover;
            display: flex;
            align-items: center;
            padding-top: 0;
        }

        .search-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(11, 26, 51, 0.8), rgba(11, 26, 51, 0.4));
        }

        .search-banner .container {
            position: relative;
            z-index: 1;
        }

        .search-banner h1 {
            color: #fff;
            font-size: 42px;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .search-main-container {
            background-color: #0b1a33;
            padding-bottom: 100px;
            min-height: 500px;
        }

        .search-box-wrap {
            margin-top: 20px;
            position: relative;
            z-index: 10;
        }

        .search-form-container {
            background: #fff;
            padding: 0;
            display: flex;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border-radius: 4px;
            overflow: hidden;
        }

        .search-field-select {
            padding: 0 20px;
            height: 70px;
            display: flex;
            align-items: center;
            border-right: 1px solid #eee;
            color: #666;
            font-size: 16px;
            background: #fff;
            cursor: pointer;
            min-width: 150px;
        }

        .search-field-select span {
            margin-right: 15px;
        }

        .search-field-select i, .search-field-select svg {
            font-size: 14px;
            color: #999;
            width: 1em;
            height: 1em;
        }

        .search-input-group {
            flex: 1;
            display: flex;
            align-items: center;
        }

        .search-input-group input {
            width: 100%;
            height: 70px;
            border: none;
            padding: 0 25px;
            font-size: 18px;
            color: #333;
            outline: none;
            background: #fff;
        }

        .search-btn {
            width: 80px;
            height: 70px;
            background-color: #f15b41;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-btn:hover {
            background-color: #d84a32;
        }

        .search-btn svg {
            width: 1em;
            height: 1em;
        }

        .search-advanced {
            padding: 0 25px;
            height: 70px;
            display: flex;
            align-items: center;
            color: #3D55A7;
            font-size: 16px;
            cursor: pointer;
            background: #fff;
            border-left: 1px solid #eee;
        }

        .search-advanced i, .search-advanced svg {
            margin-left: 10px;
            font-size: 16px;
            width: 1em;
            height: 1em;
        }

        /* 结果统计与排序 */
        .search-results-info {
            margin-top: 20px;
            padding: 15px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #fff;
            font-size: 15px;
            background: rgba(255, 255, 255, 0.05);
            padding-left: 20px;
            padding-right: 20px;
        }

        .search-results-info .results-count {
            opacity: 0.9;
        }

        .search-results-info .keyword {
            color: #f15b41;
            font-weight: normal;
            margin: 0 3px;
        }

        .search-sort-options {
            display: flex;
            gap: 30px;
        }

        .search-sort-item {
            cursor: pointer;
            display: flex;
            align-items: center;
            color: #fff;
            opacity: 0.7;
            transition: opacity 0.3s;
            position: relative;
        }

        .search-sort-item:hover, .search-sort-item.active {
            opacity: 1;
        }

        .search-sort-item::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 12px;
            background: rgba(255, 255, 255, 0.3);
        }

        .search-sort-item:first-child::before {
            display: none;
        }

        .search-sort-item i, .search-sort-item svg {
            margin-left: 8px;
            font-size: 14px;
            width: 1em;
            height: 1em;
        }

        /* 建议部分 */
        .search-suggestions {
            margin-top: 150px;
            color: #fff;
            text-align: center;
        }

        .search-suggestions h3 {
            font-size: 18px;
            margin-bottom: 15px;
            opacity: 0.8;
        }

        .search-suggestions ul {
            list-style: none;
            padding: 0;
            display: inline-block;
            text-align: left;
        }

        .search-suggestions li {
            margin-bottom: 8px;
            font-size: 15px;
            opacity: 0.6;
        }

        /* 分页样式 */
        .paging-container {
            margin: 60px 0;
            display: flex;
            justify-content: center;
        }

        .paging {
            display: flex;
            gap: 10px;
            list-style: none;
        }

        .paging li a, .paging li span {
            display: block;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 4px;
            text-decoration: none;
            transition: background 0.3s;
        }

        .paging li a:hover, .paging li.active span {
            background: #f15b41;
        }

        .paging li.disabled span {
            opacity: 0.3;
            cursor: not-allowed;
        }

        /* 结果列表样式 (基于原有search.css但适配深色背景) */
        .search-list {
            margin-top: 40px;
        }

        .search-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
            padding: 25px;
            border-radius: 4px;
            transition: background 0.3s;
        }

        .search-item:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .search-item h3 a {
            color: #fff;
            font-size: 20px;
            text-decoration: none;
        }

        .search-item .item-meta {
            margin-top: 10px;
            color: #999;
            font-size: 14px;
        }

        .search-item .item-desc {
            margin-top: 15px;
            color: #ccc;
            line-height: 1.6;
        }

        /* 响应式适配 */
        @media (max-width: 767px) {
            .search-form-container {
                flex-direction: column;
            }
            .search-field-select, .search-advanced {
                width: 100%;
                border: none;
                border-bottom: 1px solid #eee;
            }
            .search-btn {
                width: 100%;
            }
            .search-banner {
                height: 250px;
                padding-top: 40px;
            }
            .search-banner h1 {
                font-size: 30px;
            }
        }