body {
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", sans-serif;
    background-color: #f0f2f5;
}

/* 搜索区域 */
.search-area {
    background-color: #fff;
    padding: 15px;
    border-radius: 4px;
    margin: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.search-area input {
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 180px;
}

.search-area button {
    padding: 8px 20px;
    background-color: #39ADB4;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* 表格样式 */
.table-container {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 0 20px 0 20px;
    height: calc(100vh - 105px);
}

.table-header {
    background-color: #39ADB4;
    color: #fff;
    display: flex;
    padding: 10px 15px;
}

.table-header div {
    font-weight: bold;
}

.table-body {
    overflow-y: auto;
}

.table-row {
    display: flex;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.table-row:hover {
    background-color: #f9f9f9;
}

.action-button {
    background-color: #39ADB4;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 20px;
}

.pagination button {
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}

.pagination button.active {
    background-color: #39ADB4;
    color: white;
    border-color: #39ADB4;
}

.pagination button:disabled {
    cursor: not-allowed;
    color: #aaa;
}

/* 加载状态 */
.loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.loading-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #39ADB4;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}