/* style.css — 温和明亮的浅色主题，柔和对比配色 */
:root {
  --bg: #f5f7fa;
  --bg-panel: #ffffff;
  --bg-panel-2: #f0f4f9;
  --bg-hover: #e8eef7;
  --border: #e2e8f0;
  --border-light: #d4dde8;
  --text: #2c3345;
  --text-dim: #5b6478;
  --text-faint: #939cb0;
  --accent: #5b8def;
  --accent-2: #3f74d4;
  --green: #22a06b;
  --amber: #e6a23c;
  --red: #e05b5b;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 20px rgba(50, 70, 110, .10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== 布局 ===== */
.app { display: flex; height: 100vh; overflow: hidden; }

.sidebar {
  width: 220px;
  background: var(--bg-panel);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.sidebar .brand {
  padding: 18px 16px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand .logo {
  width: 32px; height: 32px; border-radius: 6px;
  background-image: url('../img_logo.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
}
.nav { flex: 1; padding: 10px 8px; overflow-y: auto; }
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; margin-bottom: 2px;
  border-radius: var(--radius-sm);
  cursor: pointer; color: var(--text-dim);
  transition: .15s;
  user-select: none;
}
.nav-item:hover { background: var(--bg-hover); color: var(--text); }
.nav-item.active { background: var(--bg-hover); color: var(--accent); font-weight: 600; }
.nav-item .ico { width: 18px; text-align: center; flex-shrink: 0; }
.nav-item .ico svg { width: 18px; height: 18px; display: block; }
.nav-item .drag-handle {
  cursor: grab; color: var(--text-faint); font-size: 13px;
  opacity: 0; transition: opacity .15s; user-select: none; flex-shrink: 0;
}
.nav-item:hover .drag-handle { opacity: 1; }
.nav-item.dragging {
  opacity: .45;
  border: 1px dashed var(--accent);
  background: var(--bg-hover);
}
/* 部门/员工列表拖拽把手 */
.drag-handle-cell {
  width: 28px; text-align: center;
  cursor: grab; color: var(--text-faint); font-size: 14px;
  opacity: 0; transition: opacity .15s; user-select: none;
}
tr[draggable]:hover .drag-handle-cell { opacity: 1; }
tr.dragging {
  opacity: .45;
  outline: 1px dashed var(--accent);
  background: var(--bg-hover);
}
tr[draggable] { cursor: grab; }
.sidebar .foot {
  padding: 12px 16px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-faint);
}

.main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.topbar {
  height: 54px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; border-bottom: 1px solid var(--border);
  background: var(--bg-panel);
  flex-shrink: 0;
}
.topbar .title { font-size: 16px; font-weight: 600; }
.topbar .user { display: flex; align-items: center; gap: 12px; color: var(--text-dim); font-size: 13px; }
.user .role-tag {
  padding: 2px 10px; border-radius: 20px; font-size: 12px;
  background: var(--bg-panel-2); border: 1px solid var(--border-light);
}
/* 顶栏「修改密码」：窄屏切换为短文案（见 mobile.css） */
.topbar .user .pwd-narrow { display: none; }
.content { flex: 1; overflow-y: auto; padding: 24px; }

/* ===== 通用组件 ===== */
.card {
  background: var(--bg-panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; margin-bottom: 16px;
}
.card h3 { font-size: 15px; margin-bottom: 14px; }
.card h3 .sub { font-size: 12px; color: var(--text-faint); font-weight: 400; margin-left: 8px; }
.card h4 { font-size: 14px; }
.card h4 .sub { font-size: 12px; color: var(--text-faint); font-weight: 400; margin-left: 8px; }

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-light); background: var(--bg-panel-2);
  color: var(--text); cursor: pointer; font-size: 13px;
  transition: .15s; user-select: none;
}
.btn:hover { background: var(--bg-hover); border-color: var(--accent); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.primary:hover { background: var(--accent-2); }
.btn.danger { color: var(--red); }
.btn.danger:hover { border-color: var(--red); background: rgba(224,91,91,.08); }
.btn.sm { padding: 4px 10px; font-size: 12px; }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn.wecom {
  background: #07c160; border-color: #07c160; color: #fff;
}
.btn.wecom:hover { background: #06ad56; border-color: #06ad56; }

/* 分隔线（登录页「或使用账号密码」） */
.divider {
  display: flex; align-items: center; gap: 10px;
  margin: 4px 0 16px; color: var(--text-faint); font-size: 12px;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border-light);
}

.input, .select, .textarea {
  width: 100%; padding: 8px 12px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-light); background: var(--bg-panel-2);
  color: var(--text); font-size: 13px; outline: none; font-family: inherit;
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--accent); }
.textarea { resize: vertical; min-height: 70px; }
label.field, .field { display: block; margin-bottom: 18px; }
label.field .label, .field .label { display: block; font-size: 13px; color: var(--text-dim); margin-bottom: 6px; font-weight: 500; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.form-grid .field { margin-bottom: 0; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.field-hint { display: block; margin-top: 6px; font-size: 12px; color: var(--text-faint); }
/* 人事部评分模板绑定卡片（发布考核弹窗内醒目展示） */
.hr-bind-card {
  margin: -4px 0 16px; padding: 10px 14px;
  border: 1px solid rgba(230,162,60,.45);
  border-radius: 8px; background: rgba(230,162,60,.10);
}
.hr-bind-title { font-size: 13px; font-weight: 600; color: var(--amber); margin-bottom: 6px; }
.hr-bind-body { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hr-bind-arrow { color: var(--text-faint); }
.hr-bind-tpl { font-weight: 600; color: var(--text); }
.hr-bind-note { margin-top: 6px; font-size: 12px; color: var(--text-faint); }
.section-title {
  display: flex; align-items: center; gap: 10px;
  margin: 22px 0 14px; font-size: 13px; font-weight: 600; color: var(--text);
}
.section-title::before {
  content: ''; width: 3px; height: 14px; border-radius: 2px; background: var(--accent);
}

table.tbl { width: 100%; border-collapse: collapse; }
.tbl th, .tbl td {
  padding: 10px 12px; text-align: left; font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.tbl th { color: var(--text-dim); font-weight: 600; background: var(--bg-panel-2); }
.tbl tr:hover td { background: var(--bg-hover); }
.tbl .empty { text-align: center; color: var(--text-faint); padding: 30px; }

.tag {
  display: inline-block; padding: 2px 8px; border-radius: 4px;
  font-size: 12px; background: var(--bg-panel-2); border: 1px solid var(--border-light);
}
.tag.blue { color: var(--accent); border-color: rgba(91,141,239,.4); }
.tag.green { color: var(--green); border-color: rgba(34,160,107,.4); }
.tag.teal { color: #0d9488; border-color: rgba(13,148,136,.4); }
.tag.amber { color: var(--amber); border-color: rgba(230,162,60,.4); }
.tag.red { color: var(--red); border-color: rgba(224,91,91,.4); }
.tag.gray { color: var(--text-dim); border-color: var(--border-light); }

/* 已选人员标签（chips） */
.chip-wrap { display: flex; flex-wrap: wrap; gap: 6px; min-height: 28px; }
.chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: 12px; font-size: 12px;
  background: var(--bg-panel-2); border: 1px solid var(--border-light);
}
.chip-x {
  cursor: pointer; color: var(--text-dim); font-weight: 700; padding: 0 2px;
}
.chip-x:hover { color: var(--red); }
.chip-accent {
  background: rgba(91,141,239,.12);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}
/* 发布考核：部门 → 部门内人员 分组块 */
.mt-4 { margin-top: 4px; }
.asm-dept-block {
  border: 1px solid var(--border-light); border-radius: 8px;
  background: var(--bg-panel-2); padding: 8px 10px; margin-bottom: 8px;
}
.asm-dept-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.asm-dept-block + .asm-dept-block { margin-top: 0; }
.chip-sm { padding: 1px 6px; font-size: 12px; }

/* 发布考核弹窗：考评员行 */
.asm-ev-row {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 12px; margin-bottom: 10px;
  border: 1px solid var(--border-light); border-radius: 8px; background: var(--bg-panel-2);
}
.asm-ev-row .ev-role { flex: 1; min-width: 0; }
.asm-ev-row .ev-weight { width: 84px; flex: none; }
.asm-ev-row .ev-assignee { width: 160px; flex: none; }
.asm-ev-row .ev-self { width: 160px; flex: none; font-size: 12px; color: var(--text-faint); }

.row { display: flex; gap: 12px; align-items: center; }
.row.between { justify-content: space-between; }
.row.wrap { flex-wrap: wrap; }
.grow { flex: 1; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mb-16 { margin-bottom: 16px; }
.ml-8 { margin-left: 8px; } .mr-8 { margin-right: 8px; }
.mb-6 { margin-bottom: 6px; } .mb-8 { margin-bottom: 8px; } .mb-12 { margin-bottom: 12px; }
.muted { color: var(--text-dim); } .faint { color: var(--text-faint); } .small { font-size: 12px; }
.gap-8 { gap: 8px; }

/* 多选复选框组 */
.chk-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 4px 8px; padding: 8px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--bg-panel-2);
  max-height: 140px; overflow-y: auto;
}
.chk { display: flex; align-items: center; gap: 6px; font-size: 13px; cursor: pointer; }
.chk input { cursor: pointer; }

/* ===== 弹窗 ===== */
.modal-mask {
  position: fixed; inset: 0; background: rgba(40, 50, 70, .35);
  display: flex; align-items: center; justify-content: center; z-index: 100;
}
.modal {
  background: var(--bg-panel); border: 1px solid var(--border);
  border-radius: 12px; width: 560px; max-width: 92vw; max-height: 86vh;
  display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.modal.wide { width: 760px; }
.modal.fullscreen {
  width: 100vw; height: 100vh;
  max-width: 100vw; max-height: 100vh;
  border-radius: 0; border: none;
}
.modal .m-head {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.modal .m-head .t { font-size: 15px; font-weight: 600; }
.modal .m-body { padding: 20px; overflow-y: auto; flex: 1; }
.modal .m-foot {
  padding: 14px 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end; gap: 10px;
}
.close-x { cursor: pointer; color: var(--text-faint); font-size: 20px; line-height: 1; }
.close-x:hover { color: var(--text); }

/* ===== 评分界面 ===== */
.score-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.score-opt {
  min-width: 44px; padding: 6px 10px; text-align: center;
  border-radius: var(--radius-sm); border: 1px solid var(--border-light);
  cursor: pointer; background: var(--bg-panel-2); font-weight: 600;
  transition: .12s; user-select: none;
}
.score-opt:hover { border-color: var(--accent); }
.score-opt.on { background: var(--accent); border-color: var(--accent); color: #fff; }

.dimension-block { margin-bottom: 20px; }
.dimension-title {
  font-weight: 600; margin-bottom: 10px; padding: 8px 12px;
  background: var(--bg-panel-2); border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}
.item-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.item-row .idx { color: var(--text-faint); font-size: 12px; width: 26px; padding-top: 3px; flex-shrink: 0; }
.item-row .txt { flex: 1; }
.item-row .score-opts { flex-shrink: 0; }
.item-row.missing {
  background: rgba(224,91,91,.06);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
}
.item-row.missing .txt { color: var(--red); }

/* ===== 登录页 ===== */
.login-wrap { display: flex; align-items: center; justify-content: center; height: 100vh; }
.login-card {
  width: 380px; background: var(--bg-panel); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px; box-shadow: var(--shadow);
}
.login-card .logo-lg {
  width: 72px; height: 72px; border-radius: 14px; margin: 0 auto 16px;
  background-image: url('../img_logo.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.login-card h2 { text-align: center; margin-bottom: 4px; }
.login-card .sub { text-align: center; color: var(--text-faint); font-size: 13px; margin-bottom: 24px; }

/* 登录页「忘记密码 / 注册账号」入口 */
.login-links {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 14px; font-size: 13px;
}
.login-links a { color: var(--accent); text-decoration: none; cursor: pointer; }
.login-links a:hover { text-decoration: underline; }

/* ===== 统计卡片 ===== */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-bottom: 20px; }
.stat-card {
  background: var(--bg-panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
}
.stat-card .num { font-size: 26px; font-weight: 700; }
.stat-card .lbl { color: var(--text-dim); font-size: 12px; }
.stat-card.clickable { cursor: pointer; position: relative; transition: border-color .15s, box-shadow .15s, transform .15s; }
.stat-card.clickable:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.stat-card .stat-enter {
  position: absolute; right: 14px; bottom: 14px;
  font-size: 12px; color: var(--accent); font-weight: 600;
  opacity: 0; transition: opacity .15s;
}
.stat-card.clickable:hover .stat-enter { opacity: 1; }
.clickable { cursor: pointer; }

.score-bar { height: 8px; background: var(--bg-panel-2); border-radius: 4px; overflow: hidden; }
.score-bar .fill { height: 100%; border-radius: 4px; }

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--bg-panel-2); border: 1px solid var(--border-light);
  color: var(--text); padding: 10px 20px; border-radius: 8px;
  box-shadow: var(--shadow); z-index: 200; opacity: 0; pointer-events: none;
  transition: .3s; font-size: 13px;
}
.toast.show { opacity: 1; }

/* ===== 评分仪表盘 ===== */
.rank-cell { font-size: 18px; text-align: center; width: 56px; }
.tbl tr.me-row td { background: #eef4ff; }
.tbl tr.me-row:hover td { background: #e3edff; }
.board-grade { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.board-grade .g-label { width: 70px; font-size: 12px; color: var(--text-dim); flex-shrink: 0; }
.board-grade .g-num { width: 36px; font-size: 12px; color: var(--text-dim); text-align: right; flex-shrink: 0; }

/* ===== 仪表盘图表布局 ===== */
.board-charts { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; margin-bottom: 20px; }
.board-charts .card { margin: 0; }
.chart-legend { display: flex; flex-direction: column; gap: 8px; }
.chart-legend .lg-item { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.chart-legend .lg-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.chart-legend .lg-name { color: var(--text-dim); width: 64px; flex-shrink: 0; }
.chart-legend .lg-val { margin-left: auto; color: var(--text); font-weight: 600; }
.donut-wrap { display: flex; align-items: center; gap: 24px; }
.donut-wrap .donut-center { position: relative; }
.donut-wrap .donut-center .dc-num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.donut-wrap .donut-center .dc-num .v { font-size: 22px; font-weight: 700; }
.donut-wrap .donut-center .dc-num .t { font-size: 11px; color: var(--text-dim); }
.bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.bar-row .bar-label { width: 64px; font-size: 12px; color: var(--text-dim); flex-shrink: 0; text-align: right; }
.bar-row .bar-track { flex: 1; height: 18px; background: var(--bg-panel-2); border-radius: 4px; overflow: hidden; position: relative; }
.bar-row .bar-fill { height: 100%; border-radius: 4px; display: flex; align-items: center; justify-content: flex-end; padding-right: 6px; font-size: 11px; color: #fff; font-weight: 600; min-width: 28px; transition: width .4s; }
.bar-row .bar-val { width: 56px; font-size: 12px; font-weight: 600; text-align: right; flex-shrink: 0; }

/* ===== 排名 tab 切换 ===== */
.board-tabs { display: inline-flex; gap: 4px; background: var(--bg-panel-2); border-radius: 8px; padding: 3px; }
.board-tabs .tab-btn { padding: 5px 16px; border-radius: 6px; font-size: 13px; cursor: pointer; color: var(--text-dim); border: none; background: transparent; }
.board-tabs .tab-btn.on { background: var(--bg-panel); color: var(--text); font-weight: 600; box-shadow: var(--shadow); }

/* ===== 季度三强 / 后三 员工卡片 ===== */
.rank-chip-wrap { display: flex; flex-direction: column; gap: 10px; }
.rank-chip { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 8px; border: 1px solid var(--border-light); background: var(--bg-panel-2); }
.rank-chip .rc-rank { font-size: 12px; font-weight: 700; color: #e6a23c; width: 52px; flex-shrink: 0; }
.rank-chip.chip-bottom .rc-rank { color: #e05b5b; }
.rank-chip .rc-name { font-weight: 600; flex: 1; }
.rank-chip .rc-dept { color: var(--text-dim); font-size: 12px; }
.rank-chip .rc-score { font-weight: 700; }

/* ===== 排名表居中（上下垂直对齐 + 水平居中，不偏移）===== */
.board-rank-table th, .board-rank-table td { text-align: center !important; vertical-align: middle !important; }
.board-rank-table td.name-cell { text-align: left !important; }
.board-rank-table .rank-cell { font-size: 18px; }
.board-rank-table .num-cell { text-align: center !important; }
/* 角色维度单元格：分数 + 第N名 两行，整体居中且垂直对齐 */
.board-rank-table td .role-score {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  gap: 2px;
}
.board-rank-table td .role-score strong { line-height: 1.2; }
/* 加权总分列：数字 + 单位 用 flex 水平居中、基线对齐一致，避免偏移 */
.board-rank-table td .num-inline {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1.3;
}

/* 数值单位小字 */
.unit { font-size: 12px; font-weight: 400; color: var(--text-dim); margin-left: 2px; }
.stat-card .num .unit { font-size: 14px; }

/* 角色维度内排位小字 */
.sub-rank { font-size: 11px; color: var(--text-dim); margin-top: 2px; }

/* ===== 模板编辑表单 ===== */
.tpl-section {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 12px;
  background: var(--bg-panel-2);
}
.tpl-items { margin-top: 4px; }

/* ===== 考核规则页 ===== */
.rules-section {
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.rules-section h4 {
  font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text);
}
.rules-section p { line-height: 1.7; color: var(--text-dim); margin-bottom: 4px; }
.rules-section p b { color: var(--text); }
.rules-grade-row {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px;
  background: var(--bg-panel-2);
}

/* ===== 登录页：分享模式「快速体验」入口 ===== */
.demo-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-panel-2);
  padding: 12px;
  margin-bottom: 8px;
}
.demo-title {
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 8px;
  letter-spacing: .3px;
}
.demo-list { display: flex; flex-direction: column; gap: 6px; }
.demo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-panel);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--text);
  transition: border-color .15s, background .15s;
}
.demo-item:hover { border-color: var(--accent); background: var(--bg-hover); }
.demo-avatar {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
}
.demo-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.35; }
.demo-meta b { font-size: 13px; }
.demo-meta small {
  font-size: 11px;
  color: var(--text-faint);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.demo-go { flex: none; font-size: 12px; color: var(--accent); }
.demo-note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-faint);
  text-align: center;
}

/* ===== 多人协作：有新数据提示条 ===== */
.sync-bar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--bg-panel);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 13px;
  color: var(--text);
  box-shadow: var(--shadow);
}
.sync-bar a { color: var(--accent); text-decoration: none; font-weight: 600; }
.sync-bar a:hover { text-decoration: underline; }
