/* =============================================
   张进个人品牌网站 - 全站共享样式
   www.zhangjin111.com
   ============================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
  background: #0a1628;
  color: #c9d1e0;
  line-height: 1.75;
  overflow-x: hidden;
  font-weight: 300;
}
a { text-decoration: none; color: inherit; transition: .3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
section, footer { display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #061020;
  --bg2: #0a1830;
  --bg3: #0e2040;
  --bg-card: #0c2040;
  --bg-card2: #102848;
  --bg-card-hover: #143058;
  --blue: #4f8ef7;
  --cyan: #22d3ee;
  --purple: #a78bfa;
  --pink: #f472b6;
  --text: #e2e8f0;
  --text2: #94a3b8;
  --text3: #64748b;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --glow: rgba(79,142,247,0.15);
  --grad: linear-gradient(135deg, #4f8ef7, #a78bfa);
  --grad2: linear-gradient(135deg, rgba(79,142,247,0.15), rgba(167,139,250,0.15));
  --r: 14px;
  --r-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --t: all .3s cubic-bezier(.4,0,.2,1);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #4f8ef7; border-radius: 3px; }

/* ===== LAYOUT ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-alt { background: var(--bg2); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(8,11,18,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 20px; font-weight: 900; letter-spacing: 3px;
  color: #fff; flex-shrink: 0;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 6px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--text2); transition: var(--t);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--blue); background: rgba(79,142,247,0.1); }
.nav-cta {
  background: var(--grad) !important;
  color: #fff !important;
  padding: 7px 18px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(79,142,247,0.35);
  margin-left: 8px;
}
.nav-cta:hover { box-shadow: 0 4px 24px rgba(79,142,247,0.55); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  transition: var(--t); cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 4px 20px rgba(79,142,247,0.35);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(79,142,247,0.55); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid var(--border2);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}
.btn-outline:hover { border-color: var(--blue); background: rgba(79,142,247,0.08); }
.btn-ghost { color: var(--text2); }
.btn-ghost:hover { color: var(--blue); }

/* ===== SECTION HEADER ===== */
.sec-label {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue);
  padding: 5px 16px;
  border: 1px solid rgba(79,142,247,0.3);
  border-radius: 50px;
  margin-bottom: 16px;
}
.sec-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900; color: #fff; margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.sec-desc { font-size: 18px; color: var(--text2); max-width: 600px; }
.sec-center { text-align: center; }
.sec-center .sec-desc { margin: 0 auto; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--t);
  overflow: hidden;
}
.card:hover {
  border-color: rgba(79,142,247,0.3);
  box-shadow: 0 8px 40px rgba(79,142,247,0.08);
  transform: translateY(-4px);
}
.card-body { padding: 28px; }
.card-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.card-text { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ===== GRID ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(79,142,247,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,142,247,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(79,142,247,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 50px;
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.25);
  font-size: 12px; font-weight: 700; color: var(--cyan);
  margin-bottom: 24px; letter-spacing: 1px;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; color: #fff;
  line-height: 1.15; margin-bottom: 20px;
  letter-spacing: -1px;
}
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px; color: var(--text2);
  margin-bottom: 32px; line-height: 1.9;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.tag {
  padding: 5px 16px; border-radius: 50px;
  background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.2);
  font-size: 13px; font-weight: 500; color: #c4b5fd;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero stat cards */
.hero-stats { display: flex; gap: 20px; margin-top: 60px; flex-wrap: wrap; }
.stat-card {
  background: rgba(22,29,48,0.8);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 28px;
  backdrop-filter: blur(10px);
}
.stat-num {
  font-size: 32px; font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text3); margin-top: 4px; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 280px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(79,142,247,0.08) 0%, transparent 70%);
}
.ph-sub {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; color: #fff; margin-bottom: 16px;
}
.ph-sub a { color: var(--blue); }
.ph-sub a:hover { text-decoration: underline; }

/* ===== ICON BOX ===== */
.icon-box {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad2);
  border: 1px solid rgba(79,142,247,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 18px;
  font-size: 22px;
}

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 3px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700;
}
.badge-blue { background: rgba(79,142,247,0.12); color: var(--blue); }
.badge-cyan { background: rgba(34,211,238,0.1); color: var(--cyan); }
.badge-purple { background: rgba(167,139,250,0.12); color: var(--purple); }
.badge-green { background: rgba(34,197,94,0.1); color: #4ade80; }

/* ===== FEATURE LIST ===== */
.feature-item {
  display: flex; gap: 16px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 12px;
  transition: var(--t);
}
.feature-item:hover { border-color: rgba(79,142,247,0.3); }
.feature-icon {
  min-width: 52px; height: 40px; border-radius: 10px;
  background: var(--grad2);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  padding: 0 6px;
  white-space: nowrap;
}
.feature-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.feature-text { font-size: 13px; color: var(--text2); }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: var(--border2);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: ''; position: absolute; left: -28px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(79,142,247,0.5);
}
.tl-year { font-size: 12px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.tl-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.tl-text { font-size: 14px; color: var(--text2); }

/* ===== PRICE TABLE ===== */
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  text-align: center;
  transition: var(--t);
}
.price-card.popular {
  border-color: var(--blue);
  box-shadow: 0 0 40px rgba(79,142,247,0.1);
  position: relative;
}
.price-card.popular::before {
  content: '推荐';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad);
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 50px;
}
.price-name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.price-num { font-size: 42px; font-weight: 900; color: var(--blue); margin-bottom: 4px; }
.price-num small { font-size: 16px; font-weight: 400; color: var(--text3); }
.price-desc { font-size: 13px; color: var(--text3); margin-bottom: 24px; }
.price-features { text-align: left; margin-bottom: 28px; }
.price-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text2);
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.price-features li::before {
  content: '✓'; color: #4ade80; font-weight: 700; flex-shrink: 0;
}

/* ===== TESTIMONIAL ===== */
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.testi-quote {
  font-size: 15px; color: var(--text);
  line-height: 1.8; margin-bottom: 20px;
  font-style: italic;
}
.testi-quote::before { content: '"'; font-size: 32px; color: var(--blue); line-height: 0; vertical-align: -10px; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.testi-name { font-size: 14px; font-weight: 700; color: #fff; }
.testi-role { font-size: 12px; color: var(--text3); }

/* ===== VIDEO CARD ===== */
.video-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: var(--t); }
.video-card:hover { border-color: rgba(79,142,247,0.3); transform: translateY(-3px); }
.video-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a2238, #0d1221);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.video-thumb iframe { width: 100%; height: 100%; border: none; }
.vd-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: var(--text3); font-size: 13px;
}
.vd-placeholder svg { opacity: 0.2; }
.vd-duration {
  position: absolute; bottom: 10px; right: 12px;
  background: rgba(0,0,0,0.7); color: #fff;
  font-size: 11px; padding: 3px 8px; border-radius: 4px;
}
.vd-body { padding: 22px; }
.vd-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.vd-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }
.vd-meta { display: flex; gap: 14px; margin-top: 12px; font-size: 12px; color: var(--text3); }

/* ===== AUDIO CARD ===== */
.audio-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; display: flex; gap: 16px; align-items: flex-start; transition: var(--t); }
.audio-card:hover { border-color: rgba(34,211,238,0.3); transform: translateY(-2px); }
.audio-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--grad2); display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; font-size: 20px; }
.audio-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.audio-desc { font-size: 13px; color: var(--text2); margin-bottom: 14px; line-height: 1.6; }
.audio-player { display: flex; align-items: center; gap: 10px; }
.play-btn { width: 34px; height: 34px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; transition: var(--t); flex-shrink: 0; }
.play-btn:hover { box-shadow: 0 4px 16px rgba(79,142,247,0.5); }
.progress-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--grad); border-radius: 2px; }
.audio-time { font-size: 12px; color: var(--text3); flex-shrink: 0; }

/* ===== BOOK CARD ===== */
.book-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: var(--t); }
.book-card:hover { border-color: rgba(79,142,247,0.3); transform: translateY(-4px); }
.book-cover { height: 260px; display: flex; align-items: center; justify-content: center; }
.book-placeholder { width: 160px; height: 220px; border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 700; }
.book-body { padding: 22px; }
.book-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.book-desc { font-size: 13px; color: var(--text2); line-height: 1.7; margin-bottom: 14px; }
.book-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* ===== PATENT CARD ===== */
.patent-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; transition: var(--t); }
.patent-card:hover { border-color: rgba(167,139,250,0.3); }
.patent-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(167,139,250,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px; }
.patent-num { font-size: 12px; font-weight: 700; color: var(--purple); margin-bottom: 8px; }
.patent-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.patent-desc { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}
.cta-title { font-size: clamp(26px, 3vw, 38px); font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta-text { font-size: 16px; color: var(--text2); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand .footer-logo { font-size: 22px; font-weight: 900; letter-spacing: 3px; color: #fff; }
.footer-brand .footer-logo span { color: var(--blue); }
.footer-brand p { font-size: 13px; color: #E6E6E6; margin-top: 8px; max-width: 280px; }
.footer-col h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: #E6E6E6; }
.footer-col ul li a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 12px; flex-direction: column; }
.footer-bottom p { font-size: 13px; color: var(--text3); text-align: center; }
.footer-bottom a { font-size: 13px; color: var(--text3); }
.footer-bottom a:hover { color: var(--blue); }

/* ===== ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px; font-family: inherit;
  transition: var(--t); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue);
  background: rgba(79,142,247,0.05);
  box-shadow: 0 0 0 3px rgba(79,142,247,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text3); }
.form-group select option { background: var(--bg3); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(8,11,18,0.98);
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 15px; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-stats { flex-direction: column; }
  .page-header { padding: 110px 0 50px; }
  .section { padding: 60px 0; }
  .footer-top { flex-direction: column; }
}

/* ===== 盛和塾页面专用样式 ===== */

/* 子栏目导航 */
.sh-sub-nav {
  display: block;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.3s;
}
.sh-sub-nav:hover {
  color: #fff;
  background: rgba(255,255,255,0.03);
}
.sh-sub-nav.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
  background: rgba(79,142,247,0.08);
}

/* 页面标签内容 */
.sh-tab {
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 时间线样式 */
.sh-timeline {
  position: relative;
  padding-left: 20px;
}
.sh-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--cyan));
  border-radius: 2px;
}
.sh-timeline-item {
  position: relative;
  padding-bottom: 20px;
  padding-left: 20px;
}
.sh-timeline-item::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--bg);
  box-shadow: 0 0 8px rgba(79,142,247,0.5);
}
.sh-timeline-item:last-child {
  padding-bottom: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .sh-sub-nav {
    padding: 12px 20px;
    font-size: 13px;
  }
  .sh-timeline {
    padding-left: 16px;
  }
  .sh-timeline::before {
    left: 4px;
  }
  .sh-timeline-item {
    padding-left: 16px;
  }
  .sh-timeline-item::before {
    left: -14px;
    width: 8px;
    height: 8px;
  }
}
