/* ============分类列表============== */

ul.newsclass {
  margin: 0px;
  padding: 0;
  display: flex;           /* 弹性布局实现横排 */
  flex-wrap: wrap;         /* 允许换行 */
  gap: 5px 60px;          /* 只调整这个数值：5px是行间距，60px是列间距 */
  align-items: center;     /* 垂直居中 */
}

li.newsclass {
  margin: 0;
  margin-right: 25px;
  padding: 3px 0 3px 20px; /* 上 右 下 左 - 左内边距20px给图标留位置 */
  list-style-type: none;
  font: 14px Verdana, Arial, Helvetica, sans-serif;
  font-weight: 100;
  color: #909090;
  white-space: nowrap;
  background: transparent url(../images/cateitems.gif) left center no-repeat;
  display: inline-flex;
  align-items: center;
}

a.newsclass:link,
a.newsclass:visited,
a.newsclass:active {
  color: #505050;
  text-decoration: none;
  font: 16px Verdana, Arial, Helvetica, sans-serif;
}

a.newsclass:hover {
  color: #ff0000;
  text-decoration: underline;
  font: 16px Verdana, Arial, Helvetica, sans-serif;
}