html {
  overflow-x: auto;
  overflow-y: scroll;
}

body,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
input,
p,
blockquote,
th,
td {
  font-weight: 400;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h4,
h5 {
  margin: 0;
  padding: 0;
}

body {
  background-color: #FFFFFF;
  color: rgba(0, 0, 0, 0.90);
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 400;
}

select {
  font-size: 12px;
}

table {
  border-collapse: collapse;
}

fieldset,
img {
  border: 0 none;
}

fieldset {
  margin: 0;
  padding: 0;
}

fieldset p {
  margin: 0;
  padding: 0 0 0 8px;
}

legend {
  display: none;
}

address,
caption,
em,
strong,
th,
i {
  font-style: normal;
  font-weight: 400;
}

table caption {
  margin-left: -1px;
}

hr {
  border-bottom: 1px solid #FFFFFF;
  border-top: 1px solid #E4E4E4;
  border-width: 1px 0;
  clear: both;
  height: 2px;
  margin: 5px 0;
  overflow: hidden;
}

ol,
ul {
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
}

caption,
th {
  text-align: left;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: '';
}

/* 通用样式 */
.fboxRow {
  display: flex;
  flex-direction: row;
}

.fboxCol {
  display: flex;
  flex-direction: column;
}

.fboxWrap {
  display: flex;
  flex-wrap: wrap;
}

.Xbetween {
  justify-content: space-between;
}

.Ycenter {
  align-items: center;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.ml-10 {
  margin-left: 10px;
}

.font12 {
  font-size: 12px;
}

.font14 {
  font-size: 14px;
}

.font24 {
  font-size: 24px;
}

.font-theme {
  color: #FF6739;
}

.font-grey {
  color: #999;
}

.font-weight {
  font-weight: bold;
}

.tr {
  text-align: right;
}

.over-hide {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 24px;
}

/* 按钮样式 */
.btn {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
}

.btn-normal {
  background: #FF6739;
  color: #fff;
  border: 1px solid #FF6739;
}

.btn-normal:hover {
  background: #FF8761;
}

.btn-normal-light {
  background: #fff;
  color: #FF6739;
  border: 1px solid #FF6739;
}

.btn-normal-light:hover {
  background: rgba(255, 103, 57, 0.08);
}

/* 图片响应式 */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* 弹性布局辅助类 */
.flex1 {
  flex: 1;
}

.flex-none {
  flex: none;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-stretch {
  align-items: stretch;
}