/* ========== PC端企业动态样式 ========== */
.news-list {
  max-width: 900px;
  margin: 0 auto;
}

.news-list-item {
  display: flex;
  background-color: #fff;
  border: 1px solid hsla(214, 15%, 88%, 0.6);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-list-item:hover {
  border-color: hsla(213, 75%, 32%, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.news-list-image {
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: hsl(210, 20%, 96%);
}

.news-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-list-item:hover .news-list-image img {
  transform: scale(1.08);
}

.news-list-content {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}

.news-list-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news-list-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
  color: hsl(213, 75%, 32%);
  background-color: hsla(213, 75%, 32%, 0.1);
  border-radius: 4px;
}

.news-list-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: hsl(215, 10%, 45%);
}

.news-list-title {
  font-size: 19px;
  font-weight: 600;
  color: hsl(215, 28%, 17%);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.news-list-item:hover .news-list-title {
  color: hsl(213, 75%, 32%);
}

.news-list-summary {
  font-size: 14px;
  color: hsl(215, 10%, 45%);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin-bottom: 16px;
}

.news-list-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: hsl(213, 75%, 32%);
  align-self: flex-start;
}

.news-list-readmore svg {
  transition: transform 0.2s;
}

.news-list-item:hover .news-list-readmore svg {
  transform: translateX(4px);
}
