﻿:root {
    --primary: #0052CC;
    --primary-dark: #0747A6;
    --text: #172B4D;
    --text-secondary: #42526E;
    --bg: #F4F5F7;
    --border: #DFE1E6;
    --card-shadow: 0 2px 4px rgba(9, 30, 66, 0.08);
    --radius: 12px;
    --radius-sm: 6px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    line-height: 1.5;
}

a, a:link, a:visited, a:hover, a:active {
    text-decoration: none;
}

.app-shell {
    max-width: 1600px;
    min-width: 1180px;
    margin: 24px auto;
    padding: 0 30px;
}

/* ---- Topbar ---- */
.topbar {
    height: 72px;
    border: none;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--card-shadow);
    display: grid;
    grid-template-columns: 1fr 440px 1fr;
    align-items: center;
    padding: 0 32px;
}

.brand {
    font-size: 22px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}

.brand span {
    color: #1c4a71;
}

.brand b {
    color: #4eccb1;
}

.brand em {
    font-style: normal;
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 16px;
    margin-left: 6px;
}

.search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 8px;
}

.search-form input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px 10px 40px;
    font-size: 14px;
    padding-left: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath fill-rule='evenodd' d='M10.5 3.75a6.75 6.75 0 1 0 0 13.5 6.75 6.75 0 0 0 0-13.5ZM2.25 10.5a8.25 8.25 0 1 1 14.59 5.28l4.69 4.69a.75.75 0 1 1-1.06 1.06l-4.69-4.69A8.25 8.25 0 0 1 2.25 10.5Z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 20px 20px;
    transition: border-color 0.2s;
}

.search-form input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.2);
}

.search-form button {
    min-width: 78px;
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s, border-color 0.2s, transform 0.1s;
}

.search-form button:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.search-form button:active {
    transform: translateY(1px);
}

.search-form button:focus-visible {
    outline: 3px solid rgba(0, 82, 204, 0.25);
    outline-offset: 2px;
}

.user-area {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    align-items: center;
    font-size: 14px;
}

.user-area strong {
    color: var(--text);
}

.text-button {
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.text-button:hover {
    background: #EBECF0;
}

/* ---- Overview ---- */
.overview {
    padding: 20px 0 28px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr) 160px;
    gap: 16px;
    align-items: stretch;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.2s;
}

.todo-stat-link {
    color: inherit;
    text-decoration: none;
    cursor: default;
}

.todo-stat-link.is-active {
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.todo-stat-link.is-active:hover {
    border-color: currentColor;
    transform: translateY(-2px);
}

.todo-stat-link.is-active:focus-visible {
    outline: 3px solid rgba(0, 82, 204, 0.3);
    outline-offset: 2px;
}

.stat-card:hover {
    box-shadow: 0 4px 8px rgba(9, 30, 66, 0.12);
}

.stat-card i {
    font-size: 28px;
    width: 36px;
    text-align: center;
    color: var(--primary);
    opacity: 0.8;
    flex-shrink: 0;
}

.stat-card .stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.stat-card .stat-content strong {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
}

.stat-card .stat-content span {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.stat-card.orange .stat-content strong {
    color: #FF8B00;
}

.stat-card.amber .stat-content strong {
    color: #FFAB00;
}

.stat-card.red .stat-content strong {
    color: #DE350B;
}

.stat-card.orange i {
    color: #FF8B00;
}

.stat-card.amber i {
    color: #FFAB00;
}

.stat-card.red i {
    color: #DE350B;
}

.stat-card strong {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
}

.stat-card.orange strong {
    color: #FF8B00;
}

.stat-card.amber strong {
    color: #FFAB00;
}

.stat-card.red strong {
    color: #DE350B;
}

.stat-card span {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.publish-button {
    height: 100%;
    border: none;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: background 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.publish-button:hover {
    background: var(--primary-dark);
}

.publish-button:active {
    transform: scale(0.97);
}

/* ---- Workspace ---- */
.workspace {
    height: calc(100vh - 230px);
    min-height: 530px;
    display: grid;
    grid-template-columns: 185px minmax(560px, 1fr) 270px;
    gap: 20px;
    padding: 0;
}

.sidebar,
.notice-panel,
.right-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.sidebar {
    display: flex;
    flex-direction: column;
    padding: 16px 12px;
}

.category-menu {
    display: grid;
    gap: 4px;
}

.category-menu button {
    height: 44px;
    border: none;
    border-radius: var(--radius-sm);
    background: transparent;
    font-size: 15px;
    color: var(--text-secondary);
    cursor: pointer;
    text-align: left;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, color 0.2s;
}

.category-menu button i {
    width: 20px;
    font-size: 16px;
}

.category-menu button:hover {
    background: #EBECF0;
    color: var(--text);
}

.category-menu button.active {
    background: var(--primary);
    color: #fff;
    font-weight: 500;
}

.category-menu button.active i {
    color: #fff;
}

.data-actions {
    margin-top: auto;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #FAFBFC;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
}

.data-actions-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px;
    padding-bottom: 4px;
}

.data-actions-title strong {
    color: var(--text);
    font-size: 13px;
}

.data-actions-title span {
    color: #97A0AF;
    font-size: 10px;
}

.data-actions .import-label,
.data-actions .export-btn {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.1s;
}

.data-actions .import-label {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-secondary);
}

.data-actions .import-label:hover {
    background: #EBF5FF;
    border-color: #B3D4FF;
}

.data-actions .month-control {
    display: grid;
    gap: 4px;
    color: var(--text-secondary);
    font-size: 11px;
}

.data-actions .month-picker {
    width: 100%;
    min-width: 0;
    padding: 7px 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 12px;
    background: #fff;
    outline: none;
}

.data-actions .month-picker:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.15);
}

.data-actions .export-btn {
    border: none;
    background: var(--primary);
    color: #fff;
}

.data-actions .export-btn:hover {
    background: var(--primary-dark);
}

.data-actions .import-label:active,
.data-actions .export-btn:active {
    transform: translateY(1px);
}

/* ---- Notice Panel ---- */
.notice-panel {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    overflow: hidden;
}

.notice-list {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
}

.notice-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    padding: 16px 20px;
    transition: box-shadow 0.2s, background 0.2s;
    background: #fff;
  }
  
  /* 斑马线效果：奇数行浅色背景 */
  .notice-item:nth-child(odd) {
    background: #fafbfc;
  }
  
  .notice-item:hover {
    box-shadow: 0 4px 12px rgba(9, 30, 66, 0.12);
    background: #f5f7fa;
  }
  
  .notice-item.selected {
    background: #EBF5FF;
    border-color: var(--primary);
  }
  
  .notice-item.selected:hover {
    background: #dcecf8;
  }

  .notice-item.todo-highlight,
  .notice-item.todo-highlight:hover {
    position: relative;
    z-index: 1;
    border: 2px solid #FF8B00;
    background: #FFF7E6;
    box-shadow: 0 0 0 4px rgba(255, 139, 0, 0.18), 0 8px 20px rgba(9, 30, 66, 0.16);
    animation: todo-highlight-pulse 1.1s ease-in-out 2;
  }

  @keyframes todo-highlight-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 139, 0, 0.18), 0 8px 20px rgba(9, 30, 66, 0.16); }
    50% { box-shadow: 0 0 0 8px rgba(255, 139, 0, 0.28), 0 10px 24px rgba(9, 30, 66, 0.2); }
  }
  
  /* 预约操作卡片样式 */
  .notice-item.pending-booking {
    background: #fff8e6;  /* 浅黄色背景 - 未完成 */
    border-left: 3px solid #F7B938;
  }
  
  .notice-item.pending-booking:hover {
    background: #fff3d6;
    box-shadow: 0 4px 12px rgba(247, 185, 56, 0.15);
  }
  
  .notice-item.completed-booking {
    background: #f0f0f0;  /* 灰色背景 - 已完成 */
    border-left: 3px solid #97A0AF;
    opacity: 0.85;
  }
  
  .notice-item.completed-booking:hover {
    background: #e8e8e8;
    opacity: 1;
  }

.notice-head {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-block;
    min-width: 68px;
    text-align: center;
}

.tag.notice {
    background: #6554C0;
}

.tag.suggestion {
    background: #36B37E;
}

.tag.hotel {
    background: #00A3BF;
}

.tag.process {
    background: #0052CC;
}

.tag.complaint {
    background: #DE350B;
}

.tag.completed {
    background: #97A0AF !important;
}

.notice-head h2 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.date {
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
    margin-left: auto;
}

.pinned {
    background: #FFEBE6;
    color: #DE350B;
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 500;
}

.notice-content {
    margin: 8px 0 12px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: pre-wrap;
    color: var(--text-secondary);
    font-size: 14px;
}

.notice-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.avatars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.avatars span:last-child {
    margin-left: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.avatar {
    position: relative;
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: skyblue;
    color: var(--text);
    font-weight: 600;
    font-size: 12px;
    display: grid;
    place-items: center;
    margin-right: -4px;
}

.avatar i {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #36B37E;
    border: 2px solid #fff;
}

.avatar.unread i {
    background: #DE350B;
}

.notice-actions button {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px 14px;
    margin-left: 6px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    transition: background 0.2s, border-color 0.2s;
}

.notice-actions button:hover {
    background: #F4F5F7;
    border-color: #B3BAC5;
}

.pagination {
    text-align: center;
    padding: 12px 0 4px;
}

.pagination button {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.pagination button:hover {
    background: #F4F5F7;
}

.pagination span {
    margin: 0 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ---- Right Panel ---- */
.right-panel {
    background: transparent;
    border: none;
    box-shadow: none;
    display: grid;
    grid-template-rows: 1fr 0.85fr;
    gap: 12px;
    min-height: 0;
}

.side-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    overflow: auto;
    box-shadow: var(--card-shadow);
}

.side-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    padding: 2px 0 8px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.side-publisher {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.side-publisher i {
    color: var(--primary);
    font-size: 11px;
}

#publisherText {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.follow-list {
    position: relative;
    padding-left: 12px;
}

.follow-list::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #DFE1E6;
    border-radius: 1px;
    z-index: 0;
}

.follow-item {
    position: relative;
    padding: 10px 0 10px 5px;
    border-bottom: 1px solid #F4F5F7;
    display: flex;
    align-items: flex-start;
}

.follow-item:last-child {
    border-bottom: none;
}

.follow-dot {
    position: absolute;
    left: -11px;
    top: 14px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(231, 172, 54);
    border: 1px solid #fff;
    box-shadow: 0 0 0 1px #DFE1E6;
    z-index: 1;
    flex-shrink: 0;
}

.follow-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.follow-text {
    font-size: 14px;
    color: #172B4D;
    line-height: 1.4;
}

.follow-time {
    font-size: 12px;
    color: #97A0AF;
    margin-top: 2px;
}

.follow-list>p {
    padding: 12px 0;
    color: #97A0AF;
    text-align: center;
}

.read-row {
    display: grid;
    grid-template-columns: 32px 1fr 48px 70px;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px solid #F4F5F7;
}

.read-row .avatar {
    margin: 0;
    width: 28px;
    height: 28px;
    font-size: 11px;
}

.read-row .read {
    color: #36B37E;
}

.read-row .unread {
    color: #DE350B;
}

.read-row button {
    border: none;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.read-row button:hover {
    background: #EBF5FF;
}

/* ---- Toast & Modal ---- */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--text);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    opacity: 0;
    transition: 0.25s;
    z-index: 20;
    font-size: 14px;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.modal-mask {
    position: fixed;
    z-index: 10;
    inset: 0;
    background: rgba(9, 30, 66, 0.5);
    display: grid;
    place-items: center;
}

.modal {
    width: min(1000px, 90vw);
    max-height: 88vh;
    overflow: auto;
    background: #fff;
    border-radius: var(--radius);
    padding: 24px 32px;
    box-shadow: 0 8px 24px rgba(9, 30, 66, 0.2);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal::-webkit-scrollbar {
    display: none;
}

.modal h2 {
    margin-top: 0;
    font-weight: 600;
    color: var(--text);
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-grid label {
    display: grid;
    gap: 4px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-secondary);
}

.form-grid .cycle-schedule-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 38px;
    color: var(--text);
    font-weight: 500;
}

.form-grid .cycle-schedule-row input {
    width: 88px;
    text-align: center;
}

.form-grid .cycle-start-date {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.form-grid .cycle-start-date input {
    width: 156px;
    text-align: left;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    font: inherit;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.2);
}

.form-grid textarea {
    min-height: 100px;
    resize: vertical;
}

.form-grid .checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    cursor: pointer;
}

.modal-actions {
    text-align: right;
    margin-top: 20px;
}

.modal-actions button {
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    margin-left: 8px;
}

.modal-actions .primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.modal-actions .primary:hover {
    background: var(--primary-dark);
}

/* ---- 公告发布 / 详情弹窗 ---- */
.notice-modal {
    width: min(1420px, calc(100vw - 48px));
    height: min(820px, calc(100vh - 40px));
    max-height: none;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    box-shadow: 0 24px 72px rgba(9, 30, 66, 0.28);
}

.notice-modal-header {
    min-height: 76px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DFE1E6;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
}

.notice-modal-header h2 {
    margin: 2px 0 0;
    font-size: 22px;
    line-height: 1.25;
}

.notice-modal-eyebrow {
    color: #7A869A;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.notice-modal-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #F4F5F7;
    color: #42526E;
    cursor: pointer;
    font-size: 17px;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.notice-modal-close:hover {
    background: #DEEBFF;
    color: var(--primary);
    transform: rotate(4deg);
}

.notice-meta-grid {
    display: grid;
    grid-template-columns: minmax(150px, .8fr) minmax(160px, .85fr) minmax(360px, 1.8fr) auto;
    gap: 14px;
    align-items: end;
    padding: 16px 24px;
    border-bottom: 1px solid #DFE1E6;
    background: #FFFFFF;
}

.notice-meta-grid.without-pin {
    grid-template-columns: minmax(150px, .8fr) minmax(160px, .85fr) minmax(360px, 2.2fr);
}

.notice-meta-field,
.notice-title-field,
.notice-content-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
    color: #42526E;
    font-size: 12px;
    font-weight: 600;
}

.notice-meta-field>span,
.notice-field-label,
.notice-title-field>span,
.notice-content-field>span {
    display: flex;
    align-items: center;
    min-height: 17px;
}

.notice-meta-field input,
.notice-meta-field select,
.notice-title-field input,
.notice-content-field textarea,
.modal-follow-item textarea,
.follow-composer textarea {
    width: 100%;
    border: 1px solid #DFE1E6;
    border-radius: 9px;
    background: #FFFFFF;
    color: #172B4D;
    font: inherit;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.notice-meta-field input,
.notice-meta-field select,
.notice-title-field input {
    min-height: 40px;
    padding: 8px 11px;
}

.notice-meta-field input:focus,
.notice-meta-field select:focus,
.notice-title-field input:focus,
.notice-content-field textarea:focus,
.modal-follow-item textarea:focus,
.follow-composer textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, .12);
}

.notice-schedule-placeholder {
    min-height: 64px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    border: 1px dashed #C1C7D0;
    border-radius: 9px;
    color: #7A869A;
    font-size: 12px;
}

.notice-schedule-placeholder strong {
    color: #42526E;
    font-size: 14px;
}

.notice-cycle-field .cycle-schedule-row {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #42526E;
    font-size: 13px;
    font-weight: 500;
}

.notice-cycle-field .cycle-schedule-row>input {
    width: 58px;
    min-height: 40px;
    padding: 7px 5px;
    text-align: center;
}

.notice-cycle-field .cycle-start-date {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    color: #42526E;
}

.notice-cycle-field .cycle-start-date input {
    width: 145px;
    min-height: 40px;
    padding: 7px 9px;
}

.notice-pin-field {
    min-height: 40px;
    margin-bottom: 0;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #DFE1E6;
    border-radius: 9px;
    color: #42526E;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
}

.notice-pin-field input {
    width: 17px;
    height: 17px;
    accent-color: var(--primary);
}

.notice-pin-field i {
    color: var(--primary);
}

.notice-pin-field.is-disabled {
    opacity: .48;
    cursor: not-allowed;
}

.notice-pin-field[hidden] {
    display: none;
}

.notice-modal-body {
    flex: 1;
    min-height: 0;
    padding: 18px 24px 24px;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(300px, 1fr);
    gap: 18px;
    background: #F4F5F7;
}

body.notice-modal-open {
    overflow: hidden;
    overscroll-behavior: none;
}

.notice-modal,
.notice-modal-body,
.notice-content-field textarea,
.modal-follow-list,
.follow-composer textarea {
    overscroll-behavior: contain;
}

.notice-content-panel,
.notice-follow-panel {
    min-height: 0;
    overflow: hidden;
    border: 1px solid #DFE1E6;
    border-radius: 14px;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(9, 30, 66, .06);
}

.notice-content-panel {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notice-title-field input {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 17px;
    font-weight: 600;
}

.notice-content-field {
    flex: 1;
    min-height: 0;
}

.notice-content-field textarea {
    flex: 1;
    min-height: 240px;
    padding: 14px;
    resize: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}

.notice-modal.is-readonly [data-notice-field]:disabled {
    opacity: 1;
    color: #172B4D;
    -webkit-text-fill-color: #172B4D;
    background: #FAFBFC;
    border-color: #EBECF0;
    cursor: default;
}

.notice-modal.is-readonly .notice-content-field textarea:disabled {
    background: #FFFFFF;
}

.notice-modal-actions {
    padding-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid #EBECF0;
}

.notice-modal button.btn-primary,
.notice-modal button.btn-secondary {
    min-height: 40px;
    padding: 8px 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.notice-modal button.btn-primary {
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #FFFFFF;
}

.notice-modal button.btn-primary:hover:not(:disabled) {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 82, 204, .22);
}

.notice-modal button.btn-secondary {
    border: 1px solid #C1C7D0;
    background: #FFFFFF;
    color: #42526E;
}

.notice-modal button.btn-secondary:hover {
    border-color: #7A869A;
    background: #F4F5F7;
}

.notice-modal button:disabled {
    opacity: .55;
    cursor: wait;
}

.notice-follow-panel {
    display: flex;
    flex-direction: column;
}

.notice-follow-header {
    min-height: 68px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EBECF0;
}

.notice-follow-header h3 {
    margin: 0 0 3px;
    color: #172B4D;
    font-size: 16px;
}

.notice-follow-header span {
    color: #7A869A;
    font-size: 12px;
}

.follow-add-button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    color: #FFFFFF;
    cursor: pointer;
    font-size: 17px;
    box-shadow: 0 4px 12px rgba(0, 82, 204, .28);
    transition: background .18s ease, transform .18s ease;
}

.follow-add-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.modal-follow-list {
    flex: 1;
    min-height: 0;
    padding: 14px;
    overflow-y: auto;
}

.modal-follow-item {
    position: relative;
    padding: 11px 10px 11px 42px;
    border-bottom: 1px solid #EBECF0;
    color: #42526E;
}

.modal-follow-item:last-child {
    border-bottom: 0;
}

.modal-follow-item .follow-index {
    position: absolute;
    top: 11px;
    left: 6px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #DEEBFF;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
}

.modal-follow-item p {
    margin: 1px 0 0;
    font-size: 13px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.modal-follow-item.is-editing {
    padding-right: 36px;
}

.modal-follow-item textarea {
    min-height: 72px;
    padding: 9px;
    resize: vertical;
    font-size: 13px;
    line-height: 1.55;
}

.follow-remove {
    position: absolute;
    top: 12px;
    right: 3px;
    width: 29px;
    height: 29px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #DE350B;
    cursor: pointer;
}

.follow-remove:hover {
    background: #FFEBE6;
}

.modal-follow-empty {
    height: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #97A0AF;
    font-size: 13px;
}

.modal-follow-empty i {
    font-size: 24px;
}

.follow-composer {
    padding: 12px 14px 14px;
    border-top: 1px solid #DFE1E6;
    background: #FAFBFC;
}

.follow-composer[hidden] {
    display: none;
}

.follow-composer textarea {
    min-height: 82px;
    padding: 10px;
    resize: vertical;
    font-size: 13px;
}

.follow-composer>div {
    margin-top: 8px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.notice-modal button.btn-small {
    min-height: 34px;
    padding: 6px 11px;
    font-size: 12px;
}

@media (max-width: 1050px) {
    .notice-modal {
        height: calc(100vh - 28px);
        width: calc(100vw - 28px);
        overflow-y: auto;
    }

    .notice-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .notice-meta-grid.without-pin {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .notice-modal-body {
        grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
    }

    .notice-cycle-field .cycle-schedule-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 760px) {
    .notice-modal {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }

    .notice-modal-header,
    .notice-meta-grid,
    .notice-modal-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .notice-meta-grid,
    .notice-meta-grid.without-pin,
    .notice-modal-body {
        grid-template-columns: 1fr;
    }

    .notice-modal-body {
        flex: none;
        overflow: visible;
    }

    .notice-content-panel {
        min-height: 480px;
    }

    .notice-follow-panel {
        min-height: 320px;
    }
}

/* ---- Misc ---- */
.log-table {
    min-width: 720px;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: visible;
    background: #fff;
}

.log-table-header,
.log-table-row {
    display: grid;
    grid-template-columns: 190px 140px minmax(180px, 1fr) 125px;
    align-items: center;
    gap: 14px;
    padding: 11px 14px;
}

.log-table-header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #F4F5F7;
    border-bottom: 1px solid var(--border);
    border-radius: 9px 9px 0 0;
    box-shadow: 0 2px 5px rgba(9, 30, 66, 0.1);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.log-table-row {
    min-height: 48px;
    border-bottom: 1px solid #EBECF0;
    color: var(--text);
    font-size: 13px;
    transition: background 0.18s;
}

.log-table-row:nth-child(odd) {
    background: #FAFBFC;
}

.log-table-row:hover {
    background: #EBF5FF;
}

.log-table-row:last-child {
    border-bottom: none;
    border-radius: 0 0 9px 9px;
}

.log-time {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.log-time i {
    color: #97A0AF;
}

.log-action-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.log-action-badge.primary { background: #DEEBFF; color: #0052CC; }
.log-action-badge.success { background: #E3FCEF; color: #006644; }
.log-action-badge.warning { background: #FFFAE6; color: #974F0C; }
.log-action-badge.danger { background: #FFEBE6; color: #BF2600; }
.log-action-badge.neutral { background: #EBECF0; color: #42526E; }

.log-detail {
    min-width: 0;
    overflow-wrap: anywhere;
    color: var(--text);
}

.log-operator {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.log-operator-avatar {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #DEEBFF;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
}

.log-empty {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #97A0AF;
}

.log-empty i {
    font-size: 28px;
}

.complete-btn {
    border: 1px solid var(--primary);
    background: #EBF5FF;
    color: var(--primary);
    border-radius: 20px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    line-height: 28px;
}

.complete-btn.completed {
    border-color: var(--border);
    background: #F4F5F7;
    color: var(--text-secondary);
    cursor: default;
}

.complete-btn:not(.completed):hover {
    background: var(--primary);
    color: #fff;
}

.notice-list::-webkit-scrollbar,
.side-card::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}

.notice-list,
.side-card {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* ============================================================
   妗岄潰鎻愰啋璁剧疆椤甸潰鏍峰紡
   ============================================================ */
/* 閫氱煡璁剧疆缃戞牸甯冨眬 */
.notifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.notification-settings-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--card-shadow);
}

.setting-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

.setting-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    flex-shrink: 0;
}

.setting-label i {
    font-size: 16px;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.setting-group input[type="text"],
.setting-group input[type="number"] {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.setting-group input[type="text"]:focus,
.setting-group input[type="number"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.2);
}

.setting-divider {
    height: 1px;
    background: var(--border);
    margin: 0;
}

/* Switch 寮€鍏虫牱寮?*/
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #ccc;
    border-radius: 26px;
    transition: 0.3s;
}

.slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .slider {
    background: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

/* 鎻愰啋鑼冨洿 */
.reminder-scopes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.scope-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

.scope-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* 鎿嶄綔鎸夐挳 */
.setting-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.setting-actions button {
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.setting-actions .btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
}

.setting-actions .btn-primary:hover {
    background: var(--primary-dark);
}

.setting-actions .btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.setting-actions .btn-outline:hover {
    background: #F4F5F7;
    border-color: #B3BAC5;
}

/* 鍝嶅簲寮忥細灏忓睆骞曟仮澶嶅崟鍒?*/
@media (max-width: 1024px) {
    .notifications-grid {
        grid-template-columns: 1fr;
    }
}

/* 鍗＄墖澶撮儴 */
.settings-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
}

.settings-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.settings-card-icon i {
    font-size: 18px;
}

.settings-card-title {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.settings-card-title h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.settings-card-title span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* 澶у彿寮€鍏?*/
.switch-lg {
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.switch-lg .slider {
    border-radius: 28px;
}

.switch-lg .slider:before {
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
}

.switch-lg input:checked + .slider:before {
    transform: translateX(24px);
}

/* 瀛楁鎻愮ず */
.field-hint {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* 鎻愮ず鏉?*/
.setting-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    margin: 4px 0;
    background: #F4F5F7;
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-secondary);
}

.setting-hint i {
    color: var(--text-secondary);
    font-size: 14px;
}

/* 鐘舵€佹秷鎭?*/
.status-msg {
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    background: #F4F5F7;
    color: var(--text-secondary);
}

.status-msg.success {
    color: #36B37E;
    background: #E3FBE8;
}

.status-msg.error {
    color: #DE350B;
    background: #FFEBE6;
}

/* 首页公告列表骨架屏（鱼骨屏效果） */
.notice-loading-caption {
    margin: 0 0 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #B3D4FF;
    border-radius: 9px;
    background: #F0F7FF;
    color: #0052CC;
    font-size: 13px;
    font-weight: 600;
}

.notice-skeleton-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 4px 0;
}

.skeleton-notice-item {
    height: 140px;
    border-radius: var(--radius);
    background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    position: relative;
    overflow: hidden;
}

/* 模拟卡片内部结构：顶部标题条 */
.skeleton-notice-item::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 20px;
    right: 20px;
    height: 16px;
    border-radius: 4px;
    background: linear-gradient(90deg, #e8e8e8 0%, #d4d4d4 50%, #e8e8e8 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* 模拟标签块 */
.skeleton-notice-item::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 20px;
    width: 52px;
    height: 20px;
    border-radius: 12px;
    background: linear-gradient(90deg, #e8e8e8 0%, #d4d4d4 50%, #e8e8e8 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite 0.1s;
}

/* 内容行 */
.skeleton-notice-item .sk-line {
    position: absolute;
    left: 20px;
    right: 20px;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(90deg, #e8e8e8 0%, #d4d4d4 50%, #e8e8e8 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
.skeleton-notice-item .sk-line:nth-of-type(1) { top: 46px; width: 85%; animation-delay: 0.05s; }
.skeleton-notice-item .sk-line:nth-of-type(2) { top: 64px; width: 60%; animation-delay: 0.1s; }
.skeleton-notice-item .sk-line:nth-of-type(3) { top: 88px; width: 40%; animation-delay: 0.15s; }

/* 底部操作栏 */
.skeleton-notice-item .sk-footer {
    position: absolute;
    bottom: 16px;
    left: 20px;
    right: 20px;
    height: 14px;
    border-radius: 7px;
    background: linear-gradient(90deg, #e8e8e8 0%, #d4d4d4 50%, #e8e8e8 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite 0.2s;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* 鐢ㄦ埛绠＄悊锛氳鑹?badge */
.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.role-badge.admin {
    background: #EAE6FF;
    color: #6554C0;
    border: 1px solid #C4B5FD;
}

.role-badge.user {
    background: #EBF5FF;
    color: #0052CC;
    border: 1px solid #B3D4FF;
}

/* 鐢ㄦ埛绠＄悊锛氫釜浜鸿处鎴?/ 绠＄悊鍛樻潈闄愬崱鐗?*/
.self-section,
.admin-section {
    margin-bottom: 16px;
}

.self-card,
.admin-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: var(--card-shadow);
}

.self-card {
    border-left: 3px solid var(--primary);
}

.admin-card {
    border-left: 3px solid #6554C0;
}

.self-card-main,
.admin-card-main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.self-card-icon,
.admin-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
}

.self-card-icon {
    background: #EBF5FF;
    color: var(--primary);
}

.admin-card-icon {
    background: #EAE6FF;
    color: #6554C0;
}

.self-card-title,
.admin-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.self-card-desc,
.admin-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
    white-space: nowrap;
}

/* ============================================================
   批量删除功能样式
   ============================================================ */
.batch-delete-toolbar {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    margin-bottom: 12px;
    background: #FFF5F5;
    border: 1px solid #FFEBE6;
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    animation: slideDown 0.2s ease;
}

.batch-delete-toolbar.active {
    display: flex;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.batch-delete-toolbar .selected-info {
    flex: 1;
    color: #DE350B;
    font-weight: 500;
}

.batch-delete-toolbar .batch-actions {
    display: flex;
    gap: 8px;
}

.batch-delete-toolbar .btn-batch-select-all {
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.batch-delete-toolbar .btn-batch-select-all:hover {
    background: #F4F5F7;
    border-color: #B3BAC5;
}

.batch-delete-toolbar .btn-batch-cancel {
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.batch-delete-toolbar .btn-batch-cancel:hover {
    background: #F4F5F7;
}

.batch-delete-toolbar .btn-batch-delete {
    padding: 4px 14px;
    border: none;
    border-radius: var(--radius-sm);
    background: #DE350B;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.batch-delete-toolbar .btn-batch-delete:hover {
    background: #BF2600;
}

.batch-delete-toolbar .btn-batch-delete:disabled {
    background: #97A0AF;
    cursor: not-allowed;
}

/* 表格复选框样式 */
.notice-row .batch-checkbox-cell {
    width: 40px;
    text-align: center;
}

.notice-row .batch-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary);
}

.notice-row:hover {
    background: #FAFBFC;
}

.notice-row.selected {
    background: #EBF5FF;
}

.notice-row.selected:hover {
    background: #DCECF8;
}

