/* feedback 页面特有样式 */
body {
    background: url(../../images/bodybg.jpg) repeat;
    background-position: 0 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}
.list-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    overflow: hidden;
}
/* ===== 卡片头部 ===== */
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    border-bottom: 2px solid #e8f3fc;
    background: linear-gradient(90deg,#f0f8ff 0%,#fff 100%);
}
.card-header .card-title {
    font-size: 20px;
    font-weight: bold;
    color: #00A5FF;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-header .card-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: #00A5FF;
    border-radius: 2px;
}
.search-box button {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 36px;
    border: none;
    background: #00A5FF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.search-box button:hover { background: #0090e0; }
.btn-reset:hover {
    border-color: #00A5FF;
    color: #00A5FF;
}
/* ===== 表格 ===== */
.table-header {
    display: flex;
    height: 44px;
    line-height: 44px;
    background: rgba(2, 105, 184, 0.10);
    padding: 0 22px;
    font-size: 14px;
    font-weight: bold;
    color: #1a4a80;
}
.table-header .col-no    { width: 70px;  text-align: center; flex-shrink: 0; }
.table-header .col-code { width: 140px; flex-shrink: 0; }
.table-body { padding: 0 22px; }
.table-row {
    display: flex;
    align-items: center;
    height: 46px;
    line-height: 46px;
    font-size: 14px;
    border-bottom: 1px solid #f0f4f8;
    transition: background 0.15s;
}
.table-row:hover { background: #f7fbff; }
.table-row .col-no    { width: 70px;  text-align: center; flex-shrink: 0; color: #888; font-size: 13px; }
.table-row .col-code   { width: 140px; flex-shrink: 0; color: #666; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.table-row .col-title a:hover { color: #00A5FF; }
.status-dot::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FA5E5E;
    flex-shrink: 0;
}
/* ===== 空状态 ===== */
.empty-tip {
    text-align: center;
    padding: 60px 0;
    color: #aaa;
    font-size: 15px;
}
/* ===== 分页 ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    border-top: 1px solid #f0f4f8;
}
.page-btn:hover:not(:disabled) { border-color: #00A5FF; color: #00A5FF; }
.page-btn.active { background: #00A5FF; border-color: #00A5FF; color: #fff; }
