*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body, h1, h2, h3, p, dl, dd, dt, ol, ul, li { margin: 0; padding: 0; }
ol, ul { list-style: none; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
:root {
  --bg: #0b0c0e;
  --bg-2: #121316;
  --bg-3: #17181c;
  --panel: #101114;
  --line: #232529;
  --line-2: #2e3136;
  --red: #c8102e;
  --red-bright: #ff2b45;
  --red-dim: #7a0a1c;
  --white: #e8eaee;
  --white-dim: #b6bac2;
  --white-mute: #7d828c;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  --row: 6px;
}
html { background: var(--bg); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white-dim);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 12, 14, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.header-top {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 8px 16px;
  max-width: 1360px;
  margin: 0 auto;
}
a[data-contract="site-name"] {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  padding-left: 12px;
  position: relative;
  white-space: nowrap;
}
a[data-contract="site-name"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 15px;
  background: var(--red);
}
a[data-contract="site-name"]:hover { color: var(--red-bright); }
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}
a.runtime-category {
  display: inline-block;
  color: var(--white-dim);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 9px;
  border: 1px solid transparent;
  letter-spacing: .06em;
}
a.runtime-category:hover {
  color: var(--white);
  border-color: var(--red-dim);
  background: #1a0d11;
}
.page-main {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.movie-overview {
  padding: 16px 0 20px;
  border-bottom: 1px solid var(--line);
}
.overview-shell {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 16px;
}
.poster-column { display: block; }
.poster-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #050506;
  border: 1px solid var(--line-2);
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.68) contrast(1.08) brightness(.82);
}
.poster-grid-quad {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  pointer-events: none;
}
.quad-cell {
  border: 1px solid rgba(232, 234, 238, .16);
  display: block;
}
.quad-cell-b { border-top: none; }
.quad-cell-c { border-left: none; }
.quad-cell-a {
  box-shadow: inset 0 0 0 1px rgba(255, 43, 69, .34);
  background: linear-gradient(160deg, rgba(255, 43, 69, .07), rgba(0,0,0,0) 55%);
}
.quad-cell-d { background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.05), rgba(0,0,0,0) 60%); }
.poster-timecode-overlay {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 8px;
  pointer-events: none;
}
.timecode-stamp {
  font-family: "SFMono-Regular", "Menlo", "Consolas", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .1em;
  color: rgba(232, 234, 238, .78);
  text-shadow: 0 0 4px rgba(0,0,0,.9);
  white-space: nowrap;
}
.noise-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: screen;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.045) 0 1px, rgba(0,0,0,0) 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, rgba(0,0,0,0) 1px 4px);
}
.noise-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 42%, rgba(0,0,0,.72) 100%);
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.movie-title {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
}
.movie-tagline {
  font-size: 13px;
  color: var(--white);
  font-weight: 600;
  border-left: 3px solid var(--red);
  padding-left: 9px;
  line-height: 1.45;
}
.movie-seo {
  font-size: 12.5px;
  color: var(--white-mute);
  line-height: 1.6;
  max-width: 78ch;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.status-current, .status-total, .status-duration {
  font-size: 11.5px;
  letter-spacing: .08em;
  padding: 0 12px;
  border-right: 1px solid var(--line-2);
  white-space: nowrap;
}
.status-current { color: var(--red-bright); font-weight: 700; padding-left: 0; }
.status-total { color: var(--white); font-weight: 600; }
.status-duration { color: var(--white-mute); border-right: 0; }
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #000;
  border: 1px solid var(--line-2);
}
.main-player {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.ctrl-btn {
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--white-dim);
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  padding: 3px 8px;
  white-space: nowrap;
  line-height: 1.4;
}
.ctrl-btn:hover {
  color: var(--white);
  border-color: var(--red);
  background: #1c0e12;
}
.ctrl-play { color: var(--white); border-color: var(--red-dim); }
.player-shell.is-playing .ctrl-play { color: var(--red-bright); }
.ctrl-progress {
  flex: 1 1 200px;
  min-width: 120px;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--line-2);
  border-radius: 0;
}
.ctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 9px;
  height: 13px;
  background: var(--red-bright);
  border: 0;
}
.ctrl-progress::-moz-range-thumb {
  width: 9px;
  height: 13px;
  background: var(--red-bright);
  border: 0;
}
.ctrl-volume {
  flex: 0 1 90px;
  min-width: 60px;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--line-2);
}
.ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 8px;
  height: 12px;
  background: var(--white-mute);
  border: 0;
}
.ctrl-volume::-moz-range-thumb {
  width: 8px;
  height: 12px;
  background: var(--white-mute);
  border: 0;
}
.player-shell.is-muted .ctrl-mute { color: var(--red-bright); border-color: var(--red); }
.player-shell.is-speed .ctrl-speed { color: var(--red-bright); border-color: var(--red); }
.player-shell.is-pip .ctrl-pip { color: var(--red-bright); border-color: var(--red); }
.player-shell.is-fullscreen .ctrl-fullscreen { color: var(--red-bright); border-color: var(--red); }
.player-shell.is-theater .ctrl-theater { color: var(--red-bright); border-color: var(--red); }
.player-shell.is-lights-off .ctrl-light { color: var(--red-bright); border-color: var(--red); }
.player-shell.is-ended .main-player { filter: grayscale(1) brightness(.6); }
.cast-grid {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.cast-heading, .synopsis-heading, .details-heading {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .18em;
  margin-bottom: 8px;
  position: relative;
  padding-left: 10px;
}
.cast-heading::before, .synopsis-heading::before, .details-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: .22em;
  width: 3px;
  height: .85em;
  background: var(--red);
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 0;
}
.cast-hex {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(160deg, #2a2d33, #14161a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 0;
}
.cast-hex::before {
  content: "";
  position: absolute;
  inset: 1px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(160deg, #1a1c21, #0d0e11);
  z-index: 0;
}
.hex-name {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  padding: 0 2px;
  letter-spacing: .02em;
}
.cast-relation {
  font-size: 10px;
  color: var(--white-mute);
  letter-spacing: .04em;
  white-space: nowrap;
  text-align: center;
}
.cast-relation-broken {
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 1px;
  color: #8d7276;
}
.synopsis-block {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--white-dim);
  margin-bottom: 6px;
}
.synopsis-para:last-child { margin-bottom: 0; }
.details-grid {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px 14px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  border-bottom: 1px dotted var(--line-2);
  padding-bottom: 3px;
}
.detail-row dt {
  font-size: 11px;
  color: var(--white-mute);
  letter-spacing: .06em;
  flex: 0 0 auto;
}
.detail-row dd {
  font-size: 11.5px;
  color: var(--white);
  font-weight: 600;
  min-width: 0;
  overflow-wrap: anywhere;
}
.timeline-section {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-heading {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .18em;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: 2px solid var(--red);
  padding-bottom: 3px;
}
.timeline-scroll-shell {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.timeline-fixed-episode {
  flex: 0 0 auto;
  width: 96px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--red);
  padding: 8px 10px;
  position: sticky;
  left: 0;
  z-index: 3;
}
.timeline-ep-label {
  display: block;
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--white-mute);
  margin-bottom: 2px;
}
.timeline-ep-number {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--red-bright);
  line-height: 1.1;
}
.timeline-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--red-dim) var(--bg-3);
  min-width: 0;
  flex: 1 1 auto;
}
.timeline-track::-webkit-scrollbar { height: 6px; }
.timeline-track::-webkit-scrollbar-track { background: var(--bg-3); }
.timeline-track::-webkit-scrollbar-thumb { background: var(--red-dim); }
.timeline-node {
  position: relative;
  flex: 0 0 200px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 2px solid var(--line-2);
  padding: 12px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.node-dot {
  position: absolute;
  top: -5px;
  left: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, .18);
  animation: nodePulse 1.8s ease-in-out infinite;
}
@keyframes nodePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 3px rgba(200, 16, 46, .22); }
  50% { opacity: .35; box-shadow: 0 0 0 6px rgba(200, 16, 46, .05); }
}
.node-timecode {
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--white-mute);
}
.node-label {
  font-size: 12px;
  line-height: 1.5;
  color: var(--white-dim);
}
.timeline-node-active {
  flex-basis: 300px;
  border-color: var(--red);
  border-top-color: var(--red);
  background: #17090d;
  transform: scale(1.015);
  transform-origin: left top;
}
.timeline-node-active .node-dot {
  width: 10px;
  height: 10px;
  top: -6px;
  background: var(--red-bright);
}
.timeline-node-active .node-timecode { color: var(--red-bright); font-weight: 700; }
.timeline-node-active .node-label {
  color: var(--white);
  font-weight: 600;
  font-size: 12.5px;
}
.episodes-section {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.episodes-heading {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .18em;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: 2px solid var(--red);
  padding-bottom: 3px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 2px solid var(--line-2);
  padding: 7px 9px;
  transition: border-color .16s ease, background .16s ease;
}
.episode-card:hover {
  border-color: var(--red-bright);
  border-left-color: var(--red-bright);
  background: #150a0e;
}
.episode-title-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-width: 0;
}
.episode-number {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--red-bright);
  background: rgba(200, 16, 46, .1);
  border: 1px solid var(--red-dim);
  padding: 1px 5px;
  white-space: nowrap;
}
.episode-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.episode-duration {
  flex: 0 0 auto;
  font-size: 10.5px;
  color: var(--white-mute);
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  white-space: nowrap;
}
.episode-summary {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--white-mute);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comments-section {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.comments-heading {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .18em;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: 2px solid var(--red);
  padding-bottom: 3px;
}
.comment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
}
.comment-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.comment-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.comment-avatar {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.comment-nick {
  font-size: 10.5px;
  color: var(--white-mute);
  letter-spacing: .04em;
  text-align: center;
  overflow-wrap: anywhere;
}
.comment-body { min-width: 0; }
.comment-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--white-dim);
}
.recommend-region {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.recommend-heading {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .14em;
  margin-bottom: 8px;
  display: inline-block;
  border-bottom: 2px solid var(--red);
  padding-bottom: 3px;
}
.recommend-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 14px;
}
.recommend-item { min-width: 0; }
a[data-runtime="recommendation"] {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 9px;
  row-gap: 2px;
  padding: 5px 0;
  border-bottom: 1px dotted var(--line-2);
  color: var(--white-dim);
  text-decoration: none;
  align-items: start;
}
a[data-runtime="recommendation"]:hover { color: var(--white); }
a[data-runtime="recommendation"] img {
  grid-row: 1 / 3;
  width: 54px;
  height: 76px;
  object-fit: cover;
  background: #050506;
  border: 1px solid var(--line-2);
  filter: saturate(.7) brightness(.85);
}
a[data-runtime="recommendation"]:hover img { border-color: var(--red); filter: saturate(.95) brightness(.95); }
a[data-runtime="recommendation"] [data-runtime="name"] {
  font-size: 12px;
  font-weight: 700;
  color: inherit;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
a[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 10.5px;
  line-height: 1.45;
  color: var(--white-mute);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  background: #08090a;
}
.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 14px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 11.5px;
  color: var(--white-dim);
  text-decoration: none;
  letter-spacing: .06em;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--red-bright);
  border-bottom-color: var(--red);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
}
.friend-links-label {
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--white-mute);
  border-right: 1px solid var(--line-2);
  padding-right: 10px;
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 10.5px;
  color: var(--white-mute);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}
a.runtime-friend-link:hover {
  color: var(--white);
  border-bottom-color: var(--red-dim);
}
.footer-disclaimer {
  font-size: 10.5px;
  line-height: 1.6;
  color: #5c6069;
  max-width: 96ch;
}
@media (max-width: 1080px) {.overview-shell { grid-template-columns: minmax(0, 260px) minmax(0, 1fr); gap: 16px; }
.cast-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.details-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.recommend-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }}
@media (max-width: 860px) {.overview-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
  }
.poster-column { max-width: 320px; }
.episode-grid { grid-template-columns: minmax(0, 1fr); }
.comment-list { grid-template-columns: minmax(0, 1fr); gap: 0; }
.timeline-fixed-episode { width: 82px; padding: 6px 8px; }
.timeline-ep-number { font-size: 16px; }}
@media (max-width: 620px) {.header-top { gap: 8px; padding: 7px 12px; }
a[data-contract="site-name"] { font-size: 13px; }
a.runtime-category { font-size: 11px; padding: 3px 7px; }
.page-main { padding: 0 12px; }
.movie-title { font-size: 21px; }
.cast-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
.details-list { grid-template-columns: minmax(0, 1fr); }
.recommend-list { grid-template-columns: minmax(0, 1fr); }
.comment-item { grid-template-columns: 62px minmax(0, 1fr); gap: 8px; }
.timeline-scroll-shell { gap: 8px; }
.timeline-fixed-episode { width: 72px; }
.timeline-node { flex-basis: 168px; }
.timeline-node-active { flex-basis: 240px; }
.player-controls { gap: 3px; padding: 5px 6px; }
.ctrl-btn { font-size: 10px; padding: 3px 6px; }
.footer-inner { padding: 12px 12px 20px; }}
@media (max-width: 420px) {.cast-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ctrl-volume { flex-basis: 60px; }
.movie-title { font-size: 19px; }
.timeline-node { flex-basis: 150px; }
.timeline-node-active { flex-basis: 210px; }}

footer{text-align:center!important}
footer *{justify-content:center!important}
footer :is(div,nav,ul,ol,p,section,address){margin-left:auto!important;margin-right:auto!important}
