
/* 整个表单的样式 */
.fig-search-basic-container {
    padding: 10px;
    margin: 15px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}
.fig-search-basic-container1 {
    padding: 8px 10px;
    margin: 0px;
	width:100%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

/* 输入框和按钮容器的样式 */
.fig-1u04ghj {
    /* 样式代码 */
}

/* 输入框和标签的样式 */
.fig-1dpqtlk {
    /* 样式代码 */
    display: flex;
    align-items: center;
}

/* 搜索图标的样式 */
.fig-1wtxa2d {
    /* 样式代码 */
    margin-right: 5px;
}

/* 标签文本的样式 */
.fig-search-text-show {
    font-size: 13px; 
	color:#999;
}
/* 滚动文本的样式 */
.scroll-fig-search-text-show {
    font-size: 13px; 
	color:#999;
}
/* 输入框的样式 */
.fig-3asp4o {
    /* 样式代码 */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* 可选：输入框获取焦点时的样式 */
.fig-3asp4o:focus {
    /* 样式代码 */
    border-color: #007bff;
    box-shadow: 0 0 5px #007bff;
}

/* 可选：搜索按钮的样式 */
.fig-3asp4o {
    /* 样式代码 */
    padding: 8px 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.custom-header {
    background-color: #fff;
    color: white;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-go-back {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.custom-search-box {
    display: flex;
    align-items: center;
}

/* 自定义搜索输入框样式 */
.custom-search-input {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
	width: 100%;
}

/* 自定义搜索按钮样式 */
   .custom-search-button {
        background-color: rgba(0,0,0,0.1); /* 添加适当的背景颜色 */
        border: none; /* 移除按钮边框 */
        padding: 5px 10px; /* 添加适当的内边距 */
        color: #787878; /* 设置文字颜色 */
        cursor: pointer; /* 鼠标指针样式 */
		border-radius: 5px;
		white-space: nowrap;
    }

.custom-search-btn:hover {
    background-color: #0056b3;
}

