*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background-color: #0d0b09;
  background-image:
    linear-gradient(180deg, #150f0b 0%, #0d0b09 38%, #0b0a08 100%),
    repeating-linear-gradient(90deg, rgba(196, 152, 74, 0.035) 0 1px, transparent 1px 64px);
  color: #d8cdbc;
  font-family: "Songti SC", "Noto Serif SC", "Source Han Serif SC", "SimSun", Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
h1, h2, h3, p, ul, ol, dl, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: 0;
}
:focus-visible {
  outline: 1px solid #c9973f;
  outline-offset: 2px;
}
.shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 18px;
}
.page-main {
  display: block;
}
.section-heading {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #e7c877;
  text-shadow: 0 0 1px rgba(231, 200, 119, 0.4);
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(201, 151, 63, 0.28);
  position: relative;
}
.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 1px;
  background: #c9973f;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 9, 7, 0.94);
  border-bottom: 1px solid rgba(201, 151, 63, 0.3);
  backdrop-filter: blur(6px);
}
.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding-block: 8px;
}
.brand-zone {
  display: flex;
  align-items: center;
  min-width: 0;
}
a[data-contract="site-name"] {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #f0d68c;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(201, 151, 63, 0.35);
}
a[data-contract="site-name"]:hover {
  color: #fff0c2;
  text-decoration: none;
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 10px;
  min-width: 0;
  flex: 1 1 auto;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #c9b58c;
  text-decoration: none;
  padding: 3px 8px;
  border: 1px solid rgba(201, 151, 63, 0.24);
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
a.runtime-category:hover {
  color: #f5dfa4;
  text-decoration: none;
  border-color: rgba(201, 151, 63, 0.7);
  background: rgba(201, 151, 63, 0.09);
}
.movie-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.62fr);
  grid-template-areas:
    "head  head"
    "poster player"
    "body  body";
  column-gap: 20px;
  row-gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 18px 26px;
  border-bottom: 1px solid rgba(201, 151, 63, 0.22);
  background:
    radial-gradient(120% 90% at 18% 0%, rgba(120, 40, 30, 0.28) 0%, transparent 58%),
    linear-gradient(180deg, rgba(31, 21, 15, 0.9) 0%, rgba(13, 11, 9, 0.55) 100%);
}
.overview-head {
  grid-area: head;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 151, 63, 0.18);
}
.movie-title {
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.12;
  color: #f3e2b6;
  text-shadow:
    0 0 18px rgba(201, 151, 63, 0.28),
    0 1px 0 rgba(0, 0, 0, 0.8);
}
.movie-tagline {
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: #b5644f;
}
.overview-poster {
  grid-area: poster;
  align-self: start;
  width: 100%;
  max-width: 300px;
  border: 1px solid rgba(201, 151, 63, 0.42);
  background: #0a0908;
  position: relative;
  overflow: hidden;
}
.overview-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(10, 8, 6, 0.86) 100%);
  pointer-events: none;
}
.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06);
}
.overview-player {
  grid-area: player;
  align-self: start;
  min-width: 0;
}
.hero-video-shell {
  position: relative;
  width: 100%;
  border: 1px solid rgba(201, 151, 63, 0.42);
  background: #060504;
  transition: box-shadow 0.2s ease;
}
.hero-video {
  display: block;
  width: 100%;
  background: #060504;
}
.hero-video-shell.is-theater {
  box-shadow: 0 0 0 1px rgba(201, 151, 63, 0.55), 0 12px 40px rgba(0, 0, 0, 0.75);
}
.hero-video-shell.is-lights-off {
  box-shadow: 0 0 0 1px rgba(201, 151, 63, 0.7), 0 0 60px rgba(0, 0, 0, 0.95);
}
.hero-video-shell.is-lights-off::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: 1;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 8px 10px;
  border-top: 1px solid rgba(201, 151, 63, 0.3);
  background: linear-gradient(180deg, rgba(24, 17, 12, 0.98) 0%, rgba(12, 10, 8, 0.98) 100%);
}
.ctrl-btn {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #cdbb95;
  padding: 4px 9px;
  border: 1px solid rgba(201, 151, 63, 0.3);
  background: rgba(201, 151, 63, 0.05);
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.ctrl-btn:hover {
  color: #f6e3af;
  border-color: rgba(201, 151, 63, 0.75);
  background: rgba(201, 151, 63, 0.14);
}
.ctrl-btn.is-playing {
  color: #f0c96a;
  border-color: rgba(240, 201, 106, 0.8);
}
.ctrl-btn.is-muted {
  color: #c06a52;
  border-color: rgba(192, 106, 82, 0.7);
}
.ctrl-btn.is-active {
  color: #f6e3af;
  border-color: #c9973f;
  background: rgba(201, 151, 63, 0.2);
}
.ctrl-range {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.ctrl-progress-label {
  flex: 1 1 140px;
  min-width: 120px;
}
.ctrl-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #9c8a68;
  white-space: nowrap;
}
.ctrl-range-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  min-width: 0;
  height: 14px;
  background: transparent;
  cursor: pointer;
}
.ctrl-range-input::-webkit-slider-runnable-track {
  height: 3px;
  background: linear-gradient(90deg, #a8783a 0%, #5a4526 100%);
  border: none;
}
.ctrl-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  margin-top: -4px;
  border-radius: 0;
  background: #e7c877;
  border: 1px solid #2a1c10;
}
.ctrl-range-input::-moz-range-track {
  height: 3px;
  background: #5a4526;
  border: none;
}
.ctrl-range-input::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: #e7c877;
  border: 1px solid #2a1c10;
}
.ctrl-volume-label {
  flex: 0 1 110px;
  min-width: 84px;
}
.ctrl-select-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ctrl-select {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #cdbb95;
  background: #17110c;
  border: 1px solid rgba(201, 151, 63, 0.3);
  padding: 3px 5px;
  border-radius: 0;
}
.overview-body {
  grid-area: body;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
  gap: 18px 22px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 151, 63, 0.16);
}
.cast-panel {
  grid-column: 1;
  min-width: 0;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 6px;
  align-items: start;
}
.cast-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 9px;
  row-gap: 2px;
  align-items: center;
  padding: 7px 8px;
  border: 1px solid rgba(201, 151, 63, 0.22);
  background: rgba(201, 151, 63, 0.035);
}
.cast-avatar {
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 17px;
  font-weight: 700;
  color: #f0d68c;
  background: linear-gradient(160deg, #2b1d12 0%, #14100c 100%);
  border: 1px solid rgba(201, 151, 63, 0.55);
  letter-spacing: 0;
}
.cast-role {
  font-size: 13px;
  font-weight: 700;
  color: #e6d5ae;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.cast-faction {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #b5644f;
  white-space: nowrap;
}
.synopsis-panel {
  grid-column: 2;
  min-width: 0;
}
.synopsis-seo {
  font-size: 13.5px;
  line-height: 1.7;
  color: #cbbfa8;
  padding: 8px 10px;
  border-left: 2px solid rgba(201, 151, 63, 0.55);
  background: rgba(201, 151, 63, 0.05);
}
.synopsis-paragraphs {
  margin-top: 8px;
  display: grid;
  gap: 5px;
}
.synopsis-text {
  font-size: 13px;
  line-height: 1.7;
  color: #a89a82;
  padding-left: 10px;
  border-left: 1px solid rgba(201, 151, 63, 0.16);
}
.episode-status-panel {
  grid-column: 1;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(201, 151, 63, 0.24);
  background: rgba(120, 40, 30, 0.1);
}
.status-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
}
.status-current {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #d9603f;
}
.status-total {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #b9a887;
}
.details-panel {
  grid-column: 2;
  min-width: 0;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0 16px;
  border-top: 1px solid rgba(201, 151, 63, 0.14);
}
.detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(201, 151, 63, 0.14);
  min-width: 0;
}
.detail-key {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #96866a;
  white-space: nowrap;
}
.detail-value {
  font-size: 13px;
  color: #ddcfb2;
  text-align: right;
  overflow-wrap: anywhere;
}
.timeline-strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 18px 30px;
  border-bottom: 1px solid rgba(201, 151, 63, 0.22);
}
.timeline-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(216px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding: 12px 2px 14px;
  position: relative;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 151, 63, 0.1) 0%, rgba(201, 151, 63, 0.55) 50%, rgba(201, 151, 63, 0.1) 100%);
  pointer-events: none;
}
.timeline-node {
  scroll-snap-align: start;
  position: relative;
  padding: 26px 10px 10px;
  border: 1px solid rgba(201, 151, 63, 0.22);
  background: linear-gradient(180deg, rgba(30, 21, 14, 0.92) 0%, rgba(13, 11, 9, 0.92) 100%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 12px;
  width: 9px;
  height: 9px;
  background: #8a5f28;
  border: 1px solid #d9ae5c;
  transform: rotate(45deg);
}
.timeline-timecode {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #d9603f;
}
.timeline-label {
  font-size: 12.5px;
  line-height: 1.6;
  color: #a3957d;
}
.timeline-node.is-current {
  border-color: rgba(217, 96, 63, 0.75);
  background: linear-gradient(180deg, rgba(66, 26, 19, 0.85) 0%, rgba(20, 13, 10, 0.95) 100%);
  box-shadow: 0 0 0 1px rgba(217, 96, 63, 0.25), 0 6px 22px rgba(120, 30, 18, 0.35);
}
.timeline-node.is-current::before {
  background: #d9603f;
  border-color: #ffb28f;
  box-shadow: 0 0 10px rgba(217, 96, 63, 0.85);
}
.timeline-node.is-current .timeline-timecode {
  color: #ff8a63;
}
.timeline-node.is-current .timeline-label {
  color: #e2d0b1;
}
.episodes-panel {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 18px 26px;
  border-bottom: 1px solid rgba(201, 151, 63, 0.22);
}
.episode-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 8px;
  align-items: start;
}
.episode-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "num title dur"
    "num summary summary";
  column-gap: 10px;
  row-gap: 3px;
  align-items: baseline;
  padding: 9px 10px;
  border: 1px solid rgba(201, 151, 63, 0.2);
  background: rgba(201, 151, 63, 0.03);
  transition: border-color 0.15s ease, background-color 0.15s ease;
  min-width: 0;
}
.episode-item:hover {
  border-color: rgba(201, 151, 63, 0.6);
  background: rgba(201, 151, 63, 0.08);
}
.episode-number {
  grid-area: num;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  color: #c9973f;
  letter-spacing: 0;
  min-width: 1.4em;
}
.episode-title {
  grid-area: title;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ecd9ab;
  overflow-wrap: anywhere;
}
.episode-duration {
  grid-area: dur;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #96866a;
  white-space: nowrap;
}
.episode-summary {
  grid-area: summary;
  font-size: 12.5px;
  line-height: 1.6;
  color: #9c8f79;
}
.recommend-region {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 18px 22px;
  border-bottom: 1px solid rgba(201, 151, 63, 0.16);
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 8px;
  align-items: start;
}
a.recommend-card {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(201, 151, 63, 0.22);
  background: rgba(201, 151, 63, 0.035);
  color: #cbbfa8;
  text-decoration: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  min-width: 0;
}
a.recommend-card:hover {
  border-color: rgba(201, 151, 63, 0.7);
  background: rgba(201, 151, 63, 0.1);
  text-decoration: none;
}
[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(201, 151, 63, 0.24);
  background: #0a0908;
}
.recommend-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #e6d5ae;
  overflow-wrap: anywhere;
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.55;
  color: #94876f;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comments-column {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 18px 30px;
}
.comment-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
  gap: 8px;
  align-items: start;
}
.comment-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 11px;
  border: 1px solid rgba(201, 151, 63, 0.2);
  border-left: 2px solid rgba(217, 96, 63, 0.5);
  background: rgba(201, 151, 63, 0.03);
  min-width: 0;
}
.comment-nickname {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #c9973f;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.65;
  color: #a89a82;
}
.site-footer {
  border-top: 1px solid rgba(201, 151, 63, 0.3);
  background: linear-gradient(180deg, #100c09 0%, #080706 100%);
  padding-block: 20px 26px;
}
.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-disclaimer {
  font-size: 12px;
  line-height: 1.7;
  color: #7d7160;
  max-width: 900px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  padding-block: 8px;
  border-top: 1px solid rgba(201, 151, 63, 0.14);
  border-bottom: 1px solid rgba(201, 151, 63, 0.14);
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #cdbb95;
  text-decoration: none;
  white-space: nowrap;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #f5dfa4;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
}
.friend-links-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: #96866a;
  padding-right: 8px;
  border-right: 1px solid rgba(201, 151, 63, 0.28);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #8f8striped;
  color: #8f8570;
  text-decoration: none;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: #e0c88a;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.player {
  position: relative;
}
.play, .pause, .mute, .volume, .progress, .speed, .timeupdate, .input, .click, .change {
  transition: opacity 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.fullscreen .hero-video-shell, .is-theater .hero-video-shell {
  box-shadow: 0 0 0 1px rgba(201, 151, 63, 0.6);
}
.is-lights-off .player-controls {
  background: #050403;
}
.pip {
  opacity: 0.95;
}
.theater {
  letter-spacing: 0.1em;
}
.light {
  color: #e7c877;
}
@media (max-width: 980px) {.movie-overview {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "head"
      "poster"
      "player"
      "body";
    row-gap: 12px;
  }
.overview-poster {
    max-width: 260px;
  }
.overview-body {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-panel, .synopsis-panel, .episode-status-panel, .details-panel {
    grid-column: 1;
  }
.cast-list {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
.details-list {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }}
@media (max-width: 720px) {body {
    font-size: 14px;
  }
.shell {
    padding-inline: 12px;
  }
.header-shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-block: 7px;
  }
.category-nav {
    justify-content: flex-start;
    width: 100%;
    gap: 5px 8px;
  }
.movie-overview {
    padding: 16px 12px 20px;
    column-gap: 0;
  }
.movie-title {
    font-size: clamp(24px, 7vw, 32px);
  }
.movie-tagline {
    font-size: 12.5px;
    letter-spacing: 0.1em;
  }
.overview-poster {
    max-width: 200px;
  }
.player-controls {
    gap: 5px 6px;
    padding: 7px 8px;
  }
.ctrl-progress-label {
    flex: 1 1 100%;
    min-width: 0;
  }
.ctrl-volume-label {
    flex: 0 1 100px;
  }
.cast-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
.episode-list {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
.comment-list {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-strip, .episodes-panel, .recommend-region, .comments-column {
    padding-inline: 12px;
  }
.timeline-track {
    grid-auto-columns: minmax(190px, 1fr);
  }}
@media (max-width: 440px) {a[data-contract="site-name"] {
    font-size: 17px;
    letter-spacing: 0.14em;
  }
.overview-poster {
    max-width: 168px;
  }
.cast-list {
    grid-template-columns: minmax(0, 1fr);
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-grid {
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  }
.ctrl-btn {
    padding: 4px 7px;
    font-size: 11.5px;
  }
.timeline-track {
    grid-auto-columns: minmax(172px, 1fr);
  }}
@media (prefers-reduced-motion: reduce) {html {
    scroll-behavior: auto;
  }
*, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }}

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}
