@charset "UTF-8";
@import "bootstrap.min.css";
@import "iconfont.css";
@import "animate.css";

/*********** reset start **************/
body {
  color: var(--text-color, #666);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  text-align: left;
  background: #ffffff;
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
} 

body * {
  margin: 0;
  padding: 0;
  /* border: none; */
  outline: none !important;
  /* line-height: 1.4; */
}

h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--title-text-color, #000);
  font-family: var(--title-font-family);
}

h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--title-text-color, #000);
  font-family: var(--title-font-family);
}

h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--title-text-color, #000);
  font-family: var(--title-font-family);
}

h4 {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color, #555);
  font-family: var(--title-font-family);
}

h5 {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color, #888);
  font-family: var(--title-font-family);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--color-primary);
}

ol,
ul {
  list-style: none;
}

i,
em {
  font-style: normal;
}

.rich-text ol {
  list-style: decimal;
  width: fit-content;
  text-align: left;
}

.rich-text ul {
  list-style: disc;
  width: fit-content;
  text-align: left;
}

.rich-text ul li {
  list-style: disc;
}

.rich-text em {
  font-style: italic;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.fr,
.float-right {
  float: right;
}

.fl,
.float-left {
  float: left;
}

.uppercase {
  text-transform: uppercase;
}

/* RTL布局 */
html[dir="rtl"] body {
  text-align: right;
}

/* 清除浮动 */
.cl {
  zoom: 1;
}

.cl:before,
.cl:after {
  display: table;
  content: " ";
}

.cl:after {
  clear: both;
}