/* 浏览器默认样式重置 */
body {
  padding: 0;
  margin: 0;
  background-color: var(--primary-bg);
}
ul li, ol li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

/* 通用样式类 */
.cmx-content--flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cmx-content--flex-justify-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}