:root {
  --master-font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Segoe UI, Arial, Roboto, "PingFang SC", "miui", "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
  --bgcolor: #fff;
  --block-bgcolor: #000;
  --line-bgcolor: #697692;
  --button-bgcolor: #47CC8A;
  --button-color: #fff;
  --color: #111;
  --color1: #777F8D;
  --color2: #fff;
  --title-color: #47CC8A;
  --size1: 38px;
  --size2: 24px;
  --size3: 22px;
  --size4: 18px;
  --size5: 14px;
  --size6: 12px;
  --size7: 10px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
* :after,
* :before {
  box-sizing: border-box;
}
blockquote,
body,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
input,
legend,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
  margin: 0;
  padding: 0;
}
address,
cite,
dfn,
em,
var {
  font-style: normal;
}
code,
kbd,
pre,
samp {
  font-family: courier new, courier, monospace;
}
ol,
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
legend {
  color: #000;
}
fieldset,
img {
  border: 0;
}
button,
input,
select,
textarea {
  font-size: 100%;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button,
input,
select,
textarea {
  font-family: var(--master-font);
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  margin: 0;
  outline: 0;
  vertical-align: baseline;
  font-size: 100%;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
input[type=search] {
  box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 14px;
}
body {
  background-color: var(--bgcolor);
  color: var(--color);
  font-family: var(--master-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 400;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.667rem;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.333rem;
}
h5 {
  font-size: 1.166rem;
}
h6 {
  font-size: 1rem;
}
.flex-box {
  display: flex;
}
.flex-item {
  flex: 1;
}
.custom-button {
  color: var(--button-color);
  background-color: var(--button-bgcolor);
  border: 1px solid var(--button-bgcolor);
  border-radius: 4px;
}
.custom-button1 {
  background: var(--button-bgcolor);
  color: var(--button-color);
  height: 40px;
  font-size: 15px;
  box-shadow: inset rgba(0, 0, 0, 0.26) 0px 5px 10px;
  border-radius: 40px;
  padding: 0px 20px;
  border: none;
  font-weight: bold;
  text-align: center;
}
.custom-button1[disabled] {
  opacity: 0.8;
  text-shadow: none;
  box-shadow: none;
}
.custom-button2 {
  background: #EE574B;
  color: var(--button-color);
  height: 40px;
  font-size: 15px;
  box-shadow: inset rgba(0, 0, 0, 0.26) 0px 5px 10px;
  border-radius: 40px;
  padding: 0px 20px;
  border: none;
  font-weight: bold;
  text-align: center;
}
.custom-button2[disabled] {
  opacity: 0.8;
  text-shadow: none;
  box-shadow: none;
}
.custom-navbar {
  background-color: var(--block-bgcolor) !important;
}
.custom-navbar .van-nav-bar__title,
.custom-navbar .van-nav-bar__text {
  color: var(--color);
  font-size: 16px;
}
.custom-navbar .van-nav-bar__title {
  font-weight: 800;
}
.custom-navbar .van-icon {
  color: var(--color);
  font-size: 18px;
}
.tran_left-enter-active,
.tran_right-enter-active,
.tran_left-leave-active,
.tran_right-leave-active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.tran_left-enter-to,
.tran_right-enter-to,
.tran_left-leave,
.tran_right-leave {
  transform: translate3d(0, 0, 0);
}
.tran_left-leave-to,
.tran_right-enter {
  transform: translate3d(100%, 0, 0);
  z-index: 9999;
}
.tran_left-enter,
.tran_right-leave-to {
  transform: translate3d(-100%, 0, 0);
  z-index: 9999;
}
.vis-a-vis-leave-active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: all 0.01s;
  -moz-transition: all 0.01s;
  -webkit-transition: all 0.01s;
  -o-transition: all 0.01s;
}
.vis-a-vis-leave,
.vis-a-vis-leave-to {
  display: none;
  visibility: hidden;
  opacity: 0;
}

