.flex-box {
    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -o-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    flex-wrap: nowrap;
}

.no-align {
    align-items: unset;
}

.flex-item {
    flex: 1;
    flex-grow: 1;
    flex-shrink: 1;
    white-space: normal
}

.flex-item-center {
    flex-grow: 1;
    flex: 1;
    flex-grow: 1;
    flex-shrink: 1;
    white-space: normal;
    text-align: center;
}

.fixed-bottom {
    z-index: 999;
    position: fixed;
    bottom:  0;
    left: 0;
    width: 100%;
    background: #FFF;
    border-top: 1px solid #f6f6f6;
}

.fixed-bottom .btn-group {
    padding: 6px 15px;
    text-align: right;
}

/*显示提示内容*/
.prompt-box .prompt-text {
    display: none;
}

.prompt-box:hover .prompt-text {
    padding-left: 4px;
    display: inline-block;
}

/* 标签##############3 */
.tag-input-container {
    position: relative;
}

.tag-list {
    flex-wrap: wrap;
    gap: 8px;
    padding: 5px;
}

.tag-item {
    display: inline-block;
    padding: 0px 6px;
    background-color: #5FB878;
    color: white;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
    margin-right: 5px;
    margin-bottom: 5px;
}

.tag-item .remove-tag {
    margin-left: 5px;
    cursor: pointer;
    font-weight: 350 !important;
}

.tag-item .remove-tag:hover {
    color: #FF5722;
}

.tag-item:hover {
    opacity: 0.8;
}

.preset-tags {
    margin-top: 0px;
}

.preset-tags .layui-badge {
    cursor: pointer;
    margin-right: 8px;
    margin-bottom: 5px;
    background-color: #eee;
    color: #333;
}

/* 标签结束########### */

.form-input-tips {
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
}

