account-flow.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. .acct-pwd-page {
  2. min-height: 100vh;
  3. background-color: #f4f6fb;
  4. }
  5. .acct-pwd-nav {
  6. background-color: #ffffff;
  7. border-bottom: 1rpx solid #eef1f6;
  8. }
  9. .acct-pwd-nav-row {
  10. display: flex;
  11. flex-direction: row;
  12. align-items: center;
  13. height: 88rpx;
  14. padding: 0 24rpx;
  15. box-sizing: border-box;
  16. }
  17. .acct-pwd-back {
  18. width: 64rpx;
  19. height: 64rpx;
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. }
  24. .acct-pwd-back-icon {
  25. font-size: 40rpx;
  26. color: #1a1d26;
  27. line-height: 1;
  28. }
  29. .acct-pwd-nav-title {
  30. flex: 1;
  31. text-align: center;
  32. font-size: 32rpx;
  33. font-weight: 600;
  34. color: #1a1d26;
  35. }
  36. .acct-pwd-nav-placeholder {
  37. width: 64rpx;
  38. }
  39. .acct-pwd-body {
  40. padding: 28rpx 28rpx 40rpx;
  41. box-sizing: border-box;
  42. }
  43. .acct-pwd-hero {
  44. display: flex;
  45. flex-direction: column;
  46. align-items: center;
  47. margin-bottom: 32rpx;
  48. padding: 32rpx 24rpx 8rpx;
  49. }
  50. .acct-pwd-hero-icon-wrap {
  51. width: 120rpx;
  52. height: 120rpx;
  53. border-radius: 60rpx;
  54. background: linear-gradient(145deg, #eef4ff 0%, #e8f0fe 100%);
  55. display: flex;
  56. align-items: center;
  57. justify-content: center;
  58. box-shadow: 0 8rpx 28rpx rgba(74, 140, 255, 0.12);
  59. margin-bottom: 20rpx;
  60. }
  61. .acct-pwd-hero-icon {
  62. font-size: 56rpx;
  63. line-height: 1;
  64. }
  65. .acct-pwd-hero-title {
  66. font-size: 34rpx;
  67. font-weight: 700;
  68. color: #1a1d26;
  69. margin-bottom: 10rpx;
  70. }
  71. .acct-pwd-hero-desc {
  72. font-size: 26rpx;
  73. color: #8a8d9e;
  74. text-align: center;
  75. line-height: 1.5;
  76. padding: 0 16rpx;
  77. }
  78. .acct-pwd-card {
  79. background-color: #ffffff;
  80. border-radius: 24rpx;
  81. padding: 28rpx;
  82. box-shadow: 0 6rpx 24rpx rgba(74, 140, 255, 0.06);
  83. margin-bottom: 28rpx;
  84. }
  85. .acct-pwd-label {
  86. display: block;
  87. font-size: 26rpx;
  88. font-weight: 600;
  89. color: #4b5563;
  90. margin-bottom: 16rpx;
  91. }
  92. .acct-pwd-submit {
  93. width: 100%;
  94. height: 96rpx;
  95. line-height: 96rpx;
  96. border-radius: 48rpx;
  97. border: none;
  98. background: linear-gradient(135deg, #4a8cff 0%, #6b5cff 100%);
  99. box-shadow: 0 12rpx 32rpx rgba(74, 140, 255, 0.28);
  100. }
  101. .acct-pwd-submit::after {
  102. border: none;
  103. }
  104. .acct-pwd-submit--off {
  105. opacity: 0.45;
  106. box-shadow: none;
  107. }
  108. .acct-pwd-submit--busy {
  109. opacity: 0.88;
  110. }
  111. .acct-pwd-submit__text {
  112. font-size: 32rpx;
  113. font-weight: 600;
  114. color: #ffffff;
  115. }