/**
 * 高手帖列表 — 源站 main.asp 两处独立 <style> 块
 *
 * 1. #con_gsb_1  六肖中特下「高手榜」(约 3239 行，li>a + gsb-txt)
 * 2. #gsb-inline 页中内联列表 (约 2172 行，gsb-tit + 准准准)
 *
 * 说明：源站全页同时存在两段 .gsb 样式时，2178 行 .gsb ul li .gsb-ico span
 * 会覆盖 3245 行 .gsb-ico span，故 #con_gsb_1 线上实际为金标 #be9e27。
 * 此处按线上可见效果编写，并用 #id 隔离两套列表，避免互相污染。
 */

#con_gsb_1.gsb ul,
#gsb-inline .gsb ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* —— 高手榜 #con_gsb_1 —— */
#con_gsb_1.gsb ul li a {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-bottom: solid 1px #e5e5e5;
  text-decoration: none;
  color: #333;
}

#con_gsb_1.gsb .gsb-ico {
  margin-right: 10px;
}

#con_gsb_1.gsb .gsb-ico span {
  display: inline-block;
  font-size: 0.9em;
  padding: 0 8px;
  color: #fff;
  border-radius: 5px;
  background: #be9e27;
}

#con_gsb_1.gsb .gsb-txt {
  flex: 1;
  font-weight: bold;
}

#con_gsb_1.gsb .gsb-zz {
  color: #888;
}

/* —— 内联列表 #gsb-inline —— */
#gsb-inline .gsb ul li a {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-bottom: solid 1px #eee;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

#gsb-inline .gsb .gsb-ico {
  margin-right: 10px;
}

#gsb-inline .gsb .gsb-ico span {
  display: inline-block;
  font-size: 0.9em;
  padding: 0 8px;
  color: #fff;
  border-radius: 5px;
  background: #be9e27;
}

#gsb-inline .gsb .gsb-tit {
  flex: 1;
  font-weight: bold;
  font-size: 18px;
}

#gsb-inline .gsb .gsb-tit font {
  color: #e60022;
}

#gsb-inline .gsb .gsb-tit span {
  color: #7ea57e;
}

#gsb-inline .gsb .gsb-zz {
  color: #888;
}

@media screen and (max-width: 750px) {
  #con_gsb_1.gsb .gsb-ico span {
    padding: 0 5px;
    font-size: 12px;
  }

  #gsb-inline .gsb .gsb-tit {
    font-size: 16px;
  }
}
