/* @font-face {
  font-family: "SourceHanSansCN";
  src: url("../font/SourceHanSansCN-Normal.otf");
  font-weight: 500;
  font-style: normal;
} */
:root {
  --theme: #ff7310;
  --hover: #ff8d13;
  --bg: #fef9f6;

  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;

  --primary: #ffad31;

  --primary-light: #ffd45b;
  --dark: #425466;
}

/**************** 颜色区 ****************/
/* 主题色 */
.theme {
  color: var(--theme);
}
.bg__theme {
  background-color: var(--theme);
  color: #fff;
}
.bg__theme:hover,
.bg__theme:hover:focus {
  background-color: #ffa717;
}

/* 品牌色 */
.primary {
  color: #1890ff;
}

.primary__hover {
  color: #79beff;
}
.primary:focus,
.primary:hover {
  background: #66b1ff;
  border-color: #66b1ff;
  color: #fff;
}

.primary__plain {
  color: #d8ecff;
}

.dark {
  color: var(--dark);
}

/* 中性色 */
.info1 {
  color: #333333;
}

.info2 {
  color: #666;
}

.info3 {
  color: #999;
}

.info4 {
  color: #d9d9d9;
}

/* 辅助色 */
.辅助色1 {
  color: #ffad31;
}

.辅助色2 {
  color: #ffd45b;
}

.辅助色3 {
  color: #ffeebf;
}

/* 背景色 */
.bg__bolor {
  color: var(--bg);
}
.bg {
  background-color: var(--bg);
}

/**************** 颜色区 end ****************/
* {
  /* font-family: "SourceHanSansCN"; */
  font-style: normal;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 12px;
  -webkit-tap-highlight-color: transparent;
}

a {
  outline: 0;
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: 0;
  text-decoration: none;
}

em,
i {
  font-style: normal;
}

dd,
dl,
dt,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dcdfe6;
  color: #606266;
  -webkit-appearance: none;
  text-align: center;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  transition: 0.1s;
  font-weight: 500;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
}
.input-group {
  line-height: normal;
  display: inline-table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.input {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  box-sizing: border-box;
  color: #606266;
  display: inline-block;
  font-size: inherit;
  height: 40px;
  line-height: 40px;
  outline: none;
  padding: 0 15px;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

table {
  width: 100%;
}
thead {
  background-color: var(--hover);
  border: 1px solid #ededed;
}
tbody {
  /* border: 1px solid #ededed; */
}
table th {
  width: 25%;
  text-align: center;
  height: 64px;
  color: #fff;
}
table tr {
  height: 50px;
  text-align: center;
  color: #333;
}
td {
  border: 1px solid #ededed;
}

.fl,
.lf {
  float: left;
}

.fr,
.rt {
  float: right;
}

.clearfix {
  *zoom: 1;
}

.clearfix:after,
.clearfix:before {
  display: table;
  content: '';
  clear: both;
}

.fj-container {
  width: 100%;
  margin: 0 auto;
  padding: 25px 15px;
}
@media (min-width: 768px) {
  .fj-container {
    width: 750px;
    margin: 0 auto;
    padding: 50px 20px;
  }
}
@media (min-width: 992px) {
  .fj-container {
    width: 970px;
    margin: 0 auto;
    padding: 50px 0;
  }
}
@media (min-width: 1200px) {
  .fj-container {
    width: 1170px;
    margin: 0 auto;
    padding: 50px 0;
  }
}
.fj__title {
  font-size: 30px;
  font-weight: 400;
  color: #333;
  line-height: 1;
  text-align: center;
  margin: 0;
}

.fj__summary {
  font-size: 20px;
  font-weight: 400;
  color: #666;
  line-height: 1;
  text-align: center;
  margin-top: 30px;
}

/* .fj__content {
	padding-top: 30px
}
@media (min-width: 768px) {
	.fj__content {
		padding-top: 70px
	}
} */

.animate--3d {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.animate--3d:hover {
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flex__align-items--center {
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.flex__justify-content--center {
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.flex__justify-content--space-between {
  -moz-box-pack: space-between;
  box-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.flex__flex-flow--wrap {
  -webkit-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-lines: multiple;
  -moz-flex-flow: row wrap;
  box-orient: horizontal;
  box-lines: multiple;
  flex-flow: row wrap;
}

.flex__flex-wrap--wrap {
  -webkit-flex-wrap: wrap;
  -webkit-box-lines: multiple;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex__flex-direction--column {
  flex-direction: column;
}
