
        
        /* 背景装饰元素 */
        .bg-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }
        
        .decoration-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(0, 82, 204, 0.05);
        }
        
        .circle-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
            background: radial-gradient(circle, rgba(0, 82, 204, 0.1) 0%, rgba(0, 82, 204, 0) 70%);
        }
        
        .circle-2 {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: -50px;
            background: radial-gradient(circle, rgba(0, 82, 204, 0.08) 0%, rgba(0, 82, 204, 0) 70%);
        }

     
        /* --- 弹窗遮罩 --- */
        .modal-overlay_salan {
            display: none;
            position: fixed;
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 99999;
            backdrop-filter: blur(4px);
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* --- 弹窗主体 --- */
        .search-modal {
            position: absolute;
            top: 50%; 
            left: 50%;
            transform: translate(-50%, -50%) scale(0.95);
            width: 850px;
            max-width: 95%;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
            display: flex;
            flex-direction: column;
            max-height: 90vh;
            overflow: hidden;
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255,255,255,0.2);
			 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); 
			   background: url(/static/image/login_right.jpg) no-repeat;
    background-position: 100% 0;
    background-size: cover;
        }
        
        .modal-overlay_salan.active .search-modal { 
            opacity: 1; 
            transform: translate(-50%, -50%) scale(1);
        }

        /* --- 头部 --- */
        #searchModal .modal-header {
            padding: 6px 12px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to right, #3561a3, #ffffff);
			background: url(/static/image/filter.jpg) no-repeat;
			background-size:cover;
            position: relative;
            overflow: hidden;color:#fffs;
		
 font-weight: 700; 
            color: #666;height:70px
   

        }
      
      /*   #searchModal .modal-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(to bottom, #1890ff, #0066ff);
        } */
        
         #searchModal.modal-title { 
            font-size: 20px; 
            font-weight: 700; 
            color: #666;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        #searchModal .modal-title i {
            color: #1890ff;
            background: linear-gradient(90deg, #454d58, #5b96ed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;margin-right:10px
        }
        
        #searchModal .close-btn { 
            font-size: 24px; 
            color: #fff; 
            cursor: pointer; 
            border: none; 
            background: none;
            transition: all 0.3s;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;    position: absolute;
    top: 2px;
    right: 0px;
        }
		.filter-options .option-tag img{width:12px;height:12px;margin:0px;padding:0px}
        
        #searchModal .close-btn:hover { 
            color: #fff; 
            background: linear-gradient(90deg, rgb(24, 144, 255), rgb(0, 102, 255));
            transform: rotate(90deg);
        }

        /* --- 内容区域 --- */
        #searchModal .modal-body {
            padding: 24px 28px;
            overflow-y: auto;
            flex: 1;
            background-color: #fcfdfe;
        }

        /* 筛选组样式 */
        #searchModal .filter-group { 
            margin-bottom: 28px; 
            position: relative;
        }
        
        #searchModal .filter-group::after {
            content: '';
            position: absolute;
            bottom: -14px;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, rgba(0,82,204,0.1), rgba(0,82,204,0.5), rgba(0,82,204,0.1));
        }
        
        #searchModal .filter-group:last-child::after {
            display: none;
        }
        
        #searchModal .filter-label {
            font-size: 15px;
            font-weight: 700;
            color: #333;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        #searchModal .filter-label i {
            color: #1890ff;
            width: 20px;
            text-align: center;
        }
        
        #searchModal .filter-options { 
            display: flex; 
            flex-wrap: wrap; 
            gap: 10px; 
        }

        /* 选项按钮 */
        #searchModal .option-tag {
            padding: 5px 18px;
            border: 1px solid #e0e0e0;
            border-radius: 20px;
            font-size: 14px;
            color: #666;
            cursor: pointer;
            transition: all 0.3s;
            background: #fff;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        #searchModal .option-tag::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0,82,204,0.1), rgba(0,82,204,0.05));
            transition: left 0.4s;
            z-index: 0;
        }
        
        #searchModal .option-tag:hover::before {
            left: 0;
        }
        
        #searchModal .option-tag:hover { 
            border-color: #1890ff; 
            color: #1890ff; 
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 82, 204, 0.1);
        }
        
        #searchModal .option-tag i {
            font-size: 12px;
            z-index: 1;
        }
        
        /* 选中状态 */
       #searchModal  .option-tag.active {
            background: linear-gradient(90deg, #e6f0ff, #f0f6ff);
            border-color: #1890ff;
            color: #1890ff;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0, 82, 204, 0.15);
            position: relative;
        }
        
        #searchModal .option-tag.active::after {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: -8px;
            right: -8px;
            background: #1890ff;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        /* --- 专业开关特有样式 --- */
        .major-switch-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 5px;
        }
        
        .major-switch-label {
            font-size: 14px;
            color: #666;
            font-weight: 500;
        }
        
        /* 开关样式 */
        .major-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }
        
        .major-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .major-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, #e0e0e0, #f0f0f0);
            transition: .4s;
            border-radius: 34px;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .major-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background: white;
            transition: .4s;
            border-radius: 50%;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .major-switch input:checked + .major-slider {
            background: linear-gradient(90deg, #1890ff, #0066ff);
        }
        
        .major-switch input:checked + .major-slider:before {
            transform: translateX(30px);
        }
        
        /* 开关状态提示 */
        .switch-status {
            font-size: 14px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            transition: all 0.3s;
        }
        
        .switch-status.off {
            color: #999;
            background: #f5f5f5;
        }
        
        .switch-status.on {
            color: #1890ff;
            background: rgba(24, 144, 255, 0.1);
        }

        /* --- 城市选择器特有样式 --- */
        .location-wrapper { 
            border: 1px solid #e8f0ff; 
            border-radius: 12px; 
            padding: 20px; 
            background: linear-gradient(to bottom, #f9fbff, #f0f6ff);
            box-shadow: inset 0 2px 8px rgba(0, 82, 204, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .location-wrapper::before {
            content: '\f3c5';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            color: rgba(0, 82, 204, 0.1);
            z-index: 0;
        }
        
        /* 已选城市胶囊 */
        .selected-cities-box { 
            display: flex; 
            flex-wrap: wrap; 
            gap: 10px; 
            margin-bottom: 20px; 
            min-height: 38px; 
            position: relative;
            z-index: 1;
        }
        
        .city-capsule {
            background: linear-gradient(90deg, #1890ff, #0066ff); 
            color: #fff; 
            padding: 4px 6px; 
            border-radius: 100px; 
            font-size: 13px; 
            display: flex; 
            align-items: center; 
            gap: 5px;
            box-shadow: 0 3px 8px rgba(0, 82, 204, 0.3);
            transition: all 0.3s;
        }
        
        .city-capsule:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0, 82, 204, 0.4);
        }
        
        .city-capsule .remove-city { 
            cursor: pointer; 
            font-weight: bold; 
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            transition: all 0.3s;
        }
        
        .city-capsule .remove-city:hover {
            background: rgba(255,255,255,0.4);
            transform: rotate(90deg);
        }
        
        .no-city-tip { 
            font-size: 13px; 
            color: #999; 
            line-height: 32px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .no-city-tip i {
            font-size: 14px;
        }

        /* 城市Tab */
        #searchModal .city-tabs { 
            display: flex; 
            border-bottom: 1px solid #e0e6ff; 
            margin-bottom: 16px; 
            position: relative;
            z-index: 1;
        }
        
        #searchModal .city-tab {
            padding: 10px 20px; 
            cursor: pointer; 
            font-size: 14px; 
            color: #666; 
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        
        #searchModal .city-tab:hover {
            color: #1890ff;
        }
        
       #searchModal  .city-tab.active { 
            color: #1890ff; 
            font-weight: 700; 
        }
        
        #searchModal .city-tab.active::after {
            content: ''; 
            position: absolute; 
            bottom: -1px; 
            left: 0; 
            width: 100%; 
            height: 3px; 
            background: linear-gradient(to right, #1890ff, #0066ff);
            border-radius: 3px 3px 0 0;
        }

        /* 二级联动选择器样式 */
        #searchModal .province-city-container {
            display: flex;
            gap: 20px;
            height: 300px;
        }
        
        #searchModal .province-section, .city-section {
            flex: 1;
            border: 1px solid #e0e6ff;
            border-radius: 8px;
            background: #fff;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        #searchModal .section-header {
            padding: 12px 16px;
            background: linear-gradient(90deg, #f8fafd, #f0f6ff);
            border-bottom: 1px solid #e0e6ff;
            font-size: 14px;
            font-weight: 600;
            color: #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .select-all-btn {
            font-size: 12px;
            color: #1890ff;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: all 0.2s;
        }
        
        .select-all-btn:hover {
            background: rgba(0, 82, 204, 0.1);
        }
        
        .section-list {
            flex: 1;
            overflow-y: auto;
            padding: 8px 0;
        }
        
        #searchModal .province-list, .city-list {
            list-style: none;
        }
        
        #searchModal .province-item, .city-item {
            padding: 10px 16px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
        }
        
        .province-item:hover, .city-item:hover {
            background: rgba(0, 82, 204, 0.05);
        }
        
        /* 省份三种状态样式：未选/半选/全选 */
        .province-item.unselected .check-icon {
            color: #999;
        }
        .province-item.partial .check-icon {
            color: #1890ff;
        }
        .province-item.selected .check-icon {
            color: #1890ff;
        }
        
        .province-item.active::before, .city-item.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #1890ff, #0066ff);
        }
        
        #searchModal .check-icon {
            margin-right: 10px;
            font-size: 14px;
            width: 20px;
            text-align: center;
        }
        
        .city-item.active .check-icon {
            color: #1890ff;
        }
        
        .city-count {
            font-size: 11px;
            color: #999;
            background: #f0f0f0;
            padding: 2px 6px;
            border-radius: 10px;
            margin-left: 8px;
        }
        
        .province-item.selected .city-count,
        .province-item.partial .city-count {
            background: rgba(0, 82, 204, 0.1);
            color: #1890ff;
        }
        
       #searchModal .no-data {
            text-align: center;
            color: #999;
            font-size: 13px;
            padding: 20px;
        }

        /* --- 底部 --- */
       #searchModal .modal-footer {
            padding: 20px 28px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            background: linear-gradient(to right, #f8fafd, #ffffff);
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
        }
        
      #searchModal  .btn { 
            padding: 12px 28px; 
            border-radius: 8px; 
            cursor: pointer; 
            font-size: 15px; 
            border: 1px solid transparent;
            font-weight: 600;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-width: 140px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
       #searchModal .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
            z-index: -1;
            transition: left 0.5s;
        }
        
       #searchModal .btn:hover::before {
            left: 100%;
        }
        
       #searchModal .btn-reset { 
            background: linear-gradient(90deg, #f5f5f5, #f0f0f0); 
            color: #666; 
            border-color: #ddd;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        
       #searchModal .btn-reset:hover { 
            background: linear-gradient(90deg, #e0e0e0, #e5e5e5); 
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }
        
      #searchModal  .btn-confirm { 
            background: linear-gradient(90deg, #1890ff, #0066ff); 
            color: white; 
            box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
        }
        
      #searchModal  .btn-confirm:hover { 
            background: linear-gradient(90deg, #003ea8, #1890ff); 
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 82, 204, 0.4);
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
          #searchModal  .search-modal {
                width: 95%;
                max-height: 85vh;
            }
            
          #searchModal .modal-body {
                padding: 16px;
            }
            
           #searchModal .filter-options {
                gap: 8px;
            }
            
          #searchModal  .option-tag {
                padding: 6px 14px;
                font-size: 13px;
            }
            
          #searchModal  .btn {
                padding: 10px 20px;
                min-width: 120px;
            }
            
           #searchModal .province-city-container {
                flex-direction: column;
                height: 400px;
            }
            
          #searchModal  .province-section, .city-section {
                height: 50%;
            }
        }