/* 资讯中心列表页 */
.info-list-area {
  padding: 50px 0 100px;
  background: #fff;
}

.info-breadcrumb {
  font-size: 14px;
  color: #999;
  margin-bottom: 40px;
}

.info-breadcrumb a {
  color: #999;
  text-decoration: none;
}

.info-breadcrumb a:hover {
  color: #1a8cff;
}

.info-breadcrumb span {
  margin: 0 6px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.info-list-item {
  display: flex;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid #e8e8e8;
  gap: 40px;
}

.info-list-item:first-child {
  border-top: 1px solid #e8e8e8;
}

.info-list-date {
  flex: 0 0 90px;
  text-align: center;
}

.info-list-date .day {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

.info-list-date .year {
  display: block;
  font-size: 14px;
  color: #999;
  margin-top: 4px;
}

.info-list-date::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #1a8cff;
  margin: 10px auto 0;
}

.info-list-content {
  flex: 1;
  min-width: 0;
}

.info-list-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.5;
}

.info-list-title a {
  color: #1a8cff;
  text-decoration: none;
  transition: color 0.2s;
}

.info-list-title a:hover {
  color: #0066cc;
}

.info-list-summary {
  font-size: 14px;
  color: #888;
  line-height: 1.8;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.info-list-thumb {
  flex: 0 0 200px;
}

.info-list-thumb img {
  width: 200px;
  height: 130px;
  object-fit: cover;
  border-radius: 4px;
}

/* 资讯详情页 */
.info-detail-area {
  padding: 50px 0 100px;
  background: #fff;
}

.info-detail-inner {
  max-width: 900px;
  margin: 0 auto;
  overflow: visible;
}

.info-detail-inner .info-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  text-align: center;
  line-height: 1.7;
  margin: 0 0 24px;
  padding: 0 0 24px;
  border-bottom: 1px solid #e0e0e0;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow: visible;
  height: auto;
  max-height: none;
}

.info-detail-meta {
  text-align: center;
  font-size: 14px;
  color: #999;
  margin-bottom: 36px;
}

.info-detail-body {
  font-size: 15px;
  color: #555;
  line-height: 2;
}

.info-detail-body p {
  margin-bottom: 18px;
  text-align: justify;
}

.info-detail-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin: 28px 0 12px;
}

.info-detail-body ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 18px;
}

.info-detail-body ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  line-height: 1.8;
}

.info-detail-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: #1a8cff;
  border-radius: 50%;
}

.info-detail-cover {
  text-align: center;
  margin: 30px 0 36px;
}

.info-detail-cover img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.info-detail-nav {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  text-align: left;
}

.info-detail-adjacent {
  margin: 0 0 12px;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}

.info-detail-adjacent:last-child {
  margin-bottom: 0;
}

.info-detail-label {
  font-weight: 600;
  color: #333;
}

.info-detail-adjacent a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.info-detail-adjacent a:hover {
  color: #1a8cff;
}

@media (max-width: 768px) {
  .info-list-item {
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
  }

  .info-list-date {
    flex: 0 0 70px;
  }

  .info-list-date .day {
    font-size: 22px;
  }

  .info-list-content {
    flex: 1 1 calc(100% - 90px);
    order: 2;
  }

  .info-list-thumb {
    flex: 0 0 100%;
    order: 3;
  }

  .info-list-thumb img {
    width: 100%;
    height: 180px;
  }

  .info-detail-inner .info-detail-title {
    font-size: 22px;
    line-height: 1.7;
    padding: 0 4px 20px;
  }

}
