.news_container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 30px;
}

.news_card {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 280px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.card_img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card_img:hover img {
  transform: scale(1.05);
}

.card_content {
  padding: 15px;
   display: flex;
  flex-direction: column;
  min-height: 80px; /* 根据需要调整最小高度 */
}

.card_title {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
  flex: 1; /* 添加这一行 */
}

.card_title:hover {
  color: #ff6600;
}

.card_date {
    font-size: 14px;
  color: #999;
  margin: 5px 0 0; /* 调整为只有顶部边距 */
  line-height: 1.5;
}

.cb {
  clear: both;
  overflow: hidden;
  height: 0;
}

.i_bt {
  margin-bottom: 30px;
  text-align: center;
}

.i_bt .p1 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.i_bt .p2 {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

/* 合作伙伴轮播图样式 */
#hezuo_banner {
    width: 100%;
    height: 400px; /* 调整高度 */
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

#hezuo_banner ul {
    width: 500%;
    height: 100%;
    position: relative;
    padding: 0;
    left: 0;
    z-index: 2;
    margin: 0;
}

#hezuo_banner ul li {
    width: 20%;
    height: 94%;
    float: left;
    background-size: cover;
    background-position: center;
    position: relative;
    list-style: none;
}

#hezuo_banner ol {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 20px;
    padding: 0;
    z-index: 5;
    height: 14px;
    line-height: 14px;
    margin: 0;
}

#hezuo_banner ol li {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    margin: 0 12px;
    cursor: pointer;
    list-style: none;
}

#hezuo_banner ol li.cur {
    background: #e40807; /* 选中状态颜色 */
}

#hezuo_banner .banner-description {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    padding: 0 20px;
    z-index: 10;
}

#hezuo_banner .banner-description p {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}