/* 浏览器默认样式重置 */
html {
  font-size: 16px;
}
body {
  font-family: 'Frutiger', sans-serif;
  background-color: var(--main-bg);
  padding: 0;
  margin: 0;
}
ol {
  margin: 0;
}
ol li {
  list-style: none;
}
ul {
  padding-left: 1em;
  margin: 0;
}
ul[data-li-style="none"] {
  padding-left: 0;
  & > li {
    list-style: none;
  }
}
ul[data-li-style="disc"] li {
  list-style: disc;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Frutiger', sans-serif;
  margin: 0;
}
button {
  color: inherit;
  font: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
button:focus {
  outline: none;
}
p {
  margin: 0;
}
input {
  margin-bottom: 0;
}
label {
  margin-bottom: 0;
}
select, textarea, input[type=text], input[type=password], input[type=datetime], input[type=datetime-local], input[type=date], input[type=month], input[type=time], input[type=week], input[type=number], input[type=email], input[type=url], input[type=search], input[type=tel], input[type=color], .uneditable-input {
  margin-bottom: 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;
}
/* 文字相关 */
h1 {
  color: inherit;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
}
@media (max-width: 979px) {
  h1 {
    font-size: 2.875rem;
    line-height: 1.12;
    letter-spacing: -1px;
  }
}
h2 {
  color: inherit;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1px;
}
@media (max-width: 979px) {
  h2 {
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
h3 {
  color: inherit;
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1px;
}
@media (max-width: 979px) {
  h3 {
    font-size: 1.75rem;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
h4 {
  color: inherit;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1px;
}
@media (max-width: 979px) {
  h4 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
h5 {
  color: inherit;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}
@media (max-width: 979px) {
  h5 {
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
h6 {
  color: inherit;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0;
}
@media (max-width: 979px) {
  h6 {
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: 0;
  }
}
.cimx-label {
  font-size: .75rem;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0;
  color: #131B42;
}
.cimx-text {
  font-size: 1rem;
  font-weight: normal;
  line-height: 2rem;
  letter-spacing: 0;
}
.cimx-text--big {
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 2rem;
  letter-spacing: 0;
  color: #333333;
}
.cimx-text--gray {
  font-size: 1rem;
  font-weight: normal;
  line-height: 2rem;
  letter-spacing: 0;
  color: rgba(51, 51, 51, 0.5);
}
.cimx-text--small {
  font-size: .875rem;
  font-weight: normal;
  line-height: 1.5rem;
  letter-spacing: 0;
  color: rgba(51, 51, 51, 0.5);
}
.cmx-content-subtitle {
  color: var(--cimx-primary-color3);
}

.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;
}
