/* 天气页面主卡片区块 */
.weather-block-card {
  max-width: 980px;
  margin: 0 auto 32px auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px #0001;
  padding: 28px 0 18px 0;
  box-sizing: border-box;
}
.weather-block-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin-bottom: 18px;
  text-align: left;
}

/* 生活指数区块 */
.life-index-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.life-index-card {
  background: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 1px 4px #0001;
  padding: 18px 18px 14px 18px;
  min-width: 160px;
  max-width: 220px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.life-index-level {
  font-size: 28px;
  font-weight: bold;
  color: #2196f3;
  margin-bottom: 6px;
}
.life-index-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  text-align: center;
}
.life-index-desc {
  font-size: 14px;
  color: #666;
  text-align: center;
  line-height: 1.6;
  min-height: 38px;
}
 

.tq-news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}
.tq-news-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  border-radius: 8px;
  transition: box-shadow 0.2s, background 0.2s;
  background: #fafbfc;
}
.tq-news-item:hover {
  background: #f5f7fa;
  box-shadow: 0 2px 8px 0 rgba(25,118,210,0.07);
}
.tq-news-thumb img, .tq-news-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.tq-news-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 60px;
}
.tq-news-content a {
  font-size: 15px;
  color: #222;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  max-height: 2.8em;
}
.tq-news-meta {
  font-size: 13px;
  color: #888;
  margin-top: auto;
} 

.tq-nearby-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 8px;
}
.tq-nearby-link {
  background: #f5f7fa;
  color: #1976d2;
  border-radius: 5px;
  padding: 6px 14px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.tq-nearby-link:hover {
  background: #e3f0fd;
} 