* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: transparent;
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 4px;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
}

.page-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

img {
  max-width: 100%;
  max-height: 100%;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.flex.start {
  justify-content: flex-start;
}
.flex.between {
  justify-content: space-between;
}
.flex.around {
  justify-content: space-around;
}
.flex.end {
  justify-content: flex-end;
}
.flex.column {
  flex-direction: column;
}
.flex.column.align-start {
  align-items: flex-start;
}
.flex .align-end {
  align-items: flex-end;
}
.flex.wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1 1 auto;
}

.flex-0 {
  flex: 0 0 auto;
}

.toast {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 0.05rem;
  padding: 0.05rem 0.1rem;
  color: #fff;
  font-size: 0.0729rem;
  z-index: 99;
}

.v-enter-active,
.v-leave-active {
  transition: opacity 0.5s ease;
}

.v-enter-from,
.v-leave-to {
  opacity: 0;
}

.slide-enter-active,
.slide-leave-active {
  transition: transform 0.5s ease;
}

.slide-enter-from,
.slide-leave-to {
  transform: translateX(100%);
}

.dialog {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.dialog .mycode-dialog-content {
  background: url(../images/m/mycode_dialog_bg.png) no-repeat !important;
  background-size: 100% 100% !important;
}
.dialog .mycode-dialog-content .you-code-title {
  font-weight: 400;
  font-size: 0.1rem;
  color: #12361a;
  margin-top: 0.1rem;
}
.dialog .mycode-dialog-content .you-code {
  font-weight: bold;
  font-size: 0.2rem;
  color: #12361a;
  margin-top: 0.1rem;
}
.dialog .mycode-dialog-content .btn-dialog {
  margin-top: 0.05rem;
  background: url(../images/m/mycode_confirm.png) center center no-repeat;
  background-size: cover;
}
.dialog .mycode-dialog-content .dialog-close {
  top: 0.6rem;
  right: 0.45rem;
}
.dialog-content {
  width: 3.3rem;
  height: 2.62rem;
  background: url(../images/common/dialog_bg.png) center center no-repeat;
  background-size: cover;
  padding: 1.06rem 0.46rem 0;
  position: relative;
}
.dialog-content-inner {
  width: 90%;
  margin: 0 auto;
  margin-left: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.dialog-content select,
.dialog-content button,
.dialog-content input {
  appearance: none;
  font-size: 0.12rem;
  color: #12361a;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
.dialog-content input::placeholder {
  color: #12361a;
}
.dialog-content .dialog-close {
  width: 0.1rem;
  height: 0.1rem;
  position: absolute;
  top: 0.41rem;
  right: 0.45rem;
  z-index: 1;
  background: url(../images/common/btn_close.png) center center no-repeat;
  background-size: cover;
  cursor: pointer;
}
.dialog-content .btn-dialog {
  width: 1.52rem;
  height: 0.43rem;
  background: url(../images/common/dialog_submit.png) center center no-repeat;
  background-size: cover;
  margin-top: 0.15rem;
  cursor: pointer;
}
.dialog-content .prefix-num {
  width: 100%;
  height: 0.37rem;
  overflow: hidden;
  background-color: #c8bba3;
  border-radius: 0.05rem;
  text-decoration: none;
  padding: 0 0.07rem;
}
.dialog-content .st-phone {
  border-left: 1px solid #705031;
  padding: 0.02rem 0.04rem;
}
.dialog-content .email {
  width: 100%;
  padding: 0.08rem 0.08rem;
  background: url(../images/pc/email_box.png) no-repeat;
  background-size: 100% 100%;
}
.dialog-content .valid-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.05rem;
  width: 100%;
}
.dialog-content .valid-wrapper .code-input {
  padding: 0.08rem 0.08rem;
  background: url(../images/pc/email_box.png) no-repeat;
  background-size: 100% 100%;
  width: 65%;
}
.dialog-content .valid-wrapper .send-code {
  display: inline-block;
  width: 30%;
}
.dialog-content .st-select {
  padding: 0.02rem 0.04rem;
}
.dialog-content .st-select .prefix-select {
  text-align: center;
  line-height: 0.22rem;
}
.dialog-content .st-select .prefix-select option {
  font-size: 0.0833rem;
}
.dialog-content .st-select .icon-arrow {
  display: block;
  flex: 0 0 auto;
  margin-left: 0.03rem;
  border: 0.05rem solid #5b4129;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
}

@keyframes trans {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 10px);
  }
}

/*# sourceMappingURL=common.min.css.map */
