reset_password.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* pages/reset_password/reset_password.wxss */
  2. .main {
  3. height: 100%;
  4. width: 100%;
  5. position: relative;
  6. }
  7. .main_image {
  8. height: 1334rpx;
  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. box-shadow: 0rpx 6rpx 6rpx #f5f5f5 inset;
  19. }
  20. /* .context_input {
  21. margin: 30rpx 32rpx;
  22. } */
  23. .context_input .input_view {
  24. border-bottom: 2rpx solid #f1f1f1;
  25. padding-left: 60rpx;
  26. height: 100rpx;
  27. }
  28. .context_input input {
  29. width: calc(100% - 58rpx);
  30. display: inline-block;
  31. font-size: 32rpx;
  32. height: 100rpx;
  33. line-height: 100rpx;
  34. min-height: 100rpx;
  35. color: #434343;
  36. font-family: 'Lucida Sans',
  37. 'Lucida Sans Regular',
  38. 'Lucida Grande',
  39. 'Lucida Sans Unicode',
  40. Geneva,
  41. Verdana,
  42. sans-serif;
  43. }
  44. .context_input .placeholder {
  45. color: #999999;
  46. font-family: 'Lucida Sans',
  47. 'Lucida Sans Regular',
  48. 'Lucida Grande',
  49. 'Lucida Sans Unicode',
  50. Geneva,
  51. Verdana,
  52. sans-serif;
  53. }
  54. .errorMsg{
  55. height: 28rpx;
  56. margin: 32rpx 60rpx 32rpx 60rpx;
  57. font-size: 28rpx;
  58. font-family: 'Lucida Sans',
  59. 'Lucida Sans Regular',
  60. 'Lucida Grande',
  61. 'Lucida Sans Unicode',
  62. Geneva,
  63. Verdana,
  64. sans-serif;
  65. color: red;
  66. text-overflow: ellipsis;
  67. white-space: nowrap;
  68. }
  69. .login_button {
  70. width: calc(100% - 152rpx);
  71. font-size: 32rpx;
  72. /* margin: 0rpx 32rpx; */
  73. font-family: 'Lucida Sans',
  74. 'Lucida Sans Regular',
  75. 'Lucida Grande',
  76. 'Lucida Sans Unicode',
  77. Geneva,
  78. Verdana,
  79. sans-serif;
  80. color: #fff;
  81. text-overflow: ellipsis;
  82. white-space: nowrap;
  83. background-color: #00a8dc;
  84. border-radius: 40rpx;
  85. height: 80rpx;
  86. border: none;
  87. margin: 235rpx 76rpx 0 76rpx;
  88. }
  89. .login_button_disable {
  90. width: calc(100% - 152rpx);
  91. font-size: 32rpx;
  92. /* margin: 0rpx 32rpx; */
  93. font-family: 'Lucida Sans',
  94. 'Lucida Sans Regular',
  95. 'Lucida Grande',
  96. 'Lucida Sans Unicode',
  97. Geneva,
  98. Verdana,
  99. sans-serif;
  100. color: #fff;
  101. text-overflow: ellipsis;
  102. white-space: nowrap;
  103. background-color: #c9c9c9;
  104. border-radius: 40rpx;
  105. height: 80rpx;
  106. border: none;
  107. margin: 235rpx 76rpx 0 76rpx;
  108. }
  109. .login_button.button-hover {
  110. background-color: #36a9a6;
  111. }