* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
/* 清除浮动 */
.clearfix {
  *zoom: 1;
}
.clearfix::after {
  display: block;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  content: " ";
  height: 0;
  font-size: 0;
}
/* 0.5px的上、下线框 */
.topline, .botline {
  position: relative;
}
.topline::before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #E1E2E3;
  -webkit-transform: scaleY(.5);
  -moz-transform: scaleY(.5);
  -ms-transform: scaleY(.5);
  -o-transform: scaleY(.5);
  transform: scaleY(.5);
}
.botline::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #E1E2E3;
  -webkit-transform: scaleY(.5);
  -moz-transform: scaleY(.5);
  -ms-transform: scaleY(.5);
  -o-transform: scaleY(.5);
  transform: scaleY(.5);
}

/* 弹性盒子 */
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -moz-felx-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;

  -webkit-justify-content: center; 
  -webkit-box-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.flex_column {
  -webkit-flex-direction: column;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex_jc_start {
  -webkit-justify-content: flex-start; 
  -webkit-box-pack: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.flex_jc_end {
  -webkit-justify-content: flex-end; 
  -webkit-box-pack: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.flex_jc_sb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex_jc_sa {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.flex_wrap {
  -webkit-flex-wrap: wrap;
  -moz-felx-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex_ai_center {
  -webkit-align-items: center;
  -webkit-box-align: center;
  -moz-align-items: center;
  align-items: center;
}
.flexbox_default {
  -prefix-box-flex: 1; 
  -webkit-box-flex: 1; 
  -webkit-flex: 1; 
  -moz-box-flex: 1; 
  -ms-flex: 1;
  flex: 1; 
}

/* 未知高度图片垂直居中 */
.center_img_box {
  width: 100%;
  height: 500px;
  font-size: 0;
  *font-size: 200px;
  text-align: center;
}
.center_img_box img {
  width: 50%;
  height: auto;
  vertical-align: middle;
}
.center_img_box:after {
  display: inline-block;
  width: 0;
  height: 100%;
  content: "center";
  vertical-align: middle;
  overflow: hidden;
}

html, body {
  width: 100%;
  height: 100%;
}
.container {
  width: 100%;
  min-height: 100%;
  height: auto;
  overflow-y: auto;
}
.splitline {
  width: 100%;
  height: 5px;
  background-color: #F4F4F4;
}

input {
  border: none;
  outline: none !important;
}

#__vconsole .vc-switch {
  position: absolute !important;
  right: 100px !important;
  bottom: 100px !important;
}

/* placeholder */
input::-webkit-input-placeholder {
  color: #bbc2c8;
}
input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #bbc2c8;
}
input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #bbc2c8;
}
input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #bbc2c8;
}
/* 超出两行省略号 */
.text_ellipsis {
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;  /*要显示的行数*/
	-webkit-box-orient: vertical;
}

/* 错误信息 */
.err-tips {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  z-index: 999;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 15px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-align: center;
  background: #ffdfdf;
  overflow: hidden;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.err-tips.show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.err-tips img {
  width: 24px;
  height: 24px;
}

.err-tips span {
  padding-left: 10px;
  color: #f95a55;
  font-size: 14px;
  height: 14px;
  overflow: hidden;
}

/* 成功信息 */
.success-tips {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 15px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-align: center;
  background: #fffce5;
  overflow: hidden;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.success-tips.show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.success-tips img {
  width: 24px;
  height: 24px;
}

.success-tips span {
  padding-left: 10px;
  color: #d7940b;
  font-size: 14px;
  height: 14px;
  overflow: hidden;
}

/* -loading */
.shadow-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
}

.shadow-wrapper .cont-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 160px;
  height: 115px;
  /* overflow: hidden; */
  border-radius: 0.08rem;
}

.shadow-wrapper .cont-wrapper img {
  width: 40px;
}

.shadow-wrapper .cont-wrapper p {
  font-size: 14px;
  color: #333333;
  font-weight: 400;
}

.shadow-wrapper .cont-wrapper .loading {
  text-align: center;
}

.shadow-wrapper p.upinfo {
  color: #ffffff;
  font-size: 14px;
}
[v-cloak] {
  display: none;
}

.hidden{
  display: none;
}
.app-img{
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: #fff url(../images/openapp.png) center top no-repeat;
  background-size: 100% auto;
}
.openapp_singlebtn {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
  height: 1.2rem;
  background-color: transparent;
}
.openapp_singlebtn a {
  display: block;
  width: 3.72rem;
  height: .8rem;
  line-height: .8rem;
  margin: 0 auto;
  text-align: center;
  font-size: .28rem;
  background: linear-gradient(90deg,rgba(53,227,157,1) 0%,rgba(36,203,169,1) 100%);
  box-shadow: 0px 1px 4px 0px rgba(36,203,169,0.5);
  border-radius: 25px;
  color: #fff;
}

a:visited,
a:focus,
a:hover,
a:active,
button:visited,
button:focus,
button:hover,
button:active {
  outline: none;
}