/* ============================================
   轮播图下方 卡片式展示样式
   背景色：#3c4854（深灰蓝色）
   布局：3 个卡片并排展示
   ============================================ */

/* --- 整体容器 --- */
.news-cards-banner {
    background: #3c4854;
    color: #fff;
    margin: 10px 0 10px 0;
    padding: 24px 0;
    position: relative;
    z-index: 10;
  }
  
  /* 标题栏 */
  .news-cards-header {
    display: flex;
    background: rgba(0, 0, 0, 0.15);
    padding: 0 24px;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 24px;
  }
  
  .news-cards-header .news-card-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* 内容区域 */
  .news-cards-content {
    display: flex;
    gap: 20px;
    padding: 0 24px;
  }
  
  /* --- 卡片样式 --- */
  .news-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .news-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  
  /* 不同卡片颜色 */
  .news-card-company {
    border-top: 4px solid #007BC8;
  }
  
  .news-card-company:hover {
    background: rgba(0, 123, 200, 0.15);;
    /* background: rgba(76, 175, 80, 0.15); */
  }
  
  .news-card-industry {
    border-top: 4px solid #70B74A;
  }
  
  .news-card-industry:hover {
    background: rgba(111, 186, 68, 0.15);
  }
  
  .news-card-public {
    border-top: 4px solid #E83820;
  }
  
  .news-card-public:hover {
    background: rgba(232, 56, 32, 0.15);
  }
  
  /* 卡片图标 */
  .news-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
    text-align: center;
  }
  
  /* 卡片标题 */
  .news-card-body .news-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  }
  
  /* 列表样式 */
  .news-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .news-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .news-card-item:last-child {
    margin-bottom: 0;
  }
  
  .news-card-item:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .news-card-item a {
    flex: 1;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.2s;
    word-break: break-word;
  }
  
  .news-card-item a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  .news-card-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    margin-left: 12px;
  }
  
  /* --- 移动端适配 --- */
  @media screen and (max-width: 992px) {
    .news-cards-content {
      flex-direction: column;
      gap: 16px;
      padding: 0 20px;
    }
  
    .news-card {
      padding: 16px;
    }
  }
  