/* ============================================================
   里番网 - 汽车改装与视频社区 | y601t5.cn
   主样式表 v1.0
   原创设计：深夜赛道配色方案
   主色：#0A0E1A（深夜蓝）| 强调：#FF6B00（赛道橙）| 亮色：#00E5FF（氮气青）
   ============================================================ */

/* ---- CSS Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  background: #0A0E1A;
  color: #E8EAF0;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: #00E5FF; text-decoration: none; transition: color .25s; }
a:hover { color: #FF6B00; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; outline: none; }

/* ---- CSS Variables ---- */
:root {
  --primary: #0A0E1A;
  --secondary: #111827;
  --card-bg: #141B2D;
  --border: #1E2A42;
  --orange: #FF6B00;
  --cyan: #00E5FF;
  --text-main: #E8EAF0;
  --text-muted: #8892A4;
  --gradient-hero: linear-gradient(135deg, #0A0E1A 0%, #0D1829 50%, #0A1520 100%);
  --gradient-card: linear-gradient(145deg, #141B2D, #0F1624);
  --gradient-accent: linear-gradient(90deg, #FF6B00, #FF9500);
  --shadow-card: 0 4px 24px rgba(0,0,0,.45);
  --shadow-hover: 0 8px 40px rgba(255,107,0,.18);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: .3s ease;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-main); margin-bottom: .8rem; }

/* ---- Layout ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.row { display: flex; flex-wrap: wrap; gap: 24px; }
.col-2 { flex: 1 1 calc(50% - 12px); }
.col-3 { flex: 1 1 calc(33.333% - 16px); }
.col-4 { flex: 1 1 calc(25% - 18px); }

/* ---- Header / Navbar ---- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,14,26,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.6); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-wrap img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.logo-text { font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: .5px; }
.logo-text span { color: var(--orange); }

/* ---- Main Navigation ---- */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  color: var(--text-main);
  font-size: .92rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background .25s, color .25s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(255,107,0,.12);
  color: var(--orange);
}
.nav-cta {
  background: var(--gradient-accent) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 20px !important;
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); }

/* ---- Search Bar ---- */
.header-search {
  display: flex;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color .25s;
  flex: 0 1 260px;
}
.header-search:focus-within { border-color: var(--cyan); }
.header-search input {
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 14px;
  color: var(--text-main);
  font-size: .88rem;
  width: 100%;
}
.header-search input::placeholder { color: var(--text-muted); }
.header-search button {
  background: var(--gradient-accent);
  color: #fff;
  padding: 8px 14px;
  font-size: .85rem;
  white-space: nowrap;
}

/* ---- Mobile Menu Toggle ---- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: .32;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,14,26,.92) 40%, rgba(10,14,26,.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.4);
  color: var(--orange);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .5px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero p { font-size: 1.1rem; color: #B0BAD0; margin-bottom: 32px; max-width: 560px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(255,107,0,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,0,.5); color: #fff; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cyan);
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid var(--cyan);
  transition: background .25s, color .25s;
}
.btn-outline:hover { background: rgba(0,229,255,.1); color: var(--cyan); }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.hero-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--orange); }
.hero-stat-label { font-size: .82rem; color: var(--text-muted); }

/* ---- Section Titles ---- */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title .label {
  display: inline-block;
  background: rgba(255,107,0,.12);
  color: var(--orange);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.title-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ---- Cards ---- */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,107,0,.3);
}
.card-img { position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 20px; }
.card-tag {
  display: inline-block;
  background: rgba(0,229,255,.1);
  color: var(--cyan);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.card-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.card-meta { font-size: .8rem; color: var(--text-muted); display: flex; gap: 14px; }
.card-meta span { display: flex; align-items: center; gap: 4px; }

/* ---- Video Cards ---- */
.video-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(0,229,255,.15);
  border-color: rgba(0,229,255,.3);
}
.video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #0D1829;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.video-card:hover .video-thumb img { transform: scale(1.06); }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
  opacity: 0;
  transition: opacity .3s;
}
.video-card:hover .video-play-btn { opacity: 1; }
.play-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,107,0,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.85);
  transition: transform .3s;
  box-shadow: 0 4px 20px rgba(255,107,0,.5);
}
.video-card:hover .play-icon { transform: scale(1); }
.play-icon svg { width: 24px; height: 24px; fill: #fff; margin-left: 4px; }
.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,.75);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 600;
}
.video-info { padding: 14px 16px; }
.video-title { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.4; }
.video-stats { display: flex; gap: 14px; font-size: .78rem; color: var(--text-muted); }
.video-stats span { display: flex; align-items: center; gap: 4px; }

/* ---- Video Grid ---- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ---- Feature Modules ---- */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.module-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s, border-color .3s;
}
.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,0,.35);
}
.module-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,107,0,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.module-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.module-card p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ---- Expert Cards ---- */
.expert-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.expert-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.expert-img { position: relative; }
.expert-img img { width: 100%; height: 240px; object-fit: cover; }
.expert-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gradient-accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: .75rem;
  font-weight: 700;
}
.expert-info { padding: 20px; }
.expert-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.expert-role { color: var(--orange); font-size: .85rem; font-weight: 600; margin-bottom: 10px; }
.expert-desc { font-size: .85rem; color: var(--text-muted); margin-bottom: 14px; }
.expert-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.expert-tag {
  background: rgba(0,229,255,.08);
  color: var(--cyan);
  padding: 3px 9px;
  border-radius: 10px;
  font-size: .75rem;
}
.expert-btns { display: flex; gap: 8px; }
.btn-sm {
  padding: 7px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-sm-primary {
  background: var(--gradient-accent);
  color: #fff;
}
.btn-sm-outline {
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
}
.btn-sm-outline:hover { border-color: var(--cyan); color: var(--cyan); }

/* ---- AI Section ---- */
.ai-section { background: linear-gradient(135deg, #0D1829, #0A1520); }
.ai-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ai-feature {
  background: rgba(0,229,255,.04);
  border: 1px solid rgba(0,229,255,.12);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color .3s, transform .3s;
}
.ai-feature:hover { border-color: rgba(0,229,255,.4); transform: translateY(-4px); }
.ai-icon { font-size: 2rem; margin-bottom: 14px; }
.ai-feature h3 { color: var(--cyan); margin-bottom: 10px; }
.ai-feature p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ---- Community / Partners ---- */
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.partner-logo {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: border-color .25s, color .25s;
}
.partner-logo:hover { border-color: var(--orange); color: var(--orange); }

/* ---- Reviews ---- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.review-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .3s;
}
.review-card:hover { transform: translateY(-3px); }
.review-stars { color: #FFB800; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: .9rem; color: var(--text-main); margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: .9rem; }
.review-date { font-size: .78rem; color: var(--text-muted); }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  transition: background .25s;
}
.faq-q:hover { background: rgba(255,107,0,.06); }
.faq-q .faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,107,0,.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  padding: 0 22px;
  font-size: .9rem;
  color: var(--text-muted);
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }

/* ---- Contact / Footer Info ---- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.contact-icon { font-size: 2rem; margin-bottom: 14px; }
.contact-card h3 { margin-bottom: 8px; }
.contact-card p { font-size: .88rem; color: var(--text-muted); }

/* ---- QR Codes ---- */
.qr-section { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.qr-item { text-align: center; }
.qr-box {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 10px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.qr-box canvas { width: 100% !important; height: 100% !important; }
.qr-label { font-size: .82rem; color: var(--text-muted); }

/* ---- Social Share ---- */
.share-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 22px;
  font-size: .85rem;
  font-weight: 600;
  transition: transform .25s, opacity .25s;
}
.share-btn:hover { transform: translateY(-2px); opacity: .88; }
.share-wechat { background: #07C160; color: #fff; }
.share-weibo { background: #E6162D; color: #fff; }
.share-douyin { background: #161823; color: #fff; border: 1px solid #333; }
.share-bilibili { background: #00A1D6; color: #fff; }

/* ---- Footer ---- */
#site-footer {
  background: #070A14;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .logo-wrap { margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; color: var(--text-muted); line-height: 1.8; }
.footer-col h4 { font-size: .95rem; color: #fff; margin-bottom: 16px; font-weight: 700; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .85rem; color: var(--text-muted); transition: color .25s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--orange); }
.update-time { color: var(--text-muted); font-size: .8rem; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-muted);
  padding: 14px 0;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--orange); }

/* ---- Tabs ---- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.tab-btn {
  padding: 10px 20px;
  background: transparent;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s;
  margin-bottom: -1px;
}
.tab-btn.active, .tab-btn:hover { color: var(--orange); border-bottom-color: var(--orange); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ---- Badges ---- */
.badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 10px;
  font-size: .72rem;
  font-weight: 700;
}
.badge-orange { background: rgba(255,107,0,.15); color: var(--orange); }
.badge-cyan { background: rgba(0,229,255,.1); color: var(--cyan); }
.badge-green { background: rgba(16,185,129,.12); color: #10B981; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ---- Lazy Load ---- */
img[data-src] { opacity: 0; transition: opacity .4s; }
img.loaded { opacity: 1; }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}
.animate-fade-up { animation: fadeInUp .6s ease both; }
.animate-delay-1 { animation-delay: .1s; }
.animate-delay-2 { animation-delay: .2s; }
.animate-delay-3 { animation-delay: .3s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .module-grid, .ai-features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(10,14,26,.98); padding: 16px; border-bottom: 1px solid var(--border); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .menu-toggle { display: flex; }
  .header-search { display: none; }
  .hero { min-height: 75vh; }
  .hero-stats { gap: 20px; }
  .module-grid, .ai-features { grid-template-columns: 1fr; }
  .col-2, .col-3, .col-4 { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .video-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 14px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- Disturbance Tags (hidden, SEO noise) ---- */
.lfw-noise { display: none !important; }
