 @media (min-width: 1200px) {
.pc-hot-banner {
    background-color: rgb(0, 0, 0);
    background-position: 50% center;
    background-repeat: no-repeat;
    background-size: 2920px 725px;
    height: 725px;
}
.8dqy{ display:none;}
.pc-newsroom-header{ display:block; }
.sj-newsroom-header{ display:none;}
 }
 @media (max-width: 768px) {
     .pc-hot-banner { display:block;
      }
	  .pc-newsroom-header{ display:none;
      }
	  .8dqy{ display:block;}
	  .sj-newsroom-header{ display:block;}
    }
 /* 标题样式 */
    .page-title {
      font-size: 1.75rem;
      font-weight: 700;
      color: #000000;
      margin-bottom: 30px;
    }
    
    /* 新闻列表样式 */
    .news-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    
    /* 新闻卡片样式 */
    .news-card {
      background-color: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }
    
    .news-card:hover {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      transform: translateY(-3px);
    }
    
    /* 新闻卡片布局 - 移动端为垂直，桌面端为水平 */
    .news-card-content {
      display: flex;
      flex-direction: column;
    }
    
    @media (min-width: 768px) {
      .news-card-content {
        flex-direction: row;
      }
    }
    
    /* 新闻图片样式 */
    .news-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    
    @media (min-width: 768px) {
      .news-image-container {
        width: 33.333%;
        min-height: 220px;
      }
      .news-image {
        height: 100%;
      }
    }
    
    /* 新闻文本内容样式 */
    .news-text {
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    
    @media (min-width: 768px) {
      .news-text {
        width: 66.667%;
        padding: 24px;
      }
    }
    
    /* 新闻标题样式 */
    .news-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #000000;
      margin-bottom: 12px;
      line-height: 1.3;
    }
    
    @media (min-width: 768px) {
      .news-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
      }
    }
    
    .news-title a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    
    .news-title a:hover {
      color: #FE2C55;
    }
    
    /* 新闻摘要样式 */
    .news-summary {
      color: #666;
      font-size: 0.95rem;
      margin-bottom: 16px;
      display: none;
    }
    
    @media (min-width: 768px) {
      .news-summary {
        display: block;
        font-size: 1rem;
        line-height: 1.6;
      }
    }
    
    /* 新闻日期样式 */
    .news-date {
      color: #6B7280;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
    }
    
    .date-icon {
      margin-right: 6px;
      font-size: 0.9rem;
    }