:root {
  --teal: #0d9488;
  --cyan: #0891b2;
  --deep: #0f172a;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --panel: #ffffff;
  --soft: #f8fafc;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f3f4f6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.25);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  color: var(--ink);
  font-size: 21px;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.desktop-nav > a,
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  color: #374151;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav .nav-active {
  color: var(--teal);
  background: #ecfeff;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  min-width: 190px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.dropdown-menu a {
  padding: 9px 12px;
  color: #4b5563;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.dropdown-menu a:hover {
  color: var(--teal);
  background: #ecfeff;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #f3f4f6;
  border: 0;
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #374151;
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  padding: 10px 16px 18px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  color: #374151;
  border-radius: 12px;
  font-weight: 700;
}

.mobile-nav a:hover {
  color: var(--teal);
  background: #ecfeff;
}

.hero {
  position: relative;
  height: clamp(520px, 70vw, 760px);
  overflow: hidden;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.52), rgba(2, 6, 23, 0.08)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 24px;
}

.hero-copy {
  max-width: 680px;
  color: #ffffff;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 7px 13px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  color: #0f766e;
  background: #ccfbf1;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero .hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 16px 30px rgba(13, 148, 136, 0.28);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  border-radius: 999px;
  font-size: 34px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 4;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.section {
  padding: 72px 0;
}

.section-white {
  background: #ffffff;
}

.soft-panel {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.featured-lift {
  position: relative;
  z-index: 5;
  padding-top: 0;
  margin-top: -72px;
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(280px, 46%) 1fr;
  overflow: hidden;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.featured-poster {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.featured-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-poster span,
.hover-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 26px;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: 0.25s ease;
}

.featured-poster:hover img,
.movie-card:hover img {
  transform: scale(1.08);
}

.featured-poster:hover span,
.movie-card:hover .hover-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.featured-copy {
  padding: clamp(28px, 5vw, 54px);
}

.featured-copy h2,
.section-head h2,
.page-hero h1,
.detail-intro h1 {
  margin: 14px 0 16px;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.featured-copy h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.featured-copy p {
  color: #4b5563;
  font-size: 17px;
}

.featured-copy .btn {
  margin-top: 28px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.section-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.section-head > a {
  flex: 0 0 auto;
  color: var(--teal);
  font-weight: 900;
}

.movie-grid,
.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.compact-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.large-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.horizontal-list,
.rank-list {
  display: grid;
  gap: 18px;
}

.movie-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.78);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  border-color: rgba(13, 148, 136, 0.22);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.movie-link {
  display: block;
  height: 100%;
}

.poster {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #e5e7eb, #f8fafc);
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.45));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster::after {
  opacity: 1;
}

.poster-cinema {
  aspect-ratio: 16 / 10;
}

.poster-wide {
  aspect-ratio: 16 / 10;
}

.type-pill,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 5px 9px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.74);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.type-pill {
  top: 12px;
  right: 12px;
}

.rank-badge {
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.movie-body {
  padding: 16px;
}

.movie-body h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 9px;
  overflow: hidden;
  color: #111827;
  font-size: 17px;
  line-height: 1.4;
  transition: color 0.2s ease;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card:hover h3 {
  color: var(--teal);
}

.movie-body p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 12px;
  overflow: hidden;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.movie-card-horizontal .movie-link {
  display: grid;
  grid-template-columns: 260px 1fr;
}

.movie-card-horizontal .movie-body {
  padding: 24px;
}

.movie-card-horizontal .movie-body h3 {
  min-height: 0;
  font-size: 22px;
}

.movie-card-horizontal .movie-body p {
  min-height: 0;
  max-width: 760px;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr 170px 170px;
  gap: 12px;
  align-items: end;
  margin: 0 0 28px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.search-panel-compact {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin-top: -4px;
}

.search-field {
  display: grid;
  gap: 7px;
}

.search-field span {
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.search-panel input,
.search-panel select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: #111827;
  background: #f8fafc;
  border: 1px solid #dbe4ee;
  border-radius: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-panel input:focus,
.search-panel select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.movie-card[hidden] {
  display: none;
}

.page-hero {
  padding: 86px 0 78px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.32), transparent 35%),
    linear-gradient(135deg, #0f172a, #164e63 72%, #0f766e);
}

.compact-hero {
  padding: 62px 0 58px;
}

.page-hero h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(36px, 6vw, 58px);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.category-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.category-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.category-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: 999px;
}

.category-card h2 {
  margin: 16px 0 10px;
  font-size: 24px;
}

.category-card p {
  margin: 0;
  color: var(--muted);
}

.category-preview {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.category-preview a {
  color: #475569;
  font-size: 14px;
  font-weight: 700;
}

.category-preview a:hover {
  color: var(--teal);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.34;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px);
  transform: scale(1.08);
}

.detail-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.72));
}

.detail-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 42px;
  align-items: center;
  padding: 70px 0;
}

.detail-poster {
  overflow: hidden;
  background: #111827;
  border: 5px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-intro h1 {
  color: #ffffff;
  font-size: clamp(38px, 6vw, 62px);
}

.detail-one-line {
  max-width: 850px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.detail-meta span {
  padding: 7px 12px;
  color: #d1fae5;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.detail-intro .btn {
  margin-top: 28px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.player-card,
.detail-card,
.side-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.player-card h2,
.detail-card h2,
.side-card h2 {
  margin: 0;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 24px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #020617;
}

.player-cover {
  position: absolute;
  inset: 0;
  padding: 0;
  overflow: hidden;
  background: #020617;
  border: 0;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.big-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  font-size: 34px;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.detail-card {
  margin-top: 24px;
  padding-bottom: 24px;
}

.detail-card p {
  margin: 0;
  padding: 0 24px;
  color: #374151;
  font-size: 17px;
  line-height: 1.85;
}

.side-card {
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.side-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 22px 24px 0;
}

.side-card dl div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
}

.side-card dt {
  color: #64748b;
  font-weight: 800;
}

.side-card dd {
  margin: 0;
  color: #111827;
  font-weight: 700;
}

.tag-cloud {
  padding: 20px 24px 0;
}

.site-footer {
  padding: 56px 0 26px;
  background: #0f172a;
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
}

.footer-brand .brand-text strong {
  color: #ffffff;
}

.footer-brand .brand-text small {
  color: #94a3b8;
}

.site-footer p {
  max-width: 640px;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  padding: 8px 12px;
  color: #d1fae5;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  color: #94a3b8;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .compact-grid,
  .category-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .large-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .side-card {
    margin-bottom: 0;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .hero {
    height: 620px;
  }

  .hero-copy {
    max-width: 88%;
  }

  .hero-arrow {
    display: none;
  }

  .featured-card,
  .detail-hero-grid,
  .movie-card-horizontal .movie-link,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .featured-lift {
    margin-top: -36px;
  }

  .featured-poster {
    min-height: 250px;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .movie-grid,
  .compact-grid,
  .large-grid,
  .category-overview,
  .detail-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .movie-card-horizontal .poster-wide {
    aspect-ratio: 16 / 9;
  }

  .detail-hero-grid {
    padding: 44px 0;
  }

  .detail-poster {
    max-width: 320px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    height: 590px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .movie-grid,
  .compact-grid,
  .large-grid,
  .category-overview,
  .detail-side {
    grid-template-columns: 1fr;
  }

  .movie-body h3 {
    min-height: 0;
  }

  .detail-card p {
    font-size: 16px;
  }

  .player-card h2,
  .detail-card h2,
  .side-card h2 {
    padding: 18px;
    font-size: 21px;
  }

  .detail-card p,
  .side-card dl,
  .tag-cloud {
    padding-left: 18px;
    padding-right: 18px;
  }
}
