/* 流水处理页面专用样式 */

/* 筛选区域展开/折叠动画 */
.filter-container {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.2s ease-in-out, visibility 0s 0.3s;
}

.filter-container.expanded {
    max-height: 300px;
    visibility: visible;
    opacity: 1;
    transition: max-height 0.3s ease-in-out, opacity 0.2s ease-in-out, visibility 0s;
}

/* 快速筛选标签 */
.quick-filter-tags {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 16px;
}

.quick-filter-tag {
    white-space: nowrap;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    background-color: #F3F4F6;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-filter-tag.active {
    background-color: #EBF3FF;
    color: #0078E5;
}

/* 信息补全表单弹窗 */
.completion-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.completion-modal.show {
    opacity: 1;
    visibility: visible;
}

.completion-form {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 340px;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.completion-modal.show .completion-form {
    transform: translateY(0);
}