.list-search-textarea-container {
    position: relative;
	height: 38px; /* 设置初始高度 */
}
.list-search-textarea {
    width: 100%;
    resize: none;
    transition: height 0.2s ease;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.list-search-textarea:focus {
    height: 200px;
    z-index: 999;
    box-shadow: 0 0 0 2px rgba(62, 136, 171, 0.2);
}
::selection {
	background: #4a8bfc; /* 选择页面文字使用更明显的蓝色背景 */
	color: white; /* 白色文字提高可读性 */
}
::-moz-selection {
	background: #4a8bfc; /* 选择页面文字的背景颜色 Firefox浏览器兼容 */
	color: white;
}