# -*- coding: utf-8 -*-
"""
电信校园合伙人系统 H5 移动端样式 — UI优化版
电信蓝主题，适配微信内浏览
"""

/* ========== Reset ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  background: #f0f2f7;
  color: #333;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--primary); text-decoration: none; transition: color .15s; }
a:active { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
input, button, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; }
button { cursor: pointer; background: none; -webkit-tap-highlight-color: transparent; }

/* ========== Scrollbar ========== */
::-webkit-scrollbar { width: 0; height: 0; }

/* ========== Variables ========== */
:root {
  --primary: #0077FF;
  --primary-dark: #0062CC;
  --primary-light: #E6F1FF;
  --primary-lighter: #F0F7FF;
  --success: #07C160;
  --success-light: #E8F8EE;
  --warning: #FF9500;
  --warning-light: #FFF4E5;
  --danger: #FF3B30;
  --danger-light: #FFF0F0;
  --gray-1: #333;
  --gray-2: #666;
  --gray-3: #999;
  --gray-4: #ccc;
  --gray-5: #e8e8e8;
  --gray-6: #f5f6fa;
  --gray-7: #fafafa;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow: 0 2px 12px rgba(0,0,0,.06);
  --shadow-sm: 0 1px 4px rgba(0,0,0,.05);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --transition: all .2s cubic-bezier(.4,0,.2,1);
}

/* ========== Toolbar/Navbar ========== */
.navbar {
  background: linear-gradient(135deg, #0077FF, #00A3FF);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,119,255,.25);
}
.navbar .nav-title { font-size: 18px; font-weight: 600; letter-spacing: .3px; }
.navbar .nav-back { color: #fff; font-size: 24px; line-height: 1; padding: 4px 8px 4px 0; }
.navbar .nav-right { font-size: 14px; opacity: .9; }

/* ========== Tab Bar ========== */
.tabbar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: #fff;
  display: flex;
  border-top: 1px solid var(--gray-5);
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -2px 12px rgba(0,0,0,.05);
}
.tabbar a {
  flex: 1;
  text-align: center;
  padding: 9px 0 7px;
  color: var(--gray-3);
  font-size: 12px;
  transition: color .2s;
}
.tabbar a.active { color: var(--primary); }
.tabbar a .tab-icon { font-size: 22px; display: block; line-height: 1.2; }
.tabbar a .tab-label { font-size: 11px; }

/* ========== Content Area ========== */
.content { padding: 16px; padding-bottom: 76px; }
.content-no-tab { padding-bottom: 16px; }

/* ========== Cards ========== */
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s;
}
.card-hover:active { box-shadow: var(--shadow-sm); }
.card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-title .more { font-size: 13px; color: var(--gray-3); font-weight: 400; }

/* ========== User Header ========== */
.user-header {
  background: linear-gradient(135deg, #0077FF, #00A3FF);
  color: #fff;
  padding: 24px 18px 34px;
  border-radius: 0 0 24px 24px;
  position: relative;
  overflow: hidden;
}
.user-header::after {
  content: '';
  position: absolute;
  top: -30px; right: -20px;
  width: 150px; height: 150px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.user-header .user-row { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.user-header .avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 600;
  border: 2px solid rgba(255,255,255,.35);
  flex-shrink: 0;
}
.user-header .user-info h2 { font-size: 19px; }
.user-header .user-info .sub { font-size: 13px; opacity: .85; margin-top: 3px; }
.user-header .badge-l1 {
  display: inline-block;
  background: rgba(255,255,255,.2);
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 11px;
  margin-left: 6px;
}

/* ========== Stat Grid ========== */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.stat-grid .stat-item { text-align: center; }
.stat-grid .stat-num { font-size: 24px; font-weight: 700; color: var(--primary); }
.stat-grid .stat-label { font-size: 12px; color: var(--gray-3); margin-top: 2px; }

/* Earning stat 2 cols */
.stat-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }

/* Earning summary card */
.earning-summary {
  background: linear-gradient(135deg, #0077FF, #00A3FF);
  border-radius: var(--radius);
  padding: 24px 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.earning-summary::after {
  content: '';
  position: absolute;
  top: -40px; right: -30px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.earning-summary .earn-label { font-size: 13px; opacity: .85; position: relative; }
.earning-summary .earn-amount { font-size: 36px; font-weight: 700; margin-top: 6px; position: relative; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  border: none;
  width: 100%;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:active { background: var(--primary-dark); }
.btn-outline { background: #fff; color: var(--primary); border: 1px solid var(--primary); }
.btn-ghost { background: var(--gray-6); color: var(--gray-2); }
.btn-success { background: var(--success); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-warning { background: var(--warning); color: #fff; }
.btn-sm { padding: 7px 16px; font-size: 13px; width: auto; }
.btn-lg { padding: 14px 20px; font-size: 16px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; }

/* ========== Form ========== */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 14px; color: var(--gray-2); margin-bottom: 7px; font-weight: 500; }
.form-label .req { color: var(--danger); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--gray-5);
  border-radius: var(--radius-sm);
  font-size: 15px;
  background: #fff;
  transition: var(--transition);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-4); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,119,255,.1);
}
.form-textarea { min-height: 80px; resize: vertical; }
.form-hint { font-size: 12px; color: var(--gray-3); margin-top: 5px; }
.form-row { display: flex; gap: 8px; align-items: center; }
.form-row .form-input { flex: 1; }

/* Code input with button */
.code-row { display: flex; gap: 8px; }
.code-row .form-input { flex: 1; }
.code-btn {
  white-space: nowrap;
  padding: 12px 18px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.code-btn:active { opacity: .7; }
.code-btn:disabled { color: var(--gray-3); background: var(--gray-6); }

/* ========== List ========== */
.list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  border-bottom: 1px solid var(--gray-6);
  transition: background .15s;
}
.list-item:active { background: var(--gray-7); }
.list-item:last-child { border-bottom: none; }
.list-item .item-main { flex: 1; }
.list-item .item-title { font-size: 15px; color: var(--gray-1); }
.list-item .item-sub { font-size: 13px; color: var(--gray-3); margin-top: 2px; }
.list-item .item-right { text-align: right; }
.list-item .item-arrow { color: var(--gray-4); margin-left: 8px; }

/* ========== Tag/Status ========== */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  gap: 4px;
}
.tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.tag-pending { background: var(--warning-light); color: var(--warning); }
.tag-active, .tag-available { background: var(--success-light); color: var(--success); }
.tag-expired { background: var(--danger-light); color: var(--danger); }
.tag-canceled { background: #f5f5f5; color: #999; }
.tag-l1 { background: #FFE5CC; color: #FF6B00; }
.tag-l2 { background: var(--primary-light); color: var(--primary); }
.tag-frozen { background: var(--warning-light); color: var(--warning); }
.tag-withdrawn { background: #f5f5f5; color: #999; }
.tag-approved { background: var(--success-light); color: var(--success); }
.tag-rejected { background: var(--danger-light); color: var(--danger); }
.tag-plain::before { display: none; }

/* ========== Section ========== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.section-header h3 { font-size: 16px; font-weight: 600; }
.section-header a { font-size: 13px; }

/* ========== Empty State ========== */
.empty-state {
  text-align: center;
  padding: 70px 20px;
  color: var(--gray-3);
}
.empty-state .empty-icon { font-size: 56px; margin-bottom: 14px; opacity: .25; }
.empty-state .empty-text { font-size: 14px; }

/* ========== Toast ========== */
#toast-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  pointer-events: none;
  width: 100%;
  max-width: 360px;
  text-align: center;
}
.toast {
  background: rgba(0,0,0,.82);
  color: #fff;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  animation: fadeIn .25s;
  display: inline-block;
  max-width: 90%;
}
.toast-success { background: var(--success); }
.toast-error { background: var(--danger); }
.toast-warning { background: var(--warning); }
@keyframes fadeIn {
  from { opacity: 0; transform: scale(.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ========== Notice ========== */
.notice-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.notice-item:active { box-shadow: var(--shadow-sm); }
.notice-item .notice-title { font-size: 15px; font-weight: 600; color: var(--gray-1); }
.notice-item .notice-meta { font-size: 12px; color: var(--gray-3); margin-top: 6px; }
.notice-item .notice-tag {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 4px;
  font-size: 10px;
  margin-right: 6px;
  font-weight: 500;
}

/* ========== Modal (for mobile orders etc) ========== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.5);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn .2s;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.modal-overlay.center { align-items: center; }
.modal {
  background: #fff;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideUp .3s cubic-bezier(.4,0,.2,1);
}
.modal-overlay.center .modal {
  border-radius: var(--radius-lg);
  max-width: 90%;
  animation: modalIn .25s cubic-bezier(.4,0,.2,1);
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: scale(1); }
}
.modal-header {
  padding: 18px 20px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.modal-header h3 { font-size: 17px; font-weight: 600; }
.modal-close {
  cursor: pointer;
  font-size: 24px;
  color: var(--gray-3);
  line-height: 1;
  padding: 4px;
}
.modal-body { padding: 4px 20px 20px; }
.modal-footer {
  padding: 12px 20px 16px;
  display: flex;
  gap: 10px;
}
.modal-footer .btn { flex: 1; }

/* ========== Poster Page ========== */
.poster-card {
  background: linear-gradient(135deg, #0077FF, #0052CC);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,82,204,.2);
}
.poster-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.poster-card::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -15%;
  width: 150px; height: 150px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.poster-card .poster-title { font-size: 22px; font-weight: 700; margin-bottom: 8px; position: relative; }
.poster-card .poster-sub { font-size: 13px; opacity: .85; position: relative; }
.poster-qr {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  margin: 18px auto;
  width: 210px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.poster-qr img { width: 174px; height: 174px; margin: 0 auto; }
.poster-qr .qr-label { font-size: 12px; color: var(--gray-2); margin-top: 8px; }
.poster-info {
  display: flex;
  justify-content: space-around;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  position: relative;
}
.poster-info .info-item { text-align: center; }
.poster-info .info-num { font-size: 20px; font-weight: 700; }
.poster-info .info-label { font-size: 11px; opacity: .8; margin-top: 2px; }

/* ========== Apply Page ========== */
.package-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 10px;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow);
}
.package-card:active { transform: scale(.98); }
.package-card.selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light);
}
.package-card .pkg-name { font-size: 16px; font-weight: 600; }
.package-card .pkg-price { font-size: 26px; font-weight: 700; color: var(--primary); }
.package-card .pkg-price .unit { font-size: 14px; font-weight: 400; }
.package-card .pkg-desc { font-size: 13px; color: var(--gray-3); margin-top: 4px; }
.package-card .pkg-reward { font-size: 12px; color: var(--warning); margin-top: 6px; }
.package-card.sold-out { opacity: .5; }
.package-card.sold-out .pkg-name::after {
  content: ' 售罄';
  font-size: 12px;
  color: var(--gray-3);
  font-weight: 400;
}

/* ========== Bottom safe area ========== */
.safe-bottom { height: env(safe-area-inset-bottom); }

/* ========== Login/Register page ========== */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #0077FF 0%, #4FB0FF 100%);
  padding: 40px 24px 24px;
  display: flex;
  flex-direction: column;
}
.auth-page::before {
  content: '';
  position: fixed;
  top: -20%; right: -15%;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.auth-page::after {
  content: '';
  position: fixed;
  bottom: -10%; left: -10%;
  width: 180px; height: 180px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.auth-header { text-align: center; margin-bottom: 30px; position: relative; z-index: 1; }
.auth-header .auth-logo {
  width: 64px; height: 64px;
  margin: 0 auto 12px;
  background: rgba(255,255,255,.2);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  border: 2px solid rgba(255,255,255,.3);
}
.auth-header h1 { color: #fff; font-size: 22px; font-weight: 700; }
.auth-header p { color: rgba(255,255,255,.75); font-size: 13px; margin-top: 4px; }
.auth-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--gray-6);
}
.auth-tabs .auth-tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-3);
  cursor: pointer;
  position: relative;
  transition: color .2s;
}
.auth-tabs .auth-tab.active { color: var(--primary); }
.auth-tabs .auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 20%;
  right: 20%;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

/* ========== Quick Actions Grid ========== */
.quick-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.quick-action {
  text-align: center;
  padding: 14px 6px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.quick-action:active { transform: scale(.95); }
.quick-action .qa-icon { font-size: 28px; }
.quick-action .qa-label { font-size: 12px; color: var(--gray-2); margin-top: 4px; }

/* ========== Misc ========== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-gray { color: var(--gray-3); }
.text-sm { font-size: 13px; }
.text-xs { font-size: 12px; }
.font-bold { font-weight: 600; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.hidden { display: none !important; }

/* ========== Info Card (border-left accent) ========== */
.info-card { border-left: 4px solid var(--primary); }
.info-card-warning { border-left-color: var(--warning); }

/* ========== Hero Card (gradient intro) ========== */
.hero-card {
  background: linear-gradient(135deg, var(--primary), #00A3FF);
  color: #fff;
  text-align: center;
}
.hero-card .hero-icon { font-size: 36px; margin-bottom: 8px; }
.hero-card h2 { font-size: 20px; }
.hero-card p { font-size: 13px; opacity: .85; margin-top: 6px; }

/* ========== Agreement Block ========== */
.agree-block {
  margin: 20px 0;
  padding: 12px;
  background: var(--gray-6);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--gray-2);
}
.agree-block label { display: flex; align-items: flex-start; gap: 8px; }
.agree-block input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }

/* ========== Team Overview ========== */
.team-overview {
  display: flex;
  justify-content: space-around;
  text-align: center;
  position: relative;
  z-index: 1;
}
.team-overview .team-num { font-size: 28px; font-weight: 700; }
.team-overview .team-label { font-size: 12px; opacity: .85; }

/* ========== Invite Banner ========== */
.invite-banner {
  background: linear-gradient(135deg, #FF6B00, #FF9500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.invite-banner .banner-title { font-size: 16px; font-weight: 600; }
.invite-banner .banner-sub { font-size: 13px; opacity: .85; margin-top: 4px; }
.invite-banner .btn-sm { background: #fff; color: #FF6B00; }

/* ========== Member Avatar ========== */
.member-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

/* ========== Rules / Tips List ========== */
.rules-list { font-size: 13px; color: var(--gray-2); line-height: 2; }

/* ========== Notice Category Tags ========== */
.notice-tag-policy { background: var(--danger-light); color: var(--danger); }
.notice-tag-commission { background: var(--warning-light); color: var(--warning); }
.notice-tag-settlement { background: var(--success-light); color: var(--success); }
.notice-tag-activity { background: var(--primary-light); color: var(--primary); }

/* ========== Article (notice detail) ========== */
.article-title { font-size: 20px; margin-bottom: 8px; }
.article-content { font-size: 15px; line-height: 2; color: var(--gray-1); }

/* ========== Poster Card Orange ========== */
.poster-card.orange {
  background: linear-gradient(135deg, #FF6B00, #FF9500);
  box-shadow: 0 8px 30px rgba(255,107,0,.2);
}

/* ========== Compact List Items ========== */
.list-item-compact { padding: 8px 0; }

/* ========== Card Flush (no padding for menu) ========== */
.card-flush { padding: 0; }

/* ========== Status Page (pending) ========== */
.status-page { padding: 60px 24px; text-align: center; }
.status-icon { font-size: 56px; margin-bottom: 16px; }
.status-title { font-size: 20px; margin-bottom: 8px; }
.status-desc { color: var(--gray-3); font-size: 14px; }
.status-tips {
  margin-top: 20px;
  padding: 12px;
  background: var(--gray-6);
  border-radius: var(--radius-sm);
  text-align: left;
  font-size: 13px;
  color: var(--gray-2);
}
.status-tips p { margin-bottom: 4px; }

/* ========== Error Page ========== */
.error-page { padding: 80px 24px; text-align: center; }
.error-icon { font-size: 64px; margin-bottom: 16px; }
.error-title { font-size: 20px; color: var(--gray-1); }
