/* 激活弹框 start */
/**  flex 兼容写法 定义flex布局  **/
.dis-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/**  flex 兼容写法 垂直居中  **/
.flex-vertical-center {
  -o-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
}
/** .flex-vertical-baseline **/
.flex-vertical-baseline {
  -o-align-items: baseline;
  -ms-align-items: baseline;
  -moz-align-items: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-align: baseline12;
}
/**  flex 兼容写法 垂直居上  **/
.flex-vertical-start {
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-align: start;
}
/**  flex 兼容写法 垂直居下  **/
.flex-vertical-end {
  -o-align-items: flex-end;
  -ms-align-items: flex-end;
  -moz-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-align: end;
}
/**  flex 兼容写法 水平居中  **/
.flex-horizontal-center {
  -o-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-pack: center;
}
/**  flex 兼容写法 水平居左  **/
.flex-horizontal-start {
  -o-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-pack: start;
}
/**  flex 兼容写法 水平居右  **/
.flex-horizontal-end {
  -o-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-pack: end;
}
/**  flex 兼容写法 水平居两边  **/
.flex-horizontal-between {
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-pack: justify;
}
/** flex 水平垂直居中 **/
.flex-center {
  -o-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -o-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-box-align: center;
}
/**  flex 兼容写法 纵向排列  **/
.flex-column {
  -o-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
}
/**  flex 兼容写法 子元素纵向换行  **/
.flex-vw {
  /* -webkit-box-lines: multiple; */
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
/**  flex 兼容写法 子元素纵向换行  **/
.flex-nvw {
  /* -webkit-box-lines: multiple; */
  -o-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-lines: single;
  box-lines: single;
}
/**  flex 兼容写法 子元素不填充剩余位置  **/
.flex-0 {
  -ms-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  /* IE 10 */
  /* Chrome */
  -moz-box-flex: 0 1 auto;
  -webkit-box-flex: 0 1 auto;
  box-flex: 0 1 auto;
  /* Firefox */
  /* Safari 和 Chrome */
}
/**  flex 兼容写法 子元素填充剩余位置  **/
.flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.flex-twice {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  flex: 2;
}
.fs-error-page .content {
  margin-top: 240rpx;
  text-align: center;
}
.fs-error-page .content .err-icon {
  width: 156rpx;
  height: 134rpx;
  margin-bottom: 64rpx;
}
.fs-error-page .content .err-info {
  margin-bottom: 48rpx;
  color: #acacac;
  font-size: 32rpx;
}
.fs-error-page .content .err-btn {
  display: inline-block;
  width: 230rpx;
  height: 72rpx;
  margin-bottom: 20rpx;
  line-height: 72rpx;
  text-align: center;
  border-radius: 8rpx;
  font-size: 32rpx;
}
