.breadcrumb {
    font-size: 14px;

    margin-bottom: 20px;
    width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.breadcrumb a {
    color: #2E8B57;
    text-decoration: none;
}
.breadcrumb span {
    margin: 0 5px;
    color: #999;
}

/* 数据统计Banner */
.stats-banner {
    background: linear-gradient(135deg, #f0f9f4 0%, #e6f7ed 100%);
    padding: 60px 0;
    text-align: center;
}
.stats-banner .section-title {
    font-size: 28px;
    color: #222;
    margin-bottom: 10px;
}
.stats-banner .section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.stat-card {
    text-align: center;
}
.stat-icon {
    font-size: 36px;
    margin-bottom: 10px;
}
.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #2E8B57;
    margin-bottom: 5px;
}
.stat-label {
    font-size: 16px;
    color: #666;
}

/* 关于我们主体部分 */
.about-page {
    padding: 60px 0;
    background-color: #fff;
}
.about-page .section-title {
    font-size: 32px;
    color: #222;
    text-align: center;
    margin-bottom: 10px;
}
.about-page .section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

/* 品牌故事 */
.about-story {
    max-width: 1000px;
    margin: 0 auto 60px;
}
.story-content h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 20px;
    border-left: 4px solid #2E8B57;
    padding-left: 15px;
}
.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

/* 平台特色 */
.about-features h2.section-subtitle {
    font-size: 24px;
    color: #222;
    margin-bottom: 40px;
    text-align: left;
    border-left: 4px solid #2E8B57;
    padding-left: 15px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.feature-card {
    background: #f9fdfa;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e8f5ee;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.1);
}
.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2E8B57;
}
.feature-card h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 15px;
}
.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: left;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .stats-grid {
        gap: 30px;
    }
    .stat-number {
        font-size: 28px;
    }
    .stats-banner .section-title {
        font-size: 22px;
    }
    .about-page .section-title {
        font-size: 26px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .story-content {
        padding: 0 20px;
    }
    .breadcrumb{
      display: none;
    }
    .community_page .date{
      display: none;
    }
}
/* 关于我们 数字统计行 样式 */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin: 30px 0 10px;
}
.stat-item {
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow);
}
.stat-item .stat-number {
  font-size: 32px;
  font-weight: bold;
  color: #2E8B57;
  line-height: 1.2;
}
.stat-item .stat-label {
  font-size: 15px;
  color: #666;
  margin-top: 5px;
}
.stat-item .stat-label i {
  margin-right: 4px;
  color: #2E8B57;
}

@media (max-width: 768px) {
  .stats-row {
    gap: 30px;
  }
  .stat-item .stat-number {
    font-size: 26px;
  }
}
/* 产品差异化特色板块 */
.about-differentiation {
  margin-top: 60px;
  padding: 40px 0;
}
.about-differentiation .section-subtitle {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}
.about-differentiation .intro-text {
  margin: 0 auto 40px;
}

/* 差异化列表 */
.differentiation-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}
.diff-item {
  background: #f9f9f9;
  padding: 20px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.diff-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.diff-item h3 {
  font-size: 17px;
  margin: 0 0 10px;
  color: #333;
}
.diff-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ===================== 响应式 ===================== */
@media (max-width: 768px) {
  .about-differentiation {
    margin-top: 40px;
    padding: 20px 0;
  }
  .about-differentiation .section-subtitle {
    font-size: 22px;
  }
  .diff-item {
    padding: 16px 18px;
  }
  .diff-item h3 {
    font-size: 16px;
  }
  .diff-item p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .differentiation-list {
    gap: 16px;
  }
  .diff-item {
    padding: 14px 16px;
  }
}
.hero {
    background: linear-gradient(135deg, #E8F5E9 0%, #E3F2FD 100%);
    padding: 60px 0;
}
.hero-text h1 {
    font-size: 36px;
    margin: 16px 0;
    line-height: 1.3;
}
.hero-text p {
    color: var(--text-light);
    margin-bottom: 32px;
}
/* 关于我们主体样式 */
.about-item .about-content {
  display: unset;
}
.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.8;
    color: #333;
}
.about-item {
    width: 1000px;
    margin: 0 auto;
}
.about-title {
    font-size: 22px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-title i {
    color: #2E8B57;
    font-size: 24px;
}
.about-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

/* 时间线 */
.timeline {
    border-left: 2px solid #eee;
    padding-left: 25px;
}
.timeline-item {
    position: relative;
    padding-bottom: 20px;
}
.timeline-year {
    font-size: 16px;
    font-weight: bold;
    color: #2E8B57;
    margin-bottom: 5px;
}
.timeline-text {
    font-size: 15px;
    color: #555;
}
.timeline-item:before {
    content: '';
    position: absolute;
    left: -33px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2E8B57;
}

/* 栏目矩阵 */
.column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.column-item {
    background: #f9fdfa;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e8f5ee;
}
.column-item h4 {
    font-size: 16px;
    color: #222;
    margin-bottom: 8px;
}
.column-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}
@media (max-width: 768px) {
    .column-grid {
        grid-template-columns: 1fr;
    }
}

/* 平台优势 */
.advantage-list {
    list-style: none;
    padding: 0;
}
.advantage-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.advantage-list i {
    color: #2E8B57;
    margin-top: 3px;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0;
    font-size: 14px;
}

/* 分页文字信息（共337条、3/22） */
.pagination .page-text {
    color: #666;
    margin: 0 10px;
}

/* 基础分页项 */
.pagination .page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* 数字页码 hover 效果 */
.pagination .page-item:not(.current):hover {
    background-color: #f0f0f0;
    color: #25a859; /* 匹配你网站的绿色主色调 */
}

/* 当前页高亮样式 */
.pagination .page-item.current {
    background-color: #25a859;
    color: #fff;
    font-weight: 500;
    pointer-events: none;
}

/* 上一页/下一页/首页/尾页 按钮 */
.pagination .page-link {
    color: #333;
}

.pagination .page-link:hover {
    color: #25a859;
    text-decoration: underline;
}
.community_page .title a:hover {
    color: #25a859;
    text-decoration: underline;
}
/* 标题 hover 效果 */
.community_page .title a:hover {
    color: #25a859;
    text-decoration: underline;
}
.community_page .title a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
}
/* 下载页面主体 */
.download_page {
  padding: 30px 15px;
  max-width: 1000px;
  margin: 0 auto;
  color: #333;
  line-height: 1.7;
}
.download_page .wrap {
  width: 100%;
}

/* APP 信息区域 */
.app_info_box {
  display: flex;
  align-items: center;
  gap: 25px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}
.app_logo img {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
}
.app_info h1 {
  font-size: 26px;
  margin: 0 0 10px;
  color: #222;
}
.app_meta {
  display: flex;
  gap: 20px;
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}
.app_des{
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}
.app_download_btns {
  display: flex;
  gap: 15px;
}
.app_download_btns a {
  padding: 12px 28px;
  background: #ff6a97;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
  cursor: pointer;
}
.app_download_btns a:hover {
  background: #f55687;
}

/* 界面展示 */
.app_screenshot_section {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}
.section_title {
  font-size: 22px;
  text-align: center;
  margin-bottom: 25px;
  color: #222;
  font-weight: 600;
}
.screenshot_scroll {
  overflow-x: auto;
  padding-bottom: 10px;
}
.screenshot_list {
  display: flex;
  gap: 15px;
  width: max-content;
}
.shot_item img {
  height: 420px;
  border-radius: 20px;
}

/* APP介绍 + 功能 */
.app_intro_box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.intro_content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}
.func_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.func_item {
  background: #f9fdfa;
  border: 1px solid #e8f5ee;
  padding: 14px 16px;
  border-radius: 10px;
  text-align: center;
  color: #444;
  font-size: 15px;
}

/* 弹窗遮罩 */
.qrcode-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #fff;
  width: 300px;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  position: relative;
}
.close-btn {
  position: absolute;
  right: 15px;
  top: 12px;
  font-size: 22px;
  cursor: pointer;
  color: #666;
}
.qrcode-box img {
  width: 200px;
  height: 200px;
  margin: 10px auto;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .app_info_box {
    flex-direction: column;
    text-align: center;
  }
  .app_meta {
    justify-content: center;
  }
  .app_download_btns {
    justify-content: center;
  }
  .func_grid {
    grid-template-columns: 1fr;
  }
  .shot_item img {
    height: 350px;
  }
}
.faq-answer {
    display: none;
    padding: 10px 20px 20px;
    background: #fdf6f8;
    line-height: 1.7;
    font-size: 15px;
    color: #555;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-question {
    cursor: pointer;
    padding: 18px 20px;
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
}
.faq-icon {
    margin-right: 12px;
    color: #ff6a97;
    font-weight: bold;
    font-size: 18px;
}
.help-container{
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 30px 15px;
    max-width: 1000px;
    margin: 0 auto;
    color: #333;
    line-height: 1.7;
}

.community_page {

}
.community_page .wrap {
    padding: 30px 15px;
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
    line-height: 1.7;
    background: #fff;
}


.article_list {

}
.article_item {
    display: flex;
    width: 1000px;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 20px;
    background: #f9fdfa;
    border-radius: 12px;
    padding: 30px 25px;
    border: 1px solid #e8f5ee;
}
.article_item:last-child {
    border-bottom: none;
}

.tag1 {
    background: #2E8B57;
    color: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}
.tag1 .num {
    font-size: 26px;
    line-height: 1;
}
.tag1 .ym {
    font-size: 14px;
    line-height: 1.2;
}

/* 标题和日期 */
.article_item .title {
    flex: 1;
    font-size: 18px;
    color: #222;
    line-height: 1.6;
    margin-bottom: 5px;
}
.article_item .title a {
    color: #222;
    text-decoration: none;
}
.article_item .title a:hover {
    color: #2E8B57;
}
.article_item .date {
    font-size: 14px;
    color: #999;
}

/* 适配你现有结构的小调整 */
.article_item .tag {
    background: #2E8B57;
    color: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .article_item {
        padding: 20px 0;
        width: 100%;
    }
    .tag1, .article_item .tag {
        width: 60px;
        height: 60px;
        font-size: 14px;
    }
    .article_item .tag::before {
        font-size: 20px;
    }
    .article_item .tag::after {
        font-size: 12px;
    }
    .article_item .title {
        font-size: 16px;
    }
}
.community_page .title span{
    display: inline-block;
    padding: 3px 8px;
    font-size: 12px;
    line-height: 1.4;
    border-radius: 3px;
    margin-right: 8px;
    color: #fff;
    font-weight: 500;
    background-color: #51cf66;
}
/* ========== 文章详情页通用 ========== */
.article_page {
    background-color: #f8faf9;
    padding: 40px 0 60px;
    line-height: 1.8;
    color: #333;
}

.article_page .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.article_wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* ========== 左侧文章主体 ========== */
.article_main {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.article_content h1 {
    font-size: 24px;
    color: #222;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    line-height: 1.4;
}

.article-content {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    word-break: break-word;
    overflow-wrap: break-word;
}

.article-content p {
    margin: 0 0 15px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.article-content h2,
.article-content h3 {
    font-size: 18px;
    color: #222;
    margin: 25px 0 15px;
    padding-left: 10px;
    border-left: 3px solid #4A9D6A;
}

.article-content ul,
.article-content ol {
    padding-left: 20px;
    margin: 15px 0;
}

.article-content li {
    margin: 8px 0;
}

.article-content blockquote {
    background: #f5f9f7;
    border-left: 4px solid #4A9D6A;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
    color: #666;
}

/* 上下篇导航 */
.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 15px;
}

.article-nav a {
    color: #4A9D6A;
    text-decoration: none;
    transition: color 0.3s;
}

.article-nav a:hover {
    color: #3a8559;
}

.article_sidebar {
    width: 320px;
    flex-shrink: 0;
    font-size: 14px;
}

.guess_like {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.guess_like h3 {
    font-size: 18px;
    color: #222;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.like_list a {
    display: block;
    color: #555;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    transition: all 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.like_list a:last-child {
    border-bottom: none;
}

.like_list a:hover {
    color: #4A9D6A;
    padding-left: 5px;
}

/* ========== 移动端适配 ========== */
@media (max-width: 992px) {
    .article_wrapper {
        flex-direction: column;
    }

    .article_sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .article_page {
        padding: 20px 0 40px;
    }

    .article_main {
        padding: 20px;
    }

    .article_content h1 {
        font-size: 20px;
    }

    .article-nav {
        flex-direction: column;
        gap: 10px;
    }
}