/* CSS Variables matching AboutUsZh */
.columns-page[data-v-00369e92] {
  font-family: PingFangSCRegular, PingFangSC, 'PingFang SC', sans-serif, "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: #475569;
  line-height: 1.6;
  min-height: 100vh;
}
/* 面包屑导航 */
.breadcrumbs-bar[data-v-00369e92] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 90;
}
.breadcrumb-group[data-v-00369e92] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #79829c;
}
.breadcrumb-item[data-v-00369e92] {
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #79829c;
}
.breadcrumb-item[data-v-00369e92]:hover {
  color: #342e73;
}
.breadcrumb-item.active[data-v-00369e92] {
  color: #1e293b;
  font-weight: 500;
  cursor: default;
}
.breadcrumb-separator[data-v-00369e92] {
  color: #94a3b8;
}
/* Hero Section */
.hero[data-v-00369e92] {
  padding: 100px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid #f1f5f9;
}
.hero-inner[data-v-00369e92] {
  max-width: 800px;
  margin: 0 auto;
}
.hero h1[data-v-00369e92] {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #342e73;
  letter-spacing: -0.5px;
}
.hero-meta[data-v-00369e92] {
  font-size: 14px;
  letter-spacing: 2px;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.hero-desc[data-v-00369e92] {
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}
/* Filter Section */
.filter-section[data-v-00369e92] {
  background: #f8fafc;
  padding: 40px 24px 0;
  display: flex;
  justify-content: center;
}
.filter-container[data-v-00369e92] {
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tabs-group[data-v-00369e92] {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.tab-btn[data-v-00369e92] {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tab-btn[data-v-00369e92]:hover {
  color: #342e73;
  border-color: #6a64ba;
  background: #f3f2ff;
}
.tab-btn.active[data-v-00369e92] {
  background: #342e73;
  color: #ffffff;
  border-color: #342e73;
}
/* 专栏列表 */
.columns-list-wrapper[data-v-00369e92] {
  padding: 40px 24px 100px;
  background: #f8fafc;
}
.columns-grid[data-v-00369e92] {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.column-card[data-v-00369e92] {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 24px;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}
.column-card[data-v-00369e92]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6a64ba, #342e73);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.column-card[data-v-00369e92]:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.column-card[data-v-00369e92]:hover::before {
  opacity: 1;
}
.column-card:hover .card-link[data-v-00369e92] {
  color: #342e73;
}
.column-card:hover .card-link svg[data-v-00369e92] {
  transform: translateX(4px);
}
.coming-soon-card[data-v-00369e92] {
  border: 1px dashed #e5e5e5;
  background: #fdfdfd;
  cursor: default;
}
.coming-soon-card[data-v-00369e92]::before {
  display: none;
}
.coming-soon-card[data-v-00369e92]:hover {
  transform: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border-color: #e5e5e5;
}
.coming-soon-card .card-title[data-v-00369e92] {
  color: #94a3b8;
}
.coming-soon-card .card-desc[data-v-00369e92] {
  color: #94a3b8;
}
.coming-soon-card .card-number[data-v-00369e92] {
  color: #f1f5f9;
}
.coming-soon-card .text-muted[data-v-00369e92] {
  color: #94a3b8;
  cursor: default;
}
.card-header[data-v-00369e92] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.card-number[data-v-00369e92] {
  font-size: 36px;
  font-weight: 800;
  color: #f3f2ff;
  line-height: 1;
  font-family: Arial, sans-serif;
  letter-spacing: -1px;
}
.card-tags[data-v-00369e92] {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tag-badge[data-v-00369e92] {
  font-size: 12px;
  color: #6a64ba;
  background: #f3f2ff;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 500;
}
.card-main[data-v-00369e92] {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-title[data-v-00369e92] {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 12px 0;
  line-height: 1.4;
  transition: color 0.2s;
}
.column-card:hover .card-title[data-v-00369e92] {
  color: #342e73;
}
.card-desc[data-v-00369e92] {
  font-size: 15px;
  color: #475569;
  margin: 0 0 24px 0;
  line-height: 1.6;
  text-align: justify;
  flex: 1;
  /* Pushes footer down */
}
.card-footer[data-v-00369e92] {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}
.card-link[data-v-00369e92] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #6a64ba;
  transition: color 0.2s;
}
.card-link svg[data-v-00369e92] {
  transition: transform 0.2s;
}
.empty-state[data-v-00369e92] {
  text-align: center;
  padding: 60px 20px;
  color: #94a3b8;
}
.empty-state svg[data-v-00369e92] {
  margin-bottom: 16px;
  opacity: 0.5;
}
.empty-state h3[data-v-00369e92] {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 8px;
}
.empty-state p[data-v-00369e92] {
  font-size: 14px;
  margin-bottom: 24px;
}
.empty-state .reset-btn[data-v-00369e92] {
  padding: 10px 20px;
  background: #342e73;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.empty-state .reset-btn[data-v-00369e92]:hover {
  background: #241e52;
}
@media (max-width: 768px) {
.hero[data-v-00369e92] {
    padding: 60px 20px 40px;
}
.filter-section[data-v-00369e92] {
    padding: 30px 20px 0;
}
.columns-grid[data-v-00369e92] {
    grid-template-columns: 1fr;
}
}


.mobile-user-cluster[data-v-15bc394b] {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex: 0 1 auto;
}

/* 已登录 · 充值胶囊（统一规范：28px · 砖红描边 · 宝石图标） */
.mobile-user-cluster__recharge[data-v-15bc394b] {
  flex: 0 0 auto;
  height: 28px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(166, 77, 75, 0.28);
  border-radius: 14px;
  background: #fff5f4;
  color: #a64d4b;
  font-size: 12px;
  font-weight: 700;
  -webkit-tap-highlight-color: transparent;
}
.mobile-user-cluster__recharge-icon[data-v-15bc394b] {
  font-size: 13px;
  line-height: 1;
}
.mobile-user-cluster__recharge[data-v-15bc394b]:active {
  transform: scale(0.96);
  background: #ffece9;
}

/* 已登录 · 头像（统一规范：30px 圆 + 靛蓝淡描边） */
.mobile-user-cluster__avatar[data-v-15bc394b] {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex: 0 0 auto;
  background: #f1f0f8;
  border: 1px solid rgba(52, 46, 115, 0.12);
}

/* 未登录 · 登录按钮（沿用原主栏样式，不变） */
.mobile-user-cluster__login[data-v-15bc394b] {
  height: 30px;
  padding: 0 14px;
  border: 1px solid #342e73;
  border-radius: 15px;
  background: #342e73;
  color: #ffffff;
  font-size: 13px;
  line-height: 28px;
  flex: 0 0 auto;
  -webkit-tap-highlight-color: transparent;
}


.mobile-page-header[data-v-355425c0] {
  position: relative;
  z-index: 120;
  /* 占位高度，与下方 fixed dock 一致，避免页面内容被遮 */
  min-height: calc(60px + env(safe-area-inset-top));
  display: block;
  background: transparent;
  color: #342e73;
}
.PC .mobile-page-header[data-v-355425c0] {
  display: none;
}
.mobile-page-header__dock[data-v-355425c0] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  min-height: calc(60px + env(safe-area-inset-top));
  padding: calc(8px + env(safe-area-inset-top)) 14px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  /* 统一底座：页底色 + 底部发丝分隔（取代原「白浮卡 + 阴影」） */
  background: #f7f8fb;
  border-bottom: 1px solid rgba(52, 46, 115, 0.08);
  color: #342e73;
}
.mobile-page-header__inner[data-v-355425c0] {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  /* 去掉原白底 / 边框 / 圆角 / 阴影 */
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.mobile-page-header__back[data-v-355425c0],
.mobile-page-header__action[data-v-355425c0] {
  border: 0;
  -webkit-tap-highlight-color: transparent;
}
.mobile-page-header__back[data-v-355425c0] {
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  background: #f5f3fb;
  color: #342e73;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.mobile-page-header__back[data-v-355425c0]:active {
  transform: scale(0.96);
  background: #ece8f7;
}
.mobile-page-header__title[data-v-355425c0] {
  min-width: 0;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #1f2430;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobile-page-header__right[data-v-355425c0] {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}
.mobile-page-header__action[data-v-355425c0] {
  height: 28px;
  padding: 0 10px;
  border-radius: 14px;
  background: #f5f3fb;
  color: #342e73;
  font-size: 12px;
  line-height: 28px;
  font-weight: 700;
}
.mobile-page-header__action[data-v-355425c0]:active {
  transform: scale(0.96);
  background: #ece8f7;
}
@media (max-width: 390px) {
  /* 沿用原行为：窄屏隐藏可选动作按钮（如「使用」） */
.mobile-page-header__action[data-v-355425c0] {
    display: none;
}
}

.mobile-columns-page[data-v-62736e48] {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: var(--wt-color-surface-muted);
  color: var(--wt-color-text-secondary);
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom, 24px);
}
/* 手机版顶部导航 */
.mobile-header[data-v-62736e48] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  padding-top: calc(12px + env(safe-area-inset-top, 0));
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--wt-color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.back-btn[data-v-62736e48] {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  color: var(--wt-color-text-primary);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.2s;
}
.back-btn[data-v-62736e48]:active {
  opacity: 0.7;
}
.header-title[data-v-62736e48] {
  font-size: 18px;
  font-weight: 600;
  color: var(--wt-color-text-primary);
  letter-spacing: 0.2px;
}
.header-placeholder[data-v-62736e48] {
  width: 44px;
  height: 44px;
}
/* Hero - 手机版 */
.hero[data-v-62736e48] {
  padding: 36px 16px 40px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--wt-color-surface-muted) 100%);
  border-bottom: 1px solid #f1f5f9;
}
.hero-inner[data-v-62736e48] {
  max-width: 100%;
}
.hero h1[data-v-62736e48] {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--wt-color-primary);
  letter-spacing: -0.5px;
  line-height: 1.3;
}
.hero-desc[data-v-62736e48] {
  font-size: 15px;
  line-height: 1.75;
  color: #64748b;
  margin: 0;
  text-align: justify;
}
/* 搜索与筛选 - 手机版 */
.mobile-filter-section[data-v-62736e48] {
  background: var(--wt-color-surface-muted);
  padding: 24px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tabs-scroll-wrapper[data-v-62736e48] {
  margin: 0 -16px;
  padding: 0 16px 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tabs-scroll-wrapper[data-v-62736e48]::-webkit-scrollbar {
  display: none;
}
.tabs-group-mobile[data-v-62736e48] {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}
.tab-btn-mobile[data-v-62736e48] {
  padding: 6px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: #ffffff;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}
.tab-btn-mobile.active[data-v-62736e48] {
  background: var(--wt-color-primary);
  color: #ffffff;
  border-color: var(--wt-color-primary);
  box-shadow: 0 2px 6px rgba(52, 46, 115, 0.2);
}
/* 专栏列表 - 手机版 */
.columns-list-wrapper[data-v-62736e48] {
  padding: 20px 16px 48px;
  background: var(--wt-color-surface-muted);
}
.columns-list[data-v-62736e48] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.column-article[data-v-62736e48] {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.6);
  border-radius: 16px;
  padding: 24px;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  -webkit-tap-highlight-color: transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.column-article[data-v-62736e48]:active {
  transform: scale(0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.coming-soon-card[data-v-62736e48] {
  border: 1px dashed rgba(229, 231, 235, 0.8);
  background: #fdfdfd;
  cursor: default;
}
.coming-soon-card[data-v-62736e48]:active {
  transform: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.coming-soon-card .article-title[data-v-62736e48] {
  color: var(--wt-color-text-tertiary);
}
.coming-soon-card .article-desc[data-v-62736e48] {
  color: #94a3b8;
}
.coming-soon-card .article-number[data-v-62736e48] {
  color: #f1f5f9;
}
.coming-soon-card .text-muted[data-v-62736e48] {
  color: var(--wt-color-text-tertiary);
  opacity: 0.8;
}
.column-article-cover[data-v-62736e48] {
  margin: 4px 0 4px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.8);
}
.column-article-cover img[data-v-62736e48] {
  width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 240px;
  background: #f8fafc;
}
.article-header[data-v-62736e48] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2px;
}
.article-tags[data-v-62736e48] {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tag-badge[data-v-62736e48] {
  font-size: 11px;
  color: var(--wt-color-primary-hover);
  background: var(--wt-color-primary-soft);
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 500;
}
.article-number[data-v-62736e48] {
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--wt-color-primary);
  opacity: 0.15;
  line-height: 1;
  font-family: Arial, sans-serif;
  letter-spacing: -1px;
}
.article-main[data-v-62736e48] {
  flex: 1;
  min-width: 0;
}
.article-title[data-v-62736e48] {
  font-size: 18px;
  font-weight: 600;
  color: var(--wt-color-text-primary);
  margin: 0 0 12px 0;
  line-height: 1.5;
  letter-spacing: 0.1px;
}
.article-desc[data-v-62736e48] {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 16px 0;
  line-height: 1.7;
  text-align: justify;
}
.article-footer[data-v-62736e48] {
  display: flex;
  align-items: center;
}
.article-link[data-v-62736e48] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--wt-color-primary-hover);
  transition: opacity 0.2s;
}
.article-link svg[data-v-62736e48] {
  transition: transform 0.2s;
}
.column-article:active .article-link svg[data-v-62736e48] {
  transform: translateX(4px);
}
.empty-state[data-v-62736e48] {
  text-align: center;
  padding: 40px 20px;
  color: var(--wt-color-text-tertiary);
}
.empty-state svg[data-v-62736e48] {
  margin-bottom: 12px;
  opacity: 0.5;
}
.empty-state h3[data-v-62736e48] {
  font-size: 16px;
  color: var(--wt-color-text-primary);
  margin-bottom: 8px;
}
.empty-state p[data-v-62736e48] {
  font-size: 13px;
  margin-bottom: 20px;
}
.empty-state .reset-btn[data-v-62736e48] {
  padding: 8px 20px;
  background: var(--wt-color-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}

.article-dateline[data-v-05bc9123] {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

/* CSS Variables matching AboutUsZh */
.column-article-page[data-v-4138fa1a] {
  font-family: PingFangSCRegular, PingFangSC, 'PingFang SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: white;
  min-height: 100vh;
}
/* 面包屑导航 */
.breadcrumbs-bar[data-v-4138fa1a] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #E5E5E5;
  position: sticky;
  top: 0;
  z-index: 90;
}
.breadcrumb-group[data-v-4138fa1a] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #79829C;
}
.breadcrumb-item[data-v-4138fa1a] {
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #79829C;
}
.breadcrumb-item[data-v-4138fa1a]:hover {
  color: #342E73;
}
.breadcrumb-item.active[data-v-4138fa1a] {
  color: #1e293b;
  font-weight: 500;
  cursor: default;
}
.breadcrumb-separator[data-v-4138fa1a] {
  color: #94A3B8;
}
/* Article Hero */
.article-hero[data-v-4138fa1a] {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid #F1F5F9;
}
.article-hero-inner[data-v-4138fa1a] {
  max-width: 800px;
  margin: 0 auto;
}
.article-title[data-v-4138fa1a] {
  font-size: 36px;
  font-weight: 700;
  color: #342E73;
  margin: 0 0 24px 0;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.article-meta[data-v-4138fa1a] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.meta-item[data-v-4138fa1a] {
  font-size: 14px;
  color: #94a3b8;
  background: white;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
/* Article Content */
.article-content-wrapper[data-v-4138fa1a] {
  padding: 60px 24px 100px;
  background: white;
}
.article-content[data-v-4138fa1a] {
  max-width: 720px;
  margin: 0 auto;
}
.article-body[data-v-4138fa1a] {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}
.article-body[data-v-4138fa1a] p {
  margin: 0 0 1.5rem 0;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-4138fa1a] h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin: 3rem 0 1.5rem 0;
  position: relative;
  padding-left: 16px;
}
.article-body[data-v-4138fa1a] h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: #342E73;
  border-radius: 4px;
}
.article-body[data-v-4138fa1a] h3:first-child {
  margin-top: 0;
}
.article-body[data-v-4138fa1a] strong {
  color: #1e293b;
  font-weight: 600;
}
.article-body[data-v-4138fa1a] ul,
.article-body[data-v-4138fa1a] ol {
  margin: 0 0 1.5rem 0;
  padding-left: 1.75rem;
  list-style-position: outside;
}
.article-body[data-v-4138fa1a] ul {
  list-style-type: disc;
}
.article-body[data-v-4138fa1a] ol {
  list-style-type: decimal;
}
.article-body[data-v-4138fa1a] li {
  margin-bottom: 0.75rem;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-4138fa1a] .lead {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-indent: 0;
}
.article-body[data-v-4138fa1a] blockquote {
  margin: 2rem 0;
  padding: 1.35rem 1.6rem;
  background: #F8FAFC;
  border-left: 4px solid #6A64BA;
  border-radius: 0 8px 8px 0;
  color: #1e293b;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.article-body[data-v-4138fa1a] blockquote p:last-child {
  margin-bottom: 0;
}
.article-body[data-v-4138fa1a] .section-divider {
  border: none;
  border-top: 1px solid #E5E5E5;
  margin: 3rem 0;
}
.article-body[data-v-4138fa1a] .quote-block {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: #F8FAFC;
  border-left: 4px solid #6A64BA;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #1e293b;
  font-size: 17px;
}
.article-body[data-v-4138fa1a] .example-block {
  margin: 2rem 0;
  background: white;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.article-body[data-v-4138fa1a] .example-bad,
.article-body[data-v-4138fa1a] .example-good {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
}
.article-body[data-v-4138fa1a] .example-bad i,
.article-body[data-v-4138fa1a] .example-good i {
  font-style: normal;
  flex-shrink: 0;
  margin-top: 2px;
}
.article-body[data-v-4138fa1a] .example-bad {
  background: #FEF2F2;
  color: #991B1B;
  border-bottom: 1px solid #FEE2E2;
}
.article-body[data-v-4138fa1a] .example-good {
  background: #F0FDF4;
  color: #166534;
}
@media (max-width: 768px) {
.article-hero[data-v-4138fa1a] {
    padding: 60px 20px 40px;
}
.article-title[data-v-4138fa1a] {
    font-size: 28px;
}
.article-content-wrapper[data-v-4138fa1a] {
    padding: 40px 20px;
}
[data-v-4138fa1a] h3 {
    font-size: 20px;
}
[data-v-4138fa1a] .quote-block {
    padding: 1rem 1.25rem;
}
}

/* CSS Variables matching AboutUsZh */
.column-article-page[data-v-081759aa] {
  font-family: PingFangSCRegular, PingFangSC, 'PingFang SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: white;
  min-height: 100vh;
}
/* 面包屑导航 */
.breadcrumbs-bar[data-v-081759aa] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #E5E5E5;
  position: sticky;
  top: 0;
  z-index: 90;
}
.breadcrumb-group[data-v-081759aa] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #79829C;
}
.breadcrumb-item[data-v-081759aa] {
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #79829C;
}
.breadcrumb-item[data-v-081759aa]:hover {
  color: #342E73;
}
.breadcrumb-item.active[data-v-081759aa] {
  color: #1e293b;
  font-weight: 500;
  cursor: default;
}
.breadcrumb-separator[data-v-081759aa] {
  color: #94A3B8;
}
/* Article Hero */
.article-hero[data-v-081759aa] {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid #F1F5F9;
}
.article-hero-inner[data-v-081759aa] {
  max-width: 800px;
  margin: 0 auto;
}
.article-title[data-v-081759aa] {
  font-size: 36px;
  font-weight: 700;
  color: #342E73;
  margin: 0 0 24px 0;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.article-meta[data-v-081759aa] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.meta-item[data-v-081759aa] {
  font-size: 14px;
  color: #94a3b8;
  background: white;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
/* Article Content */
.article-content-wrapper[data-v-081759aa] {
  padding: 60px 24px 100px;
  background: white;
}
.article-content[data-v-081759aa] {
  max-width: 720px;
  margin: 0 auto;
}
.article-body[data-v-081759aa] {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}
.article-body[data-v-081759aa] p {
  margin: 0 0 1.5rem 0;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-081759aa] h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin: 3rem 0 1.5rem 0;
  position: relative;
  padding-left: 16px;
}
.article-body[data-v-081759aa] h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: #342E73;
  border-radius: 4px;
}
.article-body[data-v-081759aa] h3:first-child {
  margin-top: 0;
}
.article-body[data-v-081759aa] strong {
  color: #1e293b;
  font-weight: 600;
}
.article-body[data-v-081759aa] ul,
.article-body[data-v-081759aa] ol {
  margin: 0 0 1.5rem 0;
  padding-left: 1.75rem;
  list-style-position: outside;
}
.article-body[data-v-081759aa] ul {
  list-style-type: disc;
}
.article-body[data-v-081759aa] ol {
  list-style-type: decimal;
}
.article-body[data-v-081759aa] li {
  margin-bottom: 0.75rem;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-081759aa] .lead {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-indent: 0;
}
.article-body[data-v-081759aa] blockquote {
  margin: 2rem 0;
  padding: 1.35rem 1.6rem;
  background: #F8FAFC;
  border-left: 4px solid #6A64BA;
  border-radius: 0 8px 8px 0;
  color: #1e293b;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.article-body[data-v-081759aa] blockquote p:last-child {
  margin-bottom: 0;
}
.article-body[data-v-081759aa] .section-divider {
  border: none;
  border-top: 1px solid #E5E5E5;
  margin: 3rem 0;
}
@media (max-width: 768px) {
.article-hero[data-v-081759aa] {
    padding: 60px 20px 40px;
}
.article-title[data-v-081759aa] {
    font-size: 28px;
}
.article-content-wrapper[data-v-081759aa] {
    padding: 40px 20px;
}
[data-v-081759aa] h3 {
    font-size: 20px;
}
}

/* CSS Variables matching AboutUsZh */
.column-article-page[data-v-72a6eb1d] {
  font-family: PingFangSCRegular, PingFangSC, 'PingFang SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: white;
  min-height: 100vh;
}
/* 面包屑导航 */
.breadcrumbs-bar[data-v-72a6eb1d] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #E5E5E5;
  position: sticky;
  top: 0;
  z-index: 90;
}
.breadcrumb-group[data-v-72a6eb1d] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #79829C;
}
.breadcrumb-item[data-v-72a6eb1d] {
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #79829C;
}
.breadcrumb-item[data-v-72a6eb1d]:hover {
  color: #342E73;
}
.breadcrumb-item.active[data-v-72a6eb1d] {
  color: #1e293b;
  font-weight: 500;
  cursor: default;
}
.breadcrumb-separator[data-v-72a6eb1d] {
  color: #94A3B8;
}
/* Article Hero */
.article-hero[data-v-72a6eb1d] {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid #F1F5F9;
}
.article-hero-inner[data-v-72a6eb1d] {
  max-width: 800px;
  margin: 0 auto;
}
.article-title[data-v-72a6eb1d] {
  font-size: 36px;
  font-weight: 700;
  color: #342E73;
  margin: 0 0 24px 0;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.article-meta[data-v-72a6eb1d] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.meta-item[data-v-72a6eb1d] {
  font-size: 14px;
  color: #94a3b8;
  background: white;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
/* Article Content */
.article-content-wrapper[data-v-72a6eb1d] {
  padding: 60px 24px 100px;
  background: white;
}
.article-content[data-v-72a6eb1d] {
  max-width: 720px;
  margin: 0 auto;
}
.article-body[data-v-72a6eb1d] {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}
.article-body[data-v-72a6eb1d] p {
  margin: 0 0 1.5rem 0;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-72a6eb1d] h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin: 3rem 0 1.5rem 0;
  position: relative;
  padding-left: 16px;
}
.article-body[data-v-72a6eb1d] h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: #342E73;
  border-radius: 4px;
}
.article-body[data-v-72a6eb1d] h3:first-child {
  margin-top: 0;
}
.article-body[data-v-72a6eb1d] strong {
  color: #1e293b;
  font-weight: 600;
}
.article-body[data-v-72a6eb1d] ul,
.article-body[data-v-72a6eb1d] ol {
  margin: 0 0 1.5rem 0;
  padding-left: 1.75rem;
  list-style-position: outside;
}
.article-body[data-v-72a6eb1d] ul {
  list-style-type: disc;
}
.article-body[data-v-72a6eb1d] ol {
  list-style-type: decimal;
}
.article-body[data-v-72a6eb1d] li {
  margin-bottom: 0.75rem;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-72a6eb1d] .lead {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-indent: 0;
}
.article-body[data-v-72a6eb1d] blockquote {
  margin: 2rem 0;
  padding: 1.35rem 1.6rem;
  background: #F8FAFC;
  border-left: 4px solid #6A64BA;
  border-radius: 0 8px 8px 0;
  color: #1e293b;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.article-body[data-v-72a6eb1d] blockquote p:last-child {
  margin-bottom: 0;
}
.article-body[data-v-72a6eb1d] .section-divider {
  border: none;
  border-top: 1px solid #E5E5E5;
  margin: 3rem 0;
}
@media (max-width: 768px) {
.article-hero[data-v-72a6eb1d] {
    padding: 60px 20px 40px;
}
.article-title[data-v-72a6eb1d] {
    font-size: 28px;
}
.article-content-wrapper[data-v-72a6eb1d] {
    padding: 40px 20px;
}
[data-v-72a6eb1d] h3 {
    font-size: 20px;
}
}

/* CSS Variables matching AboutUsZh */
.column-article-page[data-v-7687b6d0] {
  font-family: PingFangSCRegular, PingFangSC, 'PingFang SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: white;
  min-height: 100vh;
}
/* 面包屑导航 */
.breadcrumbs-bar[data-v-7687b6d0] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #E5E5E5;
  position: sticky;
  top: 0;
  z-index: 90;
}
.breadcrumb-group[data-v-7687b6d0] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #79829C;
}
.breadcrumb-item[data-v-7687b6d0] {
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #79829C;
}
.breadcrumb-item[data-v-7687b6d0]:hover {
  color: #342E73;
}
.breadcrumb-item.active[data-v-7687b6d0] {
  color: #1e293b;
  font-weight: 500;
  cursor: default;
}
.breadcrumb-separator[data-v-7687b6d0] {
  color: #94A3B8;
}
/* Article Hero */
.article-hero[data-v-7687b6d0] {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid #F1F5F9;
}
.article-hero-inner[data-v-7687b6d0] {
  max-width: 800px;
  margin: 0 auto;
}
.article-title[data-v-7687b6d0] {
  font-size: 36px;
  font-weight: 700;
  color: #342E73;
  margin: 0 0 24px 0;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.article-meta[data-v-7687b6d0] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.meta-item[data-v-7687b6d0] {
  font-size: 14px;
  color: #94a3b8;
  background: white;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
/* Article Content */
.article-content-wrapper[data-v-7687b6d0] {
  padding: 60px 24px 100px;
  background: white;
}
.article-content[data-v-7687b6d0] {
  max-width: 720px;
  margin: 0 auto;
}
.article-body[data-v-7687b6d0] {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}
.article-body[data-v-7687b6d0] p {
  margin: 0 0 1.5rem 0;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-7687b6d0] h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin: 3rem 0 1.5rem 0;
  position: relative;
  padding-left: 16px;
}
.article-body[data-v-7687b6d0] h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: #342E73;
  border-radius: 4px;
}
.article-body[data-v-7687b6d0] h3:first-child {
  margin-top: 0;
}
.article-body[data-v-7687b6d0] strong {
  color: #1e293b;
  font-weight: 600;
}
.article-body[data-v-7687b6d0] ul,
.article-body[data-v-7687b6d0] ol {
  margin: 0 0 1.5rem 0;
  padding-left: 1.75rem;
  list-style-position: outside;
}
.article-body[data-v-7687b6d0] ul {
  list-style-type: disc;
}
.article-body[data-v-7687b6d0] ol {
  list-style-type: decimal;
}
.article-body[data-v-7687b6d0] li {
  margin-bottom: 0.75rem;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-7687b6d0] .lead {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-indent: 0;
}
.article-body[data-v-7687b6d0] blockquote {
  margin: 2rem 0;
  padding: 1.35rem 1.6rem;
  background: #F8FAFC;
  border-left: 4px solid #6A64BA;
  border-radius: 0 8px 8px 0;
  color: #1e293b;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.article-body[data-v-7687b6d0] blockquote p:last-child {
  margin-bottom: 0;
}
.article-body[data-v-7687b6d0] .section-divider {
  border: none;
  border-top: 1px solid #E5E5E5;
  margin: 3rem 0;
}
@media (max-width: 768px) {
.article-hero[data-v-7687b6d0] {
    padding: 60px 20px 40px;
}
.article-title[data-v-7687b6d0] {
    font-size: 28px;
}
.article-content-wrapper[data-v-7687b6d0] {
    padding: 40px 20px;
}
[data-v-7687b6d0] h3 {
    font-size: 20px;
}
}

.column-article-page[data-v-99c7cfec] {
  font-family: PingFangSCRegular, PingFangSC, 'PingFang SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: white;
  min-height: 100vh;
}
.breadcrumbs-bar[data-v-99c7cfec] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #E5E5E5;
  position: sticky;
  top: 0;
  z-index: 90;
}
.breadcrumb-group[data-v-99c7cfec] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #79829C;
}
.breadcrumb-item[data-v-99c7cfec] {
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #79829C;
}
.breadcrumb-item[data-v-99c7cfec]:hover {
  color: #342E73;
}
.breadcrumb-item.active[data-v-99c7cfec] {
  color: #1e293b;
  font-weight: 500;
  cursor: default;
}
.breadcrumb-separator[data-v-99c7cfec] {
  color: #94A3B8;
}
.article-hero[data-v-99c7cfec] {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid #F1F5F9;
}
.article-hero-inner[data-v-99c7cfec] {
  max-width: 800px;
  margin: 0 auto;
}
.article-title[data-v-99c7cfec] {
  font-size: 36px;
  font-weight: 700;
  color: #342E73;
  margin: 0 0 24px 0;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.article-content-wrapper[data-v-99c7cfec] {
  padding: 60px 24px 100px;
  background: white;
}
.article-content[data-v-99c7cfec] {
  max-width: 720px;
  margin: 0 auto;
}
.article-body[data-v-99c7cfec] {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}
.article-body[data-v-99c7cfec] p {
  margin: 0 0 1.5rem 0;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-99c7cfec] h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin: 3rem 0 1.5rem 0;
  position: relative;
  padding-left: 16px;
}
.article-body[data-v-99c7cfec] h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: #342E73;
  border-radius: 4px;
}
.article-body[data-v-99c7cfec] h3:first-child {
  margin-top: 0;
}
.article-body[data-v-99c7cfec] strong {
  color: #1e293b;
  font-weight: 600;
}
.article-body[data-v-99c7cfec] ul,
.article-body[data-v-99c7cfec] ol {
  margin: 0 0 1.5rem 0;
  padding-left: 1.75rem;
  list-style-position: outside;
}
.article-body[data-v-99c7cfec] ul {
  list-style-type: disc;
}
.article-body[data-v-99c7cfec] ol {
  list-style-type: decimal;
}
.article-body[data-v-99c7cfec] li {
  margin-bottom: 0.75rem;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-99c7cfec] .lead {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-indent: 0;
}
.article-body[data-v-99c7cfec] blockquote {
  margin: 2rem 0;
  padding: 1.35rem 1.6rem;
  background: #F8FAFC;
  border-left: 4px solid #6A64BA;
  border-radius: 0 8px 8px 0;
  color: #1e293b;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.article-body[data-v-99c7cfec] blockquote p:last-child {
  margin-bottom: 0;
}
.article-body[data-v-99c7cfec] .section-divider {
  border: none;
  border-top: 1px solid #E5E5E5;
  margin: 3rem 0;
}
@media (max-width: 768px) {
.article-hero[data-v-99c7cfec] {
    padding: 60px 20px 40px;
}
.article-title[data-v-99c7cfec] {
    font-size: 28px;
}
.article-content-wrapper[data-v-99c7cfec] {
    padding: 40px 20px;
}
[data-v-99c7cfec] h3 {
    font-size: 20px;
}
}

.column-article-page[data-v-1822b0ac] {
  font-family: PingFangSCRegular, PingFangSC, 'PingFang SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: white;
  min-height: 100vh;
}
.breadcrumbs-bar[data-v-1822b0ac] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #E5E5E5;
  position: sticky;
  top: 0;
  z-index: 90;
}
.breadcrumb-group[data-v-1822b0ac] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #79829C;
}
.breadcrumb-item[data-v-1822b0ac] {
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #79829C;
}
.breadcrumb-item[data-v-1822b0ac]:hover {
  color: #342E73;
}
.breadcrumb-item.active[data-v-1822b0ac] {
  color: #1e293b;
  font-weight: 500;
  cursor: default;
}
.breadcrumb-separator[data-v-1822b0ac] {
  color: #94A3B8;
}
.article-hero[data-v-1822b0ac] {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid #F1F5F9;
}
.article-hero-inner[data-v-1822b0ac] {
  max-width: 800px;
  margin: 0 auto;
}
.article-title[data-v-1822b0ac] {
  font-size: 36px;
  font-weight: 700;
  color: #342E73;
  margin: 0 0 24px 0;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.article-content-wrapper[data-v-1822b0ac] {
  padding: 60px 24px 100px;
  background: white;
}
.article-content[data-v-1822b0ac] {
  max-width: 720px;
  margin: 0 auto;
}
.article-body[data-v-1822b0ac] {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}
.article-body[data-v-1822b0ac] p {
  margin: 0 0 1.5rem 0;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-1822b0ac] h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin: 3rem 0 1.5rem 0;
  position: relative;
  padding-left: 16px;
}
.article-body[data-v-1822b0ac] h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: #342E73;
  border-radius: 4px;
}
.article-body[data-v-1822b0ac] h3:first-child {
  margin-top: 0;
}
.article-body[data-v-1822b0ac] strong {
  color: #1e293b;
  font-weight: 600;
}
.article-body[data-v-1822b0ac] ul,
.article-body[data-v-1822b0ac] ol {
  margin: 0 0 1.5rem 0;
  padding-left: 1.75rem;
  list-style-position: outside;
}
.article-body[data-v-1822b0ac] ul {
  list-style-type: disc;
}
.article-body[data-v-1822b0ac] ol {
  list-style-type: decimal;
}
.article-body[data-v-1822b0ac] li {
  margin-bottom: 0.75rem;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-1822b0ac] .lead {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-indent: 0;
}
.article-body[data-v-1822b0ac] blockquote {
  margin: 2rem 0;
  padding: 1.35rem 1.6rem;
  background: #F8FAFC;
  border-left: 4px solid #6A64BA;
  border-radius: 0 8px 8px 0;
  color: #1e293b;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.article-body[data-v-1822b0ac] blockquote p:last-child {
  margin-bottom: 0;
}
.article-body[data-v-1822b0ac] .section-divider {
  border: none;
  border-top: 1px solid #E5E5E5;
  margin: 3rem 0;
}
@media (max-width: 768px) {
.article-hero[data-v-1822b0ac] {
    padding: 60px 20px 40px;
}
.article-title[data-v-1822b0ac] {
    font-size: 28px;
}
.article-content-wrapper[data-v-1822b0ac] {
    padding: 40px 20px;
}
[data-v-1822b0ac] h3 {
    font-size: 20px;
}
}

.column-article-page[data-v-641526d5] {
  font-family: PingFangSCRegular, PingFangSC, 'PingFang SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: white;
  min-height: 100vh;
}
.breadcrumbs-bar[data-v-641526d5] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #E5E5E5;
  position: sticky;
  top: 0;
  z-index: 90;
}
.breadcrumb-group[data-v-641526d5] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #79829C;
}
.breadcrumb-item[data-v-641526d5] {
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #79829C;
}
.breadcrumb-item[data-v-641526d5]:hover {
  color: #342E73;
}
.breadcrumb-item.active[data-v-641526d5] {
  color: #1e293b;
  font-weight: 500;
  cursor: default;
}
.breadcrumb-separator[data-v-641526d5] {
  color: #94A3B8;
}
.article-hero[data-v-641526d5] {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid #F1F5F9;
}
.article-hero-inner[data-v-641526d5] {
  max-width: 800px;
  margin: 0 auto;
}
.article-title[data-v-641526d5] {
  font-size: 36px;
  font-weight: 700;
  color: #342E73;
  margin: 0 0 24px 0;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.article-content-wrapper[data-v-641526d5] {
  padding: 60px 24px 100px;
  background: white;
}
.article-content[data-v-641526d5] {
  max-width: 720px;
  margin: 0 auto;
}
.article-body[data-v-641526d5] {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  /* v-html 内图片：小屏与 WebView 下保证不溢出 */
}
.article-body[data-v-641526d5] p {
  margin: 0 0 1.5rem 0;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-641526d5] h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin: 3rem 0 1.5rem 0;
  position: relative;
  padding-left: 16px;
}
.article-body[data-v-641526d5] h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: #342E73;
  border-radius: 4px;
}
.article-body[data-v-641526d5] h3:first-child {
  margin-top: 0;
}
.article-body[data-v-641526d5] strong {
  color: #1e293b;
  font-weight: 600;
}
.article-body[data-v-641526d5] ul,
.article-body[data-v-641526d5] ol {
  margin: 0 0 1.5rem 0;
  padding-left: 1.75rem;
  list-style-position: outside;
}
.article-body[data-v-641526d5] ul {
  list-style-type: disc;
}
.article-body[data-v-641526d5] ol {
  list-style-type: decimal;
}
.article-body[data-v-641526d5] li {
  margin-bottom: 0.75rem;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-641526d5] .lead {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-indent: 0;
}
.article-body[data-v-641526d5] blockquote {
  margin: 2rem 0;
  padding: 1.35rem 1.6rem;
  background: #F8FAFC;
  border-left: 4px solid #6A64BA;
  border-radius: 0 8px 8px 0;
  color: #1e293b;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.article-body[data-v-641526d5] blockquote p:last-child {
  margin-bottom: 0;
}
.article-body[data-v-641526d5] .article-table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.article-body[data-v-641526d5] table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #ffffff;
}
.article-body[data-v-641526d5] th,
.article-body[data-v-641526d5] td {
  padding: 12px 14px;
  border-bottom: 1px solid #eef2f7;
  text-align: left;
  vertical-align: top;
}
.article-body[data-v-641526d5] th {
  color: #1e293b;
  background: #f8fafc;
  font-weight: 650;
}
.article-body[data-v-641526d5] tr:last-child td {
  border-bottom: none;
}
.article-body[data-v-641526d5] .section-divider {
  border: none;
  border-top: 1px solid #E5E5E5;
  margin: 3rem 0;
}
.article-body[data-v-641526d5] .source-block {
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 1.5rem;
  background: #F8FAFC;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
}
.article-body[data-v-641526d5] .source-label {
  text-indent: 0;
  margin-bottom: 0.75rem !important;
}
.article-body[data-v-641526d5] .source-text {
  text-indent: 0;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 0 !important;
  color: #1e293b;
}
.article-body[data-v-641526d5] .article-figure {
  margin: 1.25rem 0 2rem;
}
.article-body[data-v-641526d5] .article-figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
  border-radius: 8px;
}
.article-body[data-v-641526d5] .article-figure-placeholder .image-placeholder {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 2px dashed #E5E5E5;
  border-radius: 8px;
  background: #fafbfc;
  color: #94a3b8;
  font-size: 15px;
  text-align: center;
  box-sizing: border-box;
}
.article-body[data-v-641526d5] .image-placeholder-hint {
  text-indent: 0;
  margin-top: 0.5rem !important;
  margin-bottom: 0 !important;
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
}
@media (max-width: 768px) {
.article-hero[data-v-641526d5] {
    padding: 60px 20px 40px;
}
.article-title[data-v-641526d5] {
    font-size: 28px;
}
.article-content-wrapper[data-v-641526d5] {
    padding: 40px 16px;
}
.article-content[data-v-641526d5] {
    max-width: 100%;
}
[data-v-641526d5] h3 {
    font-size: 20px;
}
[data-v-641526d5] .article-figure {
    margin-left: 0;
    margin-right: 0;
}
}

.column-article-page[data-v-2e7c900b] {
  font-family: PingFangSCRegular, PingFangSC, 'PingFang SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: white;
  min-height: 100vh;
}
.breadcrumbs-bar[data-v-2e7c900b] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #E5E5E5;
  position: sticky;
  top: 0;
  z-index: 90;
}
.breadcrumb-group[data-v-2e7c900b] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #79829C;
}
.breadcrumb-item[data-v-2e7c900b] {
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #79829C;
}
.breadcrumb-item[data-v-2e7c900b]:hover {
  color: #342E73;
}
.breadcrumb-item.active[data-v-2e7c900b] {
  color: #1e293b;
  font-weight: 500;
  cursor: default;
}
.breadcrumb-separator[data-v-2e7c900b] {
  color: #94A3B8;
}
.article-hero[data-v-2e7c900b] {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid #F1F5F9;
}
.article-hero-inner[data-v-2e7c900b] {
  max-width: 800px;
  margin: 0 auto;
}
.article-title[data-v-2e7c900b] {
  font-size: 36px;
  font-weight: 700;
  color: #342E73;
  margin: 0 0 24px 0;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.article-content-wrapper[data-v-2e7c900b] {
  padding: 60px 24px 100px;
  background: white;
}
.article-content[data-v-2e7c900b] {
  max-width: 720px;
  margin: 0 auto;
}
.article-body[data-v-2e7c900b] {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}
.article-body[data-v-2e7c900b] p {
  margin: 0 0 1.5rem 0;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-2e7c900b] h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin: 3rem 0 1.5rem 0;
  position: relative;
  padding-left: 16px;
}
.article-body[data-v-2e7c900b] h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: #342E73;
  border-radius: 4px;
}
.article-body[data-v-2e7c900b] h3:first-child {
  margin-top: 0;
}
.article-body[data-v-2e7c900b] strong {
  color: #1e293b;
  font-weight: 600;
}
.article-body[data-v-2e7c900b] em {
  font-style: italic;
  color: #1e293b;
}
.article-body[data-v-2e7c900b] ul,
.article-body[data-v-2e7c900b] ol {
  margin: 0 0 1.5rem 0;
  padding-left: 1.75rem;
  list-style-position: outside;
}
.article-body[data-v-2e7c900b] ul {
  list-style-type: disc;
}
.article-body[data-v-2e7c900b] ol {
  list-style-type: decimal;
}
.article-body[data-v-2e7c900b] li {
  margin-bottom: 0.75rem;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-2e7c900b] .lead {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-indent: 0;
}
.article-body[data-v-2e7c900b] .term-showcase-title {
  text-align: center;
  text-indent: 0;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem !important;
}
.article-body[data-v-2e7c900b] .compare-label {
  text-align: left;
  text-indent: 0;
  margin-bottom: 0.75rem !important;
}
.article-body[data-v-2e7c900b] .compare-label strong {
  font-weight: 700;
  color: #1e293b;
}
.article-body[data-v-2e7c900b] .try-block {
  margin: 1.5rem 0 2.5rem;
  padding: 1.25rem 1.5rem;
  background: #F3F2FF;
  border-radius: 8px;
  border: 1px solid #E0DDF0;
}
.article-body[data-v-2e7c900b] .try-title {
  text-indent: 0;
  margin-bottom: 0.75rem !important;
  font-weight: 600;
  color: #1e293b;
}
.article-body[data-v-2e7c900b] .try-links-list {
  margin-bottom: 0 !important;
}
.article-body[data-v-2e7c900b] .try-links-list li {
  text-indent: 0;
  margin-bottom: 0.5rem;
}
.article-body[data-v-2e7c900b] .try-links-list a {
  color: #342E73;
  text-decoration: none;
  font-weight: 600;
  word-break: break-all;
}
.article-body[data-v-2e7c900b] .try-links-list a:hover {
  color: #6A64BA;
  text-decoration: underline;
}
.article-body[data-v-2e7c900b] blockquote {
  margin: 2rem 0;
  padding: 1.35rem 1.6rem;
  background: #F8FAFC;
  border-left: 4px solid #6A64BA;
  border-radius: 0 8px 8px 0;
  color: #1e293b;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.article-body[data-v-2e7c900b] blockquote p:last-child {
  margin-bottom: 0;
}
.article-body[data-v-2e7c900b] .section-divider {
  border: none;
  border-top: 1px solid #E5E5E5;
  margin: 3rem 0;
}
.article-body[data-v-2e7c900b] .article-figure {
  margin: 1.25rem 0 2rem;
}
.article-body[data-v-2e7c900b] .article-figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
  border-radius: 8px;
}
@media (max-width: 768px) {
.article-hero[data-v-2e7c900b] {
    padding: 60px 20px 40px;
}
.article-title[data-v-2e7c900b] {
    font-size: 28px;
}
.article-content-wrapper[data-v-2e7c900b] {
    padding: 40px 16px;
}
.article-content[data-v-2e7c900b] {
    max-width: 100%;
}
[data-v-2e7c900b] h3 {
    font-size: 20px;
}
[data-v-2e7c900b] .article-figure {
    margin-left: 0;
    margin-right: 0;
}
}

.column-article-page[data-v-25757645] {
  font-family: PingFangSCRegular, PingFangSC, 'PingFang SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: white;
  min-height: 100vh;
}
.breadcrumbs-bar[data-v-25757645] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #E5E5E5;
  position: sticky;
  top: 0;
  z-index: 90;
}
.breadcrumb-group[data-v-25757645] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #79829C;
}
.breadcrumb-item[data-v-25757645] {
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #79829C;
}
.breadcrumb-item[data-v-25757645]:hover {
  color: #342E73;
}
.breadcrumb-item.active[data-v-25757645] {
  color: #1e293b;
  font-weight: 500;
  cursor: default;
}
.breadcrumb-separator[data-v-25757645] {
  color: #94A3B8;
}
.article-hero[data-v-25757645] {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid #F1F5F9;
}
.article-hero-inner[data-v-25757645] {
  max-width: 800px;
  margin: 0 auto;
}
.article-title[data-v-25757645] {
  font-size: 36px;
  font-weight: 700;
  color: #342E73;
  margin: 0 0 24px 0;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.article-content-wrapper[data-v-25757645] {
  padding: 60px 24px 100px;
  background: white;
}
.article-content[data-v-25757645] {
  max-width: 720px;
  margin: 0 auto;
}
.article-body[data-v-25757645] {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}
.article-body[data-v-25757645] p {
  margin: 0 0 1.5rem 0;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-25757645] h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin: 3rem 0 1.5rem 0;
  position: relative;
  padding-left: 16px;
}
.article-body[data-v-25757645] h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: #342E73;
  border-radius: 4px;
}
.article-body[data-v-25757645] h3:first-child {
  margin-top: 0;
}
.article-body[data-v-25757645] strong {
  color: #1e293b;
  font-weight: 600;
}
.article-body[data-v-25757645] em {
  font-style: italic;
  color: #1e293b;
}
.article-body[data-v-25757645] ul,
.article-body[data-v-25757645] ol {
  margin: 0 0 1.5rem 0;
  padding-left: 1.75rem;
  list-style-position: outside;
}
.article-body[data-v-25757645] ul {
  list-style-type: disc;
}
.article-body[data-v-25757645] ol {
  list-style-type: decimal;
}
.article-body[data-v-25757645] li {
  margin-bottom: 0.75rem;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-25757645] .lead {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-indent: 0;
}
.article-body[data-v-25757645] .term-showcase-title {
  text-align: center;
  text-indent: 0;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem !important;
}
.article-body[data-v-25757645] .compare-label {
  text-align: left;
  text-indent: 0;
  margin-bottom: 0.75rem !important;
}
.article-body[data-v-25757645] .compare-label strong {
  font-weight: 700;
  color: #1e293b;
}
.article-body[data-v-25757645] .try-block {
  margin: 1.5rem 0 2.5rem;
  padding: 1.25rem 1.5rem;
  background: #F3F2FF;
  border-radius: 8px;
  border: 1px solid #E0DDF0;
}
.article-body[data-v-25757645] .try-title {
  text-indent: 0;
  margin-bottom: 0.75rem !important;
  font-weight: 600;
  color: #1e293b;
}
.article-body[data-v-25757645] .try-links-list {
  margin-bottom: 0 !important;
}
.article-body[data-v-25757645] .try-links-list li {
  text-indent: 0;
  margin-bottom: 0.5rem;
}
.article-body[data-v-25757645] .try-links-list a {
  color: #342E73;
  text-decoration: none;
  font-weight: 600;
  word-break: break-all;
}
.article-body[data-v-25757645] .try-links-list a:hover {
  color: #6A64BA;
  text-decoration: underline;
}
.article-body[data-v-25757645] blockquote {
  margin: 2rem 0;
  padding: 1.35rem 1.6rem;
  background: #F8FAFC;
  border-left: 4px solid #6A64BA;
  border-radius: 0 8px 8px 0;
  color: #1e293b;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.article-body[data-v-25757645] blockquote p:last-child {
  margin-bottom: 0;
}
.article-body[data-v-25757645] .section-divider {
  border: none;
  border-top: 1px solid #E5E5E5;
  margin: 3rem 0;
}
.article-body[data-v-25757645] .article-figure {
  margin: 1.25rem 0 2rem;
}
.article-body[data-v-25757645] .article-figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
  border-radius: 8px;
}
@media (max-width: 768px) {
.article-hero[data-v-25757645] {
    padding: 60px 20px 40px;
}
.article-title[data-v-25757645] {
    font-size: 28px;
}
.article-content-wrapper[data-v-25757645] {
    padding: 40px 16px;
}
.article-content[data-v-25757645] {
    max-width: 100%;
}
[data-v-25757645] h3 {
    font-size: 20px;
}
[data-v-25757645] .article-figure {
    margin-left: 0;
    margin-right: 0;
}
}

.column-article-page[data-v-2df5e910] {
  font-family: PingFangSCRegular, PingFangSC, 'PingFang SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: white;
  min-height: 100vh;
}
.breadcrumbs-bar[data-v-2df5e910] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #E5E5E5;
  position: sticky;
  top: 0;
  z-index: 90;
}
.breadcrumb-group[data-v-2df5e910] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #79829C;
}
.breadcrumb-item[data-v-2df5e910] {
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #79829C;
}
.breadcrumb-item[data-v-2df5e910]:hover {
  color: #342E73;
}
.breadcrumb-item.active[data-v-2df5e910] {
  color: #1e293b;
  font-weight: 500;
  cursor: default;
}
.breadcrumb-separator[data-v-2df5e910] {
  color: #94A3B8;
}
.article-hero[data-v-2df5e910] {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid #F1F5F9;
}
.article-hero-inner[data-v-2df5e910] {
  max-width: 800px;
  margin: 0 auto;
}
.article-title[data-v-2df5e910] {
  font-size: 36px;
  font-weight: 700;
  color: #342E73;
  margin: 0 0 24px 0;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.article-content-wrapper[data-v-2df5e910] {
  padding: 60px 24px 100px;
  background: white;
}
.article-content[data-v-2df5e910] {
  max-width: 720px;
  margin: 0 auto;
}
.article-body[data-v-2df5e910] {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}
.article-body[data-v-2df5e910] p {
  margin: 0 0 1.5rem 0;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-2df5e910] h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin: 3rem 0 1.5rem 0;
  position: relative;
  padding-left: 16px;
}
.article-body[data-v-2df5e910] h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: #342E73;
  border-radius: 4px;
}
.article-body[data-v-2df5e910] h3:first-child {
  margin-top: 0;
}
.article-body[data-v-2df5e910] strong {
  color: #1e293b;
  font-weight: 600;
}
.article-body[data-v-2df5e910] em {
  font-style: italic;
  color: #1e293b;
}
.article-body[data-v-2df5e910] ul,
.article-body[data-v-2df5e910] ol {
  margin: 0 0 1.5rem 0;
  padding-left: 1.75rem;
  list-style-position: outside;
}
.article-body[data-v-2df5e910] ul {
  list-style-type: disc;
}
.article-body[data-v-2df5e910] ol {
  list-style-type: decimal;
}
.article-body[data-v-2df5e910] li {
  margin-bottom: 0.75rem;
  text-align: justify;
  text-indent: 2em;
}
.article-body[data-v-2df5e910] .lead {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-indent: 0;
}
.article-body[data-v-2df5e910] blockquote {
  margin: 2rem 0;
  padding: 1.35rem 1.6rem;
  background: #F8FAFC;
  border-left: 4px solid #6A64BA;
  border-radius: 0 8px 8px 0;
  color: #1e293b;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.article-body[data-v-2df5e910] blockquote p:last-child {
  margin-bottom: 0;
}
.article-body[data-v-2df5e910] .section-divider {
  border: none;
  border-top: 1px solid #E5E5E5;
  margin: 3rem 0;
}
.article-body[data-v-2df5e910] .article-figure {
  margin: 1.25rem 0 2rem;
}
.article-body[data-v-2df5e910] .article-figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
  border-radius: 8px;
}
@media (max-width: 768px) {
.article-hero[data-v-2df5e910] {
    padding: 60px 20px 40px;
}
.article-title[data-v-2df5e910] {
    font-size: 28px;
}
.article-content-wrapper[data-v-2df5e910] {
    padding: 40px 16px;
}
.article-content[data-v-2df5e910] {
    max-width: 100%;
}
[data-v-2df5e910] h3 {
    font-size: 20px;
}
[data-v-2df5e910] .article-figure {
    margin-left: 0;
    margin-right: 0;
}
}

.column-article-page[data-v-10915bec] {
  min-height: 100vh;
  background: #fff;
  color: #1f2937;
}
.breadcrumbs-bar[data-v-10915bec] {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.breadcrumb-group[data-v-10915bec] {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 14px;
  color: #64748b;
}
.breadcrumb-item[data-v-10915bec] {
  color: inherit;
  text-decoration: none;
}
.breadcrumb-item.active[data-v-10915bec] {
  overflow: hidden;
  color: #0f172a;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb-separator[data-v-10915bec] {
  color: #94a3b8;
}
.article-hero[data-v-10915bec] {
  padding: 72px 24px 40px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e5e7eb;
}
.article-hero-inner[data-v-10915bec] {
  max-width: 760px;
  margin: 0 auto;
}
.article-eyebrow[data-v-10915bec] {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #475569;
}
.article-title[data-v-10915bec] {
  margin: 0;
  font-size: 40px;
  line-height: 1.2;
  color: #0f172a;
}
.article-language-link[data-v-10915bec] {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: #342e73;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.article-content-wrapper[data-v-10915bec] {
  padding: 48px 24px 88px;
}
.article-content[data-v-10915bec] {
  max-width: 760px;
  margin: 0 auto;
}
.article-empty[data-v-10915bec] {
  padding: 16px 0;
}
.article-empty h2[data-v-10915bec] {
  margin: 0 0 12px;
  font-size: 28px;
  color: #0f172a;
}
.article-empty p[data-v-10915bec] {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}
.article-body[data-v-10915bec] h2,
.article-body[data-v-10915bec] h3 {
  margin: 32px 0 14px;
  color: #1e1b4b;
  line-height: 1.35;
}
.article-body[data-v-10915bec] h2 {
  font-size: 28px;
}
.article-body[data-v-10915bec] h3 {
  font-size: 22px;
}
.article-body[data-v-10915bec] p,
.article-body[data-v-10915bec] li {
  font-size: 16px;
  line-height: 1.9;
  color: #334155;
}
.article-body[data-v-10915bec] ul,
.article-body[data-v-10915bec] ol {
  padding-left: 22px;
}
.article-body[data-v-10915bec] blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid #342e73;
  background: #f8fafc;
  border-radius: 8px;
}
.article-body[data-v-10915bec] .section-divider {
  margin: 32px 0;
  border: 0;
  border-top: 1px solid #e5e7eb;
}
.article-body[data-v-10915bec] .article-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}
.article-body[data-v-10915bec] table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.article-body[data-v-10915bec] th,
.article-body[data-v-10915bec] td {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}
.article-body[data-v-10915bec] th {
  background: #f8fafc;
  color: #0f172a;
}
.article-body[data-v-10915bec] tr:last-child td {
  border-bottom: 0;
}
.article-body[data-v-10915bec] a {
  color: #342e73;
}
@media (max-width: 768px) {
.breadcrumbs-bar[data-v-10915bec] {
    padding: 10px 16px;
}
.article-hero[data-v-10915bec] {
    padding: 48px 16px 28px;
}
.article-title[data-v-10915bec] {
    font-size: 30px;
}
.article-content-wrapper[data-v-10915bec] {
    padding: 32px 16px 56px;
}
.article-body[data-v-10915bec] h2 {
    font-size: 24px;
}
.article-body[data-v-10915bec] h3 {
    font-size: 20px;
}
.article-body[data-v-10915bec] p,
  .article-body[data-v-10915bec] li {
    font-size: 15px;
}
}

