/* ════════════════════════════════════════════════════
   良宅精选 — Professional Real Estate Stylesheet
   ════════════════════════════════════════════════════ */

:root {
  --bg-dark: #0b0f15;
  --bg-card: #141a24;
  --bg-sidebar: #0f1520;
  --border: rgba(255,255,255,.06);
  --border-hover: rgba(214,179,106,.3);
  --gold: #d6b36a;
  --gold-light: #f0cc7d;
  --gold-bg: rgba(214,179,106,.08);
  --gold-border: rgba(214,179,106,.22);
  --text: #e8ecf2;
  --text-muted: #8a95a7;
  --text-secondary: #b0bac9;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --shadow: 0 8px 32px rgba(0,0,0,.35);
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  margin: 0;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

/* ── Navigation ──────────────────────────────────── */

.nav {
  background: rgba(15,21,32,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; }
.brand span { color: var(--gold); }

.menu { display: flex; gap: 8px; }
.menu a {
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}
.menu a:hover { color: var(--gold); background: var(--gold-bg); }

.mobile-toggle { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; padding: 8px; }

/* ── Buttons ─────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  gap: 6px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1408;
  box-shadow: 0 4px 16px rgba(214,179,106,.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(214,179,106,.35); }

.btn-secondary {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-bg);
}
.btn-secondary:hover { background: rgba(214,179,106,.15); }

.btn-sm { padding: 8px 14px; font-size: 13px; }

.btn-danger { border-color: rgba(239,68,68,.3); color: #ef4444; background: rgba(239,68,68,.08); }
.btn-danger:hover { background: rgba(239,68,68,.15); }

.btn-success { border-color: rgba(34,197,94,.3); color: #22c55e; background: rgba(34,197,94,.08); }
.btn-success:hover { background: rgba(34,197,94,.15); }

.btn-info { border-color: rgba(59,130,246,.3); color: #3b82f6; background: rgba(59,130,246,.08); }
.btn-info:hover { background: rgba(59,130,246,.15); }

/* ── Hero Section ────────────────────────────────── */

.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(214,179,106,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero h1 .highlight { color: var(--gold); }

.hero-desc {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}
.trust-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ── Cards ───────────────────────────────────────── */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}
.card:hover img { transform: scale(1.03); }

.card-img-wrap { overflow: hidden; position: relative; }
.card-status {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.card-status.on_sale { background: rgba(34,197,94,.85); color: #fff; }
.card-status.sold { background: rgba(239,68,68,.85); color: #fff; }

.card-body { padding: 20px; }

.price {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: -0.5px;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 12px;
  margin-right: 6px;
  margin-bottom: 6px;
  font-weight: 500;
}

/* ── Sections ────────────────────────────────────── */

.section { padding: 24px 0 56px; }
.section h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}
.section-desc { color: var(--text-muted); margin-bottom: 32px; }

.muted { color: var(--text-muted); line-height: 1.8; }

/* ── Forms ───────────────────────────────────────── */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

label { display: block; color: var(--text-secondary); font-size: 14px; font-weight: 500; margin-bottom: 16px; }

.input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-dark);
  color: var(--text);
  font-size: 15px;
  margin-top: 8px;
  transition: var(--transition);
  font-family: inherit;
}
.input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,179,106,.12);
}

select { cursor: pointer; }

/* ── Filter bar ──────────────────────────────────── */

.filter-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-group { flex: 1; min-width: 140px; }
.filter-group label { margin-bottom: 0; font-size: 13px; }
.filter-group select, .filter-group .input { margin-top: 6px; padding: 10px 14px; font-size: 14px; }

/* ── Table ───────────────────────────────────────── */

.table {
  width: 100%;
  border-collapse: collapse;
}
.table th, .table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  color: var(--text-secondary);
  font-size: 14px;
}
.table th { color: var(--text-muted); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.table tr:hover td { background: rgba(214,179,106,.03); }

/* ── Status badges ───────────────────────────────── */

.status-badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.status-badge.new { background: rgba(59,130,246,.15); color: #60a5fa; }
.status-badge.following { background: rgba(251,191,36,.15); color: #fbbf24; }
.status-badge.closed { background: rgba(107,114,128,.15); color: #9ca3af; }
.status-badge.deal { background: rgba(34,197,94,.15); color: #22c55e; }
.status-badge.on_sale { background: rgba(34,197,94,.15); color: #22c55e; }
.status-badge.sold { background: rgba(239,68,68,.15); color: #f87171; }
.status-badge.off_shelf { background: rgba(107,114,128,.15); color: #9ca3af; }
.status-badge.active { background: rgba(34,197,94,.15); color: #22c55e; }
.status-badge.disabled { background: rgba(239,68,68,.15); color: #f87171; }

/* ── Detail page ─────────────────────────────────── */

.detail { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: start; }
.detail-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-info { }
.detail-info h1 { font-size: 36px; margin: 12px 0; letter-spacing: -0.5px; }

.detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
  padding: 20px;
  background: rgba(214,179,106,.04);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
}
.detail-meta-item { }
.detail-meta-label { font-size: 12px; color: var(--text-muted); }
.detail-meta-value { font-size: 15px; font-weight: 600; color: var(--text); }

.inquiry-cta {
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(214,179,106,.1), rgba(214,179,106,.04));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  text-align: center;
}
.inquiry-cta p { color: var(--text-muted); margin: 8px 0 16px; font-size: 14px; }

/* ── Admin layout ────────────────────────────────── */

.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }

.sidebar {
  background: var(--bg-sidebar);
  padding: 28px 20px;
  border-right: 1px solid var(--border);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar .brand { margin-bottom: 32px; }

.sidebar-section {
  margin-bottom: 24px;
}
.sidebar-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
  padding: 0 14px;
}

.sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.sidebar a:hover { background: rgba(214,179,106,.08); color: var(--text); }
.sidebar a.active { background: var(--gold-bg); color: var(--gold); }

.main { padding: 32px; overflow-x: auto; }

/* ── Dashboard stats ─────────────────────────────── */

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.stat:hover { border-color: var(--border-hover); }
.stat .small { margin-bottom: 8px; }
.stat .price { font-size: 32px; }

/* ── Flash / Alert ───────────────────────────────── */

.flash {
  padding: 14px 20px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  margin: 16px 0;
  font-size: 14px;
}

/* ── Footer ──────────────────────────────────────── */

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand { font-size: 22px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.footer-brand span { color: var(--gold); }
.footer-desc { font-size: 14px; line-height: 1.8; }

.footer-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-qr {
  width: 100px;
  height: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── Utilities ───────────────────────────────────── */

.toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.inline-form { display: inline; }
.small { font-size: 13px; color: var(--text-muted); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.text-center { text-align: center; }

/* ── Animations ──────────────────────────────────── */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp .5s ease-out both;
}

.card { animation: fadeInUp .5s ease-out both; }
.card:nth-child(2) { animation-delay: .08s; }
.card:nth-child(3) { animation-delay: .16s; }
.card:nth-child(4) { animation-delay: .24s; }
.card:nth-child(5) { animation-delay: .32s; }
.card:nth-child(6) { animation-delay: .4s; }

/* ── Responsive ──────────────────────────────────── */

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 32px; }
}

@media (max-width: 768px) {
  .grid-3, .form-grid, .detail, .admin-layout, .stats, .footer-grid { grid-template-columns: 1fr; }
  .menu { display: none; }
  .menu.show { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(15,21,32,.98); backdrop-filter: blur(20px); padding: 16px; border-bottom: 1px solid var(--border); z-index: 99; }
  .mobile-toggle { display: block; }
  .hero h1 { font-size: 36px; }
  .hero-stats { flex-direction: row; gap: 24px; justify-content: center; text-align: center; }
  .hero-stat-num { font-size: 28px; }
  .trust-badges { justify-content: center; }
  .trust-badge { font-size: 13px; }
  .detail-img { height: 280px; }
  .detail-info { position: static; }
  .sidebar { display: none; }
  .admin-layout { grid-template-columns: 1fr; }
  .main { padding: 16px; }
  .filter-bar { flex-direction: column; }
  .table { font-size: 13px; }
  .table th, .table td { padding: 10px 8px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 24px; }
  .hero-stat-label { font-size: 12px; }
  .trust-badges { gap: 12px; }
  .container { width: calc(100% - 24px); }
  .card img { height: 180px; }
  .price { font-size: 24px; }
}

/* ── Why Choose Section ──────────────────────────── */

.why-section { background: rgba(214,179,106,.02); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-card h3 { margin: 16px 0 8px; font-size: 18px; }
.why-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin: 0; }

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214,179,106,.15), rgba(214,179,106,.05));
  border: 2px solid var(--gold-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
}

/* ── Process Steps ───────────────────────────────── */

.process-section { }

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 16px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 160px;
}

.process-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1408;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(214,179,106,.25);
}

.process-label {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.process-desc {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.process-line {
  flex: 1;
  height: 2px;
  background: var(--gold-border);
  margin-top: 24px;
  min-width: 40px;
  max-width: 80px;
}

/* ── Hero enhanced gradient ──────────────────────── */

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(214,179,106,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Responsive additions ────────────────────────── */

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-line { width: 2px; height: 24px; min-width: 2px; max-width: 2px; margin-top: 0; }
  .process-step { width: auto; }
}

/* ── Price comparison ────────────────────────────── */

.price-compare {
  margin: 12px 0 16px;
}
.price-compare .price {
  margin: 0;
}
.ref-price {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.ref-price span {
  text-decoration: line-through;
  color: #6b7280;
}

/* ── Image Gallery / Carousel ────────────────────── */

.gallery { position: relative; }
.gallery-main { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery-main .detail-img { width: 100%; height: 460px; object-fit: cover; display: block; transition: .3s ease; }

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.gallery-btn:hover { background: rgba(0,0,0,.7); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.gallery-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 2;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.gallery-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: var(--transition);
  flex-shrink: 0;
}
.gallery-thumb:hover { opacity: 0.85; }
.gallery-thumb.active { border-color: var(--gold); opacity: 1; }

@media (max-width: 768px) {
  .gallery-main .detail-img { height: 260px; }
  .gallery-thumb { width: 60px; height: 45px; }
}

/* ── Info blocks (detail page) ───────────────────── */

.info-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: var(--transition);
}
.info-block:hover {
  border-color: var(--border-hover);
}
.info-block h3 {
  font-size: 16px;
  margin: 0 0 12px;
  color: var(--gold-light);
}
.info-content {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 2;
  white-space: pre-line;
}

/* ── Live Ticker (成交/留资滚动条) ─────────────── */

.live-ticker {
  background: linear-gradient(90deg, rgba(214,179,106,.12) 0%, rgba(214,179,106,.06) 50%, rgba(214,179,106,.12) 100%);
  border-bottom: 1px solid rgba(214,179,106,.15);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
}

.live-ticker::before,
.live-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.live-ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-dark), transparent); }
.live-ticker::after { right: 0; background: linear-gradient(90deg, transparent, var(--bg-dark)); }

.ticker-wrap {
  display: inline-flex;
  animation: ticker-scroll 60s linear infinite;
}

.ticker-wrap:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 28px;
  font-size: 13px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.ticker-item .ticker-icon {
  font-size: 14px;
}

.ticker-item .ticker-highlight {
  color: var(--gold);
  font-weight: 600;
}

.ticker-item .ticker-time {
  color: var(--text-muted);
  font-size: 12px;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .ticker-item { padding: 0 18px; font-size: 12px; }
  .ticker-wrap { animation-duration: 45s; }
}
