.place {
  height: 44px;
}

.info-banner {
  width: 100%;
  height: 359px;
  position: relative;
  background-image: url(../images/information-banner.jpg?t=1685593069050);
  background-size: cover;
  background-position: center center;
  background-color: #000;
}

/* 资讯列表 */
.information-table {
  max-width: 1000px;
  margin: auto;
  background-color: #ffffff;
  margin-top: 40px;
  margin-bottom: 40px;
  /* padding: 40px; */
  display: block;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 去除下划线并设置初始颜色 */
a {
  text-decoration: none;
  color: inherit; /* 继承父元素的颜色，也可以设置为特定颜色，例如 color: #333; */
}

/* 对于不同链接状态也进行相应的样式重置 */
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none; /* 去除所有状态下链接的下划线 */
  color: inherit; /* 或者统一设置一种颜色，例如 color: #333; */
}

/* 如果需要进一步消除用户选择行为 */
a {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.information-table .information-table-row {
  display: flex;
  gap: 20px;
  padding: 20px;
  cursor: pointer;
  justify-content: space-around;
  border: 1px solid #efefef;
}

.information-table .information-table-row:hover {
  background-color: #f9f9f9;
}

.information-table .information-table-title-left-img {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}

.information-table .information-table-title-left-img img {
  width: 100%;
  object-fit: cover; 
  max-height: 100%;
}

.information-table .information-text {
  padding: 5px 0;
  width: 60%;
  min-height: 150px;
  position: relative;
}

.information-table .information-text .information-title {
  display: block;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0;
}

.information-table .information-text .information-description {
  letter-spacing: 1px;
  padding: 20px 0;
  bottom: 0;
  font-size: 14px;
  color: #666;
  line-height: 20px;
}

.information-table .information-text .information-time {
  position: absolute;
  bottom: 5px;
  color: #999;
}

