/* 文章内容页专用样式 */

.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;
}

.article-detail {
  margin: 0;
  padding: 30px 24px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(25,118,210,0.06);
}
.article-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 18px;
  color: #222;
}
.article-meta {
  color: #888;
  font-size: 14px;
  margin-bottom: 18px;
}
.article-thumb img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.article-content {
  font-size: 17px;
  line-height: 1.9;
  color: #333;
  word-break: break-all;
}

/* 右侧栏区块与新闻列表页统一 */
.tq-block {
  background: #fafbfc;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(25,118,210,0.04);
  padding: 18px 18px 12px 18px;
}
.tq-block-title {
  font-size: 18px;
  font-weight: bold;
  color: #1976d2;
  margin-bottom: 12px;
  border-left: 4px solid #1976d2;
  padding-left: 8px;
}
.tq-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tq-news-list li {
  display: flex;
  align-items: flex-start;
}
.tq-news-list a {
  color: #222;
  font-size: 15px;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
  display: block;
  width: 100%;
  padding: 2px 0;
}
.tq-news-list a:hover {
  color: #1976d2;
  text-decoration: underline;
}
.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;
}

 