input {
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #414140;
}
input::placeholder {
  color: #9da7b5;
}
input::-webkit-input-placeholder {
  color: #9da7b5;
}
input::-moz-placeholder {
  color: #9da7b5;
}
input[type="number"] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
  margin: 0;
  /* 防止在某些浏览器中出现额外的空间 */
}
/* 移除IE和Edge的默认样式 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  /* 对于Webkit, 旧版Safari */
}
.inputBox {
  width: 100%;
  height: 68px;
  border-radius: 10px;
  background-color: #edeff5;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.inputBox .tfInput {
  height: 100%;
  padding: 0 28px;
  width: 100px;
  flex-grow: 1;
  font-size: 21px;
}
.inputBox .inputBtn {
  width: 134px;
  height: 48px;
  margin-right: 10px;
  background-color: #ffffff;
  border-radius: 10px;
  line-height: 48px;
  text-align: center;
  color: #537ef0;
  font-size: 21px;
  cursor: pointer;
}
.inputBox.size1 {
  height: 54px;
}
.inputBox.size1 .tfInput {
  padding: 0 14px;
  font-size: 18px;
}
.inputBox.size1 .inputBtn {
  width: 136px;
  height: 46px;
  line-height: 46px;
  font-size: 18px;
  margin-right: 4px;
}
.inputBox.size2 {
  border-radius: 13px;
  margin-bottom: 17px;
}
.inputBox.size2 .tfInput {
  font-size: 20px;
  padding: 0 25px;
}
.inputBox.size2 .inputBtn {
  font-size: 17px;
  width: 114px;
  height: 45px;
  line-height: 45px;
  margin-right: 12px;
}
.clickAni {
  transition: transform 0.2s ease;
}
.clickAni:active {
  transform: scale(0.97);
}
.tfDialog {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}
.tfDialog .contentBox {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.tfDialog .contentBox .dialog {
  background-color: #f6f7f9;
  border-radius: 20px;
}
.tfDialog .contentBox .closeBtn {
  cursor: pointer;
  width: 22px;
  height: 21px;
  box-sizing: content-box;
  padding: 10px;
  position: absolute;
  right: 28px;
  top: 35px;
  background-image: url(../assets/images/login/close.png);
  background-repeat: no-repeat;
  background-position: center;
}
#tipDialog .contentBox {
  width: 514px;
  height: 256px;
}
#tipDialog .contentBox .dialog {
  width: 514px;
  height: 256px;
  position: relative;
  color: #414140;
  overflow: hidden;
}
#tipDialog .contentBox .dialog .title {
  width: 100%;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  padding-top: 34px;
  margin-bottom: 33px;
}
#tipDialog .contentBox .dialog .content {
  font-size: 22px;
  text-align: center;
  padding: 0 40px;
  line-height: 30px;
  margin-bottom: 47px;
}
#tipDialog .contentBox .dialog .btnBox {
  width: 100%;
  display: flex;
  border-top: 1px solid #edeff5;
  position: relative;
  align-items: center;
  justify-content: center;
}
#tipDialog .contentBox .dialog .btnBox .tipBtn {
  font-size: 22px;
  text-align: center;
  height: 72px;
  line-height: 72px;
  color: #b7b7b9;
  cursor: pointer;
  width: 50%;
}
#tipDialog .contentBox .dialog .btnBox .tipBtn:first-child {
  padding-left: 23px;
}
#tipDialog .contentBox .dialog .btnBox .tipBtn:last-child {
  padding-right: 23px;
}
#tipDialog .contentBox .dialog .btnBox .tipBtn:hover {
  background-color: #edeff5;
}
#tipDialog .contentBox .dialog .btnBox .sure {
  color: #ff3737;
}
#loginDialog .contentBox {
  width: 554px;
  height: 520px;
}
#loginDialog .contentBox .dialog {
  width: 554px;
  height: 520px;
  padding: 0 43px;
}
#loginDialog .contentBox .dialog .logo {
  width: 292px;
  height: 42px;
  margin: 0 auto ;
  padding: 47px 0 39px;
  box-sizing: content-box;
  background-image: url(../assets/images/login/logo.png);
  background-repeat: no-repeat;
  background-position: 0 47px;
}
#loginDialog .contentBox .dialog .tipBox {
  padding-top: 18px;
  display: flex;
  padding-bottom: 18px;
  margin-bottom: 24px;
}
#loginDialog .contentBox .dialog .tipBox .chooseBox {
  width: 27px;
  height: 27px;
  box-sizing: content-box;
  cursor: pointer;
  padding: 10px;
  margin-top: -15px;
  margin-left: -10px;
  background-image: url(../assets/images/login/check.png);
  background-repeat: no-repeat;
  background-position: center;
}
#loginDialog .contentBox .dialog .tipBox .chooseBox.active {
  background-image: url(../assets/images/login/check_01.png);
}
#loginDialog .contentBox .dialog .tipBox .txtBox {
  color: #9da7b5;
  font-size: 18px;
  line-height: 26px;
  margin-top: -5px;
}
#loginDialog .contentBox .dialog .tipBox .txtBox #serviceAgreement,
#loginDialog .contentBox .dialog .tipBox .txtBox #privacyPolicy {
  color: #537ef0;
  display: inline-block;
  border-bottom: 1px solid #537ef0;
  cursor: pointer;
}
#loginDialog .contentBox .dialog .loginBtn {
  cursor: pointer;
  width: 100%;
  height: 68px;
  background-color: #537ef0;
  border-radius: 10px;
  color: #ffffff;
  font-size: 30px;
  line-height: 68px;
  text-align: center;
}
#userCenter {
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  color: #414140;
}
#userCenter .userHead {
  width: 100%;
  height: 130px;
  background-color: #414140;
}
#userCenter .userContent {
  height: 100px;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
#userCenter .userContent .userleft {
  width: calc(100% - 808px);
  max-width: 318px;
  min-width: 260px;
  background-color: #ffffff;
  border-radius: 10px;
  margin-right: 1.04vw;
  flex-grow: 0.95;
  display: flex;
  flex-direction: column;
}
#userCenter .userContent .userleft .logo {
  display: block;
  margin: 16px auto 0;
  height: 44px;
  max-width: calc(100% - 20px);
  background-image: url(../assets/images/userCenter/logo.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  width: 100%;
}
#userCenter .userContent .userleft .uuid {
  font-size: 20px;
  line-height: 40px;
  height: 40px;
  text-align: center;
  margin-bottom: 19px;
  font-weight: bold;
  max-width: 80%;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#userCenter .userContent .userleft .userChangeBtn {
  background-color: #edeff5;
  width: 132px;
  height: 44px;
  border-radius: 5px;
  margin: 0 auto 39px;
  cursor: pointer;
  color: #537ef0;
  font-size: 16px;
  line-height: 44px;
  text-align: center;
}
#userCenter .userContent .userleft .userTabList {
  border-top: 2px solid #edeff5;
  padding-top: 23px;
  overflow-y: auto;
  overflow-x: hidden;
}
#userCenter .userContent .userleft .userTabList .userTabItem {
  cursor: pointer;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 10%;
  padding-right: 7.2%;
}
#userCenter .userContent .userleft .userTabList .userTabItem .icon {
  width: 26px;
  height: 26px;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 6.29%;
}
#userCenter .userContent .userleft .userTabList .userTabItem[type="1"] .icon {
  background-image: url(../assets/images/userCenter/ico_01.png);
}
#userCenter .userContent .userleft .userTabList .userTabItem[type="2"] .icon {
  background-image: url(../assets/images/userCenter/ico_02.png);
}
#userCenter .userContent .userleft .userTabList .userTabItem[type="3"] .icon {
  background-image: url(../assets/images/userCenter/ico_03.png);
}
#userCenter .userContent .userleft .userTabList .userTabItem[type="4"] .icon {
  background-image: url(../assets/images/userCenter/ico_04.png);
}
#userCenter .userContent .userleft .userTabList .userTabItem .nameBox {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  align-items: center;
}
#userCenter .userContent .userleft .userTabList .userTabItem .name {
  font-size: 18px;
  line-height: 20px;
  flex-grow: 1;
  margin-right: 16px;
}
#userCenter .userContent .userleft .userTabList .userTabItem .number {
  font-size: 16px;
  line-height: 20px;
  margin-right: 16px;
}
#userCenter .userContent .userleft .userTabList .userTabItem .arrow {
  width: 8px;
  height: 12px;
  background-image: url(../assets/images/userCenter/return_2.png);
}
#userCenter .userContent .userleft .userTabList .userTabItem.active {
  color: #ffffff;
  background-color: #537ef0;
}
#userCenter .userContent .userleft .userTabList .userTabItem.active[type="1"] .icon {
  background-image: url(../assets/images/userCenter/ico_01_1.png);
}
#userCenter .userContent .userleft .userTabList .userTabItem.active[type="2"] .icon {
  background-image: url(../assets/images/userCenter/ico_02_1.png);
}
#userCenter .userContent .userleft .userTabList .userTabItem.active[type="3"] .icon {
  background-image: url(../assets/images/userCenter/ico_03_1.png);
}
#userCenter .userContent .userleft .userTabList .userTabItem.active[type="4"] .icon {
  background-image: url(../assets/images/userCenter/ico_04_1.png);
}
#userCenter .userContent .userleft .userTabList .userTabItem.active .arrow {
  background-image: url(../assets/images/userCenter/return_1.png);
}
#userCenter .userContent .userRight {
  height: 100%;
  width: calc(100% - 358px);
  max-width: 788px;
  min-width: 310px;
  border-radius: 10px;
  background-color: #ffffff;
}
#userCenter .userContent .userRight .title {
  width: 100%;
  height: 70px;
  border-bottom: 2px solid #edeff5;
  padding-left: 32px;
  font-size: 24px;
  line-height: 63px;
  font-weight: 600;
}
#userCenter .userContent .userRight .pageContent {
  width: 100%;
  height: calc(100% - 70px);
  min-width: 290px;
  overflow-y: auto;
  overflow-x: hidden;
}
#userCenter .userContent .phonePage {
  width: 100%;
  height: 100%;
}
#userCenter .userContent .phonePage .tipBox_1 {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#userCenter .userContent .phonePage .tipBox_1 .logo {
  width: 22px;
  height: 24px;
  margin-right: 10px;
}
#userCenter .userContent .phonePage .tipBox_1 .txt {
  font-size: 16px;
  line-height: 24px;
}
#userCenter .userContent .phonePage .phone {
  font-weight: 600;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  margin-top: 18px;
  margin-bottom: 30px;
}
#userCenter .userContent .phonePage .changeBtn {
  cursor: pointer;
  margin: 0 auto;
  width: 90%;
  max-width: 358px;
  height: 54px;
  border-radius: 10px;
  background-color: #537ef0;
  font-size: 18px;
  line-height: 54px;
  text-align: center;
  color: #ffffff;
}
#userCenter .userContent .codePage,
#userCenter .userContent .changePhonePage {
  width: 100%;
  height: 100%;
}
#userCenter .userContent .codePage .pageContent,
#userCenter .userContent .changePhonePage .pageContent {
  width: 90%;
  max-width: 358px;
  margin: 0 auto;
  padding-top: 99px;
}
#userCenter .userContent .codePage .pageContent .tip_1,
#userCenter .userContent .changePhonePage .pageContent .tip_1 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 7px;
}
#userCenter .userContent .codePage .pageContent .tip_2,
#userCenter .userContent .changePhonePage .pageContent .tip_2 {
  color: #b7b7b9;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 33px;
}
#userCenter .userContent .codePage .pageContent .inputBox,
#userCenter .userContent .changePhonePage .pageContent .inputBox {
  margin-bottom: 33px;
  width: 100%;
}
#userCenter .userContent .codePage .pageContent .marginB16,
#userCenter .userContent .changePhonePage .pageContent .marginB16 {
  margin-bottom: 16px;
}
#userCenter .userContent .codePage .pageContent .sureBtn,
#userCenter .userContent .changePhonePage .pageContent .sureBtn {
  width: 100%;
  height: 54px;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  line-height: 54px;
  cursor: pointer;
  background-color: #537ef0;
  color: #ffffff;
}
#userCenter .userContent .devicePage {
  width: 100%;
  height: 100%;
}
#userCenter .userContent .devicePage .pageContent {
  width: 90%;
  max-width: 504px;
  margin: 0 auto;
  padding-top: 47px;
}
#userCenter .userContent .devicePage .pageContent .tip_1 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 40px;
}
#userCenter .userContent .rechargePage {
  width: 100%;
  height: 100%;
}
#userCenter .userContent .rechargePage .pageContent {
  width: 90%;
  max-width: 504px;
  margin: 0 auto;
  padding-top: 47px;
}
#userCenter .userContent .rechargePage .pageContent .tip_1 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 40px;
}
#userCenter .userContent .rechargePage .pageContent .logList .logRight {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin-right: 30px;
}
.logList {
  height: calc(100% - 107px);
  width: calc(100% + 20px);
  overflow-y: auto;
  overflow-x: hidden;
}
.logList .listContent {
  width: calc(100% - 20px);
}
.logItem {
  width: 100%;
  border: 1px solid #b7b7b9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 21px;
  margin-bottom: 14px;
}
.logItem:last-child {
  margin-bottom: 0;
}
.logItem .logLeft {
  padding-bottom: 23px;
  width: 100px;
  flex-grow: 1;
}
.logItem .logLeft .tip_2 {
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  margin-top: 18px;
  margin-bottom: 7px;
}
.logItem .logLeft .tip_3 {
  font-size: 16px;
  line-height: 26px;
  color: #b7b7b9;
}
#mobileLoginPage {
  width: 100%;
  height: 100%;
  height: calc(100 * var(--vh));
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  color: #9da7b5;
  display: flex;
  flex-direction: column;
}
#mobileLoginPage .loginHead {
  width: 100%;
  height: 74px;
}
#mobileLoginPage .bgBox {
  width: 100%;
  height: 100px;
  flex-grow: 1;
  background-color: #ffffff;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
}
#mobileLoginPage .mobileLoginContent {
  width: 563px;
  height: 886px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
#mobileLoginPage .mobileLoginContent .resetSize_m {
  width: 100%;
  height: 100%;
  transform-origin: top center;
  position: relative;
}
#mobileLoginPage .closeBtn {
  width: 76px;
  height: 76px;
  padding: 25px;
  background-size: 26px 26px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../assets/images/recharge/mobile/btn_close.png);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  transform-origin: right top;
}
#mobileLoginPage .contentBox {
  height: 100%;
  width: 90%;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 100px;
  min-height: 600px;
}
#mobileLoginPage .contentBox .logo {
  width: 292px;
  height: 22.5%;
  background-image: url(../assets/images/recharge/mobile/logo.png);
  margin: 0px auto calc(40% - 68px);
  background-size: 292px 42px;
  background-position: center bottom;
  background-repeat: no-repeat;
}
#mobileLoginPage .contentBox .loginBtn {
  width: 100%;
  height: 68px;
  line-height: 68px;
  background-color: #537ef0;
  border-radius: 13px;
  text-align: center;
  font-size: 25px;
  color: #ffffff;
  margin-top: 36px;
}
#mobileLoginPage .contentBox .tipBox {
  width: 100%;
  position: absolute;
  bottom: 40px;
  display: flex;
  align-items: center;
  font-size: 14px;
}
#mobileLoginPage .contentBox .tipBox .chooseBox {
  width: 47px;
  height: 47px;
  padding: 12px;
  background-size: 23px 23px;
  margin-left: -12px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../assets/images/recharge/mobile/check.png);
}
#mobileLoginPage .contentBox .tipBox .chooseBox.active {
  background-image: url(../assets/images/recharge/mobile/check_01.png);
}
#mobileLoginPage .contentBox .tipBox #serviceAgreement,
#mobileLoginPage .contentBox .tipBox #privacyPolicy {
  color: #537ef0;
}
