.news-detail-main {
  padding-top: 80px;
}

.news-detail-hero {
  padding: 60px 0 40px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.news-detail-header {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.news-detail-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 30px 0;
  line-height: 1.3;
}

.news-detail-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 0.95rem;
}

.meta-item i {
  color: #3b82f6;
}

.news-detail-content {
  padding: 60px 0;
  background: #ffffff;
}

.news-article {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #374151;
}

.article-image-hero {
  margin-bottom: 40px;
  text-align: center;
}

.article-image-hero img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-caption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
}

.article-summary {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  border-left: 4px solid #3b82f6;
}

.article-summary p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1e293b;
  margin: 0;
  line-height: 1.6;
}

.article-section {
  margin-bottom: 50px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 30px 0;
  border-bottom: 3px solid #3b82f6;
  padding-bottom: 12px;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  margin-bottom: 30px;
}

.content-with-image.reverse {
  grid-template-columns: 300px 1fr;
}

.text-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.highlight-box {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 25px;
  border-radius: 12px;
  margin: 30px 0;
  border-left: 4px solid #3b82f6;
}

.highlight-box h3 {
  color: #1e40af;
  margin: 0 0 15px 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.highlight-box p {
  margin: 0;
  color: #1e293b;
  font-size: 1.05rem;
}

.image-full-width {
  margin: 40px 0;
  text-align: center;
}

.image-full-width img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.value-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.value-icon i {
  font-size: 1.5rem;
  color: white;
}

.value-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 15px 0;
}

.value-item p {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.case-study {
  background: #f0fdf4;
  padding: 25px;
  border-radius: 12px;
  margin-top: 25px;
  border-left: 4px solid #10b981;
}

.case-study h4 {
  color: #059669;
  margin: 0 0 15px 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.case-study p {
  margin: 0;
  color: #1e293b;
  font-size: 1.05rem;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tech-features {
  background: #fef3c7;
  padding: 25px;
  border-radius: 12px;
  margin-top: 25px;
  border-left: 4px solid #f59e0b;
}

.tech-features h4 {
  color: #d97706;
  margin: 0 0 15px 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.tech-features ul {
  margin: 0;
  padding-left: 20px;
  color: #1e293b;
}

.tech-features li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.cooperation-goals {
  background: #f3e8ff;
  padding: 25px;
  border-radius: 12px;
  margin-top: 25px;
  border-left: 4px solid #8b5cf6;
}

.cooperation-goals h4 {
  color: #7c3aed;
  margin: 0 0 15px 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.cooperation-goals p {
  margin: 0;
  color: #1e293b;
  font-size: 1.05rem;
}

.article-tags {
  margin: 50px 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  background: #3b82f6;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.tag:hover {
  background: #1d4ed8;
}

.article-share {
  border-top: 1px solid #e5e7eb;
  padding-top: 30px;
  margin-top: 40px;
}

.article-share h4 {
  margin: 0 0 20px 0;
  color: #1e293b;
  font-size: 1.2rem;
}

.share-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #374151;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-btn:hover {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.related-news {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #e5e7eb;
}

.related-news h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 30px 0;
}

.related-items {
  display: grid;
  gap: 20px;
}

.related-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.related-item:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.related-item img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.related-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.related-content time {
  font-size: 0.9rem;
  color: #6b7280;
}



@media (max-width: 768px) {

  .content-with-image,
  .content-with-image.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .news-detail-title {
    font-size: 2.2rem;
    padding: 0 20px;
  }

  .news-detail-meta {
    gap: 20px;
    padding: 0 20px;
  }

  .news-article {
    padding: 0 20px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .text-content p {
    font-size: 1rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .image-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .share-buttons {
    justify-content: center;
  }

  .related-item {
    flex-direction: column;
    text-align: center;
  }

  .related-item img {
    width: 100%;
    height: 150px;
  }
}

.news-main {
  padding-top: 80px;
}

/* 新闻中心头部 */
.news-hero {
  padding: 80px 0 60px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* 浮动的毛玻璃球 - 新闻页面版本 */
.news-hero::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 8%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 70%);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: floatGlassBall1 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.news-hero .glass-ball-2 {
  position: absolute;
  top: 55%;
  right: 12%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.11) 0%, rgba(59, 130, 246, 0.07) 50%, transparent 70%);
  backdrop-filter: blur(18px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  animation: floatGlassBall2 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.news-hero .glass-ball-3 {
  position: absolute;
  top: 25%;
  right: 8%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.09) 0%, rgba(99, 102, 241, 0.06) 50%, transparent 70%);
  backdrop-filter: blur(15px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: floatGlassBall3 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.news-hero .glass-ball-4 {
  position: absolute;
  top: 70%;
  left: 45%;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(99, 102, 241, 0.05) 50%, transparent 70%);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  animation: floatGlassBall4 22s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.news-hero .glass-ball-5 {
  position: absolute;
  top: 80%;
  left: 5%;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.06) 50%, transparent 70%);
  backdrop-filter: blur(14px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.22);
  animation: floatGlassBall5 25s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.news-hero .glass-ball-6 {
  position: absolute;
  top: 20%;
  left: 65%;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(99, 102, 241, 0.05) 50%, transparent 70%);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  animation: floatGlassBall6 19s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.news-header {
  position: relative;
  z-index: 2;
}

.news-hero .header-content {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
}

.news-hero .header-left {
  flex: 0 0 auto;
  min-width: 350px;
}

.news-hero .header-right {
  flex: 1;
  max-width: calc(100% - 430px);
  margin-left: 120px;
}

.news-hero .news-title {
  font-size: 8rem;
  font-weight: 800;
  color: #2d3748;
  margin: 0;
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-family: 'Inter', sans-serif;
}

.news-info {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.news-info-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #6366f1;
  margin: 0 0 20px 0;
}

.news-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #64748b;
  margin: 0;
  position: relative;
  z-index: 2;
}

.news-list {
  padding: 40px 0 80px 0;
  background: #f8fafc;
}

.news-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.news-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.news-link {
  display: flex;
  text-decoration: none;
  color: inherit;
  height: 100%;
  align-items: center;
}

.news-image {
  flex: 0 0 350px;
  height: 200px;
  overflow: hidden;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-item:hover .news-img {
  transform: scale(1.05);
}

.news-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-content .news-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 12px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: #6b7280;
}

.news-meta i {
  color: #3b82f6;
}

.news-divider {
  color: #d1d5db;
}

.news-summary {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 分页样式 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.page-btn {
  padding: 12px 20px;
  border: 1px solid #d1d5db;
  background: white;
  color: #374151;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.page-btn:hover:not(:disabled) {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.page-btn.active {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .news-hero {
    padding: 60px 0 40px;
  }

  .news-hero .header-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .news-hero .header-left {
    min-width: auto;
  }

  .news-hero .header-right {
    margin-left: 0;
    max-width: 100%;
  }

  .news-hero .news-title {
    font-size: 4rem;
  }

  .news-info-title {
    font-size: 1.8rem;
  }

  .news-description {
    font-size: 1rem;
  }

  .news-link {
    flex-direction: column;
  }

  .news-image {
    flex: none;
    width: 100%;
    height: 220px;
  }

  .news-content {
    padding: 20px;
  }

  .news-content .news-title {
    font-size: 1.1rem;
  }

  .pagination {
    flex-wrap: wrap;
    gap: 8px;
  }

  .page-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
