.form-container {
    display: flex;
    /* 使用Flexbox布局 */
    align-items: center;
    /* 垂直居中 */
    justify-content: space-between;
    /* 水平间距，可选 */
    width: 100%;
    /* 容器宽度 */
    max-width: 600px;
    /* 最大宽度，可选 */
    margin: 0 auto;
    /* 居中显示，可选 */
}

.user-form {
    display: flex;
    /* 使下拉框并排显示 */
    padding: 5px;
    margin-right: 20px;
    /* 增加右侧间距 */
}

.user-form select {
    margin-right: 10px;
    /* 下拉框之间的间距 */
    padding: 5px;
    /* 内边距 */
    border: 1px solid #ddd;
    /* 边框样式 */
    border-radius: 4px;
    /* 圆角 */
    width: calc(50% - 12px);
    /* 宽度自适应，减去内边距和边框宽度 */
}

.layui-form-item button {
    padding: 2px 15px;
    /* 按钮内边距 */
    border: none;
    /* 去掉边框 */
    border-radius: 4px;
    /* 圆角 */
    background-color: #1E9FFF;
    /* 背景色 */
    color: #fff;
    /* 文字颜色 */
    cursor: pointer;
    /* 鼠标指针样式 */
    transition: background-color 0.3s ease;
    /* 背景色过渡效果 */
}

.layui-form-item button:hover {
    background-color: #007ACC;
    /* 鼠标悬停时背景色 */
}