/* 页面容器 */
.page-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* 卡片 */
.card-wrapper {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* 搜索框 */
.search-box {
    margin-bottom: 25px;
}
.search-flex {
    display: flex;
    gap: 10px;
    align-items: center;
}
.search-input-wrap {
    position: relative;
    flex: 1;
}
.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}
.search-input {
    width: 100%;
    height: 38px;
    padding-left: 40px;
    padding-right: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}
.search-input:focus {
    outline: none;
    border-color: #3b82f6;
}
.search-btn {
    height: 38px;
    padding: 0 20px;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.search-btn:hover {
    background: #2563eb;
}

/* 搜索结果 */
.search-result {
    margin-top: 15px;
    display: none;
}

/* 表格公共样式（核心！） */
.table-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}
.table-title {
    background: #f8f9fa;
    padding: 12px 15px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.data-table th {
    background: #f1f5f9;
    padding: 10px 15px;
    text-align: left;
    font-weight: bold;
    color: #333;
}
.data-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    color: #555;
}
.data-table tr:hover {
    background: #fafafa;
}
.col-width-half {
    width: 50%;
}