/**
 * 主题分类列表页（list.php）专用样式，勿写入 theme.css
 */
.page-theme .list-bg {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  width: 1200px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto;
  box-sizing: border-box;
}
.page-theme .list-bg .cate_list {
  flex: 1 1 auto;
  min-width: 280px;
  width: auto;
  margin-right: 0;
  list-style-type: disc;
  list-style-position: outside;
  float: none;
  padding-left: 1.25rem;
}
.page-theme .list-bg .cate_list:first-child {
  margin-left: 0;
}
.page-theme .list-bg .cate_list li {
  list-style: none;
  position: relative;
  cursor: pointer;
  margin-bottom: 1.3125rem;
}
.page-theme .list-bg .cate_list li .cate-circle {
  display: inline-block;
  top: 14px;
  left: -23px;
  width: 8px;
  height: 8px;
  border: 2px solid #9548FF;
  border-radius: 8px;
  margin-right: 12px;
}
.page-theme .list-bg .cate_list li a {
  font-size: 19px;
  line-height: 40px;
  font-weight: 400;
  color: #1A1B1C;
  text-decoration: none;
  white-space: nowrap;
}
.page-theme .list-bg .cate_list li a:hover {
  color: #FF822C;
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .page-theme .list-bg {
    width: 90%;
    flex-wrap: wrap;
  }
  .page-theme .list-bg .cate_list {
    min-width: 0;
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
  .page-theme .list-bg .cate_list li a {
    white-space: normal;
  }
  .page-theme .list-bg .cate_list:first-child {
    margin-left: 0;
  }
}
