@keyframes fadeOut {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 100%;
    opacity: 1;
  }
}
@keyframes appFadeOut {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes appSidebarFadeOut {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes appSidebarHidden {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
.animation-fadeOut {
  animation: fadeOut 0.3s ease-in both;
}

.app-animation-fadeOut {
  animation: appFadeOut 0.3s ease-in both;
  animation-fill-mode: forwards;
}

.app-animation-sidebar-fadeOut {
  animation: appSidebarFadeOut 0.3s ease-in both;
  animation-fill-mode: forwards;
}

.app-animation-sidebar-hidden {
  animation: appSidebarHidden 0.3s ease-in both;
  animation-fill-mode: forwards;
}

.app-sidebar-expand {
  opacity: 1 !important;
  max-height: 10rem !important;
  transition: all 300ms;
}

.goto-top {
  display: none;
  position: fixed;
  width: 0.7rem;
  height: 0.7rem;
  background: url(../images/goto-top.png) no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
  bottom: 2rem;
  right: 0.4rem;
  box-shadow: 0px 0.04rem 0.1rem 0px rgba(0, 0, 0, 0.302);
  border-radius: 50%;
}

.online {
  position: fixed;
  width: 0.7rem;
  height: 0.7rem;
  background: url(../images/icon_online.png) no-repeat;
  background-size: 100% 100%;
  bottom: 0.85rem;
  right: 0.4rem;
  cursor: pointer;
}

.activity-enter {
  position: fixed;
  width: 0.8rem;
  height: 0.8rem;
  background: url(../images/activity/entrance.png) no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
  bottom: 3rem;
  right: 0.4rem;
  border-radius: 50%;
}

.activity-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.activity-popup > .main-content {
  width: 12rem;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(270deg, #507AFC 0%, #441DD5 100%);
  border-radius: 0.08rem;
  position: relative;
}
.activity-popup > .main-content::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/activity/bg.png") no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.activity-popup > .main-content > .activity-close {
  position: absolute;
  top: 0.24rem;
  right: 0.24rem;
  height: 0.24rem;
  width: 0.24rem;
  cursor: pointer;
  background: url(../images/checkout/close.png) no-repeat;
  background-size: 100% 100%;
}
.activity-popup > .main-content > .code-popup {
  position: absolute;
  top: calc(50% - 1.3rem);
  left: calc(50% - 2.5rem);
  background-color: #FFFFFF;
  border-radius: 0.04rem;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 0.4rem 1rem;
  z-index: 1;
}
.activity-popup > .main-content > .code-popup > .activity-code-close {
  position: absolute;
  top: 0.24rem;
  right: 0.24rem;
  height: 0.24rem;
  width: 0.24rem;
  cursor: pointer;
  background: url(../images/checkout/close.png) no-repeat;
  background-size: 100% 100%;
}
.activity-popup > .main-content > .code-popup > .title {
  font-size: 0.2rem;
  font-family: Helvetica Neue-Bold, Helvetica Neue;
  font-weight: 700;
  color: #000000;
  line-height: 0.24rem;
}
.activity-popup > .main-content > .code-popup > .code-text {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.15rem 0.2rem;
  background: #CCCCCC;
  border-radius: 0.08rem;
  border: 1px solid #FFFFFF;
  font-size: 0.2rem;
  font-family: Helvetica Neue LT Pro-55 Roman, Helvetica Neue LT Pro;
  font-weight: 400;
  color: #000000;
  line-height: 0.2rem;
  margin: 0.2rem 0;
}
.activity-popup > .main-content > .code-popup > .copy-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.16rem 0.2rem;
  cursor: pointer;
  background: linear-gradient(360deg, #507AFC 0%, #441DD5 100%);
  box-shadow: inset 0px 0px 0.2rem 0px #3B8DE6;
  border-radius: 0.08rem;
  border: 1px solid;
  -o-border-image: radial-gradient(circle, rgb(93, 193, 255), rgba(0, 0, 0, 0)) 1 1;
     border-image: radial-gradient(circle, rgb(93, 193, 255), rgba(0, 0, 0, 0)) 1 1;
  font-size: 0.2rem;
  font-family: Helvetica Neue LT Pro-55 Roman, Helvetica Neue LT Pro;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 0.2rem;
}
.activity-popup > .main-content > .cart {
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.2);
  margin-right: 0.4rem;
}
.activity-popup > .main-content > .container {
  display: flex;
  flex-direction: column;
}
.activity-popup > .main-content > .container > .lable {
  font-size: 0.28rem;
  font-family: Helvetica Neue LT Pro-83 Heavy Extended, Helvetica Neue LT Pro;
  font-weight: 750;
  color: #FFFFFF;
  line-height: 0.34rem;
}
.activity-popup > .main-content > .container > .desc {
  font-size: 0.2rem;
  font-family: Helvetica Neue LT Pro-55 Roman, Helvetica Neue LT Pro;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 0.24rem;
  margin: 0.08rem 0 0.16rem;
}
.activity-popup > .main-content > .container > .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0.56rem;
}
.activity-popup > .main-content > .container > .form-item > .input-item {
  width: 6.17rem;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.08rem;
  padding: 0.16rem 0.2rem;
}
.activity-popup > .main-content > .container > .form-item > .input-item > input {
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  outline: none;
  font-size: 0.16rem;
  font-family: Helvetica Neue-Bold, Helvetica Neue;
  font-weight: 700;
  color: #FFFFFF;
}
.activity-popup > .main-content > .container > .form-item > .input-item > input::-moz-placeholder {
  color: #FFFFFF;
}
.activity-popup > .main-content > .container > .form-item > .input-item > input::placeholder {
  color: #FFFFFF;
}
.activity-popup > .main-content > .container > .form-item > .go-btn {
  width: 1.2rem;
  height: 100%;
  background: #3DB86D;
  border-radius: 0.04rem;
  cursor: pointer;
  font-size: 0.2rem;
  font-family: Helvetica Neue-Bold, Helvetica Neue;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 0.24rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dialog-model {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
}
.dialog-model .dialog-content {
  display: flex;
  width: 5rem;
  background: #131D38;
  box-shadow: 0px 0.04rem 0.1rem 0px rgba(0, 0, 0, 0.3);
  border-radius: 0.08rem 0.08rem 0.08rem 0.08rem;
  padding: 0.4rem;
  flex-direction: column;
  justify-content: center;
  position: relative;
  animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
.dialog-model .dialog-content > .close {
  position: absolute;
  top: 0.22rem;
  right: 0.22rem;
  cursor: pointer;
  width: 0.15rem;
  height: 0.15rem;
  background: url(../images/icon_close.png) no-repeat;
  background-size: 100% 100%;
}
.dialog-model .dialog-content > .title {
  margin: 0.2rem 0 0.44rem;
  width: 100%;
  text-align: center;
  font-size: 0.36rem;
  font-family: Helvetica Neue LT Std-85 Heavy, Helvetica Neue LT Std;
  font-weight: normal;
  color: #507AFC;
  line-height: 0.36rem;
}
.dialog-model .dialog-content .form-input {
  width: 100%;
  height: 0.56rem;
  background: #363E68;
  border-radius: 0.08rem 0.08rem 0.08rem 0.08rem;
  border: 1px solid #505D9B;
  padding: 0 0.2rem;
  margin-bottom: 0.2rem;
  flex-shrink: 0;
}
.dialog-model .dialog-content .form-input.form-input-small {
  width: 2.65rem;
}
.dialog-model .dialog-content .form-input > input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  font-size: 0.16rem;
  font-family: Helvetica Neue LT Pro-55 Roman, Helvetica Neue LT Pro;
  font-weight: normal;
  color: #CCCCCC;
}
.dialog-model .dialog-content > .form-input-code {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 0.56rem;
  margin-bottom: 0.2rem;
  flex-shrink: 0;
}
.dialog-model .dialog-content > .form-input-code > .code-box {
  width: 1.35rem;
  height: 0.56rem;
  border-radius: 0.08rem 0.08rem 0.08rem 0.08rem;
  border: 1px solid #507AFC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.18rem;
  font-family: Helvetica Neue LT Pro-75 Bold, Helvetica Neue LT Pro;
  font-weight: normal;
  color: #507AFC;
  cursor: pointer;
  overflow: hidden;
}
.dialog-model .dialog-content > .form-input-code > .code-box.count-down {
  color: #FFFFFF;
}
.dialog-model .dialog-content > .form-input-code > .code-box > img {
  width: 100%;
  height: 100%;
}
.dialog-model .dialog-content > .error-tips {
  width: 100%;
  height: 0.44rem;
  background: #FFE8E5;
  border-radius: 0.08rem 0.08rem 0.08rem 0.08rem;
  border: 1px solid #D02B20;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  padding: 0 0.2rem;
  flex-shrink: 0;
}
.dialog-model .dialog-content > .error-tips > img {
  width: 0.16rem;
  height: 0.16rem;
  font-size: 0;
  margin-right: 0.2rem;
}
.dialog-model .dialog-content > .error-tips > span {
  font-size: 0.14rem;
  font-family: Helvetica Neue LT Pro-55 Roman, Helvetica Neue LT Pro;
  font-weight: normal;
  color: #D02B20;
  line-height: 0.2rem;
}
.dialog-model .dialog-content > .success-tips {
  width: 100%;
  height: 0.44rem;
  background: #e5fff9;
  border-radius: 0.08rem 0.08rem 0.08rem 0.08rem;
  border: 1px solid #36ab60;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  padding: 0 0.2rem;
  flex-shrink: 0;
}
.dialog-model .dialog-content > .success-tips > img {
  width: 0.16rem;
  height: 0.16rem;
  font-size: 0;
  margin-right: 0.2rem;
}
.dialog-model .dialog-content > .success-tips > span {
  font-size: 0.14rem;
  font-family: Helvetica Neue LT Pro-55 Roman, Helvetica Neue LT Pro;
  font-weight: normal;
  color: #3db86d;
  line-height: 0.2rem;
}
.dialog-model .dialog-content > .submit-btn {
  width: 100%;
  height: 0.56rem;
  background: linear-gradient(360deg, #507AFC 0%, #441DD5 100%);
  box-shadow: inset 0px 0px 20px 0px #3B8DE6;
  border-radius: 0.08rem 0.08rem 0.08rem 0.08rem;
  opacity: 1;
  border: 1px solid;
  -o-border-image: radial-gradient(circle, rgb(93, 193, 255), rgba(0, 0, 0, 0)) 1 1;
     border-image: radial-gradient(circle, rgb(93, 193, 255), rgba(0, 0, 0, 0)) 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.24rem;
  font-family: Helvetica Neue-Bold, Helvetica Neue;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
  flex-shrink: 0;
}
.dialog-model .dialog-content > .tips {
  width: 100%;
  text-align: center;
  font-size: 0.14rem;
  font-family: Helvetica Neue LT Pro-55 Roman, Helvetica Neue LT Pro;
  font-weight: normal;
  color: #CCCCCC;
  line-height: 0.24rem;
  text-decoration: underline;
  margin: 0.2rem 0 0.4rem;
  cursor: pointer;
}
.dialog-model .dialog-content > .condition-desc {
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 0.24rem;
  font-family: Helvetica Neue LT Pro-75 Bold, Helvetica Neue LT Pro;
  font-weight: normal;
  color: #FFFFFF;
  line-height: 0.24rem;
}
.dialog-model .dialog-content > .condition-desc::before {
  width: 0.8rem;
  height: 1px;
  content: "";
  background-color: #363E68;
  position: absolute;
  top: 50%;
  left: 0;
}
.dialog-model .dialog-content > .condition-desc::after {
  width: 0.8rem;
  height: 1px;
  content: "";
  background-color: #363E68;
  position: absolute;
  top: 50%;
  right: 0;
}
.dialog-model .dialog-content > .bottom-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
}
.dialog-model .dialog-content .common-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  height: 0.56rem;
  border-radius: 0.08rem 0.08rem 0.08rem 0.08rem;
  border: 1px solid #507AFC;
  padding: 0 0.4rem;
  font-size: 0.18rem;
  font-family: Helvetica Neue LT Pro-75 Bold, Helvetica Neue LT Pro;
  font-weight: normal;
  color: #507AFC;
}
.dialog-model .dialog-content .line {
  width: 100%;
  height: 1px;
  background-color: #363E68;
}
.dialog-model .dialog-content > .bottom-email-info {
  display: flex;
  flex-direction: column;
  margin-top: 0.8rem;
}
.dialog-model .dialog-content > .bottom-email-info > .bottom-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.dialog-model .dialog-content > .terms {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-bottom: 0.4rem;
}
.dialog-model .dialog-content > .terms > .terms-list {
  margin-top: 0.2rem;
  display: flex;
  align-items: flex-start;
}
.dialog-model .dialog-content > .terms > .terms-list > .checkbox {
  width: 0.2rem;
  height: 0.2rem;
  background: #131D38;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  border: 1px solid #CCCCCC;
  margin-right: 0.2rem;
  cursor: pointer;
  overflow: hidden;
}
.dialog-model .dialog-content > .terms > .terms-list > .checkbox.select {
  background: url(../images/check.png) no-repeat;
  background-size: 100% 100%;
}
.dialog-model .dialog-content > .terms > .terms-list > .terms-conditions {
  font-size: 0.14rem;
  font-family: Helvetica Neue LT Pro-55 Roman, Helvetica Neue LT Pro;
  font-weight: normal;
  color: #FFFFFF;
  line-height: 0.18rem;
}
.dialog-model .dialog-content > .terms > .terms-list > .terms-conditions > span {
  color: #507AFC;
}
.dialog-model .dialog-content > .email-container {
  display: flex;
  flex-direction: column;
  padding: 0.22rem 0 0;
  align-items: center;
}
.dialog-model .dialog-content > .email-container > img {
  width: 1rem;
  height: 1rem;
}
.dialog-model .dialog-content > .email-container > .content {
  width: 100%;
  text-align: center;
  font-size: 0.18rem;
  font-family: Helvetica Neue LT Pro-55 Roman, Helvetica Neue LT Pro;
  font-weight: normal;
  color: #CCCCCC;
  line-height: 0.3rem;
  margin: 0.4rem 0;
}
.dialog-model .dialog-content > .email-container > .content > span {
  color: #507AFC;
}
.dialog-model .dialog-content > .email-container > .btn {
  height: 0.48rem;
  background: linear-gradient(360deg, #507AFC 0%, #441DD5 100%);
  box-shadow: inset 0px 0px 0.2rem 0px #3B8DE6;
  border-radius: 0.08rem 0.08rem 0.08rem 0.08rem;
  border: 1px solid;
  -o-border-image: radial-gradient(circle, rgb(93, 193, 255), rgba(0, 0, 0, 0)) 1 1;
     border-image: radial-gradient(circle, rgb(93, 193, 255), rgba(0, 0, 0, 0)) 1 1;
  padding: 0 0.2rem;
  font-size: 0.16rem;
  font-family: Helvetica Neue LT Pro-75 Bold, Helvetica Neue LT Pro;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.dialog-model .dialog-content > .loading {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog-model .dialog-content > .loading > img {
  width: 0.5rem;
  height: 0.53rem;
}/*# sourceMappingURL=pc_login.css.map */