/* 浏览器默认样式重置 */
body {
  padding: 0;
  margin: 0;
}
ul, ol {
  margin: 0;
}
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;
}
button {
  color: inherit;
  font: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
button:focus {
  outline: none;
}

/* 通用样式类 */
/* 布局相关 */
.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;
}
/* 文字相关 */
h3 {
  color: inherit;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 2rem;
  letter-spacing: 0em;
}
h4 {
  color: inherit;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0em;
}
h6 {
  color: inherit;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0em;
}
.cmx-content-subtitle {
  color: var(--secondary-color);
}

.cimx-button {
  color: var(--cimx-primary-color1);
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  padding: 6px 24px;
  background-color: var(--cimx-white);
  border-radius: 4px;
}