/* ========================================
   移动端响应式优化 - 全局重置
   ======================================== */

/* 全局盒模型重置 - 确保所有元素使用border-box */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 防止水平滚动 - 移动端核心优化 */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* 文本换行和溢出处理 - 防止长文本导致水平滚动 */
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* 确保所有媒体元素响应式（图片已在基础重置中处理） */
video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

/* 全局列表样式重置 - 移除默认列表标记 */
/* 注意：某些特定列表（如对比列表）会通过更具体的选择器恢复列表标记 */
li {
  list-style-type: none;
}
/* 基础与主题变量 */
:root {
  --css365jz-font-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  --css365jz-radius-sm: 8px;
  --css365jz-radius-md: 14px;
  --css365jz-radius-lg: 20px;

  /* 默认主题色 */
  --css365jz-bg: #0b1020;
  --css365jz-bg-soft: #111836;
  --css365jz-surface: #141b3d;
  --css365jz-surface-2: #0e1430;
  --css365jz-text: #e9ecf5;
  --css365jz-text-muted: #b9c0d9;
  --css365jz-primary: #4f7cff;
  --css365jz-primary-ghost: rgba(79,124,255,0.15);
  --css365jz-positive: #35d49a;
  --css365jz-negative: #ff6b6b;
  --css365jz-accent: #9b7bff;
  --css365jz-border: #223061;
  --css365jz-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* 主题切换（default / ocean / aurora） */
.css365jz-page { position: relative; }
.css365jz-theme-input { position: absolute; left: -9999px; top: -9999px; }

/* ocean 主题 */
.css365jz-page[style*="--css365jz-theme: ocean"],
#css365jz-theme-ocean:checked ~ .css365jz-page {
  --css365jz-bg: #06121a;
  --css365jz-bg-soft: #0a1d2a;
  --css365jz-surface: #0d2433;
  --css365jz-surface-2: #081723;
  --css365jz-text: #e5f6ff;
  --css365jz-text-muted: #b5d0de;
  --css365jz-primary: #19b4ff;
  --css365jz-primary-ghost: rgba(25,180,255,0.18);
  --css365jz-positive: #2fd39b;
  --css365jz-negative: #ff707a;
  --css365jz-accent: #59d3ff;
  --css365jz-border: #173547;
}

/* aurora 主题 */
.css365jz-page[style*="--css365jz-theme: aurora"],
#css365jz-theme-aurora:checked ~ .css365jz-page {
  --css365jz-bg: #0c0f14;
  --css365jz-bg-soft: #11141b;
  --css365jz-surface: #151b26;
  --css365jz-surface-2: #0e131b;
  --css365jz-text: #ebf0ff;
  --css365jz-text-muted: #c1c7de;
  --css365jz-primary: #7ee787;
  --css365jz-primary-ghost: rgba(126,231,135,0.18);
  --css365jz-positive: #8be9fd;
  --css365jz-negative: #ff92a1;
  --css365jz-accent: #c084fc;
  --css365jz-border: #233049;
}

/* 基础重置 */
.css365jz-body { margin: 0; font-family: var(--css365jz-font-sans); background: var(--css365jz-bg); color: var(--css365jz-text); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* 布局与容器 */
.css365jz-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 顶部导航 */
.css365jz-header { position: sticky; top: 0; z-index: 50; background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0)) , var(--css365jz-bg-soft); backdrop-filter: saturate(120%) blur(6px); border-bottom: 1px solid var(--css365jz-border); }
.css365jz-header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.css365jz-brand-link { font-weight: 700; letter-spacing: 0.2px; color: var(--css365jz-text); display: flex; align-items: center;}
.css365jz-nav { display: flex; gap: 18px; }
.css365jz-nav-link { padding: 10px 12px; border-radius: 10px; color: var(--css365jz-text-muted); }
.css365jz-nav-link:hover { background: var(--css365jz-primary-ghost); color: var(--css365jz-text); }
.css365jz-theme-switcher { display: flex; gap: 8px; }
.css365jz-theme-chip { cursor: pointer; padding: 6px 10px; border-radius: 999px; background: var(--css365jz-surface); color: var(--css365jz-text-muted); border: 1px solid var(--css365jz-border); }
.css365jz-theme-chip:hover { color: var(--css365jz-text); border-color: var(--css365jz-primary); }
/* 汉堡菜单基础 */
.css365jz-nav-toggle { position: absolute; left: -9999px; top: -9999px; }
.css365jz-burger { display: none; width: 38px; height: 32px; border-radius: 8px; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--css365jz-border); background: var(--css365jz-surface); cursor: pointer; transition: border-color 160ms ease, background 160ms ease; }
.css365jz-burger-line { width: 20px; height: 2px; background: var(--css365jz-text); display: block; transition: transform 160ms ease, opacity 160ms ease; }

/* 主内容与横幅 */
.css365jz-hero { position: relative; overflow: hidden; background: radial-gradient(1200px 600px at 10% -20%, rgba(79,124,255,0.25), transparent 60%), radial-gradient(900px 500px at 90% 0%, rgba(155,123,255,0.25), transparent 60%), var(--css365jz-bg);
  border-bottom: 1px solid var(--css365jz-border); }
.css365jz-hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; padding: 72px 0 48px; }
.css365jz-hero-title { margin: 0 0 14px; font-size: 40px; line-height: 1.18; }
.css365jz-hero-sub { margin: 0 0 20px; color: var(--css365jz-text-muted); font-size: 16px; }
.css365jz-cta-group { display: flex; gap: 12px; margin: 18px 0 16px; }
.css365jz-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 12px; border: 1px solid transparent; font-weight: 600; }
.css365jz-btn-primary { background: var(--css365jz-primary); color: #0c1223; }
.css365jz-btn-primary:hover { filter: brightness(1.05); }
.css365jz-btn-ghost { background: var(--css365jz-primary-ghost); color: var(--css365jz-text); border-color: var(--css365jz-border); }
.css365jz-btn-ghost:hover { border-color: var(--css365jz-primary); }
.css365jz-hero-bullets { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.css365jz-bullet { color: var(--css365jz-text-muted); }

.css365jz-hero-right { display: flex; justify-content: center; }
.css365jz-hero-right1 {
    display: none;
  }
.css365jz-hero-card { width: 100%; max-width: 440px; background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)), var(--css365jz-surface); border: 1px solid var(--css365jz-border); border-radius: var(--css365jz-radius-lg); box-shadow: var(--css365jz-shadow); padding: 20px; }
.css365jz-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 12px; }
.css365jz-stat { background: var(--css365jz-surface-2); border: 1px solid var(--css365jz-border); border-radius: 12px; padding: 12px; text-align: center; }
.css365jz-stat-k { font-size: 18px; font-weight: 700; }
.css365jz-stat-l { font-size: 12px; color: var(--css365jz-text-muted); }
.css365jz-hero-illustration { height: 180px; border-radius: 14px; background: linear-gradient(135deg, var(--css365jz-primary-ghost), transparent 50%), radial-gradient(220px 120px at 80% 20%, rgba(155,123,255,0.25), transparent 60%), var(--css365jz-surface-2); border: 1px solid var(--css365jz-border); }
.css365jz-hero-picture { display: block; }
.css365jz-hero-img { width: 100%; object-fit: contain; border-radius: 12px; background: var(--css365jz-surface-2); border: 1px solid var(--css365jz-border); }
.css365jz-hero-wave { height: 28px; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0)); }

/* 通用分区 */
.css365jz-section { padding: 56px 0; border-bottom: 1px solid var(--css365jz-border); background: var(--css365jz-bg); }
.css365jz-section-em { background: linear-gradient(180deg, rgba(79,124,255,0.06), rgba(79,124,255,0)); }
.css365jz-section-muted { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)); }
.css365jz-section-title { margin: 0 0 10px; font-size: 28px; }
.css365jz-section-sub { margin: 0 0 24px; color: var(--css365jz-text-muted); }

/* 通用框架容器 */
.css365jz-frame { background: var(--css365jz-surface); border: 1px solid var(--css365jz-border); border-radius: 16px; padding: 16px; box-shadow: var(--css365jz-shadow); }
.css365jz-frame-split { position: relative; }
.css365jz-frame-split::before { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: 16px; }
@media (max-width: 640px) { .css365jz-frame { padding: 12px; } }

/* 对称装饰仅用于中大屏，移动端禁用，避免干扰排版 */
@media (min-width: 641px) {
  .css365jz-frame.css365jz-symmetric { position: relative; }
  .css365jz-frame.css365jz-symmetric::before,
  .css365jz-frame.css365jz-symmetric::after { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--css365jz-border); transform: translateX(-50%); opacity: 0.6; }
  .css365jz-frame.css365jz-symmetric::after { top: 50%; left: 0; right: 0; height: 1px; width: auto; transform: translateY(-50%); }
  .css365jz-symmetric .css365jz-download-grid,
  .css365jz-symmetric .css365jz-markets-grid,
  .css365jz-symmetric .css365jz-feature-grid,
  .css365jz-symmetric .css365jz-stats-band,
  .css365jz-symmetric .css365jz-highlight-grid,
  .css365jz-symmetric .css365jz-news-grid { justify-items: center; }
  .css365jz-symmetric .css365jz-download-card,
  .css365jz-symmetric .css365jz-market-card,
  .css365jz-symmetric .css365jz-feature,
  .css365jz-symmetric .css365jz-stats-item,
  .css365jz-symmetric .css365jz-highlight,
  .css365jz-symmetric .css365jz-news-card { max-width: 920px; }
}

/* 下载卡片 */
.css365jz-download-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.css365jz-download-card { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 12px; background: var(--css365jz-surface); border: 1px solid var(--css365jz-border); border-radius: 14px; padding: 14px; transition: transform 120ms ease, border-color 120ms ease; }
.css365jz-download-card:hover { transform: translateY(-2px); border-color: var(--css365jz-primary); }
.css365jz-download-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--css365jz-surface-2); border: 1px solid var(--css365jz-border); position: relative; }
.css365jz-ico-desktop::before { content: ""; width: 22px; height: 14px; border: 2px solid var(--css365jz-text); border-bottom: none; display: block; margin: 2px auto; border-radius: 3px 3px 0 0; }
.css365jz-ico-desktop::after { content: ""; width: 18px; height: 2px; background: var(--css365jz-text); display: block; margin: 4px auto 0; border-radius: 2px; }
.css365jz-ico-android::before { content: ""; width: 24px; height: 24px; display: block; margin: 2px auto; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e9ecf5"><path d="M8.2 6.2l-1-1.7a.5.5 0 11.86-.5l1 1.7A6.9 6.9 0 0112 5c1.12 0 2.18.26 3.14.72l1-1.7a.5.5 0 11.86.5l-1 1.7A6.99 6.99 0 0119 11v5.5a1.5 1.5 0 01-3 0V11h-1v8a1 1 0 01-2 0v-3h-2v3a1 1 0 01-2 0v-8H8v5.5a1.5 1.5 0 01-3 0V11c0-2.02.86-3.85 2.2-5.02zM9.75 7a.75.75 0 100-1.5.75.75 0 000 1.5zm4.5 0a.75.75 0 100-1.5.75.75 0 000 1.5z"/></svg>') no-repeat center/contain; }
.css365jz-ico-windows::before { content: ""; width: 24px; height: 24px; display: block; margin: 2px auto; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e9ecf5"><path d="M2 4.5l9.5-1.5v9H2v-7.5zM12.5 3l9.5-1.5v10.5h-9.5v-9zM2 12.5h9.5v8.5L2 19v-6.5zM12.5 12.5H22v9l-9.5-1.5v-7.5z"/></svg>') no-repeat center/contain; }
.css365jz-ico-ios::before { content: ""; width: 24px; height: 24px; display: block; margin: 2px auto; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e9ecf5"><path d="M16.2 2.9c.73-.86 1.24-2.06 1.1-3.3-1.06.06-2.3.73-3.05 1.6-.67.78-1.25 2-.1 3 1.01.09 1.99-.57 2.05-1.3z" transform="translate(0 4)"/><path d="M20.6 13.2c-.04-3.1 2.56-4.72 2.67-4.8-1.46-2.14-3.73-2.43-4.53-2.46-1.93-.2-3.76 1.12-4.73 1.12-.99 0-2.48-1.1-4.08-1.06-2.1.03-4.03 1.22-5.1 3.08-2.19 3.8-.56 9.43 1.56 12.52 1.04 1.5 2.28 3.17 3.92 3.11 1.58-.06 2.17-1 4.07-1 .88 0 1.9.13 2.73-.09.73-.2 1.16-.91 2.02-2.07.82-1.12 1.17-1.7 1.19-1.74.06-.01 2.88-1.06 2.93-4.62z" transform="translate(-2 -4)"/></svg>') no-repeat center/contain; }
.css365jz-download-meta { display: grid; gap: 2px; }
.css365jz-download-name { font-weight: 700; }
.css365jz-download-desc { color: var(--css365jz-text-muted); font-size: 13px; }
.css365jz-download-btn { padding: 8px 12px; border-radius: 10px; background: var(--css365jz-primary-ghost); border: 1px solid var(--css365jz-border); }

/* 市场概览 */
.css365jz-markets-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.css365jz-market-card { background: var(--css365jz-surface); border: 1px solid var(--css365jz-border); border-radius: 14px; padding: 14px; }
.css365jz-market-hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.css365jz-pill { padding: 4px 8px; border-radius: 999px; background: var(--css365jz-surface-2); border: 1px solid var(--css365jz-border); font-weight: 700; font-size: 12px; }
.css365jz-badge { padding: 2px 8px; border-radius: 999px; font-size: 12px; }
.css365jz-badge-up { background: rgba(53,212,154,0.15); color: var(--css365jz-positive); border: 1px solid rgba(53,212,154,0.35); }
.css365jz-badge-down { background: rgba(255,107,107,0.12); color: var(--css365jz-negative); border: 1px solid rgba(255,107,107,0.35); }
.css365jz-market-price { font-size: 22px; font-weight: 800; letter-spacing: 0.2px; }
.css365jz-spark { height: 44px; margin: 10px 0; border-radius: 10px; background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0)); position: relative; overflow: hidden; }
.css365jz-spark::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 6px); opacity: 0.5; }
.css365jz-spark-up { box-shadow: inset 0 -20px 40px rgba(53,212,154,0.15); }
.css365jz-spark-down { box-shadow: inset 0 -20px 40px rgba(255,107,107,0.15); }
.css365jz-spark-flat { box-shadow: inset 0 -20px 40px rgba(155,123,255,0.15); }
.css365jz-market-ft { display: flex; justify-content: space-between; color: var(--css365jz-text-muted); font-size: 12px; }

/* 纯CSS K线图（小尺寸占位） */
.css365jz-kline { height: 64px; margin: 10px 0; border-radius: 10px; background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0)); position: relative; overflow: hidden; border: 1px solid var(--css365jz-border); }
.css365jz-kline::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 6px); opacity: 0.5; }
.css365jz-k-candle { position: absolute; bottom: 0; width: 8px; border-radius: 2px; }
.css365jz-k-candle.css365jz-up { background: rgba(53,212,154,0.9); box-shadow: 0 0 0 1px rgba(53,212,154,0.4); }
.css365jz-k-candle.css365jz-down { background: rgba(255,107,107,0.9); box-shadow: 0 0 0 1px rgba(255,107,107,0.4); }

/* 功能亮点 */
.css365jz-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.css365jz-feature { background: var(--css365jz-surface); border: 1px solid var(--css365jz-border); border-radius: 14px; padding: 16px; }
.css365jz-feature-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--css365jz-surface-2); border: 1px solid var(--css365jz-border); margin-bottom: 10px; position: relative; }
.css365jz-ico-aggregate::before { content: ""; position: absolute; inset: 10px; border-radius: 8px; background: linear-gradient(135deg, var(--css365jz-primary), var(--css365jz-accent)); opacity: 0.6; }
.css365jz-ico-realtime::before { content: ""; position: absolute; left: 8px; right: 8px; top: 14px; height: 2px; background: var(--css365jz-primary); box-shadow: 0 6px 0 var(--css365jz-positive), 0 -6px 0 var(--css365jz-negative); opacity: 0.85; }
.css365jz-ico-responsive::before { content: ""; position: absolute; inset: 12px; border: 2px solid var(--css365jz-text); border-bottom: none; border-radius: 4px 4px 0 0; }
.css365jz-ico-secure::before { content: ""; position: absolute; inset: 12px; border: 2px solid var(--css365jz-text); border-radius: 6px; }
.css365jz-feature-title { margin: 0 0 6px; font-size: 18px; }
.css365jz-feature-desc { margin: 0; color: var(--css365jz-text-muted); font-size: 14px; }

/* FAQ */
.css365jz-faq { display: grid; gap: 12px; }
.css365jz-details { background: var(--css365jz-surface); border: 1px solid var(--css365jz-border); border-radius: 12px; padding: 10px 14px; }
.css365jz-summary { cursor: pointer; list-style: none; font-weight: 700; }
.css365jz-summary::-webkit-details-marker { display: none; }
.css365jz-answer { margin-top: 8px; color: var(--css365jz-text-muted); }

/* 安装与使用教程（对称框架） */
.css365jz-guide-frame { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 0; border: 1px solid var(--css365jz-border); border-radius: 16px; overflow: hidden; background: var(--css365jz-surface); }
.css365jz-guide-cell { padding: 22px; min-height: 140px; display: grid; align-content: center; gap: 6px; position: relative; }
.css365jz-guide-cell:nth-child(1), .css365jz-guide-cell:nth-child(2) { border-bottom: 1px solid var(--css365jz-border); }
.css365jz-guide-cell:nth-child(1), .css365jz-guide-cell:nth-child(3) { border-right: 1px solid var(--css365jz-border); }
.css365jz-guide-num { position: absolute; top: 12px; left: 12px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--css365jz-primary); color: #0b1020; font-weight: 800; }
.css365jz-guide-hd { font-weight: 900; }
.css365jz-guide-tx { color: var(--css365jz-text-muted); }
.css365jz-guide-cross { pointer-events: none; position: absolute; inset: 0; background: radial-gradient(closest-side, rgba(255,255,255,0.03), transparent 70%) no-repeat 50% 50%; }

/* 对比 */
.css365jz-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.css365jz-compare-col { background: var(--css365jz-surface); border: 1px solid var(--css365jz-border); border-radius: 14px; padding: 16px; }
.css365jz-compare-title { font-weight: 800; margin-bottom: 8px; }
.css365jz-compare-list { margin: 0; padding-left: 18px; color: var(--css365jz-text); }
.css365jz-compare-list li { list-style-type: none; margin-bottom: 4px; }
.css365jz-compare-muted { color: var(--css365jz-text-muted); }

/* 统计带 */
.css365jz-visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.css365jz-stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.css365jz-stats-item { background: var(--css365jz-surface); border: 1px solid var(--css365jz-border); border-radius: 14px; padding: 16px; text-align: center; }
.css365jz-stats-k { font-size: 22px; font-weight: 900; }
.css365jz-stats-l { color: var(--css365jz-text-muted); font-size: 12px; }

/* 亮点与标签 */
.css365jz-highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 14px; }
.css365jz-highlight { background: var(--css365jz-surface); border: 1px solid var(--css365jz-border); border-radius: 14px; padding: 16px; }
.css365jz-highlight-title { font-weight: 800; margin-bottom: 6px; }
.css365jz-highlight-desc { color: var(--css365jz-text-muted); }
.css365jz-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.css365jz-tag { padding: 6px 10px; border-radius: 999px; background: var(--css365jz-surface-2); border: 1px solid var(--css365jz-border); color: var(--css365jz-text-muted); }

/* 用户评价 */
.css365jz-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.css365jz-testimonial { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)), var(--css365jz-surface); border: 1px solid var(--css365jz-border); border-radius: 14px; padding: 16px; box-shadow: var(--css365jz-shadow); }
.css365jz-quote { font-style: italic; margin-bottom: 8px; }
.css365jz-author { color: var(--css365jz-text-muted); font-size: 13px; }

/* 新闻卡片 */
.css365jz-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.css365jz-news-card { background: var(--css365jz-surface); border: 1px solid var(--css365jz-border); border-radius: 14px; padding: 16px; }
.css365jz-news-hd { font-weight: 900; margin-bottom: 6px; }
.css365jz-news-meta { color: var(--css365jz-text-muted); font-size: 12px; margin-bottom: 8px; }
.css365jz-news-desc { color: var(--css365jz-text-muted); }

/* 时间线 */
.css365jz-timeline { margin: 0; padding-left: 22px; position: relative; }
.css365jz-timeline::before { content: ""; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--css365jz-border); }
.css365jz-timeline-item { position: relative; margin: 0 0 14px 0; }
.css365jz-tl-dot { position: absolute; left: -2px; top: 2px; width: 12px; height: 12px; border-radius: 50%; background: var(--css365jz-primary); box-shadow: 0 0 0 3px var(--css365jz-primary-ghost); }
.css365jz-tl-content { background: var(--css365jz-surface); border: 1px solid var(--css365jz-border); border-radius: 12px; padding: 12px 14px; margin-left: 12px; }
.css365jz-tl-title { font-weight: 800; margin-bottom: 6px; }
.css365jz-tl-desc { color: var(--css365jz-text-muted); }
/* 页脚 */
.css365jz-footer { background: var(--css365jz-bg-soft); border-top: 1px solid var(--css365jz-border); }
.css365jz-footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; padding: 28px 0; }
.css365jz-footer-title { font-weight: 800; margin-bottom: 10px; }
.css365jz-footer-text { color: var(--css365jz-text-muted); }
.css365jz-footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.css365jz-footer-link { color: var(--css365jz-text-muted); }
.css365jz-footer-link:hover { color: var(--css365jz-text); }
.css365jz-footer-themes { display: flex; gap: 10px; }
.css365jz-footer-note { text-align: center; color: var(--css365jz-text-muted); padding: 10px 0 22px; border-top: 1px solid var(--css365jz-border); }

/* 响应式 */
@media (max-width: 1024px) {
  .css365jz-hero-inner { grid-template-columns: 1fr; padding-top: 56px; }
  .css365jz-hero-right { order: -1;  display: none;}
  .css365jz-hero-right1 {
    display: flex; justify-content: center;
  }
  .css365jz-markets-grid { grid-template-columns: repeat(2, 1fr); }
  .css365jz-download-grid { grid-template-columns: repeat(2, 1fr); }
  .css365jz-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .css365jz-footer-inner { grid-template-columns: 1fr 1fr; }
  .css365jz-steps-grid { grid-template-columns: 1fr 1fr; }
  .css365jz-compare { grid-template-columns: 1fr; }
  .css365jz-stats-band { grid-template-columns: 1fr 1fr; }
  .css365jz-highlight-grid { grid-template-columns: 1fr 1fr; }
  .css365jz-testimonial-grid { grid-template-columns: 1fr 1fr; }
  .css365jz-news-grid { grid-template-columns: 1fr 1fr; }
  .css365jz-guide-frame { grid-template-columns: 1fr; grid-template-rows: repeat(4, auto); }
  .css365jz-guide-cell:nth-child(1), .css365jz-guide-cell:nth-child(2), .css365jz-guide-cell:nth-child(3) { border-right: none; border-bottom: 1px solid var(--css365jz-border); }
  .css365jz-hero-img { height: 200px; }
}

/* ========================================
   移动端响应式增强 - 核心优化
   ======================================== */

/* 移动端容器和布局强化 */
@media (max-width: 768px) {
  /* 确保页面容器不会导致水平滚动 */
  .css365jz-page {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* 强化容器宽度控制（padding在后续媒体查询中设置） */
  .css365jz-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  /* 确保所有网格和弹性布局不会溢出 */
  .css365jz-download-grid,
  .css365jz-markets-grid,
  .css365jz-feature-grid,
  .css365jz-stats-band,
  .css365jz-highlight-grid,
  .css365jz-news-grid {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  /* 强制所有卡片和内容块适应容器宽度 */
  .css365jz-download-card,
  .css365jz-market-card,
  .css365jz-feature,
  .css365jz-stats-item,
  .css365jz-highlight,
  .css365jz-news-card,
  .css365jz-frame {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* 移动端与小平板（≤768px）导航与整体自适应 */
@media (max-width: 768px) {
  .css365jz-header-inner { height: 58px; }
  .css365jz-burger { display: inline-flex; min-width: 44px; min-height: 44px; }
  .css365jz-nav { position: absolute; left: 0; right: 0; top: 58px; display: grid; gap: 0; background: var(--css365jz-surface); border-bottom: 1px solid var(--css365jz-border); transform-origin: top; transform: scaleY(0); transition: transform 160ms ease; z-index: 60; box-shadow: 0 10px 20px rgba(0,0,0,0.25); padding-bottom: 6px; }
  .css365jz-nav::after { content: ""; position: fixed; left: 0; right: 0; top: 58px; bottom: 0; background: rgba(0,0,0,0.35); opacity: 0; pointer-events: none; transition: opacity 160ms ease; }
  .css365jz-nav-link { padding: 16px 20px; border-radius: 0; border-top: 1px solid var(--css365jz-border); display: block; min-height: 44px; box-sizing: border-box; }
  #css365jz-nav-toggle:checked ~ .css365jz-burger { border-color: var(--css365jz-primary); }
  #css365jz-nav-toggle:checked ~ .css365jz-nav { transform: scaleY(1); }
  #css365jz-nav-toggle:checked ~ .css365jz-nav::after { opacity: 1; pointer-events: auto; }
  /* 汉堡动画为关闭形态 */
  #css365jz-nav-toggle:checked ~ .css365jz-burger .css365jz-burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #css365jz-nav-toggle:checked ~ .css365jz-burger .css365jz-burger-line:nth-child(2) { opacity: 0; }
  #css365jz-nav-toggle:checked ~ .css365jz-burger .css365jz-burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .css365jz-hero-title { font-size: 28px; }
  .css365jz-hero-sub { font-size: 14px; }
  .css365jz-btn { min-height: 44px; padding: 14px 18px; }
  .css365jz-download-grid { grid-template-columns: 1fr; }
  .css365jz-markets-grid { grid-template-columns: 1fr; }
  .css365jz-feature-grid { grid-template-columns: 1fr; }
  .css365jz-footer-inner { grid-template-columns: 1fr; }
  .css365jz-steps-grid { grid-template-columns: 1fr; }
  .css365jz-stats-band { grid-template-columns: 1fr; }
  .css365jz-highlight-grid { grid-template-columns: 1fr; }
  .css365jz-testimonial-grid { grid-template-columns: 1fr; }
  .css365jz-news-grid { grid-template-columns: 1fr; }
  .css365jz-guide-frame { grid-template-columns: 1fr; }
  .css365jz-hero-img { height: 160px; }
  .css365jz-download-ico { width: 44px; height: 44px; }
  .css365jz-download-btn { min-height: 44px; padding: 12px 16px; }
  .css365jz-kline { height: 56px; }
  .css365jz-k-candle { width: 6px; }
  .css365jz-section { padding: 40px 0; }
  .css365jz-container { padding: 0 14px; }
  .css365jz-theme-switcher { display: none; }
}

/* 更小设备的细化自适应 */
@media (max-width: 480px) {
  .css365jz-header-inner { height: 54px; }
  .css365jz-nav { top: 54px; }
  .css365jz-nav::after { top: 54px; }
  .css365jz-hero-title { font-size: 24px; line-height: 1.25; }
  .css365jz-hero-sub { font-size: 13px; }
  .css365jz-btn { padding: 12px 16px; border-radius: 10px; min-height: 44px; }
  .css365jz-hero-img { height: 150px; }
  .css365jz-download-ico { width: 44px; height: 44px; }
  .css365jz-download-btn { min-height: 44px; }
  .css365jz-market-card { padding: 12px; }
  .css365jz-frame { padding: 12px; }
  .css365jz-tags { gap: 6px; }
  .css365jz-tag { min-height: 32px; padding: 8px 12px; display: inline-flex; align-items: center; }
}

/* 极小屏幕优化 */
@media (max-width: 360px) {
  .css365jz-hero-title { font-size: 22px; }
  .css365jz-hero-img { height: 140px; }
  .css365jz-container { padding: 0 12px; }
  .css365jz-btn { padding: 12px 14px; font-size: 14px; }
  .css365jz-download-card { padding: 12px; gap: 10px; }
  .css365jz-download-ico { width: 44px; height: 44px; }
  .css365jz-download-btn { min-height: 44px; padding: 12px 14px; }
}

/* 安全区域适配（支持全面屏刘海等） */
@supports (padding: max(0px)) {
  .css365jz-header { padding-left: max(0px, env(safe-area-inset-left)); padding-right: max(0px, env(safe-area-inset-right)); }
}

/* 额外的移动端优化 */
@media (max-width: 768px) {
  /* 确保图片响应式 */
  .css365jz-hero-img {
    width: 100%;
    height: auto;
    min-height: 160px;
    object-fit: cover;
  }

  /* 优化文字可读性 */
  .css365jz-hero-title {
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .css365jz-hero-sub {
    line-height: 1.5;
    margin-bottom: 24px;
  }

  /* 优化按钮组布局 */
  .css365jz-cta-group {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .css365jz-btn {
    text-align: center;
    justify-content: center;
  }

  /* 优化卡片间距 */
  .css365jz-download-grid,
  .css365jz-markets-grid,
  .css365jz-feature-grid,
  .css365jz-stats-band,
  .css365jz-highlight-grid,
  .css365jz-news-grid {
    gap: 12px;
  }

  /* 优化页脚链接 */
  .css365jz-footer-link {
    padding: 8px 0;
    display: block;
    min-height: 32px;
  }

  /* 增强移动端字体大小和可读性 */
  .css365jz-section-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .css365jz-section-sub {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* 优化下载卡片的移动端布局 */
  .css365jz-download-card {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 16px;
  }

  .css365jz-download-ico {
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
  }

  .css365jz-download-meta {
    grid-column: 2;
    grid-row: 1;
  }

  .css365jz-download-btn {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    margin-top: 8px;
  }

  /* 优化市场卡片的移动端显示 */
  .css365jz-market-card {
    padding: 16px;
  }

  .css365jz-market-price {
    font-size: 20px;
    margin: 8px 0;
  }

  .css365jz-market-ft {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  /* 增强触摸交互区域 */
  .css365jz-nav-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
  }

  .css365jz-theme-chip {
    min-height: 44px;
    padding: 12px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* 优化标签云的移动端显示 */
  .css365jz-tag {
    min-height: 36px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.2;
  }

  /* 优化功能卡片的移动端布局 */
  .css365jz-feature {
    padding: 20px 16px;
  }

  .css365jz-feature-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .css365jz-feature-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  /* 优化统计项的移动端显示 */
  .css365jz-stats-item {
    padding: 20px 16px;
  }

  .css365jz-stats-k {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .css365jz-stats-l {
    font-size: 11px;
  }

  /* 优化新闻卡片的移动端布局 */
  .css365jz-news-card {
    padding: 18px 16px;
  }

  .css365jz-news-hd {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .css365jz-news-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  /* 优化时间线的移动端显示 */
  .css365jz-timeline {
    padding-left: 20px;
  }

  .css365jz-tl-content {
    padding: 14px 16px;
    margin-left: 10px;
  }

  .css365jz-tl-title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .css365jz-tl-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  /* 优化对比表格的移动端显示 */
  .css365jz-compare-col {
    padding: 18px 16px;
  }

  .css365jz-compare-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .css365jz-compare-list {
    font-size: 13px;
    line-height: 1.6;
    padding-left: 16px;
  }

  /* 优化教程框架的移动端显示 */
  .css365jz-guide-cell {
    padding: 20px 18px;
    min-height: 120px;
  }

  .css365jz-guide-hd {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .css365jz-guide-tx {
    font-size: 13px;
    line-height: 1.5;
  }

  /* 优化亮点卡片的移动端显示 */
  .css365jz-highlight {
    padding: 18px 16px;
  }

  .css365jz-highlight-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .css365jz-highlight-desc {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* 平板设备优化 (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .css365jz-container {
    padding: 0 24px;
  }

  .css365jz-hero-title {
    font-size: 36px;
  }

  .css365jz-hero-sub {
    font-size: 15px;
  }

  .css365jz-section-title {
    font-size: 26px;
  }

  /* 优化平板端的网格布局 */
  .css365jz-download-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .css365jz-markets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .css365jz-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .css365jz-stats-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .css365jz-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .css365jz-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* 大屏手机优化 (480px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .css365jz-hero-title {
    font-size: 30px;
  }

  .css365jz-hero-sub {
    font-size: 15px;
  }

  .css365jz-section-title {
    font-size: 26px;
  }

  /* 在大屏手机上可以显示2列布局 */
  .css365jz-markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .css365jz-stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .css365jz-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .css365jz-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 横屏手机优化 */
@media (max-width: 768px) and (orientation: landscape) {
  .css365jz-hero-inner {
    padding: 40px 0 32px;
  }

  .css365jz-hero-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .css365jz-hero-sub {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .css365jz-section {
    padding: 32px 0;
  }

  /* 横屏时可以使用更紧凑的布局 */
  .css365jz-cta-group {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .css365jz-btn {
    flex: 0 0 auto;
    min-width: 120px;
  }
}

/* 高分辨率屏幕优化 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .css365jz-hero-img,
  .css365jz-download-ico,
  .css365jz-feature-ico {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* 深色模式下的移动端优化 */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
  .css365jz-nav {
    background: var(--css365jz-bg-soft);
  }

  .css365jz-nav::after {
    background: rgba(0,0,0,0.5);
  }
}

/* 减少动画的用户偏好支持 */
@media (prefers-reduced-motion: reduce) {
  .css365jz-nav,
  .css365jz-burger-line,
  .css365jz-download-card {
    transition: none;
  }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
  /* 移除悬停效果，增强点击反馈 */
  .css365jz-nav-link:hover,
  .css365jz-theme-chip:hover,
  .css365jz-btn-ghost:hover,
  .css365jz-footer-link:hover {
    background: initial;
    color: initial;
    border-color: initial;
  }

  /* 增加触摸反馈 */
  .css365jz-nav-link:active,
  .css365jz-btn:active,
  .css365jz-download-card:active {
    transform: scale(0.98);
    opacity: 0.8;
  }

  /* 确保所有可点击元素有足够的触摸区域 */
  .css365jz-nav-link,
  .css365jz-btn,
  .css365jz-theme-chip,
  .css365jz-download-btn,
  .css365jz-footer-link {
    min-height: 44px;
    min-width: 44px;
  }
}

/* ========================================
   增强性移动端响应式优化
   ======================================== */

/* 超小屏幕设备优化 (≤320px) */
@media (max-width: 320px) {
  .css365jz-container {
    padding: 0 10px;
  }

  .css365jz-hero-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .css365jz-hero-sub {
    font-size: 12px;
    line-height: 1.4;
  }

  .css365jz-section-title {
    font-size: 20px;
  }

  .css365jz-btn {
    padding: 10px 12px;
    font-size: 13px;
  }

  .css365jz-download-card {
    padding: 10px;
    gap: 8px;
  }

  .css365jz-download-ico {
    width: 40px;
    height: 40px;
  }
}

/* 增强的小屏手机优化 (321px - 480px) */
@media (min-width: 321px) and (max-width: 480px) {
  /* 优化文字间距和可读性 */
  .css365jz-hero-title {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .css365jz-hero-sub {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .css365jz-section-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .css365jz-section-sub {
    font-size: 13px;
    line-height: 1.5;
  }

  /* 优化卡片布局 */
  .css365jz-download-card {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    padding: 14px;
    gap: 10px;
  }

  .css365jz-download-meta {
    grid-column: 2;
    grid-row: 1;
  }

  .css365jz-download-btn {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 8px;
    justify-self: stretch;
  }

  /* 优化市场卡片 */
  .css365jz-market-card {
    padding: 14px;
  }

  .css365jz-market-price {
    font-size: 18px;
    margin: 6px 0;
  }

  .css365jz-market-ft {
    flex-direction: column;
    gap: 2px;
    font-size: 11px;
  }
}

/* 增强的标准手机优化 (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  /* 在这个尺寸可以使用更宽松的布局 */
  .css365jz-container {
    padding: 0 20px;
  }

  .css365jz-hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .css365jz-hero-sub {
    font-size: 15px;
    line-height: 1.5;
  }

  .css365jz-section-title {
    font-size: 24px;
  }

  /* 某些组件可以使用2列布局 */
  .css365jz-download-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .css365jz-markets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .css365jz-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .css365jz-stats-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .css365jz-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .css365jz-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* 增强的平板设备优化 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .css365jz-container {
    padding: 0 32px;
  }

  .css365jz-hero-title {
    font-size: 34px;
  }

  .css365jz-hero-sub {
    font-size: 16px;
  }

  .css365jz-section-title {
    font-size: 26px;
  }

  /* 平板可以使用3列布局 */
  .css365jz-download-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .css365jz-markets-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .css365jz-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .css365jz-stats-band {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .css365jz-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .css365jz-news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* 移动端专用交互增强 */
@media (max-width: 768px) {
  /* 增强按钮和链接的触摸反馈 */
  .css365jz-btn:active,
  .css365jz-download-card:active,
  .css365jz-market-card:active,
  .css365jz-nav-link:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  /* 优化表单元素的移动端显示 */
  .css365jz-theme-chip {
    padding: 10px 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
  }

  /* 优化列表项的间距 */
  .css365jz-hero-bullets {
    gap: 10px;
    margin-top: 16px;
  }

  .css365jz-bullet {
    font-size: 14px;
    line-height: 1.4;
    padding-left: 16px;
    position: relative;
    list-style-type: none;
  }


  /* 优化页脚的移动端布局 */
  .css365jz-footer-inner {
    gap: 24px;
  }

  .css365jz-footer-col {
    margin-bottom: 20px;
  }

  .css365jz-footer-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .css365jz-footer-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .css365jz-footer-link {
    padding: 10px 0;
    font-size: 14px;
    display: block;
    min-height: 44px;
    line-height: 1.4;
  }

  /* 优化标签云的移动端显示 */
  .css365jz-tags {
    gap: 8px;
    margin-top: 16px;
  }

  .css365jz-tag {
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.3;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    border-radius: 18px;
  }

  /* 优化时间线的移动端显示 */
  .css365jz-timeline {
    padding-left: 18px;
  }

  .css365jz-timeline::before {
    left: 8px;
  }

  .css365jz-tl-dot {
    left: 2px;
    width: 10px;
    height: 10px;
  }

  .css365jz-tl-content {
    margin-left: 8px;
    padding: 12px 14px;
  }

  .css365jz-tl-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .css365jz-tl-desc {
    font-size: 12px;
    line-height: 1.4;
  }

  /* 优化对比表格的移动端显示 */
  .css365jz-compare {
    gap: 12px;
  }

  .css365jz-compare-col {
    padding: 16px 14px;
  }

  .css365jz-compare-title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .css365jz-compare-list {
    font-size: 12px;
    line-height: 1.5;
    padding-left: 14px;
  }

  .css365jz-compare-list li {
    list-style-type: none;
    margin-bottom: 6px;
  }
}

/* 移动端性能和可访问性优化 */
@media (max-width: 768px) {
  /* 优化滚动性能 */
  .css365jz-page {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  /* 优化文本选择 */
  .css365jz-hero-title,
  .css365jz-section-title {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
  }

  /* 优化图片显示 */
  .css365jz-hero-img {
    object-fit: cover;
    object-position: center;
  }

  /* 增强焦点可见性 */
  .css365jz-nav-link:focus,
  .css365jz-btn:focus,
  .css365jz-download-card:focus,
  .css365jz-theme-chip:focus {
    outline: 2px solid var(--css365jz-primary);
    outline-offset: 2px;
  }

  /* 优化输入元素 */
  .css365jz-theme-input:focus + .css365jz-theme-chip {
    outline: 2px solid var(--css365jz-primary);
    outline-offset: 2px;
  }
}

/* 横屏模式的额外优化 */
@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
  .css365jz-header-inner {
    height: 50px;
  }

  .css365jz-nav {
    top: 50px;
  }

  .css365jz-nav::after {
    top: 50px;
  }

  .css365jz-hero-inner {
    padding: 24px 0 20px;
  }

  .css365jz-hero-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .css365jz-hero-sub {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .css365jz-section {
    padding: 24px 0;
  }

  .css365jz-section-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
}

/* 大屏手机的特殊优化 (iPhone Plus, Android 大屏等) */
@media (min-width: 414px) and (max-width: 768px) {
  .css365jz-hero-title {
    font-size: 32px;
  }

  .css365jz-hero-sub {
    font-size: 16px;
  }

  .css365jz-section-title {
    font-size: 26px;
  }

  .css365jz-btn {
    padding: 14px 20px;
    font-size: 15px;
  }

  .css365jz-download-card {
    padding: 16px;
    gap: 12px;
  }

  .css365jz-download-ico {
    width: 48px;
    height: 48px;
  }
}

/* 折叠屏设备支持 */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .css365jz-container {
    padding: 0 40px;
  }

  .css365jz-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 40px;
  }

  .css365jz-hero-right {
    order: -1;
    display: none;
  }
  .css365jz-hero-right1 {
    display: flex; justify-content: center;
  }
  .css365jz-download-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .css365jz-markets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* 超高分辨率移动设备优化 */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 3),
       (max-width: 768px) and (min-resolution: 288dpi) {
  .css365jz-hero-img,
  .css365jz-download-ico,
  .css365jz-feature-ico {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  /* 优化边框和阴影 */
  .css365jz-frame,
  .css365jz-download-card,
  .css365jz-market-card {
    border-width: 0.5px;
  }
}

/* 移动端专用动画和过渡效果 */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  /* 平滑的页面滚动 */
  html {
    scroll-behavior: smooth;
  }

  /* 卡片悬停效果的移动端替代 */
  .css365jz-download-card,
  .css365jz-market-card,
  .css365jz-feature,
  .css365jz-news-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .css365jz-download-card:active,
  .css365jz-market-card:active,
  .css365jz-feature:active,
  .css365jz-news-card:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }

  /* 导航菜单的平滑动画 */
  .css365jz-nav {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .css365jz-nav::after {
    transition: opacity 0.3s ease;
  }

  /* 按钮的微妙动画 */
  .css365jz-btn {
    transition: all 0.2s ease;
  }

  .css365jz-btn:active {
    transform: scale(0.96);
  }
}

/* 移动端深色模式的额外优化 */
@media (max-width: 768px) and (prefers-color-scheme: dark) {
  .css365jz-nav {
    background: var(--css365jz-bg-soft);
    backdrop-filter: blur(10px);
  }

  .css365jz-nav::after {
    background: rgba(0,0,0,0.6);
  }

  /* 优化深色模式下的文本对比度 */
  .css365jz-hero-sub,
  .css365jz-section-sub,
  .css365jz-text-muted {
    color: #c1c7de;
  }
}

/* 移动端打印样式优化 */
@media print and (max-width: 768px) {
  .css365jz-nav,
  .css365jz-burger,
  .css365jz-theme-switcher,
  .css365jz-hero-wave {
    display: none !important;
  }

  .css365jz-page {
    background: white !important;
    color: black !important;
  }

  .css365jz-hero-inner {
    grid-template-columns: 1fr !important;
    padding: 20px 0 !important;
  }

  .css365jz-section {
    padding: 20px 0 !important;
    border-bottom: 1px solid #ccc !important;
  }

  .css365jz-container {
    padding: 0 10px !important;
  }
}

/* 移动端无障碍访问增强 */
@media (max-width: 768px) {
  /* 增强焦点指示器 */
  .css365jz-nav-link:focus-visible,
  .css365jz-btn:focus-visible,
  .css365jz-download-card:focus-visible,
  .css365jz-theme-chip:focus-visible {
    outline: 3px solid var(--css365jz-primary);
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* 确保文本有足够的对比度 */
  .css365jz-text-muted {
    color: #a8b2d1;
  }

  /* 优化跳转链接 */
  .css365jz-brand-link:focus-visible {
    outline: 2px solid var(--css365jz-primary);
    outline-offset: 2px;
    border-radius: 4px;
  }
}

/* 移动端错误处理和回退样式 */
@media (max-width: 768px) {
  /* CSS Grid 不支持时的回退 */
  @supports not (display: grid) {
    .css365jz-download-grid,
    .css365jz-markets-grid,
    .css365jz-feature-grid,
    .css365jz-stats-band,
    .css365jz-highlight-grid,
    .css365jz-news-grid {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
  }

  /* Flexbox 不支持时的回退 */
  @supports not (display: flex) {
    .css365jz-cta-group > * {
      display: block;
      margin-bottom: 12px;
    }

    .css365jz-header-inner > * {
      display: block;
      margin-bottom: 8px;
    }
  }

  /* CSS 变量不支持时的回退 */
  @supports not (color: var(--css365jz-primary)) {
    .css365jz-btn-primary {
      background: #4f7cff;
      color: #0c1223;
    }

    .css365jz-text {
      color: #e9ecf5;
    }

    .css365jz-text-muted {
      color: #b9c0d9;
    }
  }

  /* ========================================
     移动端内容对齐和布局优化
     ======================================== */

  /* 移动端文本对齐优化 */
  .css365jz-hero-title,
  .css365jz-section-title {
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  /* 移动端内容居中对齐 */
  .css365jz-hero-inner,
  .css365jz-section {
    text-align: center;
  }

  /* 移动端按钮组居中对齐 */
  .css365jz-cta-group {
    justify-content: center;
    align-items: center;
  }

  /* 移动端卡片内容左对齐（保持可读性） */
  .css365jz-download-card,
  .css365jz-market-card,
  .css365jz-feature,
  .css365jz-news-card {
    text-align: left;
  }

  /* 强制移动端单列布局 - 修复媒体查询冲突 */
  .css365jz-download-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .css365jz-markets-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .css365jz-feature-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .css365jz-highlight-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* 优化标签云的移动端布局 */
  .css365jz-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    justify-content: flex-start !important;
  }

  .css365jz-tag {
    flex: 0 0 auto !important;
    margin: 0 !important;
  }
}
.css365jz-download-card{
  display: flex;
  justify-content: center;
  align-items: center;
}
