/* 视频详情页样式 */
.news-detail-section {
    padding: 2rem 0 4rem;
}

.news-detail-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
}

.news-main-content {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(27,45,107,0.08);
}




.news-meta-info {
    margin: 1.5rem 0;
}

.news-title {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.news-tag {
    background: var(--primary-color-10);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.news-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .news-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-main-content {
        padding: 1rem;
    }
    
    .news-title {
        font-size: 1.4rem;
    }
    
}

@media (max-width: 480px) {
    
    
    .news-share {
        flex-wrap: wrap;
    }
    
   
}

/* 新闻内容容器 */
.news-content {
  padding: 2rem 10%;
  background: linear-gradient(to bottom, 
    rgba(255,255,255,0.9) 0%, 
    rgba(247,249,252,0.95) 100%);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(27,45,107,0.08);
  position: relative;
  line-height: 1.8;
  color: #2d3748;
}

.news-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 标题层级体系 */
.news-content h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin: 2rem 0 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 3px solid var(--secondary-color);
  position: relative;
}

.news-content h3 {
  font-size: 1.6rem;
  color: #1a365d;
  margin: 1.8rem 0 1rem;
  padding-left: 1.2rem;
  border-left: 4px solid var(--secondary-color);
}

/* 段落增强 */
.news-content p {
  margin: 1.2rem 0;
  text-align: justify;
  hyphens: auto;
  letter-spacing: 0.5px;
}

/* 技术参数区块 */
.tech-specs {
  background: rgba(27,45,107,0.03);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(27,45,107,0.1);
}

.spec-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed #e2e8f0;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
  color: var(--primary-color);
}

/* 客户见证引用 */
.testimonial-block {
  background: rgba(255,255,255,0.95);
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* 交互元素 */
.data-point {
  cursor: help;
  border-bottom: 1px dotted var(--primary-color);
  position: relative;
}

.data-point:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .news-content {
    padding: 1.5rem;
    border-radius: 8px;
  }
  
  .news-content img {
    width: 100%;
  }
  .news-content h2 {
    font-size: 1.8rem;
  }
  
  .spec-item {
    grid-template-columns: 1fr;
  }
  .news-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .news-content {
    line-height: 1.6;
  }
  
  .tech-specs {
    padding: 1rem;
  }
  
  .testimonial-block {
    padding: 1rem;
  }
}

