/* 全局设置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  scroll-behavior: smooth; /* 平滑滚动 */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 20px 0;
}

/* Header 样式 */
.header {
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: white;
  text-align: center;
  padding: 30px 0;
}

.header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.header p {
  font-size: 1.2em;
}

/* 侧边栏导航 */
.sidebar {
  float: right;
  width: 22%;
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  margin-left: 3%;
}

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

.menu li {
  margin-bottom: 15px;
}

.menu a {
  display: block;
  padding: 10px 15px;
  background: #e9ecef;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.menu a:hover {
  background: #007bff;
  color: white;
}

/* 内容区域 */
.content {
  float: left;
  width: 75%;
}

.section-title {
  font-size: 2em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 10px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  height: 24px;
  width: 5px;
  background: #007bff;
}

/* 下载区域 */
.download-box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.download-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex: 1 1 calc(33% - 20px);
  text-align: center;
  transition: transform 0.3s ease;
}

.download-item:hover {
  transform: translateY(-5px);
}

.btn-download {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-download:hover {
  background-color: #0056b3;
}

/* 功能特色 */
.features-list,
.reviews-container,
.news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item,
.review-card,
.news-item {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex: 1 1 calc(50% - 10px);
  transition: transform 0.3s ease;
}

.feature-item:hover,
.review-card:hover,
.news-item:hover {
  transform: scale(1.02);
}

/* 使用帮助 */
.help-links {
  list-style: none;
  padding-left: 0;
}

.help-links li {
  margin-bottom: 10px;
}

.help-links a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s ease;
}

.help-links a:hover {
  color: #0056b3;
}

/* 页脚 */
.footer {
  background-color: #343a40;
  color: white;
  text-align: center;
  padding: 20px 0;
  clear: both;
}
/* 基于之前的设计，新增以下样式 */
.team-members {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.member-card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex: 1 1 calc(33% - 10px);
  text-align: center;
  transition: transform 0.3s ease;
}

.member-card:hover {
  transform: scale(1.02);
}

address {
  font-style: normal;
  line-height: 1.8;
}

address strong {
  display: block;
  margin-bottom: 5px;
  color: #007bff;
}
/* 面包屑导航 */
.breadcrumb {
  background: #e9ecef;
  padding: 10px 0;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
  margin-left: 20px;
}

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

/* 软件板块样式 */
.software-section {
  margin-bottom: 40px;
}

.software-box {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.software-info {
  flex: 1 1 50%;
}

.software-image {
  flex: 1 1 40%;
  text-align: center;
}

.software-image img {
  max-width: 100px;
}

.btn-download {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-download:hover {
  background-color: #0056b3;
}
/* 面包屑导航 */
.breadcrumb {
  background: #e9ecef;
  padding: 10px 0;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
  margin-left: 20px;
}

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

/* 功能板块样式 */
.feature-section {
  margin-bottom: 40px;
}

.feature-box {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.feature-info {
  flex: 1 1 50%;
}

.feature-image {
  flex: 1 1 40%;
  text-align: center;
}

.feature-image img {
  max-width: 100px;
}
/* 面包屑导航 */
.breadcrumb {
  background: #e9ecef;
  padding: 10px 0;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
  margin-left: 20px;
}

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

/* 评价板块样式 */
.review-section {
  margin-bottom: 40px;
}

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

.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex: 1 1 calc(33% - 20px);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: scale(1.02);
}

.review-card p {
  font-style: italic;
}

.review-card strong {
  display: block;
  margin-top: 10px;
  color: #007bff;
}

/* 更多评价链接 */
.more-reviews {
  margin-top: 40px;
}

.social-links {
  list-style: none;
  padding: 0;
}

.social-links li {
  margin-bottom: 10px;
}

.social-links a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #0056b3;
}
/* 面包屑导航 */
.breadcrumb {
  background: #e9ecef;
  padding: 10px 0;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
  margin-left: 20px;
}

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

/* 帮助板块样式 */
.help-section {
  margin-bottom: 40px;
}

.faq-box details {
  margin-bottom: 20px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.faq-box summary {
  font-weight: bold;
  cursor: pointer;
}

.download-list {
  list-style: none;
  padding: 0;
}

.download-list li {
  margin-bottom: 10px;
}

.download-list a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s ease;
}

.download-list a:hover {
  color: #0056b3;
}

address {
  font-style: normal;
  line-height: 1.8;
}

address strong {
  display: block;
  margin-bottom: 5px;
  color: #007bff;
}
/* 面包屑导航 */
.breadcrumb {
  background: #e9ecef;
  padding: 10px 0;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
  margin-left: 20px;
}

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

/* 资讯列表样式 */
.news-section {
  margin-bottom: 40px;
}

.news-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.news-item h2 {
  margin-bottom: 10px;
}

.news-item p small {
  color: #6c757d;
}

/* 资讯详情样式 */
.news-detail-section {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
@media (max-width: 600px) {
  .pagination {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-numbar {
    display: flex;
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .page-numbar a {
    flex-shrink: 0;
  }
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
  font-size: 14px;
}

.pagination a,
.pagination span {
  text-decoration: none;
  color: #555;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 36px;
  text-align: center;
  line-height: 1.5;
}

.pagination .page-status {
  margin-right: auto;
  font-style: italic;
  color: #6c757d;
}

/* 按钮基础样式 */
.pagination a {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  color: #333;
}

.pagination a:hover,
.pagination a:focus {
  background-color: #e2e6ea;
  color: #000;
  outline: none;
}

/* 当前页码样式 */
.page-num.page-num-current {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
  font-weight: bold;
  cursor: default;
}

.page-num.page-num-current:hover {
  background-color: #0069d9;
}