
/* 文章两列 */
/* 保持原有样式兼容性 */
.two-column-container {
  display: flex;
  gap: 30px;
  max-width: 1290px;
  margin: 0 auto;
  padding: 20px 0;
}




/* 博客文章页面样式 - 只优化文字部分 */
.article-page {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 20px 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #24292e;
}

/* 面包屑导航 - 只优化文字 */
.breadcrumb-nav {
  padding: 20px 0 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  font-size: 14px;
  color: #586069;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: #d1d5da;
  font-family: Arial, sans-serif; /* 确保符号正确显示 */
}

.breadcrumb-link {
  color: #0366d6;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: #0366d6;
  text-decoration: underline;
}

.breadcrumb-current {
  color: #24292e;
  font-weight: 400;
}

/* 文章主容器 - 保持原有样式 */
.article-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 30px;
}

.article-content {
  padding: 50px;
}

/* 文章标题 - 只优化文字 */
.article-title {
  font-size: 3.0rem;
  line-height: 1.3;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* 文章元信息 - 只优化文字 */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  color: #586069;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-link {
  color: #0366d6;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
}

.meta-link:hover {
  color: #0366d6;
  background: #f6f8fa;
  text-decoration: underline;
}









/* 简约指标卡样式 */
.article-summary {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  margin: 32px 0;
  border: 1px solid #e1e4e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.summary-icon {
  font-size: 24px;
}

.summary-heading {
  font-size: 18px;
  font-weight: 600;
  color: #24292e;
  margin: 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.metric-card {
  background: #fafbfc;
  padding: 24px 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #eaecef;
  transition: all 0.2s ease;
}

.metric-card:hover {
  border-color: #0366d6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 102, 214, 0.1);
}

.metric-value {
  font-size: 32px;
  font-weight: 700;
  color: #0366d6;
  margin-bottom: 8px;
  line-height: 1;
}

.metric-label {
  font-size: 14px;
  color: #586069;
  font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .metric-card {
    padding: 20px 16px;
  }
  
  .metric-value {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .article-summary {
    padding: 24px 20px;
  }
}







/* 文章摘要 - 只优化文字 */

/* 文章摘要样式优化 */
.article-summary {
  background: #f6f8fa;
  padding: 24px;
  border-radius: 6px;
  margin: 24px 0;
  border: 1px solid #e1e4e8;
  border-left: 4px solid #0366d6;
}

.summary-title {
  color: #24292e;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.summary-item {
  padding: 8px 0;
  color: #24292e;
  font-size: 14px;
  line-height: 1.5;
}

.summary-item strong {
  color: #0366d6;
  font-weight: 600;
}












/* 博客文章内容样式 - GitHub风格优化 */
.article-body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    word-wrap: break-word;
}

/* 段落样式 */
.article-body p {
    margin-bottom: 1em;
    text-align: justify;
    font-size: 16px;
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Source Han Sans CN', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #2d3748;
    letter-spacing: 0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-justify: inter-ideograph; /* 优化中文对齐 */
    hyphens: auto; /* 英文断字 */
    word-spacing: 0.05em; /* 单词间距 */
}



.article-body p:last-child {
    margin-bottom: 0;
}

/* 标题样式 */
.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
    color: #2c3e50;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
    line-height: 1.25;
}

.article-body h1 {
    font-size: 2em;
    border-bottom: 2px solid #eaecef;
    padding-bottom: 0.3em;
}

.article-body h2 {
    font-size: 1.5em;
    border-bottom: 1px solid #eaecef;
    padding-bottom: 0.3em;
}

.article-body h3 {
    font-size: 1.25em;
}

.article-body h4 {
    font-size: 1.1em;
}

.article-body h5 {
    font-size: 1em;
}

.article-body h6 {
    font-size: 0.9em;
    color: #6a737d;
}



/* 列表样式 */
/* 列表样式 - 修复显示问题 */
.article-body ul,
.article-body ol {
    margin: 1em 0;
    padding-left: 2em;
    list-style-position: outside;
}

.article-body li {
    margin-bottom: 0.25em;
    line-height: 1.6;
    display: list-item;
    list-style: inherit;
}

.article-body ul {
    list-style-type: disc;
}

.article-body ol {
    list-style-type: decimal;
}

.article-body li > ul,
.article-body li > ol {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/* 嵌套列表样式 */
.article-body ul ul {
    list-style-type: circle;
}

.article-body ul ul ul {
    list-style-type: square;
}

.article-body ol ol {
    list-style-type: lower-alpha;
}

.article-body ol ol ol {
    list-style-type: lower-roman;
}

/* 重置可能影响列表显示的样式 */
.article-body * {
    list-style: inherit;
}



/* 链接样式 */
.article-body a {
    color: #0366d6;
    text-decoration: none;
}

.article-body a:hover {
    text-decoration: underline;
}








/* 引用块样式 */
.article-body blockquote {
    border-left: 4px solid #4a90e2;
    padding: 25px 25px;
    margin: 1.5em 0;
    color: #555;
    background-color: #e6f1fd;
    font-style: italic;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 1.6;
}

.article-body blockquote::before {
    content: """;
    font-family: Georgia, serif;
    font-size: 16px;
    color: #4a90e2;
    opacity: 0.3;
    position: absolute;
    left: 10px;
    top: -10px;
}



.article-body blockquote::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 0.9em;
    color: #999;
    font-style: italic;
}












/* 代码样式 */
.article-body code {
    background-color: #f1f3f4;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.9em;
    color: #e53e3e;
}

.article-body pre {
    background-color: #f6f8fa;
    padding: 16px;
    overflow: auto;
    border-radius: 6px;
    border: 1px solid #e1e4e8;
    margin: 1.5em 0;
}

.article-body pre code {
    background-color: transparent;
    padding: 0;
    color: inherit;
    font-size: 0.85em;
}

/* 表格样式 */
.article-body table {
    border-collapse: collapse;
    width: 100%;
    margin: 1.5em 0;
}

.article-body th,
.article-body td {
    border: 1px solid #dfe2e5;
    padding: 8px 12px;
    text-align: left;
}

.article-body th {
    background-color: #f6f8fa;
    font-weight: 600;
}

.article-body tr:hover {
    background-color: #f6f8fa;
}






/* 图片样式 */
.article-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5em auto;
    border-radius: 4px;
}

.article-body img.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.article-body img.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
}

.article-body img.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1em;
}

/* 强调文本 */
.article-body strong {
    color: #2c3e50;
    font-weight: 600;
}

.article-body em {
    color: #4a5568;
    font-style: italic;
}



/* 水平分割线 */
.article-body hr {
    border: none;
    height: 1px;
    background-color: #eaecef;
    margin: 2em 0;
}



/* 特殊内容样式 */
.article-body .no-content {
    text-align: center;
    color: #6a737d;
    font-style: italic;
    padding: 2em;
    background-color: #f6f8fa;
    border-radius: 6px;
    border: 1px dashed #dfe2e5;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .article-body {
        font-size: 15px;
    }
    
    .article-body h1 {
        font-size: 1.75em;
    }
    
    .article-body h2 {
        font-size: 1.375em;
    }
    
    .article-body h3 {
        font-size: 1.125em;
    }
    
    .article-body ul,
    .article-body ol {
        padding-left: 1.5em;
    }
    
    .article-body img.alignleft,
    .article-body img.alignright {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .article-body {
        font-size: 14px;
    }
    
    .article-body pre {
        padding: 12px;
    }
    
    .article-body th,
    .article-body td {
        padding: 6px 8px;
    }
}











/* 特殊内容样式 */
.no-content {
  text-align: center;
  color: #718096;
  font-style: italic;
  padding: 2em;
  background: #f7fafc;
  border-radius: 8px;
  border: 1px dashed #cbd5e0;
}







/* 文章分页 */
.article-pagination {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
}

.pagination-item {
  display: flex;
  margin-bottom: 15px;
  padding: 15px 0;
  transition: all 0.2s;
  border-radius: 8px;
}

.pagination-item:hover {
  background: #f8fafc;
  padding-left: 15px;
  padding-right: 15px;
}

.pagination-label {
  min-width: 70px;
  color: #666;
  font-size: 15px;
  font-weight: 500;
}

.pagination-content {
  flex: 1;
}

.pagination-link {
  color: #2d5b8a;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
  line-height: 1.4;
  display: block;
}

.pagination-link:hover {
  color: #1a365d;
  text-decoration: none;
}

.pagination-disabled {
  color: #a0aec0;
  font-style: italic;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .article-page {
    padding: 0 15px 30px;
  }
  
  .article-content {
    padding: 25px 20px;
  }
  
  .article-title {
    font-size: 2rem;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 12px;
  }
  
  .summary-grid {
    grid-template-columns: 1fr;
  }
  
  .article-summary {
    padding: 20px;
  }
  
  .article-body {
    font-size: 16px;
  }
  
  .article-body h1 {
    font-size: 1.75rem;
  }
  
  .article-body h2 {
    font-size: 1.5rem;
  }
  
  .article-body h3 {
    font-size: 1.25rem;
  }
  
  .pagination-item {
    flex-direction: column;
  }
  
  .pagination-label {
    margin-bottom: 8px;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .article-title {
    font-size: 1.75rem;
  }
  
  .article-body {
    font-size: 15px;
  }
  
  .article-summary {
    padding: 15px;
  }
  
  .summary-title {
    font-size: 1.1rem;
  }
  
  .article-body ul,
  .article-body ol {
    padding-left: 1.5em;
  }
  
  .article-body blockquote {
    padding: 20px 20px 20px 25px;
  }
  
  .article-body blockquote::before {
    font-size: 2.5rem;
    left: 10px;
  }
}

/* 打印样式 */
@media print {
  .article-page {
    max-width: none;
    padding: 0;
  }
  
  .article-container {
    box-shadow: none;
    border-radius: 0;
  }
  
  .breadcrumb-nav,
  .article-pagination {
    display: none;
  }
  
  .article-body a {
    color: #000;
    text-decoration: underline;
  }
  
  .article-body a::after {
    content: " (" attr(href) ")";
    font-size: 0.9em;
    color: #666;
  }
}







/* GitHub风格侧边栏样式 */
.github-sidebar {
  width: 320px;
  flex-shrink: 0;
}

.github-sidebar .sidebar-widget {
  background: #ffffff;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  margin-bottom: 16px;
  padding: 0;
  overflow: hidden;
}














/* 个人资料卡片 */
/* LinkedIn风格企业资料卡片 */
/* Google Material Design风格个人资料卡片 */
/* 企业营销风格个人资料卡片优化 */
.corporate-profile-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  border: 1px solid #f0f2f5;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* 企业头部样式 */
.corporate-header {
  position: relative;
}

.corporate-banner {
  height: 100px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
  position: relative;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="white" fill-opacity="0.1"></path></svg>');
  background-size: 100% 100%;
}

.corporate-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  color: #1e3a8a;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* 核心信息样式 */
.profile-core {
  padding: 0 25px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.avatar-section {
  text-align: center;
  margin-bottom: 15px;
}

.avatar-container {
  position: relative;
  display: inline-block;
}

.corporate-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: white;
  object-fit: cover;
}

.status-indicator {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.status-indicator.online {
  background: linear-gradient(135deg, #10b981, #059669);
}

.verification-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #10b981;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px;
}

.check-icon {
  font-weight: bold;
  font-size: 12px;
}

.corporate-info {
  text-align: center;
  margin-bottom: 20px;
}

.corporate-name {
    font-family: 'Noto Sans SC', sans-serif;
    color: #7130ff;
    font-size: 24px;
    font-weight: 500;
    background: linear-gradient(270deg, #CB38FF 0%, #682FFF 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.corporate-tagline {
  color: #6b7280;
  font-size: 14px;
  margin: 20px 0 20px 0;
  font-weight: 500;
  line-height: 1.4;
}

.specialty-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.specialty-tag {
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.specialty-tag.primary {
  background: #e0f2fe;
  color: #0369a1;
}

.specialty-tag.secondary {
  background: #f3e8ff;
  color: #7c3aed;
}

/* 成就徽章样式 */
.achievements-section {
  padding: 0 25px;
  margin-bottom: 20px;
}

.achievement-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.achievement-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

.achievement-badge.hot {
  background: #fef3c7;
  color: #92400e;
}

.achievement-badge.rating {
  background: #fce7f3;
  color: #be185d;
}

.badge-icon {
  font-size: 14px;
}

/* 数据统计样式 */
.performance-stats {
  padding: 8px 8px;
  background: #f8fafc;
  margin: 0 15px 20px;
  border-radius: 16px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-height: 70px;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.stat-icon.success {
  background: #dcfce7;
  color: #16a34a;
}

.stat-icon.growth {
  background: #fef3c7;
  color: #d97706;
}

.stat-icon.experience {
  background: #e0e7ff;
  color: #4f46e5;
}

.stat-data {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1;
  margin-bottom: 7px;
}

.stat-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.2;
}

/* 服务特色样式 */
.services-highlight {
  padding: 0 25px;
  margin-bottom: 20px;
}

.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.service-tag {
  padding: 6px 12px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 行动号召样式 */
.cta-section {
  padding: 0 25px 25px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.cta-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  min-height: 48px;
}

.cta-button.primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cta-button.secondary {
  background: white;
  color: #3b82f6;
  border: 2px solid #e5e7eb;
}

.cta-button.secondary:hover {
  background: #f8fafc;
  border-color: #3b82f6;
  transform: translateY(-2px);
}

.button-icon {
  font-size: 16px;
}

.button-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #10b981;
  color: white;
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
}

.contact-info {
  text-align: center;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 12px;
  background: #f8fafc;
  padding: 6px 12px;
  border-radius: 8px;
}

.contact-icon {
  font-size: 12px;
}

/* 响应式设计 */
@media (max-width: 480px) {
  .corporate-profile-card {
    margin: 0 15px;
    max-width: 100%;
  }
  
  .profile-core,
  .achievements-section,
  .performance-stats,
  .services-highlight,
  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .stat-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .achievement-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .services-tags {
    justify-content: flex-start;
  }
}

/* 动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.corporate-profile-card {
  animation: fadeInUp 0.6s ease-out;
}

.stat-card {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.cta-buttons {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}






























