@charset "UTF-8";

/* ===================== 合并 style.css 主要内容 ===================== */
/* 统一前缀 -c-，并与 main.css 结构融合，避免重复和冲突 */
/* 侧边栏、主内容、卡片、按钮、导航等样式优化 */

/* 面包屑导航 */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.9rem;
  color: #666;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.breadcrumb a {
  color: var(--heo-theme, #4375ff);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 8px;
  color: #999;
}

.need-padding {
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 侧边栏 */
.-c-sidebar {
  flex: 0 0 320px;
  max-width: 320px;
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 32px 24px;
  margin-right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 24px #0001;
}
.-c-avatar-container {
  margin-bottom: 24px;
}
.-c-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.-c-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.-c-profile-section {
  margin-bottom: 24px;
  width: 100%;
}
.-c-profile-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.-c-tags-section {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.-c-tag-item {
  background: var(--left_tag_item, #e0e7ff);
  color: #222;
  border-radius: 16px;
  padding: 6px 14px;
  font-size: 0.95rem;
}
.-c-timeline-section {
  width: 100%;
  background: rgba(255,255,255,0.45);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  backdrop-filter: blur(12px) saturate(1.2);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(60,60,60,0.08);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  border: 1.5px solid rgba(200,200,200,0.18);
  transition: background 0.3s;
}
@media (prefers-color-scheme: dark) {
  .-c-timeline-section {
    background: rgba(30,32,38,0.38);
    border: 1.5px solid rgba(80,80,80,0.22);
  }
}
.-c-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.-c-timeline li {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  position: relative;
  border-radius: 12px;
  background: rgba(255,255,255,0.22);
  box-shadow: 0 2px 8px 0 rgba(60,60,60,0.04);
  padding: 0.7rem 1.1rem;
  transition: background 0.3s;
  gap: 8px;
  font-size: 1.04rem;
}
@media (prefers-color-scheme: dark) {
  .-c-timeline li {
    background: rgba(40,42,48,0.32);
  }
}
.-c-timeline-focus {
  width: 13px;
  height: 13px;
  background: var(--heo-primary);
  border-radius: 50%;
  margin-right: 1.1rem;
  box-shadow: 0 0 0 2.5px var(--heo-primary-light);
  border: 2.5px solid #fff;
  opacity: 0.92;
}
.-c-timeline li > div {
  font-size: 1.04rem;
  color: var(--heo-text);
  margin-right: 0.7rem;
  word-break: break-all;
}
.-c-timeline li > div:last-child {
  margin-right: 0;
  color: var(--heo-secondary-text);
  font-size: 0.98rem;
}

/* 主内容区 */
.-c-main-container {
  display: flex;
  gap: 32px;
  margin-top: 20px; /* 减少顶部边距，因为添加了面包屑导航 */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px; /* 添加内边距保持一致 */
}
.-c-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* 英雄区 */
.-c-hero-section {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}
.-c-hero-content {
  flex: 1;
}
.-c-hero-titles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 2.2rem;
  font-weight: bold;
}
.-c-hero-title {
  color: var(--heo-theme, #4375ff);
}
.-c-hero-description {
  margin: 24px 0;
}
.-c-hero-text {
  font-size: 1.3rem;
  color: #222;
}
.-c-hero-highlight {
  color: var(--heo-theme, #4375ff);
  font-weight: bold;
}
.-c-hero-actions {
  display: flex;
  gap: 16px;
}
.-c-hero-banner img {
  width: 320px;
  border-radius: 18px;
  box-shadow: 0 4px 24px #0001;
}

/* 知识库区 */
.-c-knowledge-section {
  margin: 48px 0;
}
.-c-section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 24px;
}
.-c-knowledge-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.-c-knowledge-card {
  flex: 1;
  min-width: 260px;
  max-width: 360px;
  background: linear-gradient(135deg,#e0e7ff 0%,#f0fdfa 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px #0001;
  padding: 32px 28px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  transition: box-shadow .3s;
  text-decoration: none;
  color: #222;
  gap: 18px;
}
.-c-knowledge-card:hover {
  box-shadow: 0 8px 32px #0002;
}
.-c-knowledge-icon {
  font-size: 2.2rem;
  font-weight: bold;
  margin-top: 4px;
}
.-c-knowledge-content {
  flex: 1;
}
.-c-knowledge-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.-c-knowledge-desc {
  font-size: 1rem;
  opacity: .8;
  margin-bottom: 12px;
}
.-c-knowledge-link {
  font-size: 1rem;
  color: var(--heo-theme, #4375ff);
  font-weight: bold;
}

/* 技能区 */
.-c-skills-section {
  margin: 48px 0;
}
.-c-skills-container {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  align-items: center;
}
.-c-skill-icon {
  height: 80px;
}

/* 项目区 */
.-c-projects-section {
  margin: 48px 0;
}
.-c-projects-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.-c-project-item {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  background: var(--heo-card-bg, #fff);
  border-radius: 18px;
  box-shadow: 0 4px 24px #0001;
  padding: 24px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: #222;
  transition: box-shadow .3s, transform .3s;
}
.-c-project-item:hover {
  box-shadow: 0 8px 32px #0002;
  transform: translateY(-4px);
}
.-c-project-info {
  flex: 1;
}
.-c-project-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 6px;
}
.-c-project-desc {
  font-size: 0.95rem;
  opacity: 0.8;
}
.-c-project-image img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

/* banner区 */
.-c-product-banner {
  background-image: linear-gradient(180deg, #2E8B57 0%, #1E5631 100%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 94px 0 0 0;
  min-height: 800px;
  border-radius: 24px;
  margin: 40px 0;
  overflow: hidden;
  position: relative;
}
.-c-banner-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.-c-banner-tip {
  color: var(--heo-vip, #e5a80d);
  font-size: 14px;
}
.-c-banner-title {
  font-size: 56px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 60px;
  margin-top: 12px;
}
.-c-banner-punctuation {
  position: absolute;
}
.-c-banner-description-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.8;
  margin: 24px 0 32px 0;
}
.-c-banner-description {
  font-size: 16px;
  color: #fff;
  text-align: center;
}
.-c-banner-actions {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.-c-button {
  padding: 8px 26px;
  background: var(--heo-theme, #4375ff);
  color: #fff;
  border-radius: 26px;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: bold;
  margin-right: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.-c-button-primary {
  background: #fff;
  color: var(--heo-theme, #4375ff);
}
.-c-button-icon {
  padding: 0 16px;
  font-size: 20px;
}
.-c-banner-image {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  height: 400px;
  position: absolute;
  bottom: 100px;
}
.-c-banner-image-element {
  max-width: 968px;
  width: 100%;
  margin: auto;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* 页脚 */
.-c-footer {
  padding: 60px 0 60px 0;
  display: flex;
  justify-content: center;
  width: 100%;
  background: var(--heo-secondbg, #eaeaea);
  margin-top: 80px;
  align-items: center;
}
.-c-footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.-c-footer-links {
  margin-top: 8px;
}
.-c-footer-link {
  font-size: 12px;
  color: var(--heo-theme, #4375ff);
  opacity: 0.7;
  margin: 0 8px;
  text-decoration: none;
}
.-c-footer-link:hover {
  opacity: 1;
}

/* 响应式优化 */
@media (max-width: 900px) {
  .-c-main-container {
    flex-direction: column;
    gap: 0;
  }
  .-c-sidebar {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }
  .-c-hero-section {
    flex-direction: column;
    gap: 24px;
  }
  .-c-hero-banner img {
    width: 100%;
    max-width: 400px;
  }
  .-c-knowledge-grid, .-c-projects-grid, .-c-skills-container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .-c-main-container {
    padding: 0 8px;
  }
  .-c-section-title {
    font-size: 1.3rem;
  }
  .-c-banner-title {
    font-size: 2rem;
  }
  .-c-hero-titles {
    font-size: 1.2rem;
  }
}
@charset "UTF-8";

:root {
  --heo-white: #fff;
  --heo-white-op: rgba(255, 255, 255, 0.2);
  --heo-black: #000;
  --heo-black-op: rgba(0, 0, 0, 0.2);
  --heo-none: #00001e00;
  --heo-gray: #999999;
  --heo-gray-op: #9999992b;
  --heo-vip: #e5a80d;
  --heo-main: var(--heo-theme);
  --heo-main-op: var(--heo-theme-op);
  --heo-main-none: var(--heo-theme-none);
  --heo-shadow-theme: 0 8px 12px -3px var(--heo-theme-op);
  --heo-shadow-blackdeep: 0 2px 16px -3px rgba(0, 0, 0, .15);
  --heo-shadow-main: 0 8px 12px -3px var(--heo-main-op);
  --heo-shadow-blue: 0 8px 12px -3px rgba(40, 109, 234, .20);
  --heo-shadow-white: 0 8px 12px -3px rgba(255, 255, 255, .20);
  --heo-shadow-black: 0 0 12px 4px rgba(0, 0, 0, .05);
  --heo-shadow-yellow: 0px 38px 77px -26px rgba(255, 201, 62, .12);
  --heo-shadow-red: 0 8px 12px -3px #ee7d7936;
  --heo-shadow-green: 0 8px 12px -3px #87ee7936;
  --heo-logo-color: linear-gradient(215deg, #4584ff 0%, #cf0db9 100%);
  --heo-snackbar-time: 5s;
  --style-border: 1px solid var(--heo-card-border);
  --style-border-always: 1px solid var(--heo-card-border);
  --style-border-hover: 1px solid var(--heo-main);
  --style-border-hover-always: 1px solid var(--heo-main);
  --style-border-dashed: 1px dashed var(--heo-theme-op);
  
  /* 新增的项目卡片样式变量 */
  --heo-card-bg: rgba(255, 255, 255, 0.9);
  --heo-font-color: #333;
  --heo-card-border: #e0e0e0;
}

::selection {
  background: var(--heo-fontcolor);
  color: var(--heo-background);
}

/* ===================== 主题变量（仅保留一套，支持切换） ===================== */
html {
  /* 默认主题，可通过 data-theme 切换 */
  --name: 默认主题;
  --heo-theme: #4375ff;
  --heo-theme-op: #4375ff23;
  --main_bg_color: #101522;
  --main_text_color: #eeeeee;
  --gradient: linear-gradient(120deg, #bd34fe, #e0321b 30%, #41d1ff 60%);
  --purple_text_color: #747bff;
  --text_bg_color: #00000040;
  --item_bg_color: #00000038;
  --item_hover_color: #33333338;
  --item_left_title_color: #ffffff;
  --item_left_text_color: #ffffff;
  --footer_text_color: #ffffff;
  --left_tag_item: rgb(27 42 57 / 20%);
  --card_filter: 15px;
  --back_filter: 0px;
  --back_filter_color: #00000030;
  --fill: #ffffff;
/* END 主题变量区块 */

html[data-theme="light"] {
  --main_bg_color: url('https://www.bing.com/th?id=OHR.BingWallpaper&w=1920&h=1080&rs=1&pid=hp');
html[data-theme="dark"] {
  --main_bg_color: #101522;
  --main_text_color: #eeeeee;
}
  --main_text_color: #000000;
  --item_bg_color: rgb(247 247 247);
  --item_hover_color: rgba(244, 245, 246, 0.5);
  --item_left_title_color: #000000;
  --item_left_text_color: #494949;
  --footer_text_color: #222222;
  --left_tag_item: #ffffff;
  --card_filter: 0px;
  --back_filter: 0px;
  --back_filter_color: #00000000;
  --fill: #000000;
  --heo-card-bg: rgba(255, 255, 255, 0.9);
  --heo-font-color: #333;
  --heo-card-border: #e0e0e0;
}

html[data-theme="blue"] {
  --main_bg_color: linear-gradient(50deg, #a2d1ff, #ffffff);
  --main_text_color: #000000;
  --item_bg_color: rgba(249, 250, 251, 0.5);
  --item_hover_color: rgba(244, 245, 246, 0.8);
  --item_left_title_color: #000000;
  --item_left_text_color: #494949;
  --footer_text_color: #222222;
  --left_tag_item: linear-gradient(50deg, #a2d1ff, #ffffff);
  --card_filter: 0px;
  --back_filter: 0px;
  --back_filter_color: #00000000;
  --fill: #000000;
  --heo-card-bg: rgba(255, 255, 255, 0.9);
  --heo-font-color: #333;
  --heo-card-border: #a2d1ff;
}

html[data-theme="light2"] {
  --main_bg_color: url(../img/background.jpg);
  --main_text_color: #000000;
  --item_bg_color: rgba(249, 250, 251, 0.42);
  --item_hover_color: rgba(244, 245, 246, 0.8);
  --item_left_title_color: #000000;
  --item_left_text_color: #494949;
  --footer_text_color: #ffffff;
  --left_tag_item: #c7e1fa;
  --card_filter: 0px;
  --back_filter: 0px;
  --back_filter_color: #00000000;
  --fill: #000000;
  --heo-card-bg: rgba(255, 255, 255, 0.7);
  --heo-font-color: #333;
  --heo-card-border: #c7e1fa;
}

/* 全局样式 */
* {
  box-sizing: border-box;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

html {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--main_bg_color);
  background-attachment: fixed;
  background-size: cover;
  color: var(--main_text_color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 导航栏样式 */
.\-c-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
}

.\-c-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.\-c-nav-left {
  display: flex;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.site-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.\-c-nav-center {
  display: flex;
  gap: 24px;
}

.\-c-nav-item {
  color: #666;
  font-size: 1rem;
  transition: color 0.3s;
}

.\-c-nav-item:hover {
  color: var(--heo-theme);
}

.\-c-nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.\-c-nav-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.\-c-menu-list {
  display: none;
}

/* 面包屑导航 */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: var(--heo-theme);
}

.breadcrumb span {
  margin: 0 8px;
}

/* 主要内容区域 */
.need-padding {
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.fusion-main {
  display: flex;
  gap: 32px;
  margin-top: 120px;
}

.fusion-left {
  flex: 0 0 320px;
  max-width: 320px;
}

.logo {
  background-image: url(/img/icon.webp);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}

.logo img {
  position: absolute;
  top: -15%;
  left: -10%;
  width: 120%;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.left-div {
  margin-top: 24px;
}

.left-des-item {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.left-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.left-tag-item {
  padding: 6px 12px;
  background: var(--left_tag_item);
  border-radius: 20px;
  font-size: 0.9rem;
}

.left-time ul {
  list-style: none;
  padding: 0;
}

.left-time li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.focus {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--heo-theme);
  margin-right: 12px;
}

/* 右侧主内容 */
.fusion-right {
  flex: 1;
}

.first-stack {
  display: flex;
  gap: 32px;
  margin-top: 0;
}

.left-Introduce {
  flex: 1;
}

.right-stack {
  flex: 1;
  max-width: 500px;
}

.title-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.title {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(120deg, #4584ff 0%, #cf0db9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.discription {
  font-size: 1.8rem;
  margin-bottom: 32px;
}

.discription-text {
  display: inline-block;
}

.inline-word {
  display: inline-block;
  color: var(--heo-theme);
  font-weight: bold;
}

.first-stack-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.about-button {
  padding: 12px 24px;
  border-radius: 12px;
  background: var(--heo-theme);
  color: white;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--heo-shadow-theme);
}

.social-button {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--heo-shadow-blackdeep);
}

/* 文章区域 */
.rss-section {
  margin: 48px 0;
}

.group-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.rss-articles {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.rss-article-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.rss-article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--heo-shadow-blackdeep);
}

.rss-article-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 12px;
  display: block;
}

.rss-article-date {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 12px;
}

.rss-article-desc {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* 知识库区域 */
.knowledge-section {
  margin: 48px 0;
}

.knowledge-cards {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.knowledge-card {
  flex: 1;
  min-width: 260px;
  max-width: 360px;
  background: linear-gradient(135deg, #e0e7ff 0%, #f0fdfa 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px #0001;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .3s;
  text-decoration: none;
  color: #222;
}

.knowledge-card:hover {
  box-shadow: 0 8px 32px #0002;
}

/* 个人介绍 */
.avatar-discription {
  margin: 48px 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.avatar-discription-text {
  font-size: 1.1rem;
  line-height: 1.8;
  display: block;
  margin-bottom: 24px;
}

.avatar-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.avatar-name {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
  -webkit-background-clip: text;
  background-clip: text;
}

.avatar-title {
  display: block;
  opacity: 0.8;
}

/* 技能区域 */
.skills-section {
  margin: 48px 0;
  text-align: center;
}

.skill {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
}

.skill img {
  height: 80px;
}

/* 站点导航区域 */
.sites-section {
  margin: 48px 0;
}

.projectList {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.projectItem {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background: var(--heo-card-bg);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--heo-font-color);
  transition: all 0.3s ease;
  border: var(--style-border);
}

.projectItem:hover {
  transform: translateY(-5px);
  box-shadow: var(--heo-shadow-blackdeep);
}

.projectItemLeft h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
}

.projectItemLeft p {
  margin: 0;
  opacity: 0.8;
}

.projectItemRight img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

/* 产品区域 */
.product-banner {
  margin: 64px 0;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  background-image: linear-gradient(180deg, #2E8B57 0%, #1E5631 100%);
  color: white;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.banner-info {
  flex: 1;
  padding: 64px 32px;
}

.banner-info .tips {
  display: block;
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 12px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
  margin-bottom: 24px;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}

.banner-discription-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.description {
  font-size: 1.2rem;
  opacity: 0.9;
}
    line-clamp: 1; /* 这里是超出几行省略 */
    -webkit-line-clamp: 1; /* 这里是超出几行省略 */
.primary-button {
  padding: 12px 24px;
  border-radius: 12px;
  background: white;
  color: #1E5631;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.banner-pic {
  flex: 1;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-pic-img {
  width: 100%;
  border-radius: 12px;
}

.product-group {
  margin: 64px 0;
}

.group-description {
  display: block;
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 32px;
}

.group-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.group-item {
  display: flex;
  gap: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.group-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--heo-shadow-blackdeep);
}

.group-item-icon-img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
}

.group-info-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.group-info .title {
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}

.group-info .discription {
  font-size: 1rem;
  opacity: 0.8;
  display: block;
  margin-bottom: 16px;
}

.linkbutton {
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--heo-theme);
  color: white;
  font-size: 0.9rem;
  display: inline-block;
  transition: transform 0.3s;
}

.linkbutton:hover {
  transform: translateY(-2px);
}

.linkbotton-tips {
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  margin-left: 8px;
}

.hot {
  color: #ff4d4f;
  font-size: 0.8rem;
  margin-left: 8px;
}

.new {
  color: #1890ff;
  font-size: 0.8rem;
  margin-left: 8px;
}

/* 页脚 */
.footer {
  margin-top: 64px;
  padding: 32px 0;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.info-group {
  display: flex;
  gap: 24px;
}

.info {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 900px) {
  .fusion-main {
    flex-direction: column;
  }
  
  .fusion-left {
    max-width: 100%;
    flex: none;
  }
  
  .first-stack {
    flex-direction: column;
  }
  
  .right-stack {
    max-width: 100%;
  }
  
  .product-banner {
    flex-direction: column;
  }
  
  .banner-pic {
    max-width: 100%;
  }
  
  .\-c-nav-center {
    display: none;
  }
  
  .\-c-nav-menu {
    display: block;
  }
  
  .menu-list {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    display: none;
  }
  
  body.show-menu .menu-list {
    display: flex;
  }
}

@media (max-width: 600px) {
  .need-padding {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .title {
    font-size: 2rem;
  }
  
  .discription {
    font-size: 1.2rem;
    opacity: 0.9;
  }
  }
  
  .group-title {
    font-size: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .info-group {
    flex-direction: column;
    gap: 12px;
  }
}

.pressed {
  transform: scale(0.95);
  transition: transform 0.1s;
}