/* 基础重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* 导航栏样式 */
nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 5%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

.main-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.main-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-menu a:hover {
  color: #4CAF50;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 30px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  min-width: 900px;
}

.dropdown:hover .dropdown-content {
  display: grid;
}

.submenu h4 {
  color: #4CAF50;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.submenu ul {
  list-style: none;
}

.submenu li {
  margin-bottom: 8px;
}

.submenu a {
  color: #666;
  font-size: 0.95em;
}

.submenu a:hover {
  color: #4CAF50;
}

.divider {
  width: 1px;
  background: #e0e0e0;
}

/* 封面样式 */
.page-content {
  padding-top: 70px;
}

.cover-container {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.banner-title {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  font-size: 3.5em;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

/* 新闻内容样式 */
.news-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.news-title {
  font-size: 2em;
  color: #333;
  margin-bottom: 30px;
  padding: 30px 0 20px;
  border-bottom: 2px solid #4CAF50;
  line-height: 1.4;
}

.news-content {
  padding: 0 20px 40px;
}

.news-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

.news-content .disclaimer {
  font-size: 0.9em;
  color: #888;
  font-style: italic;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 30px;
}

/* 重新排版的新闻样式 */
.news-header {
  text-align: center;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

.news-title {
  font-size: 2.5em;
  color: #1a1a1a;
  margin-bottom: 10px;
  border: none;
  padding: 0;
  font-weight: 700;
}

.news-subtitle {
  font-size: 1.3em;
  color: #666;
  margin-bottom: 20px;
  font-weight: 400;
}

.news-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.95em;
  color: #888;
}

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

.news-gallery {
  margin-bottom: 40px;
}

.main-image {
  text-align: center;
}

.featured-image {
  width: 100%;
  max-width: 800px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
  margin-top: 10px;
  font-size: 0.9em;
  color: #666;
  font-style: italic;
}

.highlights-section {
  margin-bottom: 40px;
}

.highlights-section h3 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.highlight-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.highlight-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.highlight-card h4 {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.highlight-card p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.5;
}

.content-section {
  margin-bottom: 40px;
}

.content-section h3 {
  font-size: 1.6em;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #4CAF50;
  display: inline-block;
}

.lead-paragraph {
  font-size: 1.2em;
  color: #444;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.7;
}

.aircraft-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.aircraft-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #4CAF50;
}

.aircraft-name {
  font-size: 1.2em;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.aircraft-desc {
  font-size: 0.95em;
  color: #666;
  line-height: 1.5;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.system-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.system-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.system-title {
  font-size: 1.2em;
  font-weight: 600;
  color: #4CAF50;
  margin-bottom: 15px;
}

.system-item ul {
  list-style: none;
}

.system-item li {
  padding: 5px 0;
  color: #555;
  position: relative;
  padding-left: 20px;
}

.system-item li:before {
  content: "▸";
  color: #4CAF50;
  position: absolute;
  left: 0;
}

.quote-section {
  background: #f8f9fa;
  border-left: 4px solid #4CAF50;
  padding: 25px;
  margin: 30px 0;
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

.quote-section p {
  font-size: 1.1em;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

.flag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.flag-list li {
  font-size: 1.1em;
  font-weight: 500;
  color: #333;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
}

.impact-section {
  margin-bottom: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px;
  border-radius: 12px;
  color: white;
}

.impact-section h3 {
  color: white;
  text-align: center;
  margin-bottom: 30px;
  border: none;
  font-size: 1.8em;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.impact-item {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.impact-item h4 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: white;
}

.impact-item p {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.disclaimer-section {
  margin-top: 40px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #ff9800;
}

.disclaimer {
  margin: 0;
  color: #666;
  font-size: 0.9em;
  line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .news-container {
    margin: 20px 10px;
    padding: 0 15px;
  }
  
  .news-title {
    font-size: 2em;
  }
  
  .news-subtitle {
    font-size: 1.1em;
  }
  
  .news-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .highlights-grid,
  .aircraft-showcase,
  .system-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-image {
    height: 250px;
  }
  
  .impact-section {
    padding: 25px;
  }
  
  .flag-list {
    flex-direction: column;
  }
}

