@charset "utf-8";
/****************
** var.css 数值设定
** 2021 The zeta Authors
** zeta digital lab (http://www.zetalive.com)
** Licensed under MIT
****************/
/****************
** base.css 公用资源
** 2021 The zeta Authors
** zeta digital lab (http://www.zetalive.com)
** Licensed under MIT
****************/
/* 重置样式 *████████████████████████████████████████████████████████████████████████*/
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
::selection {
  color: #FFF;
  background: #333333;
}
::-moz-selection {
  color: #FFF;
  background: #333333;
}
a {
  text-decoration: none;
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: inherit;
  -webkit-user-select: none;
  -moz-user-focus: none;
  -moz-user-select: none;
  cursor: pointer;
}
svg,
img {
  display: inline-block;
  border: 0;
  page-break-inside: avoid;
  vertical-align: bottom;
}
video {
  object-fit: cover;
  outline: none;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ol {
  margin: 0;
  padding: 0;
  padding-left: 20px;
}
span {
  display: inline-block;
}
table {
  border: 0;
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  text-align: center;
}
td,
th {
  padding: 0;
}
blockquote {
  margin: 0;
  padding: 16px;
  border-left: 4px solid #F4801F;
  background: rgba(0, 0, 0, 0.04);
  quotes: none;
}
blockquote:before,
blockquote:after {
  content: none;
}
q {
  quotes: none;
}
q:before,
q:after {
  content: none;
}
ins {
  text-decoration: underline;
}
del {
  text-decoration: line-through;
}
mark {
  background: none;
}
select {
  outline: none;
}
input::-ms-clear {
  display: none !important;
}
/* 移动端重置样式 =========================================================*/
input[type="text"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* 视觉处理 *████████████████████████████████████████████████████████████████████████*/
/* 以像素方式渲染图片 */
.pixel {
  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}
/**点击穿透**/
.click_pass {
  pointer-events: none;
  z-index: 20;
}
.click_no {
  pointer-events: none;
}
/**鼠标指针形状**/
.mouse_poi {
  cursor: pointer;
}
/**背景模糊**/
.blur_no {
  backdrop-filter: blur(0);
}
.blur_xs {
  backdrop-filter: blur(4px);
}
.blur_sm {
  backdrop-filter: blur(8px);
}
.blur_md {
  backdrop-filter: blur(20px);
}
.blur_lg {
  backdrop-filter: blur(24px);
}
/* 文本 *████████████████████████████████████████████████████████████████████████*/
/* 字体 */
.font_ava {
  font-family: "ava";
}
/* 字体大小 */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  color: inherit;
}
.font_xs {
  font-size: 12px;
}
.font_sm {
  font-size: 16px;
}
.font_sd {
  font-size: 18px;
}
.font_de {
  font-size: 20px;
}
.font_md {
  font-size: 24px;
}
.font_lg {
  font-size: 28px;
}
.font_xl {
  font-size: 32px;
}
/* 加粗标题 */
.h6 {
  font-size: 1.2em;
}
.h5 {
  font-size: 1.6em;
}
.h4 {
  font-size: 2.2em;
}
.h3 {
  font-size: 2.6em;
}
.h2 {
  font-size: 3em;
}
.h1 {
  font-size: 3.4em;
}
/* 文字效果 */
.font_b {
  font-weight: bold;
}
.font_ae {
  text-shadow: -1px 0px 0px #333333, 1px 0px 0px #F4801F;
}
/* 行高 *------------------------------------------------------------------*/
.line_no {
  line-height: 1;
}
.line_xs {
  line-height: 1.2;
}
.line_sm {
  line-height: 1.4;
}
.line_md {
  line-height: 1.6;
}
.line_lg {
  line-height: 1.8;
}
.line_xl {
  line-height: 2;
}
/* 文字行数排版 */
.text_1l,
.text_2l {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
/* 一行文字省略 */
.text_1l {
  -webkit-line-clamp: 1;
}
/* 两行文字省略 */
.text_2l {
  -webkit-line-clamp: 2;
}
/* 文本对齐方式 *------------------------------------------------------------------*/
.text_left {
  text-align: left;
}
.text_right {
  text-align: right;
}
.text_center {
  text-align: center;
}
/* 区块,每个区块必须用此包裹,除了头部和底部 *████████████████████████████████████████████████████████████████████████*/
/* 默认 */
.row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}
/* 横排不换行 */
.row_x {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex: 1;
}
/* 竖排 */
.row_y {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* 宽度自适应填满 */
.col_auto {
  position: relative;
  display: flex;
  flex-grow: 1;
}
/* 块 */
.col_12 {
  width: 100%;
  flex-basis: 100%;
}
.col_11 {
  width: 91.66666667%;
  flex-basis: 91.66666667%;
}
.col_10 {
  width: 83.33333333%;
  flex-basis: 83.33333333%;
}
.col_9 {
  width: 75%;
  flex-basis: 75%;
}
.col_8 {
  width: 66.66666667%;
  flex-basis: 66.66666667%;
}
.col_7 {
  width: 58.33333333%;
  flex-basis: 58.33333333%;
}
.col_6 {
  width: 50%;
  flex-basis: 50%;
}
.col_5 {
  width: 41.66666667%;
  flex-basis: 41.66666667%;
}
.col_4 {
  width: 33.33333333%;
  flex-basis: 33.33333333%;
}
.col_3 {
  width: 25%;
  flex-basis: 25%;
}
.col_2 {
  width: 16.66666667%;
  flex-basis: 16.66666667%;
}
.col_1 {
  width: 8.33333333%;
  flex-basis: 8.33333333%;
}
/* 分割线 *████████████████████████████████████████████████████████████████████████*/
/* 分割横线 */
.line_x {
  position: absolute;
  z-index: 10;
  border: 0;
  margin: 0;
  pointer-events: none;
  width: 100%;
  height: 1px;
  background: rgba(252, 169, 25, 0.22);
}
/* 分割竖线 */
.line_y {
  position: absolute;
  z-index: 10;
  border: 0;
  margin: 0;
  pointer-events: none;
  width: 1px;
  height: 100%;
  background: rgba(252, 169, 25, 0.22);
}
/* 分割竖线加粗 */
.line_y_lg {
  position: absolute;
  z-index: 10;
  border: 0;
  margin: 0;
  pointer-events: none;
  width: 4px;
  height: 49px;
  background: #F4801F;
}
/* 边框线 *------------------------------------------------------------------*/
/* 边框线位置 */
.hr {
  border: 1px solid;
}
.hr_top {
  border-top: 1px solid;
}
.hr_left {
  border-left: 1px solid;
}
.hr_right {
  border-right: 1px solid;
}
.hr_right_4 {
  border-right-width: 4px;
}
.hr_bottom {
  border-bottom: 1px solid;
}
/* 边框线颜色 */
.hr,
.hr_top,
.hr_left,
.hr_right,
.hr_bottom {
  border-color: rgba(0, 0, 0, 0.2);
}
/* 取消边框线 *------------------------------------------------------------------*/
.hr_no {
  border: none;
}
.hr_top_no {
  border-top: none;
}
.hr_left_no {
  border-left: none;
}
.hr_right_no {
  border-right: none;
}
.hr_bottom_no {
  border-bottom: none;
}
/* 背景图案 *████████████████████████████████████████████████████████████████████████*/
/* 背景斜纹 *------------------------------------------------------------------*/
.bg_tilt {
  background: linear-gradient(-45deg, transparent 25%, rgba(252, 169, 25, 0.2) 25%, 50%, transparent 50%, 75%, rgba(0, 0, 0, 0.2) 75%);
}
/* 背景斜纹大小 */
.bg_tilt_xxs {
  background-size: 2px 2px;
}
.bg_tilt_xs {
  background-size: 4px 4px;
}
.bg_tilt_sm {
  background-size: 8px 8px;
}
.bg_tilt_md {
  background-size: 12px 12px;
}
.bg_tilt_lg {
  background-size: 16px 16px;
}
.bg_tilt_xl {
  background-size: 24px 24px;
}
/* 背景网格 *------------------------------------------------------------------*/
.bg_grid {
  position: relative;
  background-image: linear-gradient(180deg, rgba(244, 128, 31, 0.08) 1px, transparent 0), linear-gradient(90deg, rgba(244, 128, 31, 0.08) 1px, transparent 0), linear-gradient(45deg, rgba(244, 128, 31, 0.16) 1px, transparent 0), linear-gradient(135deg, rgba(244, 128, 31, 0.16) 2px, transparent 0), linear-gradient(225deg, rgba(244, 128, 31, 0.16) 1px, transparent 0);
  background-size: 48px 48px;
}
/* 变形 *████████████████████████████████████████████████████████████████████████*/
/* 水平翻转 */
.x_flip {
  transform: rotateY(180deg);
}
/* 垂直翻转 */
.y_flip {
  transform: rotateX(180deg);
}
/* 位置 *████████████████████████████████████████████████████████████████████████*/
/* 浮动对齐 *------------------------------------------------------------------*/
.pull_left {
  float: left;
}
.pull_right {
  float: right;
}
/* flex对齐 *------------------------------------------------------------------*/
/* flex居中 */
.flex_center {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* flex右对齐 */
.flex_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
/* flex左对齐 */
.flex_left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
/* flex左右对齐 */
.flex_lr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* flex顶对齐 */
.flex_top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
/* flex底对齐 */
.flex_tb {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
/* flex竖排居中 */
.flex_row_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* flex竖排右对齐 */
.flex_row_right {
  display: flex;
  align-items: flex-end;
}
/* flex竖排左对齐 */
.flex_row_left {
  display: flex;
  align-items: flex-start;
}
/* 盒子距离 *████████████████████████████████████████████████████████████████████████*/
/* 内距 *------------------------------------------------------------------*/
.pa_no {
  padding: 0;
}
.pa {
  padding: 8px;
}
.pa_xs {
  padding: 4px;
}
.pa_sm {
  padding: 8px;
}
.pa_sd {
  padding: 12px;
}
.pa_de {
  padding: 16px;
}
.pa_md {
  padding: 20px;
}
.pa_lg {
  padding: 24px;
}
.pa_xl {
  padding: 28px;
}
.pa_xxl {
  padding: 32px;
}
.pa_tb_no {
  padding-top: 0;
  padding-bottom: 0;
}
.pa_tb {
  padding-top: 8px;
  padding-bottom: 8px;
}
.pa_tb_xs {
  padding-top: 4px;
  padding-bottom: 4px;
}
.pa_tb_sm {
  padding-top: 8px;
  padding-bottom: 8px;
}
.pa_tb_sd {
  padding-top: 12px;
  padding-bottom: 12px;
}
.pa_tb_de {
  padding-top: 16px;
  padding-bottom: 16px;
}
.pa_tb_md {
  padding-top: 20px;
  padding-bottom: 20px;
}
.pa_tb_lg {
  padding-top: 24px;
  padding-bottom: 24px;
}
.pa_tb_xl {
  padding-top: 28px;
  padding-bottom: 28px;
}
.pa_tb_xxl {
  padding-top: 32px;
  padding-bottom: 32px;
}
.pa_lr_no {
  padding-left: 0;
  padding-right: 0;
}
.pa_lr {
  padding-left: 8px;
  padding-right: 8px;
}
.pa_lr_xs {
  padding-left: 4px;
  padding-right: 4px;
}
.pa_lr_sm {
  padding-left: 8px;
  padding-right: 8px;
}
.pa_lr_sd {
  padding-left: 12px;
  padding-right: 12px;
}
.pa_lr_de {
  padding-left: 16px;
  padding-right: 16px;
}
.pa_lr_md {
  padding-left: 20px;
  padding-right: 20px;
}
.pa_lr_lg {
  padding-left: 24px;
  padding-right: 24px;
}
.pa_lr_xl {
  padding-left: 28px;
  padding-right: 28px;
}
.pa_lr_xxl {
  padding-left: 32px;
  padding-right: 32px;
}
/* 外距 *------------------------------------------------------------------*/
.ma_no {
  margin: 0;
}
.ma {
  margin: 8px;
}
.ma_xs {
  margin: 4px;
}
.ma_sm {
  margin: 8px;
}
.ma_sd {
  margin: 12px;
}
.ma_de {
  margin: 16px;
}
.ma_md {
  margin: 20px;
}
.ma_lg {
  margin: 24px;
}
.ma_xl {
  margin: 28px;
}
.ma_xxl {
  margin: 32px;
}
.ma_tb_no {
  margin-top: 0;
  margin-bottom: 0;
}
.ma_tb {
  margin-top: 8px;
  margin-bottom: 8px;
}
.ma_tb_xs {
  margin-top: 4px;
  margin-bottom: 4px;
}
.ma_tb_sm {
  margin-top: 8px;
  margin-bottom: 8px;
}
.ma_tb_sd {
  margin-top: 12px;
  margin-bottom: 12px;
}
.ma_tb_de {
  margin-top: 16px;
  margin-bottom: 16px;
}
.ma_tb_md {
  margin-top: 20px;
  margin-bottom: 20px;
}
.ma_tb_lg {
  margin-top: 24px;
  margin-bottom: 24px;
}
.ma_tb_xl {
  margin-top: 28px;
  margin-bottom: 28px;
}
.ma_tb_xxl {
  margin-top: 32px;
  margin-bottom: 32px;
}
.ma_lr_no {
  margin-left: 0;
  margin-right: 0;
}
.ma_lr {
  margin-left: 8px;
  margin-right: 8px;
}
.ma_lr_xs {
  margin-left: 4px;
  margin-right: 4px;
}
.ma_lr_sm {
  margin-left: 8px;
  margin-right: 8px;
}
.ma_lr_sd {
  margin-left: 12px;
  margin-right: 12px;
}
.ma_lr_de {
  margin-left: 16px;
  margin-right: 16px;
}
.ma_lr_md {
  margin-left: 20px;
  margin-right: 20px;
}
.ma_lr_lg {
  margin-left: 24px;
  margin-right: 24px;
}
.ma_lr_xl {
  margin-left: 28px;
  margin-right: 28px;
}
.ma_lr_xxl {
  margin-left: 32px;
  margin-right: 32px;
}
.ma_top_no {
  margin-top: 0;
}
.ma_top {
  margin-top: 8px;
}
.ma_top_xs {
  margin-top: 4px;
}
.ma_top_sm {
  margin-top: 8px;
}
.ma_top_sd {
  margin-top: 12px;
}
.ma_top_de {
  margin-top: 16px;
}
.ma_top_md {
  margin-top: 20px;
}
.ma_top_lg {
  margin-top: 24px;
}
.ma_top_xl {
  margin-top: 28px;
}
.ma_top_xxl {
  margin-top: 32px;
}
.ma_bottom_no {
  margin-bottom: 0;
}
.ma_bottom {
  margin-bottom: 8px;
}
.ma_bottom_xs {
  margin-bottom: 4px;
}
.ma_bottom_sm {
  margin-bottom: 8px;
}
.ma_bottom_sd {
  margin-bottom: 12px;
}
.ma_bottom_de {
  margin-bottom: 16px;
}
.ma_bottom_md {
  margin-bottom: 20px;
}
.ma_bottom_lg {
  margin-bottom: 24px;
}
.ma_bottom_xl {
  margin-bottom: 28px;
}
.ma_bottom_xxl {
  margin-bottom: 32px;
}
.ma_left_no {
  margin-left: 0;
}
.ma_left {
  margin-left: 8px;
}
.ma_left_xs {
  margin-left: 4px;
}
.ma_left_sm {
  margin-left: 8px;
}
.ma_left_sd {
  margin-left: 12px;
}
.ma_left_de {
  margin-left: 16px;
}
.ma_left_md {
  margin-left: 20px;
}
.ma_left_lg {
  margin-left: 24px;
}
.ma_left_xl {
  margin-left: 28px;
}
.ma_left_xxl {
  margin-left: 32px;
}
.ma_right_no {
  margin-right: 0;
}
.ma_right {
  margin-right: 8px;
}
.ma_right_xs {
  margin-right: 4px;
}
.ma_right_sm {
  margin-right: 8px;
}
.ma_right_sd {
  margin-right: 12px;
}
.ma_right_de {
  margin-right: 16px;
}
.ma_right_md {
  margin-right: 20px;
}
.ma_right_lg {
  margin-right: 24px;
}
.ma_right_xl {
  margin-right: 28px;
}
.ma_right_xxl {
  margin-right: 32px;
}
/**自身居中/////////////////////////////////////////////////////////**/
.pos_centent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pos {
  position: absolute;
}
.pos_100 {
  position: absolute;
  width: 100%;
  height: 100%;
}
/**自身右下/////////////////////////////////////////////////////////**/
.pos_br {
  position: absolute;
  bottom: 0;
  right: 0;
}
/* 图标 *████████████████████████████████████████████████████████████████████████████████*/
/**上箭头/////////////////////////////////////////////////////////**/
.ico_arr_down {
  border: 6px solid transparent;
  border-bottom: 8px solid #FFF;
  border-top: none;
  width: 0;
  height: 0px;
}
.ico_arr_up {
  border: 6px solid transparent;
  border-top: 8px solid #FFF;
  border-bottom: none;
  width: 0;
  height: 0px;
}
/**闪烁动画 //**/
.an_flash {
  animation: flash 2s linear infinite;
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
/**移动动画 //**/
.an_move {
  animation: move 32s linear infinite;
}
@keyframes move {
  0% {
    left: 100px;
  }
  100% {
    left: 537px;
  }
}
/**弹窗动画 //**/
.an_win {
  animation: win 4s linear infinite;
}
.an_win2 {
  animation: win 6s linear infinite;
}
.an_win3 {
  animation: win 2s linear infinite;
}
@keyframes win {
  0% {
    width: 8px;
    height: 8px;
  }
  5% {
    width: 100%;
    height: 100%;
  }
  55% {
    width: 100%;
    height: 100%;
  }
  60% {
    width: 8px;
    height: 8px;
  }
  100% {
    width: 8px;
    height: 8px;
  }
}
/**配色--------------------------------------------------**/
/**蓝 //**/
.color_info {
  color: #F4801F;
}
.hr_info {
  border-color: #F4801F;
}
.bg_info {
  background-color: #F4801F;
}
.bg_info_1 {
  background-color: rgba(244, 128, 31, 0.1);
}
.bg_info_2 {
  background-color: rgba(244, 128, 31, 0.22);
}
.bg_info_4 {
  background-color: rgba(244, 128, 31, 0.4);
}
.bg_info_6 {
  background-color: rgba(244, 128, 31, 0.6);
}
/**红 //**/
.color_danger {
  color: #333333;
}
.hr_danger {
  border-color: #333333;
}
.bg_danger {
  background-color: #333333;
}
.bg_danger_1 {
  background-color: rgba(51, 51, 51, 0.1);
}
.bg_danger_2 {
  background-color: rgba(51, 51, 51, 0.22);
}
.bg_danger_4 {
  background-color: rgba(51, 51, 51, 0.4);
}
.bg_danger_6 {
  background-color: rgba(51, 51, 51, 0.6);
}
/**黄 //**/
.color_warning {
  color: #7B112F;
}
.hr_warning {
  border-color: #7B112F;
}
.bg_warning {
  background-color: #7B112F;
}
.bg_warning_1 {
  background-color: rgba(123, 17, 47, 0.1);
}
.bg_warning_2 {
  background-color: rgba(123, 17, 47, 0.22);
}
.bg_warning_4 {
  background-color: rgba(123, 17, 47, 0.4);
}
.bg_warning_6 {
  background-color: rgba(123, 17, 47, 0.6);
}
/**绿 //**/
.color_success {
  color: #B21B22;
}
.hr_success {
  border-color: #B21B22;
}
.bg_success {
  background-color: #B21B22;
}
.bg_success_1 {
  background-color: rgba(178, 27, 34, 0.1);
}
.bg_success_2 {
  background-color: rgba(178, 27, 34, 0.22);
}
.bg_success_4 {
  background-color: rgba(178, 27, 34, 0.4);
}
.bg_success_6 {
  background-color: rgba(178, 27, 34, 0.6);
}
/**主 //**/
.color_primary {
  color: #FCA919;
}
.color_primary_2 {
  color: rgba(252, 169, 25, 0.22);
}
.color_primary_6 {
  color: rgba(252, 169, 25, 0.6);
}
.color_primary_8 {
  color: rgba(252, 169, 25, 0.8);
}
.bg_primary {
  background-color: #FCA919;
}
.bg_primary_08 {
  background-color: rgba(252, 169, 25, 0.08);
}
.bg_primary_1 {
  background-color: rgba(252, 169, 25, 0.12);
}
.bg_primary_2 {
  background-color: rgba(252, 169, 25, 0.22);
}
/**白色 //**/
.color_light {
  color: #FFF;
}
.color_light_8 {
  color: rgba(255, 255, 255, 0.8);
}
.bg_light {
  background-color: #FFF;
}
.bg_light_6 {
  background-color: rgba(255, 255, 255, 0.6);
}
.bg_light_8 {
  background-color: rgba(255, 255, 255, 0.8);
}
.bor_light {
  border-color: #FFF;
}
/**标题色 //**/
.color_title {
  color: #FFF;
  text-shadow: -1px 0px 0px #333333, 1px 0px 0px #F4801F;
}
/* 关闭按钮 *======================================================================================================*/
.close {
  display: inline-block;
  height: 2px;
  background: #FFF;
  transform: rotate(45deg);
  width: 32px;
}
.close:after {
  content: '';
  display: block;
  height: 2px;
  background: #FFF;
  transform: rotate(-90deg);
}
/* 图标抖动动画================================================================ */
.shake:hover {
  -webkit-animation: icon-bounce 0.4s alternate;
  -moz-animation: icon-bounce 0.4s alternate;
  -o-animation: icon-bounce 0.4s alternate;
  animation: icon-bounce 0.4s alternate;
}
@keyframes icon-bounce {
  0%,
  100% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  50% {
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  75% {
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  85% {
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
}
@-webkit-keyframes icon-bounce {
  0%,
  100% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  50% {
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  75% {
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  85% {
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
}
@-moz-keyframes icon-bounce {
  0%,
  100% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  50% {
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  75% {
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  85% {
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
}
@-o-keyframes icon-bounce {
  0%,
  100% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  50% {
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  75% {
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  85% {
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
}
/* loading条 *======================================================================================================*/
.loading-strip,
.animsition-loading-strip {
  width: 80px;
  height: 12px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 100;
}
.loading-strip:after,
.animsition-loading-strip:after {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  animation: loading_l 0.8s linear infinite;
  content: '';
}
.loading-strip:before,
.animsition-loading-strip:before {
  position: absolute;
  top: 1px;
  height: 10px;
  background: #fff;
  animation: loading_r 0.8s linear infinite;
  content: '';
}
@-webkit-keyframes loading_l {
  0% {
    left: 0;
  }
  50% {
    left: 68px;
  }
  100% {
    left: 0;
  }
}
@keyframes loading_l {
  0% {
    left: 0;
  }
  50% {
    left: 68px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes loading_r {
  0% {
    right: 0;
    width: 2px;
  }
  25% {
    right: 15;
    width: 50px;
  }
  50% {
    right: 78;
    width: 2px;
  }
  75% {
    right: 15;
    width: 50px;
  }
  100% {
    right: 0;
    width: 2px;
  }
}
@keyframes loading_r {
  0% {
    right: 0;
    width: 2px;
  }
  25% {
    right: 15px;
    width: 50px;
  }
  50% {
    right: 78px;
    width: 2px;
  }
  75% {
    right: 15px;
    width: 50px;
  }
  100% {
    right: 0;
    width: 2px;
  }
}
/* 出现滚动条 * ████████████████████████████████████████████████████████████████████████████████*/
.scroll_y {
  border-top: 1px solid rgba(252, 169, 25, 0.3);
  border-bottom: 1px solid rgba(252, 169, 25, 0.3);
  margin-top: 1px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.scroll_x {
  overflow-x: scroll;
  overflow-y: hidden;
}
.scroll_y::-webkit-scrollbar {
  width: 16px;
  border-left: 1px solid rgba(252, 169, 25, 0.3);
  border-right: 1px solid rgba(252, 169, 25, 0.3);
}
.scroll_y::-webkit-scrollbar-thumb {
  background-image: linear-gradient(180deg, rgba(244, 128, 31, 0.6) 1px, #000 1px, 2px, transparent 2px, 6px, rgba(244, 128, 31, 0.6) 6px, 7px, #000 7px, 8px, transparent 8px), linear-gradient(180deg, rgba(244, 128, 31, 0.6) 1px, #000 1px, 2px, transparent 2px, 6px, rgba(244, 128, 31, 0.6) 6px, 7px, #000 7px, 8px, transparent 8px), linear-gradient(0deg, transparent 1px, rgba(244, 128, 31, 0.4) 1px, 2px, rgba(244, 128, 31, 0.2) 2px, calc(100% - 2px), rgba(244, 128, 31, 0.4) calc(100% - 2px), calc(100% - 1px), transparent calc(100% - 1px)), linear-gradient(90deg, rgba(244, 128, 31, 0.2) 1px, transparent 1px, calc(100% - 1px), rgba(244, 128, 31, 0.2) calc(100% - 1px));
  background-repeat: no-repeat;
  background-size: 8px 100%, 8px 100%, 12px 100%, 12px calc(100% - 2px);
  background-position: left 50% top 16px, left 50% top 28px, 2px 0, 2px 1px;
}
.scroll_y::-webkit-scrollbar-track {
  /*    background-image: 
	linear-gradient(90deg,
		transparent calc(50% - 1px),
		fade(@color_info,10) calc(50% - 1px),calc(50% + 1px),
		transparent calc(50% + 1px)
	); */
}
.scroll_y > span {
  display: block;
  flex-grow: 1;
  margin-top: -1px;
  margin-right: -16px;
}
