/* 新闻列表页专用样式 */

.article-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  padding: 0;
}
.article-list-title-wrap {
  background: #e3e5e8;
  border-radius: 10px;
  padding: 18px 28px 14px 28px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px 0 rgba(25,118,210,0.04);
  border: 3px solid #444;
}
.article-list-title {
  font-size: 26px;
  font-weight: bold;
  color: #222;
  margin: 0;
  letter-spacing: 1px;
}
.article-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-radius: 12px;
  background: #fafbfc;
  box-shadow: 0 2px 12px 0 rgba(25,118,210,0.06);
  transition: box-shadow 0.2s, background 0.2s;
}
.article-item:hover {
  background: #f5f7fa;
  box-shadow: 0 4px 16px 0 rgba(25,118,210,0.10);
}
.article-thumb img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.article-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.article-title a {
  font-size: 18px;
  color: #1976d2;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  transition: color 0.2s;
}
.article-title a:hover {
  color: #1256a3;
  text-decoration: underline;
}
.article-summary {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin: 2px 0 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-meta {
  color: #aaa;
  font-size: 13px;
  margin-top: 2px;
}
.pagination {
  display: flex;
  gap: 8px;
  margin: 32px 0 0 0;
  justify-content: center;
}
.pagination a {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 6px;
  background: #f5f7fa;
  color: #1976d2;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.pagination a.active, .pagination a:hover {
  background: #1976d2;
  color: #fff;
}
.tq-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.tq-main-inner {
  display: flex;
  gap: 20px;
}
.tq-main-left {
  flex: 1;
}
.tq-main-right {
  width: 320px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tq-hotcity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tq-hotcity-list li {
  width: 100%;
  display: flex;
  gap: 10px;
}
.tq-hotcity-list a {
  flex: 1;
  background: #f5f7fa;
  color: #1976d2;
  border-radius: 5px;
  padding: 6px 0;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.tq-hotcity-list a:hover {
  background: #e3f0fd;
}

 