:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eef3f8;
  --ink: #162033;
  --muted: #64748b;
  --line: #dbe4ef;
  --blue: #2563eb;
  --green: #0f766e;
  --amber: #b45309;
  --rose: #be185d;
  --slate: #475569;
  --shadow: 0 16px 40px rgba(22, 32, 51, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
select {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(219, 228, 239, 0.55);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo {
  width: 58px;
  height: 42px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: #162033;
  color: #ffffff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: var(--radius);
  color: #334155;
  font-size: 14px;
  padding: 9px 12px;
}

.site-nav a:hover {
  background: #edf2f7;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(68svh, 660px);
  overflow: hidden;
  background: #0f172a;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  opacity: 0.82;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.42)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(280px, 360px);
  column-gap: 48px;
  align-items: center;
  align-self: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 58px;
  color: #ffffff;
}

.hero-content > .eyebrow,
.hero-content > h1,
.hero-content > .hero-copy,
.hero-content > .hero-actions,
.hero-content > .hero-stats {
  grid-column: 1;
}

.hero-content > .hero-notice {
  grid-column: 1 / -1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: #38bdf8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow {
  max-width: 860px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 22px 0 0;
  color: #dce8f8;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  padding: 10px 16px;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: #ffffff;
  color: #0f172a;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.button.ghost {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 14px;
  margin: 36px 0 0;
}

.hero-stats div {
  border-left: 2px solid #38bdf8;
  padding-left: 14px;
}

.hero-stats dt {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: #cbd5e1;
  font-size: 13px;
}

.hero-notice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}

.hero-notice p {
  display: grid;
  gap: 6px;
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.44);
  color: #dbeafe;
  padding: 14px 16px;
}

.hero-notice strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.25;
}

.hero-notice span {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.65;
}

.notice-link {
  justify-self: start;
  border: 1px solid rgba(56, 189, 248, 0.48);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.14);
  color: #e0f2fe;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  padding: 8px 12px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.notice-link:hover {
  border-color: rgba(125, 211, 252, 0.78);
  background: rgba(56, 189, 248, 0.24);
  transform: translateY(-1px);
}

.intro-band,
.materials-section,
.access-section,
.contact-section {
  padding: 64px 0;
}

.intro-band {
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.intro-grid h2,
.section-heading h2,
.access-layout h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: 0;
}

.intro-grid p,
.section-heading p,
.access-layout p,
.contact-panel p,
.material-grid p,
.steps span {
  color: var(--muted);
}

.catalog-section {
  padding: 70px 0;
}

.section-heading {
  display: grid;
  max-width: 760px;
  gap: 10px;
  margin-bottom: 26px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading p {
  margin: 0;
}

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

.category-card {
  position: relative;
  min-height: 166px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: #ffffff;
  cursor: pointer;
  isolation: isolate;
  padding: 0;
  text-align: left;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.18));
  content: "";
}

.category-card span,
.category-card strong,
.category-card small {
  position: relative;
  z-index: 2;
  display: block;
}

.category-card span {
  width: fit-content;
  margin: 16px 16px 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 8px;
}

.category-card strong {
  margin: 0 16px;
  font-size: 20px;
  line-height: 1.2;
}

.category-card small {
  margin: 5px 16px 16px;
  color: #e2e8f0;
}

.category-card:hover img,
.category-card.is-active img {
  transform: scale(1.04);
}

.category-card.is-active {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.22);
}

.catalog-toolbar {
  position: sticky;
  top: 68px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 12px;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(22, 32, 51, 0.08);
  backdrop-filter: blur(12px);
}

.search-field,
.select-field {
  display: grid;
  gap: 6px;
}

.search-field span,
.select-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.search-field input,
.select-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  outline: none;
  padding: 9px 12px;
}

.search-field input:focus,
.select-field select:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

.result-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  color: var(--muted);
}

.result-meta strong {
  color: var(--ink);
}

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

.project-card {
  display: grid;
  grid-template-rows: 132px 1fr;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(22, 32, 51, 0.06);
}

.project-media {
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-id {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 8px;
}

.project-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px;
}

.project-card h3 {
  min-height: 56px;
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0;
}

.project-desc {
  display: -webkit-box;
  min-height: 76px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
}

.tech-line {
  display: -webkit-box;
  min-height: 44px;
  margin: 0;
  overflow: hidden;
  color: #475569;
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.project-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}

.access-badge {
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 8px;
}

.details-button {
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  padding: 8px 10px;
}

.details-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

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

.material-grid article,
.steps li,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.material-grid article {
  min-height: 168px;
  padding: 20px;
}

.material-grid h3 {
  margin: 0 0 10px;
}

.material-grid p {
  margin: 0;
}

.access-section {
  background: #ffffff;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 34px;
  align-items: start;
}

.access-layout p {
  max-width: 560px;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 96px;
  padding: 18px 18px 18px 70px;
  counter-increment: step;
}

.steps li::before {
  position: absolute;
  left: 18px;
  top: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: #162033;
  color: #ffffff;
  content: counter(step);
  font-weight: 800;
}

.contact-section {
  background: var(--bg);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0) 42%),
    #ffffff;
  box-shadow: 0 16px 38px rgba(22, 32, 51, 0.08);
  padding: 30px;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.contact-copy p {
  margin: 0;
}

.operator-note {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid #d8e6f7;
  border-radius: var(--radius);
  background: rgba(248, 251, 255, 0.88);
  padding: 14px;
}

.operator-note-head {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d8e6f7;
}

.operator-note-head span {
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
}

.operator-note-head strong {
  color: #162033;
  font-size: 17px;
  line-height: 1.25;
}

.operator-note-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.operator-note-items span {
  min-height: 40px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #ffffff;
  color: #475569;
  font-size: 13px;
  line-height: 1.4;
  padding: 8px 10px;
}

.hero-trust {
  grid-column: 2;
  grid-row: 1 / span 5;
  display: grid;
  gap: 18px;
  align-self: center;
  justify-self: end;
  width: min(100%, 390px);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(11, 18, 32, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 22px;
}

.hero-trust-header {
  display: grid;
  gap: 8px;
}

.hero-trust-header span {
  color: #38bdf8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-trust-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-trust-header p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
}

.hero-trust-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-trust-metrics div {
  min-height: 94px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: var(--radius);
  background: rgba(56, 189, 248, 0.09);
  padding: 14px;
}

.hero-trust-metrics strong,
.hero-trust-metrics span {
  display: block;
}

.hero-trust-metrics strong {
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
}

.hero-trust-metrics span {
  margin-top: 8px;
  color: #dbeafe;
  font-size: 13px;
}

.hero-trust-list {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 16px;
}

.hero-trust-list span {
  position: relative;
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.45;
  padding-left: 18px;
}

.hero-trust-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #38bdf8;
}

.contact-brand {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 8px;
  border: 1px solid #d8e6f7;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: 12px;
}

.contact-brand img {
  width: 112px;
  aspect-ratio: 1.35;
  object-fit: contain;
}

.contact-brand strong,
.contact-brand span {
  display: block;
}

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

.contact-brand span {
  color: var(--muted);
  font-size: 13px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 16px;
}

.contact-card.primary-contact {
  border-color: #bfdbfe;
  background: #f8fbff;
}

.contact-card.group-contact {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  align-items: center;
}

.contact-card.group-contact .contact-qr {
  aspect-ratio: 0.76;
}

.contact-card-text {
  display: grid;
  gap: 5px;
}

.contact-label {
  width: fit-content;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 9px;
}

.contact-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-qr {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: #ffffff;
  object-fit: contain;
  padding: 8px;
}

.contact-note {
  grid-column: 1 / -1;
  margin: 0;
  border-left: 3px solid var(--blue);
  color: var(--muted);
  font-size: 13px;
  padding-left: 12px;
}

.project-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
}

.project-dialog::backdrop {
  background: rgba(15, 23, 42, 0.52);
}

.dialog-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 52px);
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.dialog-inner {
  display: grid;
  gap: 20px;
  padding: 4px 28px 28px;
}

.dialog-hero {
  overflow: hidden;
  border-radius: var(--radius);
}

.dialog-hero img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.dialog-title-row {
  display: grid;
  gap: 8px;
}

.dialog-title-row h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
}

.dialog-section {
  display: grid;
  gap: 8px;
}

.dialog-section h3 {
  margin: 0;
  font-size: 15px;
}

.dialog-section p {
  margin: 0;
  color: var(--muted);
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-list li {
  border-radius: 999px;
  background: #eef2f7;
  color: #334155;
  font-size: 13px;
  padding: 5px 9px;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.resource-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(21, 122, 110, 0.24);
  border-radius: 999px;
  padding: 5px 11px;
  background: rgba(21, 122, 110, 0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
  padding: 28px;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 20px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    width: min(100%, 760px);
    max-width: 760px;
    margin-top: 20px;
  }

  .hero-notice {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .access-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid,
  .material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-toolbar {
    top: 116px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-content {
    padding: 48px 0 42px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-trust {
    padding: 18px;
  }

  .hero-trust-metrics {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: none;
  }

  .category-grid,
  .project-grid,
  .material-grid {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    position: static;
  }

  .project-card {
    min-height: 0;
  }

  .contact-panel {
    padding: 20px;
  }

  .contact-brand,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card.group-contact {
    grid-template-columns: 1fr;
  }

  .contact-brand img {
    width: 150px;
  }

  .dialog-inner {
    padding: 0 18px 22px;
  }
}
