			/* =========================================
			   SEARCH SECTION
			   ========================================= */
			.search-section {
				background: rgba(255, 255, 255, 0.8);
				backdrop-filter: blur(25px) saturate(180%);
				-webkit-backdrop-filter: blur(25px) saturate(180%);
				padding: 12px;
				border-radius: 0 0 var(--radius-l) var(--radius-l);
				box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
				margin-bottom: 20px;
				position: sticky;
				top: 0;
				z-index: 100;
				border-bottom: 1px solid rgba(0, 0, 0, 0.05);
				transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
				width: 100%;
			}

			.search-section.collapsed {
				padding: 0;
				height: 44px;
				border-radius: 0 0 12px 12px;
				cursor: pointer;
				background: rgba(255, 255, 255, 0.8);
			}

			.controls {
				display: grid;
				grid-template-columns: 90px 70px 90px 90px 1fr 90px;
				gap: 10px;
				align-items: center;
				opacity: 1;
				transition: opacity 0.2s;
			}

			.search-section.collapsed .controls {
				display: none;
				opacity: 0;
			}

			.mini-search-bar {
				display: none;
				align-items: center;
				justify-content: space-between;
				width: 100%;
				height: 44px;
				padding: 0 15px;
				color: var(--text-secondary);
				cursor: pointer;
			}

			.mini-search-bar:hover {
				background-color: rgba(0, 0, 0, 0.02);
			}

			.search-section.collapsed .mini-search-bar {
				display: flex;
				animation: fadeIn 0.3s forwards;
			}

			@media (min-width: 769px) {
				.search-section.collapsed {
					padding: 12px;
					height: auto;
					border-radius: 0 0 var(--radius-l) var(--radius-l);
					cursor: default;
					background: rgba(255, 255, 255, 0.8);
				}

				.search-section.collapsed .controls {
					display: grid !important;
					opacity: 1 !important;
				}

				.search-section.collapsed .mini-search-bar {
					display: none !important;
				}

				.search-section.collapsed .suggest {
					display: block !important;
				}
			}

			.mini-bar-text {
				display: flex;
				align-items: center;
				gap: 8px;
				overflow: hidden;
				white-space: nowrap;
				text-overflow: ellipsis;
				color: #333;
				font-size: 0.9rem;
				font-weight: 500;
				flex: 1;
			}

			.mini-bar-btn {
				width: 28px;
				height: 28px;
				background: var(--primary);
				color: white;
				border-radius: 50%;
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 0.8rem;
				margin-left: 10px;
				box-shadow: 0 2px 6px rgba(250, 45, 72, 0.3);
			}

			.control-group > label:not(.inline-toggle) {
				display: none;
			}

			input,
			select,
			button {
				width: 100%;
				height: 38px;
				padding: 0 12px;
				border: 1px solid #d1d1d6;
				border-radius: 8px;
				background: rgba(255, 255, 255, 0.8);
				color: var(--text-main);
				font-size: 16px;
				transition: all 0.2s;
				appearance: none;
			}

			input:focus,
			select:focus {
				border-color: var(--primary);
				outline: none;
				box-shadow: 0 0 0 3px rgba(250, 45, 72, 0.1);
			}

			select {
				background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
				background-repeat: no-repeat;
				background-position: right 8px center;
				background-size: 14px;
				padding-right: 30px;
			}

			#query {
				background: #eef0f2;
				border-color: transparent;
				font-weight: 500;
				padding-right: 35px;
			}

			#query:focus {
				background: #fff;
				border-color: var(--primary);
			}

			.input-wrapper {
				position: relative;
				width: 100%;
				display: flex;
				align-items: center;
			}

			.clear-btn {
				position: absolute;
				right: 10px;
				top: 50%;
				transform: translateY(-50%);
				color: #999;
				cursor: pointer;
				font-size: 1rem;
				display: none;
				z-index: 5;
				transition: color 0.2s;
				width: 24px;
				height: 24px;
				text-align: center;
				line-height: 24px;
			}

			.clear-btn:hover {
				color: var(--primary);
			}

			.clear-btn.visible {
				display: block;
			}

			button {
				background: var(--primary);
				color: white;
				font-weight: 600;
				border: none;
				cursor: pointer;
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 5px;
				transition: background 0.2s, transform 0.1s;
			}

			button:hover {
				background: var(--primary-hover);
			}

			button:active {
				transform: scale(0.98);
			}

			button:disabled {
				opacity: 0.6;
				cursor: not-allowed;
			}

			.btn-loading {
				background: var(--text-secondary) !important;
			}

			.suggest {
				margin-top: 8px;
				padding-top: 5px;
				display: block;
				border-top: 1px solid rgba(0, 0, 0, 0.05);
			}

			.search-section.collapsed .suggest {
				display: none !important;
			}

			.suggest-items {
				display: flex;
				gap: 8px;
				overflow-x: auto;
				padding-bottom: 2px;
				-webkit-overflow-scrolling: touch;
			}

			.suggest-item {
				background: rgba(0, 0, 0, 0.05);
				color: var(--primary);
				padding: 4px 12px;
				border-radius: 12px;
				font-size: 0.8rem;
				white-space: nowrap;
				cursor: pointer;
				transition: all 0.2s;
				border: 1px solid transparent;
			}

			.suggest-item:hover {
				background: rgba(250, 45, 72, 0.1);
				border-color: rgba(250, 45, 72, 0.2);
				transform: translateY(-1px);
			}

			@media (max-width: 768px) {
    .search-section {
        padding: 8px;
        border-radius: 0 0 16px 16px;
    }

    .controls {
        grid-template-columns: 1fr 1fr 1fr 1fr; /* 将网格划分为均等的 4 列 */
        grid-template-rows: auto auto;
        gap: 8px;
    }

    /* --- 第一行：搜索框与按钮 --- */
    /* 内容输入框 (第5个元素) 占前3列 */
    .controls > .control-group:nth-child(5) {
        grid-column: 1 / 4;
        grid-row: 1;
    }

    /* 搜索按钮 (第6个元素) 占最后1列 */
    .controls > .control-group:nth-child(6) {
        grid-column: 4 / 5;
        grid-row: 1;
    }

    /* --- 第二行：四个下拉选择框 --- */
    /* 模式 */
    .controls > .control-group:nth-child(1) {
        grid-row: 2;
        grid-column: 1 / 2;
    }

    /* 地区 */
    .controls > .control-group:nth-child(2) {
        grid-row: 2;
        grid-column: 2 / 3;
    }

    /* 类型 */
    .controls > .control-group:nth-child(3) {
        grid-row: 2;
        grid-column: 3 / 4;
    }

    /* 歌词源 */
    .controls > .control-group:nth-child(4) {
        grid-row: 2;
        grid-column: 4 / 5;
    }

    input,
    select,
    button {
        height: 34px;
        font-size: 14px;
        padding: 0 8px;
        text-align: center;
        border-radius: 8px;
    }

    /* 保证下拉框文字左对齐且图标显示正常 */
    select {
        padding-right: 18px;
        text-indent: 0;
        background-size: 10px;
        text-align: left;
    }

    #query {
        text-align: left;
        padding-left: 10px;
        padding-right: 32px;
    }
}

