/* lookzn homepage modernization - 2026 */
:root {
  --lk-ink: #0b1220;
  --lk-panel: #121a27;
  --lk-line: #243247;
  --lk-text: #e8eef7;
  --lk-muted: #b7c4d6;
  --lk-accent: #1f8fff;
  --lk-accent-2: #2ad4c0;
}

html { scroll-behavior: smooth; }

/* ===== Hero with real image ===== */
.lk-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  color: var(--lk-text);
  overflow: hidden;
  background: #070b12;
}
.lk-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: lkKen 18s ease-in-out infinite alternate;
}
@keyframes lkKen {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .lk-hero-bg { animation: none; transform: none; }
}
.lk-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(92vh, 820px);
}
.lk-hero-copy {
  max-width: 760px;
  margin-bottom: 28px;
  transition: opacity .28s ease, transform .28s ease;
}
.lk-hero-copy.is-out {
  opacity: 0;
  transform: translateY(10px);
}
.lk-hero-copy.is-in {
  opacity: 1;
  transform: none;
}
.lk-brand {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lk-accent-2);
  margin: 0 0 16px;
  font-weight: 650;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.lk-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(1.95rem, 4.4vw, 3.25rem);
  line-height: 1.16;
  font-weight: 740;
  max-width: 15em;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.lk-hero p.lead {
  margin: 0 0 22px;
  max-width: 760px;
  color: rgba(255,255,255,.94);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: .01em;
}
.lk-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}
.lk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  text-decoration: none !important;
  font-weight: 650;
  font-size: 15px;
  border: 1px solid transparent;
  transition: .18s ease;
}
.lk-btn-primary {
  background: linear-gradient(135deg, var(--lk-accent), #4aa8ff);
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(31,143,255,.32);
}
.lk-btn-primary:hover { filter: brightness(1.06); transform: translateY(-1px); }
.lk-btn-ghost {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  color: #fff !important;
  backdrop-filter: blur(8px);
}
.lk-btn-ghost:hover { background: rgba(255,255,255,.14); }

/* ===== Interactive tabs / auto carousel ===== */
.lk-tabs {
  background: rgba(10,16,26,.72);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  margin-top: auto;
}
.lk-tab-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.lk-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: #9eb0c6;
  padding: 16px 10px;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transition: .18s ease;
  position: relative;
}
.lk-tab:hover { color: #fff; background: rgba(255,255,255,.04); }
.lk-tab.is-active {
  color: #fff;
  background: rgba(31,143,255,.16);
}
.lk-tab.is-active::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lk-accent), var(--lk-accent-2));
  border-radius: 3px 3px 0 0;
}
.lk-tab-progress {
  height: 2px;
  background: rgba(255,255,255,.08);
}
.lk-tab-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--lk-accent), var(--lk-accent-2));
}

/* ===== sections ===== */
.lk-section {
  padding: 64px 0 28px;
  background: #f5f7fb;
}
.lk-section.alt { background: #eef2f7; }
.lk-section-head {
  text-align: center;
  margin: 0 auto 34px;
  max-width: 760px;
  padding: 0 16px;
}
.lk-section-head .eyebrow {
  display: inline-block;
  color: var(--lk-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.lk-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  color: var(--lk-ink);
  font-weight: 720;
}
.lk-section-head h2 a { color: inherit !important; text-decoration: none !important; }
.lk-section-head p {
  margin: 0;
  color: #667891;
  line-height: 1.7;
  font-size: 15px;
}
.lk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 20px;
}
.lk-card {
  background: #fff;
  border: 1px solid #e3e9f2;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
  text-decoration: none !important;
  color: inherit !important;
  display: block;
  height: 100%;
}
.lk-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}
.lk-card .thumb {
  aspect-ratio: 16 / 10;
  background: #d9e2ef;
  overflow: hidden;
}
.lk-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lk-card .body { padding: 14px 14px 16px; }
.lk-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--lk-ink);
  font-weight: 650;
  min-height: 2.9em;
}
.lk-more {
  text-align: center;
  padding: 8px 0 40px;
}
.lk-more a {
  color: var(--lk-accent) !important;
  font-weight: 600;
  text-decoration: none !important;
}
.lk-cta-band {
  margin: 18px auto 10px;
  max-width: 1180px;
  padding: 28px 24px;
  border-radius: 16px;
  background: linear-gradient(120deg, #0f1a2b, #14355c 55%, #0f4d4a);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lk-cta-band h3 { margin: 0 0 6px; font-size: 1.25rem; }
.lk-cta-band p { margin: 0; color: #bcd0e8; font-size: 14px; }

#index-main .section-block.featured-media,
#index-main .tm-slider-container.homepage-slider { display: none !important; }
/* 仅首页覆盖顶栏；内页沿用原 tk.css / templates.css，避免栏目页顶栏变丑 */
body.home-page .header-1 {
  background: rgba(11,18,32,.72) !important;
  backdrop-filter: blur(10px);
}
body.home-page .header-1 .navigation > ul > li > a,
body.home-page .header-1 .navigation > ul > li > a font {
  color: #ffffff !important;
  font-size: 1.4rem !important;
  opacity: 1 !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

@media (max-width: 980px) {
  .lk-grid { grid-template-columns: repeat(2, 1fr); }
  .lk-hero-inner { padding: 96px 16px 28px; }
  .lk-tab { font-size: 13px; padding: 14px 6px; }
  .lk-hero-inner { padding: 96px 16px 20px; min-height: 86vh; }
}
@media (max-width: 768px) {
  /* Keep all 4 promo tabs visible above fixed bottom bar */
  body.home-page .lk-hero {
    height: auto !important;
    min-height: 100dvh !important;
    overflow: visible !important;
  }
  body.home-page .lk-hero-inner {
    height: auto !important;
    min-height: calc(100dvh - 8px) !important;
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
    justify-content: flex-end !important;
  }
  .lk-tabs {
    flex-shrink: 0;
    width: 100%;
    margin-top: 12px;
    position: relative;
    z-index: 6;
  }
  .lk-tab-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lk-tab {
    font-size: 13px;
    padding: 12px 8px;
    line-height: 1.35;
    white-space: normal;
  }
}
@media (max-width: 640px) {
  .lk-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .lk-hero h1 { font-size: 1.7rem; }
  .lk-tabs { border-radius: 12px; }
  .lk-card h3 { min-height: 0; font-size: 14px; }
  .lk-section { padding-top: 42px; }
  .lk-hero-copy { margin-bottom: 14px; }
  .lk-hero p.lead {
    font-size: 1.12rem !important;
    line-height: 1.65 !important;
  }
}
@media (max-width: 420px) {
  .lk-grid { grid-template-columns: 1fr; }
}

/* Mobile bottom bar: space icon and label */
@media only screen and (max-width: 768px) {
  .lfooter {
    background-color: #0f1a2b !important;
    height: auto !important;
    min-height: 64px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .lfooter ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .lfooter ul li {
    float: none !important;
    width: 25%;
    padding: 8px 0 10px !important;
  }
  .lfooter ul li a {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1.2 !important;
    color: #fff !important;
    text-decoration: none !important;
  }
  .lfooter ul li a img {
    display: block;
    width: 26px;
    height: 26px;
    margin: 0;
  }
  .lfooter ul li a p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    font-size: 11px;
  }
}

/* ===== contact float ===== */
.lk-float {
  position: fixed;
  right: 16px;
  bottom: 92px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lk-float a, .lk-float button {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: #132033;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(15,23,42,.22);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  padding: 0;
}
.lk-float a:hover, .lk-float button:hover { background: #1b2d46; }
.lk-float .wx { background: #07c160; border-color: transparent; }
.lk-float .tel { background: #1f8fff; border-color: transparent; font-size: 12px; }
.lk-wx-panel {
  display: none;
  position: absolute;
  right: 64px;
  bottom: 0;
  width: 180px;
  background: #fff;
  color: #122033;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 16px 36px rgba(15,23,42,.22);
  text-align: center;
}
.lk-wx-panel.open { display: block; }
.lk-wx-panel img { width: 156px; height: 156px; object-fit: contain; display: block; margin: 0 auto 8px; }
.lk-wx-panel p { margin: 0; font-size: 12px; color: #667891; line-height: 1.45; }
.lk-float-wrap { position: relative; }

/* Footer: keep service titles on one line + restore QR column */
.footer-top .content-grid-3 {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.footer-top .content-grid-3 > .grid-item {
  float: none !important;
  box-sizing: border-box;
}
.footer-top .content-grid-3 > .foot-nav:not(.foot-services) {
  width: 26% !important;
  flex: 0 0 26%;
}
.footer-top .content-grid-3 > .foot-services {
  width: 42% !important;
  flex: 0 0 42%;
  padding-right: 12px;
}
.footer-top .content-grid-3 > .foot-qrcode {
  width: 32% !important;
  flex: 0 0 32%;
  text-align: center;
}
.footer-top .foot-services ul li a {
  white-space: nowrap;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer-top .foot-qrcode .f-qrcode {
  margin: 0 auto 10px;
}
.footer-top .foot-qrcode .f-qrcode img {
  width: 148px;
  height: 148px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
  box-sizing: border-box;
}
.footer-top .foot-qr-tip {
  margin: 0;
  color: #9bb0c8;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .footer-top .content-grid-3 {
    flex-wrap: wrap;
  }
  .footer-top .content-grid-3 > .foot-nav:not(.foot-services),
  .footer-top .content-grid-3 > .foot-services,
  .footer-top .content-grid-3 > .foot-qrcode {
    width: 100% !important;
    flex: 0 0 100%;
  }
  .footer-top .foot-services ul li a {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .lk-float { right: 10px; bottom: 86px; }
  .lk-float a, .lk-float button { width: 46px; height: 46px; border-radius: 12px; }
  .lk-wx-panel { right: 56px; width: 160px; }
  .lk-wx-panel img { width: 136px; height: 136px; }
  .lfooter { background: #0f1a2b !important; }
  .lfooter ul li a { font-size: 11px; }
}

/* 勿全局覆盖 .inner-bg：内页栏目横幅依赖 tk.css 的 min-height/padding-top + 背景图 */


/* ===== full-bleed first screen ===== */
html, body.home-page {
  background: #070b12 !important;
}
body.home-page #page-body-wrap,
body.home-page .wrapper,
body.home-page .wrapper-inner,
body.home-page #index-main.content {
  background: #070b12 !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh;
  min-height: 100dvh;
}
body.home-page .header-1 {
  position: absolute !important;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(7,11,18,.72), rgba(7,11,18,0)) !important;
  box-shadow: none !important;
}
.lk-hero {
  min-height: 100vh !important;
  min-height: 100dvh !important;
  height: 100vh;
  height: 100dvh;
  margin: 0 !important;
  padding: 0 !important;
  align-items: stretch !important;
}
.lk-hero-inner {
  min-height: 100vh !important;
  min-height: 100dvh !important;
  height: 100%;
  box-sizing: border-box;
  padding: calc(72px + env(safe-area-inset-top, 0px)) 20px 18px !important;
  justify-content: flex-end !important;
}
.lk-hero-bg {
  background-color: #070b12;
}
body.home-page .lk-section {
  margin-top: 0;
}
@media (max-width: 768px) {
  body.home-page .lk-float { bottom: 86px; }
  .lk-hero-inner {
    padding: calc(64px + env(safe-area-inset-top, 0px)) 14px calc(84px + env(safe-area-inset-bottom, 0px)) !important;
  }
  body.home-page .lk-hero {
    height: auto !important;
    min-height: 100dvh !important;
    overflow: visible !important;
  }
  body.home-page .lk-hero-inner {
    height: auto !important;
    min-height: calc(100dvh - 4px) !important;
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
  }
}


/* ===== full-bleed harden ===== */
body.home-page,
body.home-page #page-body-wrap,
body.home-page .wrapper,
body.home-page .wrapper-inner {
  overflow-x: hidden;
  background: #070b12 !important;
}
body.home-page #index-main.content.clearfix.reveal-side-navigation {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: none !important;
  background: #070b12 !important;
}
body.home-page .lk-hero {
  width: 100vw;
  max-width: 100%;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  height: 100vh !important;
  height: 100dvh !important;
}
body.home-page .lk-hero-inner {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  min-height: 100% !important;
  height: 100% !important;
  padding-top: 88px !important;
  padding-bottom: 16px !important;
}
@media (max-width: 768px) {
  body.home-page .lk-hero-inner {
    height: auto !important;
    min-height: calc(100dvh - 4px) !important;
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
  }
}
body.home-page .lk-section:first-of-type {
  border-top: 0;
}
/* kill theme gaps under hero */
body.home-page .section-block,
body.home-page .featured-media { margin: 0 !important; }

/* FAQ — align with light content sections */
.lk-faq {
  padding: 56px 0 64px;
  background: #f5f7fb;
  color: var(--lk-ink, #0f1a2b);
  border-top: 1px solid #e3e9f2;
}
.lk-faq .lk-section-head { margin-bottom: 28px; }
.lk-faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 10px;
}
.lk-faq-list details {
  border: 1px solid #e3e9f2;
  border-radius: 14px;
  padding: 0;
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .02);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.lk-faq-list details[open] {
  border-color: #c9d7ea;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
}
.lk-faq-list summary {
  cursor: pointer;
  font-weight: 650;
  font-size: 15px;
  line-height: 1.5;
  color: var(--lk-ink, #0f1a2b);
  list-style: none;
  padding: 16px 18px 16px 44px;
  position: relative;
}
.lk-faq-list summary::-webkit-details-marker { display: none; }
.lk-faq-list summary::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--lk-accent, #1f8fff);
  border-bottom: 2px solid var(--lk-accent, #1f8fff);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .18s ease;
}
.lk-faq-list details[open] summary::before {
  transform: translateY(-35%) rotate(225deg);
}
.lk-faq-list details p {
  margin: 0;
  padding: 0 18px 16px 44px;
  color: #667891;
  line-height: 1.75;
  font-size: 14px;
}
@media (max-width: 767px) {
  .lk-faq { padding: 42px 0 48px; }
  .lk-faq-list summary { font-size: 14px; padding: 14px 14px 14px 40px; }
  .lk-faq-list details p { padding: 0 14px 14px 40px; font-size: 13px; }
}

/* page-content paragraph spacing */
.page-content p,
.com-cnt.page-content p,
.bp-content p {
  margin: 0 0 1.15em;
  line-height: 1.85;
  text-indent: 2em;
}
.page-content p:last-child {
  margin-bottom: 0.4em;
}


/* ===== Article / page content normalize (backend layout polish) ===== */
/* 主标题：22px 黑体 */
.blog-post-wrap .bp-title,
.product-show .ps-title {
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  letter-spacing: 0.02em;
  margin: 0 0 12px !important;
  color: #1a2433 !important;
  font-family: SimHei, "黑体", "Heiti SC", "Microsoft YaHei", "PingFang SC", sans-serif !important;
  text-align: center !important;
}
.blog-post-wrap .bp-desc,
.product-show .ps-desc {
  font-size: 13px !important;
  color: #7a8799 !important;
  margin: 0 0 28px !important;
}

.page-content,
.com-cnt.page-content,
.bp-content,
.n-content,
.about-page-wrap .page-content {
  font-size: 16px !important;
  line-height: 1.9 !important;
  color: #2c3645 !important;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  font-family: SimSun, "宋体", "Songti SC", "Noto Serif CJK SC", serif !important;
}

/* neutralize Word/editor inline mess while keeping structure */
.page-content span,
.page-content font,
.page-content strong,
.page-content b,
.page-content em,
.page-content i,
.page-content a,
.n-content span,
.n-content font,
.bp-content span,
.bp-content font {
  font-size: inherit !important;
  font-family: inherit !important;
  line-height: inherit !important;
  background: transparent !important;
}

/* 正文：16px 宋体 */
.page-content p,
.n-content p,
.bp-content p,
.about-page-wrap .page-content p,
.page-content li,
.n-content li,
.bp-content li {
  margin: 0 0 1em !important;
  padding: 0 !important;
  line-height: 1.9 !important;
  text-indent: 0 !important;
  text-align: left !important;
  font-size: 16px !important;
  color: #2c3645 !important;
  font-family: SimSun, "宋体", "Songti SC", "Noto Serif CJK SC", serif !important;
}
.page-content li,
.n-content li,
.bp-content li {
  margin: 0 0 0.35em !important;
}

/* keep intentionally centered blocks (usually images/captions) */
.page-content p[style*="text-align:center"],
.page-content p[style*="text-align: center"],
.page-content p[align="center"],
.n-content p[style*="text-align:center"],
.n-content p[style*="text-align: center"],
.bp-content p[style*="text-align:center"],
.bp-content p[style*="text-align: center"] {
  text-align: center !important;
  text-indent: 0 !important;
}

/* 文中一级标题：20px 楷体 */
.page-content h1, .n-content h1, .bp-content h1,
.page-content h2, .n-content h2, .bp-content h2,
.page-content h3, .n-content h3, .bp-content h3 {
  font-size: 20px !important;
  margin: 1.35em 0 0.65em !important;
  line-height: 1.5 !important;
  font-weight: 700 !important;
  color: #1a2433 !important;
  font-family: KaiTi, "楷体", "STKaiti", "Kaiti SC", "KaiTi_GB2312", serif !important;
}
/* 文中二级标题：18px 楷体 */
.page-content h4, .n-content h4, .bp-content h4,
.page-content h5, .n-content h5, .bp-content h5,
.page-content h6, .n-content h6, .bp-content h6 {
  font-size: 18px !important;
  margin: 1.2em 0 0.55em !important;
  line-height: 1.5 !important;
  font-weight: 700 !important;
  color: #1a2433 !important;
  font-family: KaiTi, "楷体", "STKaiti", "Kaiti SC", "KaiTi_GB2312", serif !important;
}
.page-content h1:first-child, .n-content h1:first-child, .bp-content h1:first-child,
.page-content h2:first-child, .n-content h2:first-child, .bp-content h2:first-child,
.page-content h3:first-child, .n-content h3:first-child, .bp-content h3:first-child {
  margin-top: 0.4em !important;
}

.page-content ul, .page-content ol,
.n-content ul, .n-content ol,
.bp-content ul, .bp-content ol {
  margin: 0 0 1em 1.4em !important;
  padding: 0 !important;
  line-height: 1.85 !important;
}
.page-content li, .n-content li, .bp-content li {
  margin: 0 0 0.35em !important;
  line-height: 1.85 !important;
  text-align: left !important;
  font-size: 16px !important;
  font-family: SimSun, "宋体", "Songti SC", "Noto Serif CJK SC", serif !important;
}

.page-content img, .n-content img, .bp-content img, .com-cnt img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 12px auto !important;
}
.page-content table, .n-content table, .bp-content table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 1em 0 !important;
  font-size: 14px !important;
}
.page-content td, .page-content th,
.n-content td, .n-content th {
  padding: 8px 10px !important;
  border: 1px solid #e6ebf2 !important;
  text-align: left !important;
  vertical-align: top !important;
  line-height: 1.6 !important;
}
.page-content blockquote, .n-content blockquote {
  margin: 1em 0 !important;
  padding: 12px 16px !important;
  border-left: 3px solid #1f8fff !important;
  background: #f5f8fc !important;
  color: #445266 !important;
}

/* hide empty editor paragraphs */
.page-content p:empty,
.n-content p:empty,
.bp-content p:empty {
  display: none !important;
}
