@charset "utf-8";
/* ==========================================================================
   应召女郎 · 样式表
   视觉来源：本站输入素材目录中另存的参考页面（父主题 + 子主题样式与 DOM 几何）
   全站浅色底；深色只用于按钮、chip、表头等小面积元素。
   ========================================================================== */

/* 1. 设计 token ---------------------------------------------------------- */
:root {
  --bg: #f5f6f7;
  --surface: #fff;
  --surface-2: #eee;
  --surface-3: #f9fafb;

  --ink: #333;
  --text: #4e5358;
  --muted: #62686e;
  --muted-2: #6b7178;
  --muted-3: #a8adb3;

  --accent: #c2185b;
  --on-accent: #fff;
  --link: #c2185b;
  --accent-soft: #fdeaf2;
  --accent-soft-2: #fdf3f7;
  --accent-line: #f6b8d3;

  --cat-ink: #9c1b98;
  --cat-soft: #f6e7fa;
  --city-ink: #0b62b0;
  --city-soft: #e4f0fd;

  --line: rgba(50, 50, 50, .06);
  --line-2: rgba(0, 0, 0, .03);

  --radius: 8px;
  --radius-sm: 4px;
  --radius-card: 12px;
  --radius-pill: 999px;
  --shadow: 0 0 10px rgba(116, 116, 116, .08);
  --shadow-hover: 0 2px 16px rgba(116, 116, 116, .16);

  --wrap: 1200px;
  --wrap-header: 1380px;
  --cta-h: 58px;
}

/* 2. 基础 ---------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-wrap: break-word;
  overflow-wrap: anywhere;
  padding-bottom: calc(var(--cta-h) + 38px);
}

h1, h2, h3, h4 { color: var(--ink); line-height: 1.3; margin: 0 0 .6em; }
h1 { font-size: 26px; font-weight: 700; }
h2 { font-size: 21px; font-weight: 600; }
h3 { font-size: 17px; font-weight: 600; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
li { margin: 0 0 .35em; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 2px solid var(--link);
  outline-offset: 2px;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--link);
  color: var(--on-accent);
  padding: 10px 16px;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 15px;
}

main { padding-top: 18px; }

/* 3. 页头 ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--wrap-header);
  margin: 0 auto;
  padding: 0 15px;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand:hover { text-decoration: none; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
}

.brand-logo { display: block; height: 36px; width: auto; }

.site-nav { margin-left: 6px; }
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav li { margin: 0; }
.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
}
.site-nav a:hover {
  color: var(--link);
  background: var(--accent-soft-2);
  text-decoration: none;
}
.site-nav a[aria-current] { color: var(--link); font-weight: 600; }
.site-nav a[aria-current]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  height: 5px;
  border-radius: 0 0 15px 15px;
  background: var(--accent);
}

.header-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.site-search { display: flex; align-items: center; }
.site-search input {
  height: 36px;
  width: 200px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
}
.site-search input::placeholder { color: var(--muted-2); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
}
.nav-toggle::before {
  content: "";
  width: 14px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 -5px 0 currentColor;
}

.search-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 14px 0;
}
.search-panel.is-open { display: block; }
.search-panel ul { list-style: none; margin: 0; padding: 0; }
.search-panel li { margin: 0 0 6px; }
.search-panel a { font-size: 15px; }
.search-panel .muted { color: var(--muted); font-size: 13px; }
.search-status { color: var(--muted); font-size: 13px; margin: 0 0 8px; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(84vw, 320px);
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .25s ease, visibility .25s ease;
  z-index: 900;
  overflow-y: auto;
  padding: 16px 18px calc(var(--cta-h) + 40px);
}
body.drawer-open .drawer { transform: none; visibility: visible; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .36);
  z-index: 890;
  border: 0;
  padding: 0;
}
.drawer-label { font-size: 15px; margin: 14px 0 8px; font-weight: 600; color: var(--ink); }
.drawer ul { list-style: none; margin: 0 0 6px; padding: 0; }
.drawer a { display: block; padding: 9px 2px; font-size: 15px; border-bottom: 1px solid var(--line-2); }

/* 4. 页头标题区 ---------------------------------------------------------- */
.page-head { padding: 6px 0 2px; }
.crumb {
  font-size: 13px;
  color: var(--muted-2);
  margin: 0 0 8px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.crumb li { margin: 0; }
.crumb li + li::before { content: "›"; margin-right: 6px; color: var(--muted-3); }
.page-head h1 { margin-bottom: .5em; }
.page-lead { font-size: 16px; color: var(--muted); margin: 0 0 6px; }

/* 5. 筛选卡 -------------------------------------------------------------- */
.filter-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 20px 25px;
  margin: 20px 0;
  box-shadow: var(--shadow);
  animation: filter-rise .5s ease-out both;
}

.filter-section { position: relative; padding: 14px 0; }
.filter-section + .filter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 88px;
  height: 1px;
  background: var(--line);
}

.filter-head { display: flex; align-items: center; gap: 10px; min-height: 32px; flex-wrap: wrap; }
.filter-label { flex: 0 0 auto; font-size: 16px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.filter-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--link);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
}
.filter-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 32px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  color: var(--link);
  background: var(--bg);
  cursor: pointer;
  transition: background .2s ease;
}
.filter-toggle:hover { background: var(--line-2); }
.filter-toggle i {
  display: inline-block;
  width: 0;
  height: 0;
  margin-top: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform .25s ease;
}
.filter-section.is-open .filter-toggle i { transform: rotate(180deg); margin-top: 0; }

.filter-body { margin-top: 14px; padding-top: 2px; }
.filter-section:not(.is-open) .filter-body { display: none; }
.filter-section.is-open .filter-body { animation: filter-rise .28s ease-out both; }

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(6.6em, 1fr));
  gap: 8px;
}
.filter-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
  color: var(--text);
  background: var(--bg);
}
.filter-grid a:hover { color: var(--link); background: var(--accent-soft-2); text-decoration: none; }
.filter-grid a.is-active,
.filter-grid a[aria-current] {
  color: var(--link);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  font-weight: 500;
}

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

/* 6. 卡片网格 ------------------------------------------------------------ */
.tile-grid { display: flex; flex-wrap: wrap; margin: 4px -8px 8px; }

.tile {
  width: calc(33.333% - 16px);
  margin: 8px;
  padding: 10px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.tile:hover { box-shadow: var(--shadow-hover); }

.tile__surface {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  aspect-ratio: 10 / 7;
  padding: 10px;
  border-radius: var(--radius) var(--radius) 0 0;
  background-color: var(--surface-2);
  background-image: url("/assets/no-thumb.svg"), linear-gradient(180deg, #f7f8f9, #e9eaec);
  background-repeat: no-repeat, no-repeat;
  background-position: center 42%, center;
  background-size: 46% auto, cover;
  color: inherit;
}
.tile__surface:hover { text-decoration: none; }
.tile__tag {
  align-self: flex-start;
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--link);
  background: var(--surface);
  border: 1px solid var(--accent-line);
}
.tile__region { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: .02em; }

.tile__body { padding: 0 10px 6px; }

.tile__title {
  margin: 10px 0 2px;
  font-size: 15px;
  line-height: 1.45;
  min-height: 2.9em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.tile__title a { color: var(--ink); }
.tile__title a:hover { color: var(--link); }

.tile__tags { margin-top: 4px; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-right: 5px;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}
.tag--cat { color: var(--cat-ink); background: var(--cat-soft); }
.tag--city { color: var(--city-ink); background: var(--city-soft); }

.tile__meta {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted-2);
}
.tile__meta span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.item-groups { margin: 4px 0 8px; }
.item-groups + .item-groups { margin-top: 18px; }
.group-title { font-size: 15px; font-weight: 600; color: var(--ink); margin: 18px 0 8px; }
.item-groups .tile-grid:first-of-type { margin-top: 0; }

.section-title { margin: 24px 0 4px; }
.section-note { color: var(--muted); font-size: 14px; margin: 0 0 8px; }

/* 6b. 首页英雄区与要点卡 -------------------------------------------------- */
.page-head.hero { padding-top: 10px; }
.page-head.hero .page-lead,
.page-head.hero p { max-width: 78ch; }
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 4px;
}
.stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 96px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.stat-n { font-size: 20px; font-weight: 700; color: var(--link); }
.stat-l { font-size: 13px; color: var(--muted); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.feature-card {
  position: relative;
  padding: 16px 18px;
  border-radius: var(--radius-card);
  background: var(--surface-3);
  border: 1px solid var(--line);
}
.feature-card h3 { font-size: 16px; margin: 0 0 6px; }
.feature-card p { margin: 0 0 6px; font-size: 14.5px; }
.feature-card p:last-child { margin-bottom: 0; }
.muted-line { color: var(--muted); font-size: 13.5px; }
.jb-red {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 1px 8px;
  border-radius: var(--radius-sm);
  background: #e02020;
  color: var(--on-accent);
  font-size: 11.5px;
  line-height: 1.6;
}

/* 7. 正文排版 ------------------------------------------------------------ */
.prose {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 25px;
  margin: 20px 0;
}
.prose > *:last-child { margin-bottom: 0; }
.prose h2 { font-size: 20px; margin: 0 0 .5em; padding-top: 2px; }
.prose h2 + p, .prose h2 + ul, .prose h2 + ol { margin-top: 0; }
.prose h3 { font-size: 16px; margin: 1.1em 0 .35em; }
.prose .block + .block { margin-top: 26px; }
.prose .lead { font-size: 16.5px; color: var(--ink); }

.facts { list-style: none; margin: 0; padding: 0; }
.facts li {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  margin: 0;
}
.facts li:last-child { border-bottom: 0; }
.facts .k { flex: 0 0 6.5em; color: var(--muted); font-size: 14px; }
.facts .v { flex: 1 1 12em; min-width: 8em; }

.rows { list-style: none; margin: 0; padding: 0; }
.rows li { padding: 12px 0; border-bottom: 1px dashed var(--line); margin: 0; }
.rows li:last-child { border-bottom: 0; }
.rows .rt { font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.rows .rd { color: var(--text); }

.table-scroll { overflow-x: auto; margin: 0 0 1em; }
.table-scroll table { min-width: 520px; font-size: 15px; }
.table-scroll th, .table-scroll td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.table-scroll thead th {
  background: var(--bg);
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.faq { list-style: none; margin: 0; padding: 0; }
.faq li { border-bottom: 1px dashed var(--line); margin: 0; }
.faq li:last-child { border-bottom: 0; }
.faq details { padding: 4px 0; }
.faq summary {
  cursor: pointer;
  padding: 10px 0;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "＋"; float: right; color: var(--link); font-weight: 400; }
.faq details[open] summary::after { content: "－"; }
.faq .a { padding: 0 0 10px; color: var(--text); }
.faq .a p:last-child { margin-bottom: 0; }

.links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.links li { margin: 0; }
.links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--bg);
  font-size: 14px;
  color: var(--text);
}
.links a:hover { color: var(--link); background: var(--accent-soft); text-decoration: none; }

.callout {
  background: var(--accent-soft-2);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 0 0 1em;
  font-size: 15px;
}
.callout p:last-child { margin-bottom: 0; }

/* 8. 页脚 ---------------------------------------------------------------- */
.site-footer {
  margin-top: 40px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 28px 0 24px;
}
.footer-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 20px;
}
.footer-brand { font-size: 16px; font-weight: 600; color: var(--ink); }
.footer-brief { font-size: 14px; color: var(--muted); margin: 8px 0 0; }
.footer-group-label { font-size: 14px; font-weight: 600; margin: 0 0 8px; color: var(--ink); }
.footer-inner ul { list-style: none; margin: 0; padding: 0; }
.footer-inner li { margin: 0 0 6px; }
.footer-inner a { font-size: 14px; color: #6b6b6b; }
.footer-inner a:hover { color: var(--link); }
.footer-copy {
  max-width: var(--wrap);
  margin: 22px auto 0;
  padding: 0 15px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted-2);
}

/* 9. 底部寻芳 CTA -------------------------------------------------------- */
.site-cta {
  position: fixed;
  left: 50%;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(480px, 40vw);
  min-width: 400px;
  min-height: var(--cta-h);
  padding: 0 26px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--on-accent);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .01em;
  text-align: center;
  box-shadow: 0 6px 22px rgba(194, 24, 91, .28);
  overflow: hidden;
}
.site-cta:hover { color: var(--on-accent); text-decoration: none; }
.site-cta > span { position: relative; z-index: 1; }

.site-cta::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .5);
  transform: translateX(-46%);
  animation: cta-chip-seat 2.4s cubic-bezier(.2, .7, .3, 1) infinite;
}
.site-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(240, 68, 148, .18);
  opacity: 0;
  animation: cta-pink-tint 2.4s cubic-bezier(.2, .7, .3, 1) 1.8s infinite;
}

@keyframes cta-chip-seat {
  0% { transform: translateX(-46%); opacity: .4; }
  38% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(0); opacity: 1; }
}
@keyframes cta-pink-tint {
  0% { opacity: 0; }
  42% { opacity: .62; }
  58% { opacity: 1; }
  100% { opacity: .35; }
}

/* 10. 断点 --------------------------------------------------------------- */
@media (max-width: 1239px) {
  .site-nav a { padding: 0 8px; font-size: 14.5px; }
}

@media (max-width: 996px) {
  h1 { font-size: 23px; }
  .site-search input { width: 150px; }
  .brand-logo { height: 32px; }
  .filter-card { padding: 16px 18px; }
  .filter-grid { grid-template-columns: repeat(auto-fill, minmax(5.4em, 1fr)); }
  .tile { width: calc(50% - 10px); margin: 5px; }
  .tile-grid { margin: 4px -5px 8px; }
  .prose { padding: 18px 18px; }
}

@media (max-width: 767px) {
  .site-nav, .site-search { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { min-height: 56px; }
  h1 { font-size: 21px; }
  h2 { font-size: 19px; }
  .filter-card { padding: 14px; }
  .filter-grid { grid-template-columns: repeat(auto-fill, minmax(4.6em, 1fr)); }
  .site-cta {
    left: 12px;
    right: 12px;
    transform: none;
    width: auto;
    min-width: 0;
    min-height: 54px;
    font-size: 16px;
    padding: 0 18px;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .facts .k { flex-basis: 5.5em; }
  /* 无脚本时抽屉不出现，主导航直接铺开 */
  html:not(.js) .site-nav { display: block; margin: 0 0 4px; }
  html:not(.js) .site-nav ul { flex-direction: column; }
  html:not(.js) .site-nav a { height: auto; padding: 9px 2px; border-bottom: 1px solid var(--line-2); }
  html:not(.js) .nav-toggle { display: none; }
  html:not(.js) .drawer { display: none; }
}

@media (max-width: 639px) {
  body { font-size: 16px; }
  .filter-grid { grid-template-columns: repeat(auto-fill, minmax(4.2em, 1fr)); }
  .filter-grid a { min-height: 34px; font-size: 12.5px; padding: 5px 4px; }
  .tile-grid { margin: 4px 0 8px; }
  .tile { width: auto; margin: 10px 0; }
  .prose { padding: 16px 14px; }
  .tile__region { font-size: 20px; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .filter-head { gap: 8px; }
  .filter-toggle { padding: 0 10px; }
}

/* 11. 降低动效 ----------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .filter-card,
  .filter-section.is-open .filter-body { animation: none; }
  .site-cta,
  .site-cta::before,
  .site-cta::after { animation: none; }
  .site-cta::before { transform: translateX(0); opacity: 1; }
  .site-cta::after { opacity: .35; }
}

@media print {
  .site-header, .site-footer, .site-cta, .drawer, .nav-toggle { display: none; }
  body { padding-bottom: 0; }
}
