/* =======================================
   琦彩兰姬 · 脐橙营销平台 — 新闻详情页
   清新扁平化 | 响应式 | 无内联样式
   ======================================= */
.news-detail {
  padding: 50px 0;
  background-color: #F3F3F3;
}

/* 返回按钮 */
.news-detail-back {
  margin-bottom: 25px;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background-color: #0092A1;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.back-btn:hover {
  background-color: #39888d;
  color: #fff;
}

/* 新闻卡片 */
.news-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

/* 标题 */
.news-card-title {
  font-size: 26px;
  font-weight: 700;
  color: #0092A1;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* 信息条：来源 日期 关键字 */
.news-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #DCDCDC;
}
.news-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
}
.news-info-item i {
  color: #0092A1;
  font-size: 15px;
}

/* 导读描述 */
.news-desc {
  background-color: #F3F3F3;
  border-left: 4px solid #39888d;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* 封面图 */
.news-thumb {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}
.news-thumb img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* 正文内容 */
.news-content {
  font-size: 16px;
  line-height: 2;
  color: #333;
  text-align: left;
  
}
.news-content p {
  margin-bottom: 18px;
}
.news-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
  display: block;
}
.news-content h2,
.news-content h3 {
  color: #0092A1;
  font-weight: 600;
  margin: 28px 0 14px;
  text-indent: 0;
}
.news-content a {
  color: #39888d;
  text-decoration: none;
}
.news-content a:hover {
  color: #0092A1;
  text-decoration: underline;
}

/* 移动端适配 */
@media (max-width:768px){
  .news-card {
    padding: 25px 20px;
  }
  .news-card-title {
    font-size: 22px;
  }
  .news-info-bar {
    gap: 10px;
  }
}/* =======================================
   招商政策优势卡片样式（统一平台风格）
   ======================================= */
.policy-section {
  padding: 40px 0;
  background-color: #F3F3F3;
}
.policy-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 146, 161, 0.08);
}
.policy-title {
  font-size: 16px;
  font-weight: 600;
  color: #0092A1;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #DCDCDC;
}
.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.policy-list li {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}
.policy-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #39888d;
  font-weight: bold;
}