/* ===== 一（5）班影像资料库 · 全局样式 ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #2f6fed;
  --primary-dark: #1e56c7;
  --primary-light: #eaf1fe;
  --primary-bg: #f0f5ff;
  --text-main: #1f2329;
  --text-sub: #646a73;
  --text-light: #8f959e;
  --border: #e5e6eb;
  --bg: #f5f6f7;
  --card-bg: #ffffff;
  --tag-bg: #f0f3f8;
  --shadow: 0 2px 8px rgba(31, 35, 41, 0.06);
  --shadow-hover: 0 6px 20px rgba(31, 35, 41, 0.1);
  --radius: 12px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== 顶部 ===== */
.site-header {
  background: linear-gradient(135deg, #2f6fed 0%, #5b8dff 50%, #7ba3ff 100%);
  color: #fff;
  padding: 32px 16px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.site-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.site-header::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.header-inner { position: relative; z-index: 1; }
.site-header h1 { font-size: 26px; font-weight: 700; letter-spacing: 2px; text-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.site-desc { margin-top: 8px; font-size: 14px; opacity: 0.92; }
.header-stats {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
}
.header-stats .stat-item {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  padding: 4px 14px;
  border-radius: 20px;
}
.header-stats .stat-num { font-weight: 700; font-size: 16px; }

/* ===== 公告栏 ===== */
.notice-bar {
  background: #fff7e6;
  border-bottom: 1px solid #ffe1a8;
  color: #8a5a00;
  font-size: 13px;
  padding: 10px 16px;
  text-align: center;
}

/* ===== 工具栏（搜索+筛选） ===== */
.toolbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.toolbar-inner { max-width: 860px; margin: 0 auto; }
.search-box {
  position: relative;
  margin-bottom: 10px;
}
.search-box input {
  width: 100%;
  padding: 10px 38px 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  background: var(--bg);
  transition: all 0.2s;
  outline: none;
}
.search-box input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(47,111,237,0.1);
}
.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.5;
}
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.filter-tag {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 14px;
  background: var(--tag-bg);
  color: var(--text-sub);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  border: 1px solid transparent;
}
.filter-tag:hover { background: var(--primary-light); color: var(--primary); }
.filter-tag.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===== 学年导航 ===== */
.year-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 8px 16px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  position: sticky;
  top: 73px;
  z-index: 15;
}
.year-nav::-webkit-scrollbar { display: none; }
.year-nav a {
  display: inline-block;
  font-size: 13px;
  color: var(--text-sub);
  background: var(--tag-bg);
  border-radius: 16px;
  padding: 5px 14px;
  margin-right: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.year-nav a.active {
  background: var(--primary);
  color: #fff;
}

/* ===== 主体容器 ===== */
.container { max-width: 860px; margin: 0 auto; padding: 18px 14px 48px; }

.year-section { margin-bottom: 28px; }
.year-section:target { animation: flash 1.4s ease; }
@keyframes flash {
  0% { background: #fff3d6; border-radius: 8px; }
  100% { background: transparent; }
}

.year-title {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
}
.year-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, var(--primary), #7ba3ff);
  border-radius: 2px;
  margin-right: 8px;
}
.year-count {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-sub);
  background: var(--tag-bg);
  border-radius: 10px;
  padding: 1px 8px;
  margin-left: 8px;
}
.year-school {
  font-size: 12px;
  font-weight: 400;
  color: var(--primary);
  background: rgba(102, 126, 234, 0.1);
  border-radius: 10px;
  padding: 1px 8px;
  margin-left: 6px;
}
.year-empty {
  font-size: 13px;
  color: var(--text-light);
  background: var(--card-bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

/* 活动卡片 */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}
.activity-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.card-cover {
  margin: -16px -16px 0 -16px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-cover img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

/* 最近活动 */
.recent-section {
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 0 20px;
}
.section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 14px;
}
.recent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.recent-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}
.recent-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.recent-cover {
  height: 100px;
  overflow: hidden;
  background: #f0f0f0;
}
.recent-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-info {
  padding: 10px 12px;
}
.recent-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recent-date {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

/* 二维码弹窗美化 */
.qr-modal {
  max-width: 360px !important;
  overflow: hidden;
}
.qr-modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.qr-modal-header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}
.qr-modal-header .modal-close {
  color: #fff;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
}
.qr-modal-body {
  padding: 24px 20px 28px;
  text-align: center;
}
.qr-code-wrapper {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
  display: inline-block;
  margin-bottom: 20px;
}
.qr-code-wrapper img {
  width: 220px;
  height: 220px;
  display: block;
  border-radius: 8px;
}
.qr-info .qr-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px;
}
.qr-info .qr-desc {
  font-size: 13px;
  color: #888;
  margin: 0 0 12px;
}
.qr-info .qr-url {
  font-size: 13px;
  color: #667eea;
  font-weight: 500;
  margin: 0 0 16px;
  word-break: break-all;
}
.qr-info .qr-tip {
  font-size: 12px;
  color: #999;
  margin: 0;
  padding: 8px 12px;
  background: #f5f5f5;
  border-radius: 8px;
  display: inline-block;
}
.activity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.25s;
}
.activity-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--primary-light);
}
.activity-card:hover::before { opacity: 1; }

.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.card-name { font-size: 15px; font-weight: 600; color: var(--text-main); line-height: 1.4; }
.card-tag {
  flex-shrink: 0;
  font-size: 11px;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 4px;
  padding: 2px 8px;
  white-space: nowrap;
  font-weight: 500;
}
.card-date {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-date::before { content: "📅"; font-size: 11px; }
.card-note { font-size: 13px; color: var(--text-sub); line-height: 1.5; }
.card-actions {
  margin-top: 6px;
  display: flex;
  gap: 8px;
}
.card-link {
  flex: 1;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #5b8dff);
  border-radius: 8px;
  padding: 9px 4px;
  min-height: 40px;
  line-height: 22px;
  text-decoration: none;
  transition: all 0.2s;
}
.card-link:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); box-shadow: 0 4px 12px rgba(47,111,237,0.3); }
.card-link.upload {
  background: linear-gradient(135deg, #00b578, #33d49a);
}
.card-link.upload:hover { background: linear-gradient(135deg, #009966, #00b578); box-shadow: 0 4px 12px rgba(0,181,120,0.3); }
.card-link.disabled {
  background: #e5e6eb;
  color: var(--text-light);
  cursor: not-allowed;
  box-shadow: none;
}
.btn-edit-link {
  margin-top: 8px;
  font-size: 12px;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid var(--primary-light);
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
}
.btn-edit-link:hover { background: var(--primary); color: #fff; }
.btn-delete {
  margin-top: 6px;
  margin-left: 6px;
  font-size: 12px;
  color: #e74c3c;
  background: #fdecea;
  border: 1px solid #fdecea;
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-delete:hover { background: #e74c3c; color: #fff; }
.admin-area { margin-top: 8px; }
.admin-link {
  color: #999;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
}
.admin-link:hover { color: var(--primary); }
.admin-buttons {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.admin-buttons .btn-edit-link,
.admin-buttons .btn-delete {
  margin-top: 0;
  margin-left: 0;
}

/* 访问密码遮罩 */
.access-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.access-box {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.access-icon { font-size: 48px; margin-bottom: 12px; }
.access-box h2 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.access-box p { color: var(--text-light); font-size: 14px; margin-bottom: 20px; }
.access-box input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 12px;
  box-sizing: border-box;
}
.access-box input:focus { outline: none; border-color: var(--primary); }
.access-box button {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.access-box button:hover { opacity: 0.9; }
.access-box button:disabled { opacity: 0.6; cursor: not-allowed; }
.access-qr {
  margin-top: 18px;
  text-align: center;
}
.access-qr-wrapper {
  display: inline-block;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.access-qr img {
  width: 110px;
  height: 110px;
  display: block;
  border-radius: 6px;
}
.access-qr p {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
  margin-bottom: 0;
}
.access-tip { font-size: 12px; color: #aaa; margin-top: 14px; margin-bottom: 0; }

/* 空状态 */
.empty-tip {
  text-align: center;
  color: var(--text-sub);
  padding: 60px 0;
}
.empty-tip p { font-size: 15px; }
.empty-sub { font-size: 13px; color: var(--text-light); margin-top: 6px; }

/* ===== 回到顶部 ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(47,111,237,0.35);
  transition: all 0.25s;
  z-index: 50;
}
.back-to-top:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(47,111,237,0.45); }

/* ===== 底部 ===== */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 18px 12px;
  font-size: 13px;
  color: var(--text-sub);
}
.footer-tip { margin-top: 4px; font-size: 12px; opacity: 0.75; }

/* ===== 创建活动按钮 ===== */
.btn-add {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff8a3d, #ff6b35);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  margin-left: auto;
}
.btn-add:hover { box-shadow: 0 4px 12px rgba(255,107,53,0.35); transform: translateY(-1px); }
.toolbar-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.toolbar-inner .search-box { flex: 1; min-width: 200px; margin-bottom: 0; }
.toolbar-inner .filter-tags { flex: 1 1 100%; order: 3; }

/* ===== 弹窗 ===== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 16px;
}
.modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-size: 17px; font-weight: 700; }
.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}
.modal-body { padding: 18px 20px 22px; }

/* ===== 表单 ===== */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}
.form-group .required { color: #f53f3f; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47,111,237,0.1);
}
.form-row { display: flex; gap: 12px; }
.form-row .form-group { flex: 1; }
.form-hint { font-size: 11px; color: var(--text-light); margin-top: 4px; line-height: 1.4; }
.btn-submit {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #5b8dff);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}
.btn-submit:hover { box-shadow: 0 4px 16px rgba(47,111,237,0.35); }

/* ===== 生成结果 ===== */
.form-result { margin-top: 8px; }
.result-title { font-size: 13px; color: var(--text-sub); margin-bottom: 10px; line-height: 1.6; }
.result-title code { background: var(--primary-light); color: var(--primary); padding: 1px 6px; border-radius: 4px; font-size: 12px; }
#result-code {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  font-family: "Consolas", "Monaco", monospace;
  background: #f8f9fa;
  color: var(--text-main);
  resize: vertical;
  line-height: 1.6;
}
.btn-copy {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid var(--primary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-copy:hover { background: var(--primary); color: #fff; }
.result-tip { font-size: 12px; color: var(--text-light); margin-top: 10px; line-height: 1.6; }

/* ===== 手机端适配（优先，家长主要用手机查看） ===== */
@media (max-width: 600px) {
  .site-header { padding: 24px 14px 20px; }
  .site-header h1 { font-size: 21px; letter-spacing: 1px; }
  .site-desc { font-size: 13px; }
  .header-stats { gap: 12px; font-size: 12px; margin-top: 12px; }
  .header-stats .stat-item { padding: 3px 10px; }
  .header-stats .stat-num { font-size: 14px; }
  .container { padding: 14px 12px 36px; }
  .activity-grid { grid-template-columns: 1fr; gap: 10px; }
  .activity-card { padding: 14px; }
  .year-nav { top: 69px; }
  .back-to-top { width: 40px; height: 40px; bottom: 18px; right: 18px; font-size: 18px; }
  .toolbar-inner .search-box { min-width: 100%; order: 1; }
  .toolbar-inner .filter-tags { order: 2; }
  .btn-add { order: 3; width: 100%; justify-content: center; padding: 10px; }
  .card-actions { flex-direction: column; gap: 6px; }
  .card-link { font-size: 14px; }
  .modal { border-radius: 12px; }
  .modal-body { padding: 14px 16px 18px; }
  .form-row { flex-direction: column; gap: 0; }
  .recent-section { padding: 0 12px; }
  .recent-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .recent-cover { height: 80px; }
  .recent-name { font-size: 13px; }
}

@media (max-width: 360px) {
  .site-header h1 { font-size: 19px; }
  .card-link { font-size: 13px; }
}

/* ===== 悬浮客服按钮 ===== */
.customer-service-btn {
  position: fixed;
  right: 16px;
  bottom: 90px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: #fff;
  border: 3px solid #fff;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(238, 90, 36, 0.5);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: csPulse 2s infinite;
}
@keyframes csPulse {
  0% { box-shadow: 0 4px 20px rgba(238, 90, 36, 0.5); }
  50% { box-shadow: 0 4px 30px rgba(238, 90, 36, 0.8); }
  100% { box-shadow: 0 4px 20px rgba(238, 90, 36, 0.5); }
}
.customer-service-btn:hover {
  transform: scale(1.1);
}
.customer-service-btn:active {
  transform: scale(0.95);
}

/* ===== 客服弹窗 ===== */
.cs-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1000;
  animation: csFadeIn 0.2s ease;
}
@keyframes csFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cs-modal {
  background: #fff;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 420px;
  padding: 24px 20px 32px;
  animation: csSlideUp 0.3s ease;
}
@keyframes csSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cs-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2329;
  text-align: center;
  margin-bottom: 4px;
}
.cs-modal-sub {
  font-size: 14px;
  color: #646a73;
  text-align: center;
  margin-bottom: 20px;
}
.cs-option {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px;
  margin-bottom: 12px;
  background: #f7f8fa;
  border: 1px solid #e5e6eb;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
}
.cs-option:hover {
  background: #eef2ff;
  border-color: #2f6fed;
}
.cs-option:active {
  background: #e0e8ff;
}
.cs-icon {
  font-size: 28px;
  margin-right: 14px;
  flex-shrink: 0;
}
.cs-option-text {
  flex: 1;
}
.cs-option-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2329;
  margin-bottom: 2px;
}
.cs-option-desc {
  font-size: 14px;
  color: #646a73;
}
.cs-arrow {
  font-size: 24px;
  color: #c0c4cc;
  flex-shrink: 0;
}
.cs-close {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  background: #f2f3f5;
  color: #646a73;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.cs-close:hover {
  background: #e5e6eb;
}
