html, body, div, span, p, a, dl, dt, dd, ol, ul, li {
  margin: 0;
  padding: 0;
  border: 0
}

body {
  background: #fff;
  color: #333;
  position: relative;
  font-size: 100%;
  font: 12px/1.5 arial, Microsoft YaHei, sans-serif;
  vertical-align: baseline;
  width: 100%;
  overflow-x: hidden
}

a {
  text-decoration: none;
  outline: none
}

a:link {
  color: #333
}

a:visited {
  color: #333
}

a:hover, a:active, a:focus {
  color: #e87518;
  text-decoration: none;
  outline: none
}

ul, ol, li {
  list-style-type: none
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden
}

.clearfix {
  zoom: 1
}

.clearboth {
  height: 0px;
  line-height: 0px;
  overflow: hidden;
  clear: both;
  font-size: 0px
}

.region {
  margin-top: 10px;
  border: 1px solid #e0e1dc
}

.region .item {
  padding: 10px;
  line-height: 28px;
  display: block
}

.region .item a {
  padding-left: 15px;
  padding-right: 15px;
  float: left
}

.region .item a:hover {
  text-decoration: none;
  background: #3480ce;
  color: #fff
}

#container {
  width: 1000px;
  margin: 0 auto;
  margin-top: 10px;
  border: 1px solid #f4f4f4;
  padding: 10px
}

.hot {
  border-bottom: 2px solid #eb2830;
  padding-bottom: 8px;
  margin-bottom: 40px
}

.hot li {
  float: left;
  margin-right: 12px;
  margin-bottom: 12px
}

.hot li a {
  display: block;
  line-height: 32px;
  padding-left: 16px;
  padding-right: 16px;
  background: #f4f4f4
}

.hot li a:hover {
  text-decoration: none;
  background: #eb2830;
  color: #fff
}

.city_list {
  padding-top: 10px
}

.item {
  padding: 10px 0;
  line-height: 24px;
  overflow: hidden;
  border-bottom: 1px dashed #ddd
}

.item dt {
  float: left;
  font-family: arial;
  font-weight: bold;
  font-size: 18px;
  width: 35px;
  padding-left: 25px;
  color: #444
}

.item dd {
  margin: 0 0 0 55px;
  padding-left: 15px;
  border-left: 1px dashed #b2b2b2
}

.item dd a {
  padding: 1px 12px 1px 12px;
  white-space: nowrap;
  float: left
}

.item dd a:hover {
  text-decoration: none;
  background: #eb2830;
  color: #fff
}

#foot {
  width: 1022px;
  margin: 0 auto;
  text-align: center;
  margin-top: 10px;
  line-height: 24px;
  color: #666;
  border-top: 2px solid black;
  padding: 10px 0 10px 0
}

#foot a {
  color: #666
}

.return {
  position: relative;
  height: 36px;
  padding: 6px;
  width: 1000px;
  margin: 0 auto;
  text-align: left;
  font: bold 22px/42px "Microsoft YaHei";
  color: #737372
}
/* 限制链接区域的高度并排版 */
.city-links-wrapper {
    display: flex;
    flex-wrap: wrap; /* 自动换行 */
    gap: 10px; /* 链接之间的间距 */
    max-height: 200px; /* 限制最大高度，防止把二维码挤掉 */
    overflow-y: auto; /* 如果链接实在太多，允许内部滚动 */
    padding: 10px;
    background: #f9f9f9; /* 加个浅色背景区分一下 */
    border-radius: 5px;
    font-size: 13px;
}

.city-links-wrapper span {
    flex: 0 0 23%; /* 这里的 23% 表示每行显示 4 个链接左右 */
    text-align: left;
    white-space: nowrap; /* 禁止链接内部换行 */
    overflow: hidden;
    text-overflow: ellipsis; /* 文字太长显示省略号 */
}