/* reset */
*{box-sizing: border-box;margin: 0;padding: 0;}
html,
body{
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 100%;
  overflow-y: auto; 
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  background: rgba(255, 255, 255, 1);
  font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC',
    'Hiragino Sans GB', 'Heiti SC', 'Microsoft YaHei', 'WenQuanYi Micro Hei',
    sans-serif;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  background: none;
  text-decoration: none;
}

input {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

.clearfix:after {
  content: '.';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

input {
  border: none;
  outline: none !important;
}

#__vconsole .vc-switch {
  position: absolute !important;
  right: 100px !important;
  bottom: 100px !important;
}

.open-app {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

/* common */
.border-1px {
  border-bottom: 1px solid #e1e2e3;
}
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .border-1px {
    border-bottom: 0.5px solid #e1e2e3;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3) {
  .border-1px {
    border-bottom: 0.333333px solid #e1e2e3;
  }
}

.border-all-1px {
  border: 1px solid #e1e2e3;
}
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .border-all-1px {
    border: 0.5px solid #e1e2e3;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3) {
  .border-all-1px {
    border: 0.333333px solid #e1e2e3;
  }
}

/* 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;
}

/* 错误信息 */
.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;
}
