forgot-password.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. page {
  2. background-color: #F2F2F2;
  3. }
  4. .wrap {
  5. width: 100%;
  6. display: flex;
  7. flex-direction: column;
  8. padding: 20rpx 24rpx;
  9. box-sizing: border-box;
  10. }
  11. .module {
  12. width: 100%;
  13. display: flex;
  14. flex-direction: column;
  15. background-color: #fff;
  16. border-radius: 16rpx;
  17. padding: 40rpx 24rpx;
  18. box-sizing: border-box;
  19. }
  20. .row {
  21. width: 100%;
  22. display: flex;
  23. align-items: center;
  24. margin-bottom: 20rpx;
  25. }
  26. .row:last-child {
  27. margin-bottom: 0;
  28. }
  29. .label {
  30. width: 35%;
  31. color: #202020;
  32. font-size: 32rpx;
  33. }
  34. .input {
  35. flex: 1;
  36. font-size: 32rpx;
  37. color: #333333;
  38. }
  39. .placeholder {
  40. color: #A7A7A7;
  41. }
  42. .code {
  43. width: 134rpx;
  44. }
  45. .get-code {
  46. width: 166rpx;
  47. height: 60rpx;
  48. line-height: 60rpx;
  49. display: flex;
  50. justify-content: center;
  51. align-items: center;
  52. background-color: #F2501A;
  53. border-radius: 100rpx;
  54. color: #FFFFFF;
  55. font-size: 26rpx;
  56. }
  57. .msg {
  58. width: 100%;
  59. padding: 22rpx 16rpx;
  60. box-sizing: border-box;
  61. color: #8D8C8C;
  62. font-size: 26rpx;
  63. }
  64. .btn-box {
  65. width: 100%;
  66. display: flex;
  67. justify-content: center;
  68. align-items: center;
  69. padding: 100rpx 0;
  70. }
  71. .btn-box button {
  72. width: 100%;
  73. height: 86rpx;
  74. line-height: 86rpx;
  75. display: flex;
  76. align-items: center;
  77. justify-content: center;
  78. background-color: #E0E0E0;
  79. color: #777777;
  80. font-size: 30rpx;
  81. border-radius: 100rpx;
  82. }
  83. .active{
  84. color: #fff !important;
  85. background-color: #F2501A !important;
  86. }