/*
Theme Name: 简站主题for简站wodepress-5821
Theme URI: http://www.jianzhanpress.com
Description: 本主题为简站主题为www.jianzhanpress.com定制.
Version: 1.0
Author: 简站主题
Author URI: http://www.jianzhanpress.com
Tags: 企业主题, 科技, 蓝色
*/
/* ===== 最新文章模块样式 ===== */
.home-articles {
  padding: 60px 0;
  background: #f9fafc;
}

.home-articles .section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(45deg, #007bff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.article-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.article-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover img {
  transform: scale(1.05);
}

.article-content {
  padding: 20px;
}

.article-title a {
  color: #333;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.article-title a:hover {
  color: #007bff;
}

.article-meta {
  font-size: 14px;
  color: #888;
  margin: 8px 0;
}

.article-excerpt {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
/* ===== 关于我们模块美化 ===== */
.about-section {
  background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  background: linear-gradient(45deg, #007bff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  margin: 0 auto 40px;
  border-radius: 2px;
}

.about-content {
  font-size: 17px;
  color: #444;
  line-height: 1.9;
  background: #fff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  animation: fadeUp 1s ease;
}

.about-content p {
  margin-bottom: 18px;
  text-indent: 2em;
}

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

/* 响应式优化 */
@media (max-width: 768px) {
  .about-content {
    padding: 25px 20px;
    font-size: 15px;
  }
  .section-title {
    font-size: 26px;
  }
}
/* ===== 关于我们模块高级美化 ===== */
.about-section {
  background: linear-gradient(135deg, #fdfdfd 0%, #f3f6f9 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(45deg, #005bea, #00c6fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #005bea, #00c6fb);
  margin: 0 auto 50px;
  border-radius: 2px;
}

/* 内容部分 */
.about-content {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  padding: 50px 60px;
  font-size: 18px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.5px;
  text-align: justify;
  animation: fadeUp 1.2s ease;
}

.about-content p {
  margin-bottom: 22px;
  text-indent: 2em; /* 段首空两格 */
}

/* 文字颜色微调 */
.about-content p:first-letter {
  font-size: 1.05em;
  font-weight: 500;
  color: #005bea;
}

/* 动画 */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 响应式 */
@media (max-width: 768px) {
  .about-content {
    padding: 30px 25px;
    font-size: 16px;
  }
  .section-title {
    font-size: 28px;
  }
}
