reset_password.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /* pages/reset_password/reset_password.wxss */
  2. .main {
  3. height: 100%;
  4. width: 100%;
  5. position: relative;
  6. }
  7. .main_image {
  8. height: 1344rpx;
  9. width: 750rpx;
  10. margin-top: -128rpx;
  11. }
  12. .main .context {
  13. height: 100%;
  14. width: 100%;
  15. position: absolute;
  16. top: 0;
  17. left: 0;
  18. }
  19. .context_input {
  20. margin: 30rpx 32rpx;
  21. }
  22. .account_img {
  23. width: 26rpx;
  24. height: 32rpx;
  25. margin: 28rpx 32rpx 28rpx 0;
  26. }
  27. .password_img {
  28. width: 24rpx;
  29. height: 30rpx;
  30. margin: 29rpx 34rpx 29rpx 0;
  31. }
  32. .phone_img {
  33. width: 24rpx;
  34. height: 24rpx;
  35. margin: 32rpx 34rpx 32rpx 0;
  36. }
  37. .email_img {
  38. width: 26rpx;
  39. height: 20rpx;
  40. margin: 34rpx 32rpx 34rpx 0;
  41. }
  42. .man_img {
  43. width: 28rpx;
  44. height: 24rpx;
  45. margin: 32rpx 30rpx 32rpx 0;
  46. }
  47. .context_input .input_view {
  48. border-bottom: 1rpx solid #f1f1f1;
  49. }
  50. .context_input input {
  51. width: calc(100% - 58rpx);
  52. display: inline-block;
  53. font-size: 32rpx;
  54. height: 88rppx;
  55. line-height: 88rpx;
  56. min-height: 88rpx;
  57. color: #434343;
  58. font-family: 'Lucida Sans',
  59. 'Lucida Sans Regular',
  60. 'Lucida Grande',
  61. 'Lucida Sans Unicode',
  62. Geneva,
  63. Verdana,
  64. sans-serif;
  65. }
  66. .context_input .placeholder {
  67. color: #c9c9c9;
  68. font-size: 32rpx;
  69. height: 88rppx;
  70. line-height: 88rpx;
  71. min-height: 88rpx;
  72. font-family: 'Lucida Sans',
  73. 'Lucida Sans Regular',
  74. 'Lucida Grande',
  75. 'Lucida Sans Unicode',
  76. Geneva,
  77. Verdana,
  78. sans-serif;
  79. }
  80. .errorMsg{
  81. height: 28rpx;
  82. margin: 0rpx 32rpx 32rpx 30rpx;
  83. font-size: 28rpx;
  84. font-family: 'Lucida Sans',
  85. 'Lucida Sans Regular',
  86. 'Lucida Grande',
  87. 'Lucida Sans Unicode',
  88. Geneva,
  89. Verdana,
  90. sans-serif;
  91. color: red;
  92. text-overflow: ellipsis;
  93. white-space: nowrap;
  94. }
  95. .login_button {
  96. width: calc(100% - 62rpx);
  97. font-size: 32rpx;
  98. margin: 0rpx 32rpx;
  99. font-family: 'Lucida Sans',
  100. 'Lucida Sans Regular',
  101. 'Lucida Grande',
  102. 'Lucida Sans Unicode',
  103. Geneva,
  104. Verdana,
  105. sans-serif;
  106. color: #fff;
  107. text-overflow: ellipsis;
  108. white-space: nowrap;
  109. background-color: #3cb8b6;
  110. }
  111. .login_button_disable{
  112. width: calc(100% - 62rpx);
  113. font-size: 32rpx;
  114. margin: 0rpx 32rpx;
  115. font-family: 'Lucida Sans',
  116. 'Lucida Sans Regular',
  117. 'Lucida Grande',
  118. 'Lucida Sans Unicode',
  119. Geneva,
  120. Verdana,
  121. sans-serif;
  122. color: #fff;
  123. text-overflow: ellipsis;
  124. white-space: nowrap;
  125. background-color: #c9c9c9;
  126. }
  127. .login_button.button-hover {
  128. background-color: #36a9a6;
  129. }