/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    background: #f0f2f5;
}

.scenic-container {
    padding: 20px;
}

/* 搜索面板样式 */
.search-panel {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-item {
    display: flex;
    align-items: center;
}

.form-item label {
    margin-right: 10px;
    color: #666;
}

.form-item input,
.form-item select {
    padding: 8px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    width: 200px;
}

.price-input {
    width: 100px !important;
}

.form-actions {
    display: flex;
    gap: 10px;
}

.search-btn,
.reset-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-btn {
    background: #1890ff;
    color: #fff;
}

.reset-btn {
    background: #fff;
    border: 1px solid #d9d9d9;
}

/* 工具栏样式 */
.toolbar {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.add-btn,
.export-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.add-btn {
    background: #52c41a;
    color: #fff;
}

.export-btn {
    background: #fff;
    border: 1px solid #d9d9d9;
}

/* 表格样式 */
.table-container {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: auto;
}

.scenic-table {
    width: 100%;
    border-collapse: collapse;
}

.scenic-table th,
.scenic-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.scenic-table th {
    background: #fafafa;
    font-weight: 500;
}

.status-tag {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.status-tag.active {
    background: #e6f7ff;
    color: #1890ff;
}

.action-btn {
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 5px;
}

.action-btn.edit {
    background: #e6f7ff;
    color: #1890ff;
}

.action-btn.view {
    background: #f6ffed;
    color: #52c41a;
}

.action-btn.delete {
    background: #fff1f0;
    color: #ff4d4f;
}

/* 分页样式 */
.pagination {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.page-btn {
    padding: 6px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}

.page-btn.active {
    background: #1890ff;
    color: #fff;
    border-color: #1890ff;
}

.page-btn:disabled {
    cursor: not-allowed;
    color: #d9d9d9;
}

.page-ellipsis {
    color: #666;
}

.page-info {
    margin-left: 16px;
    color: #666;
}