/* ============================================
   在线看片影视传媒 - 原创样式表
   品牌: 在线看片 | 域名: cyjLhq.cn
   ============================================ */

/* CSS Variables */
:root {
  --xh-primary: #E8436F;
  --xh-secondary: #2D1B69;
  --xh-accent: #FF8C42;
  --xh-bg-light: #FFF5F7;
  --xh-bg-dark: #1A0E2E;
  --xh-text: #2C2C2C;
  --xh-text-light: #666666;
  --xh-card-bg: #FFFFFF;
  --xh-gradient: linear-gradient(135deg, #E8436F, #2D1B69);
  --xh-gradient-warm: linear-gradient(135deg, #FF8C42, #E8436F);
  --xh-shadow: 0 4px 20px rgba(45, 27, 105, 0.1);
  --xh-shadow-hover: 0 8px 32px rgba(232, 67, 111, 0.2);
  --xh-radius: 12px;
  --xh-radius-sm: 8px;
  --xh-transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--xh-text);
  background: var(--xh-bg-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--xh-primary); text-decoration: none; transition: var(--xh-transition); }
a:hover { color: var(--xh-secondary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Container */
.xh-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.xh-section { padding: 60px 0; }
.xh-section-dark { background: var(--xh-bg-dark); color: #fff; }
.xh-section-alt { background: #fff; }

/* Section Title */
.xh-section-title {
  text-align: center;
  margin-bottom: 48px;
}
.xh-section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--xh-secondary);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.xh-section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--xh-gradient);
  margin: 12px auto 0;
  border-radius: 2px;
}
.xh-section-dark .xh-section-title h2 { color: #fff; }
.xh-section-title p {
  color: var(--xh-text-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.xh-section-dark .xh-section-title p { color: rgba(255,255,255,0.7); }

/* ============ HEADER ============ */
.xh-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.xh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.xh-logo { display: flex; align-items: center; gap: 10px; }
.xh-logo img { height: 42px; width: auto; }
.xh-logo span {
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--xh-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.xh-nav { display: flex; align-items: center; gap: 4px; }
.xh-nav a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--xh-text);
  border-radius: var(--xh-radius-sm);
  transition: var(--xh-transition);
  white-space: nowrap;
}
.xh-nav a:hover, .xh-nav a.active {
  color: var(--xh-primary);
  background: rgba(232, 67, 111, 0.08);
}
.xh-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.xh-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--xh-text);
  margin: 5px 0;
  transition: var(--xh-transition);
}

/* Search Bar */
.xh-search-bar {
  background: linear-gradient(135deg, rgba(232,67,111,0.05), rgba(45,27,105,0.05));
  padding: 14px 0;
  border-bottom: 1px solid rgba(232,67,111,0.1);
}
.xh-search-form {
  display: flex;
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: var(--xh-transition);
}
.xh-search-form:focus-within { border-color: var(--xh-primary); }
.xh-search-form input {
  flex: 1;
  border: none;
  padding: 12px 24px;
  font-size: 0.95rem;
  outline: none;
  background: transparent;
  color: var(--xh-text);
}
.xh-search-form input::placeholder { color: #aaa; }
.xh-search-form button {
  background: var(--xh-gradient);
  color: #fff;
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--xh-transition);
}
.xh-search-form button:hover { opacity: 0.9; }

/* ============ HERO / BANNER ============ */
.xh-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--xh-bg-dark);
}
.xh-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  transition: opacity 1s ease;
}
.xh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,14,46,0.85), rgba(232,67,111,0.4));
}
.xh-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 640px;
  padding: 60px 0;
}
.xh-hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}
.xh-hero-content h1 em {
  font-style: normal;
  color: var(--xh-accent);
}
.xh-hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.8;
}
.xh-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.xh-hero-stat { text-align: center; }
.xh-hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--xh-accent);
}
.xh-hero-stat span { font-size: 0.85rem; opacity: 0.8; }

/* Buttons */
.xh-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--xh-transition);
  border: none;
  text-align: center;
}
.xh-btn-primary {
  background: var(--xh-gradient);
  color: #fff;
}
.xh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,67,111,0.4);
  color: #fff;
}
.xh-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.xh-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}
.xh-btn-accent {
  background: var(--xh-gradient-warm);
  color: #fff;
}
.xh-btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,140,66,0.4);
  color: #fff;
}
.xh-btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ VIDEO CARDS ============ */
.xh-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.xh-video-card {
  background: var(--xh-card-bg);
  border-radius: var(--xh-radius);
  overflow: hidden;
  box-shadow: var(--xh-shadow);
  transition: var(--xh-transition);
}
.xh-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--xh-shadow-hover);
}
.xh-video-thumb {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}
.xh-video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.xh-video-card:hover .xh-video-thumb img { transform: scale(1.05); }
.xh-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,14,46,0.4);
  opacity: 0;
  transition: var(--xh-transition);
}
.xh-video-card:hover .xh-video-play { opacity: 1; }
.xh-video-play-icon {
  width: 56px;
  height: 56px;
  background: var(--xh-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232,67,111,0.5);
  transition: var(--xh-transition);
}
.xh-video-play-icon::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.xh-video-card:hover .xh-video-play-icon { transform: scale(1.1); }
.xh-video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
}
.xh-video-info { padding: 16px; }
.xh-video-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.xh-video-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--xh-text-light);
}
.xh-video-meta span { display: flex; align-items: center; gap: 4px; }
.xh-video-tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.xh-tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.75rem;
  border-radius: 20px;
  background: rgba(232,67,111,0.08);
  color: var(--xh-primary);
}

/* ============ EXPERT CARDS ============ */
.xh-expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.xh-expert-card {
  background: var(--xh-card-bg);
  border-radius: var(--xh-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--xh-shadow);
  transition: var(--xh-transition);
}
.xh-expert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--xh-shadow-hover);
}
.xh-expert-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--xh-primary);
}
.xh-expert-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.xh-expert-card .xh-expert-role {
  color: var(--xh-primary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.xh-expert-card p {
  font-size: 0.85rem;
  color: var(--xh-text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}
.xh-expert-btns { display: flex; gap: 8px; justify-content: center; }
.xh-btn-sm {
  padding: 6px 16px;
  font-size: 0.8rem;
  border-radius: 20px;
}

/* ============ FAQ ============ */
.xh-faq-list { max-width: 800px; margin: 0 auto; }
.xh-faq-item {
  background: var(--xh-card-bg);
  border-radius: var(--xh-radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--xh-shadow);
  overflow: hidden;
}
.xh-faq-question {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--xh-transition);
}
.xh-faq-question:hover { color: var(--xh-primary); }
.xh-faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--xh-primary);
  transition: var(--xh-transition);
}
.xh-faq-item.active .xh-faq-question::after { content: '-'; }
.xh-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.xh-faq-item.active .xh-faq-answer { max-height: 300px; }
.xh-faq-answer p {
  padding: 0 24px 18px;
  color: var(--xh-text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============ REVIEWS ============ */
.xh-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.xh-review-card {
  background: var(--xh-card-bg);
  border-radius: var(--xh-radius);
  padding: 24px;
  box-shadow: var(--xh-shadow);
}
.xh-review-stars {
  color: var(--xh-accent);
  font-size: 1rem;
  margin-bottom: 12px;
}
.xh-review-card p {
  font-size: 0.9rem;
  color: var(--xh-text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.xh-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.xh-review-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--xh-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.xh-review-author-info strong { font-size: 0.9rem; display: block; }
.xh-review-author-info span { font-size: 0.8rem; color: var(--xh-text-light); }

/* ============ PARTNER LOGOS ============ */
.xh-partner-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  align-items: center;
}
.xh-partner-logo {
  width: 120px;
  height: 60px;
  background: var(--xh-card-bg);
  border-radius: var(--xh-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--xh-shadow);
  padding: 12px;
  font-weight: 700;
  color: var(--xh-text-light);
  font-size: 0.85rem;
  transition: var(--xh-transition);
}
.xh-partner-logo:hover {
  box-shadow: var(--xh-shadow-hover);
  color: var(--xh-primary);
}

/* ============ HOW-TO GUIDE ============ */
.xh-howto-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.xh-howto-step {
  background: var(--xh-card-bg);
  border-radius: var(--xh-radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--xh-shadow);
  counter-increment: step;
  position: relative;
}
.xh-howto-step::before {
  content: counter(step);
  display: block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background: var(--xh-gradient);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.xh-howto-step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.xh-howto-step p { font-size: 0.85rem; color: var(--xh-text-light); }

/* ============ FEATURES GRID ============ */
.xh-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.xh-feature-card {
  background: var(--xh-card-bg);
  border-radius: var(--xh-radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--xh-shadow);
  transition: var(--xh-transition);
}
.xh-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--xh-shadow-hover);
}
.xh-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(232,67,111,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
}
.xh-feature-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.xh-feature-card p { font-size: 0.85rem; color: var(--xh-text-light); line-height: 1.6; }

/* ============ BREADCRUMB ============ */
.xh-breadcrumb {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--xh-text-light);
}
.xh-breadcrumb a { color: var(--xh-text-light); }
.xh-breadcrumb a:hover { color: var(--xh-primary); }
.xh-breadcrumb span { margin: 0 6px; }

/* ============ FOOTER ============ */
.xh-footer {
  background: var(--xh-bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 0;
}
.xh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.xh-footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 12px;
  opacity: 0.7;
}
.xh-footer h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.xh-footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  padding: 4px 0;
}
.xh-footer-links a:hover { color: var(--xh-primary); }
.xh-footer-qr {
  display: flex;
  gap: 16px;
}
.xh-footer-qr-item { text-align: center; }
.xh-footer-qr-item img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  margin-bottom: 6px;
}
.xh-footer-qr-item span { font-size: 0.75rem; opacity: 0.6; }
.xh-footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}
.xh-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.xh-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  transition: var(--xh-transition);
}
.xh-footer-social a:hover {
  background: var(--xh-primary);
  color: #fff;
}

/* Share Buttons */
.xh-share-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 20px 0;
}
.xh-share-btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: var(--xh-transition);
  border: none;
}
.xh-share-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.xh-share-wechat { background: #07C160; }
.xh-share-weibo { background: #E6162D; }
.xh-share-douyin { background: #161823; }
.xh-share-bilibili { background: #00A1D6; }

/* ============ CONTACT INFO ============ */
.xh-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.xh-contact-card {
  background: var(--xh-card-bg);
  border-radius: var(--xh-radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--xh-shadow);
}
.xh-contact-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.xh-contact-card p { font-size: 0.9rem; color: var(--xh-text-light); }

/* ============ PAGE HERO (Inner Pages) ============ */
.xh-page-hero {
  background: var(--xh-gradient);
  padding: 48px 0;
  text-align: center;
  color: #fff;
}
.xh-page-hero h1 { font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.xh-page-hero p { opacity: 0.85; font-size: 1rem; }

/* ============ CONTENT ARTICLE ============ */
.xh-article {
  background: var(--xh-card-bg);
  border-radius: var(--xh-radius);
  padding: 32px;
  box-shadow: var(--xh-shadow);
  margin-bottom: 24px;
}
.xh-article h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; color: var(--xh-secondary); }
.xh-article h3 { font-size: 1.1rem; font-weight: 600; margin: 20px 0 10px; color: var(--xh-text); }
.xh-article p { margin-bottom: 14px; line-height: 1.8; }
.xh-article img { border-radius: var(--xh-radius-sm); margin: 16px 0; }

/* ============ MCP FRONTEND MOCK ============ */
.xh-mcp-widget {
  background: var(--xh-card-bg);
  border-radius: var(--xh-radius);
  padding: 20px;
  box-shadow: var(--xh-shadow);
  margin-top: 24px;
}
.xh-mcp-widget h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 12px; color: var(--xh-secondary); }
.xh-mcp-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--xh-text-light);
}
.xh-mcp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  animation: mcpPulse 2s infinite;
}
@keyframes mcpPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============ AI & COMMUNITY GRID ============ */
.xh-ai-grid, .xh-community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ============ VIDEO ELEMENT (H5 semantic) ============ */
.xh-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: none;
}
.xh-video-thumb img {
  z-index: 1;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .xh-header-inner { flex-wrap: wrap; }
  .xh-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 12px 0;
    gap: 0;
  }
  .xh-nav.active { display: flex; }
  .xh-nav a { padding: 10px 16px; width: 100%; }
  .xh-mobile-toggle { display: block; }

  .xh-hero-content h1 { font-size: 1.8rem; }
  .xh-hero-stats { gap: 20px; }
  .xh-hero-stat strong { font-size: 1.4rem; }

  .xh-section { padding: 40px 0; }
  .xh-section-title h2 { font-size: 1.6rem; }

  .xh-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .xh-video-grid { grid-template-columns: 1fr; }
  .xh-expert-grid { grid-template-columns: 1fr; }
  .xh-review-grid { grid-template-columns: 1fr; }
  .xh-features-grid { grid-template-columns: 1fr 1fr; }
  .xh-howto-steps { grid-template-columns: 1fr; }

  .xh-share-bar { flex-wrap: wrap; }
  .xh-btn-group { flex-direction: column; align-items: stretch; }
  .xh-article { padding: 20px; }
  .xh-ai-grid, .xh-community-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .xh-features-grid { grid-template-columns: 1fr; }
  .xh-hero { min-height: 360px; }
  .xh-hero-content { padding: 40px 0; }
  .xh-hero-content h1 { font-size: 1.5rem; }
}

/* ============ LAZY LOAD ============ */
img[data-src] { opacity: 0; transition: opacity 0.3s ease; }
img[data-src].loaded { opacity: 1; }

/* ============ ANIMATIONS ============ */
.xh-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.xh-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
