/* 筛选区域样式 */
.filter-area {
    background-color: white;
    padding: 16px 24px;
    margin-bottom: 16px;
    border-radius: 4px;
}

.filter-row {
    display: flex;
    margin-bottom: 16px;
    align-items: center;
}


.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input {
    margin-right: 4px;
}

.ant-select, .ant-input {
    flex: 1;
    height: 32px;
    padding: 4px 11px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
}

.search-btn {
    margin-left: auto;
    height: 32px;
}

/* 表格样式 */
.user-table {
    background-color: white;
    border-radius: 4px;
}

.ant-table {
    width: 100%;
    border-collapse: collapse;
}

.ant-table th, .ant-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.ant-table th {
    background-color: #fafafa;
    font-weight: 500;
}

/* 分页样式 */
.pagination {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

.ant-pagination {
    display: flex;
    align-items: center;
}

.ant-pagination-prev, .ant-pagination-next {
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 0 8px;
    height: 32px;
    margin: 0 8px;
    cursor: pointer;
    background-color: white;
}

.ant-pagination-item-container {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ant-pagination-item {
    min-width: 32px;
    height: 32px;
    margin-right: 8px;
    line-height: 32px;
    text-align: center;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    cursor: pointer;
}

.ant-pagination-item-active {
    border-color: #1890ff;
    background-color: #1890ff;
    color: white;
}

.ant-pagination-options {
    margin-left: 16px;
}

.ant-pagination-options-size-changer {
    height: 32px;
    padding: 0 11px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
}

/* 用户类型标签样式 */
.user-type-tag {
    padding: 0 8px;
    font-size: 12px;
    border-radius: 4px;
    display: inline-block;
}

.type-0 {
    background-color: #f6ffed;
    color: #52c41a;
    border: 1px solid #b7eb8f;
}

.type-10 {
    background-color: #e6f7ff;
    color: #1890ff;
    border: 1px solid #91d5ff;
}

.type-100 {
    background-color: #fff7e6;
    color: #fa8c16;
    border: 1px solid #ffd591;
}

.type-101 {
    background-color: #fff1f0;
    color: #f5222d;
    border: 1px solid #ffa39e;
}

/* 操作按钮 */
.action-btn {
    color: #1890ff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 8px;
}

.action-btn:hover {
    color: #40a9ff;}
/* 操作栏样式 */
.action-bar {
    margin-bottom: 16px;
    text-align: right;
}

/* 模态框样式 */
.ant-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.ant-modal-content {
    background-color: white;
    width: 520px;
    border-radius: 4px;
}

.ant-modal-header {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ant-modal-title {
    font-weight: 500;
    font-size: 16px;
}

.ant-modal-body {
    padding: 24px;
}

.ant-modal-footer {
    padding: 10px 16px;
    border-top: 1px solid #f0f0f0;
    text-align: right;
}

/* 表单项目样式 */
.form-item {
    margin-bottom: 16px;
}

.form-item label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

/* 危险按钮样式 */
.ant-btn-danger {
    color: #fff;
    background-color: #ff4d4f;
    border-color: #ff4d4f;
}

.ant-btn-danger:hover {
    background-color: #ff7875;
    border-color: #ff7875;
}
.filter-item {
    margin-right: 0px;}

.batch-btn {
    padding: 10px 20px;
    background-color: #1890ff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.batch-btn:hover {
    background-color: #40a9ff;
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 500px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    color: #333;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

.modal-body {
    padding: 10px 0;
}

.step {
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: flex-end;
}

.step h4 {
    margin-bottom: 10px;
    color: #444;
}

.download-btn,
.upload-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #1890ff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    margin-top: 5px;
}

.download-btn:hover,
.upload-btn:hover {
    background-color: #40a9ff;
}

.step #fileInput {
    display: block;
    margin: 10px 0;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: none;
}

#status {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}
