login.wxss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /* pages/login/login.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-top: 450rpx;
  21. margin-right: 32rpx;
  22. margin-left: 32rpx;
  23. margin-bottom: 30rpx;
  24. }
  25. .account_img {
  26. width: 26rpx;
  27. height: 32rpx;
  28. margin: 28rpx 32rpx 28rpx 0;
  29. }
  30. .password_img {
  31. width: 24rpx;
  32. height: 30rpx;
  33. margin: 27rpx 34rpx 27rpx 0;
  34. }
  35. .context_input .input_view {
  36. border-bottom: 1rpx solid #f1f1f1;
  37. }
  38. .context_input input {
  39. width: calc(100% - 58rpx);
  40. display: inline-block;
  41. font-size: 32rpx;
  42. height: 88rppx;
  43. line-height: 88rpx;
  44. min-height: 88rpx;
  45. color: #434343;
  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. .context_input .placeholder {
  55. color: #c9c9c9;
  56. font-size: 32rpx;
  57. height: 88rppx;
  58. line-height: 88rpx;
  59. min-height: 88rpx;
  60. font-family: 'Lucida Sans',
  61. 'Lucida Sans Regular',
  62. 'Lucida Grande',
  63. 'Lucida Sans Unicode',
  64. Geneva,
  65. Verdana,
  66. sans-serif;
  67. }
  68. .errorMsg {
  69. height: 28rpx;
  70. margin: 0rpx 32rpx 32rpx 30rpx;
  71. font-size: 28rpx;
  72. font-family: 'Lucida Sans',
  73. 'Lucida Sans Regular',
  74. 'Lucida Grande',
  75. 'Lucida Sans Unicode',
  76. Geneva,
  77. Verdana,
  78. sans-serif;
  79. color: red;
  80. text-overflow: ellipsis;
  81. white-space: nowrap;
  82. }
  83. .login_button {
  84. width: calc(100% - 62rpx);
  85. font-size: 32rpx;
  86. margin: 0rpx 32rpx;
  87. font-family: 'Lucida Sans',
  88. 'Lucida Sans Regular',
  89. 'Lucida Grande',
  90. 'Lucida Sans Unicode',
  91. Geneva,
  92. Verdana,
  93. sans-serif;
  94. color: #fff;
  95. text-overflow: ellipsis;
  96. white-space: nowrap;
  97. background-color: #83c4ee;
  98. }
  99. .login_button_disable {
  100. width: calc(100% - 62rpx);
  101. font-size: 32rpx;
  102. margin: 0rpx 32rpx;
  103. font-family: 'Lucida Sans',
  104. 'Lucida Sans Regular',
  105. 'Lucida Grande',
  106. 'Lucida Sans Unicode',
  107. Geneva,
  108. Verdana,
  109. sans-serif;
  110. color: #fff;
  111. text-overflow: ellipsis;
  112. white-space: nowrap;
  113. background-color: #c9c9c9;
  114. }
  115. .login_button.button-hover {
  116. background-color: #76b1d8;
  117. }
  118. .forget_view {
  119. margin: 0rpx 32rpx;
  120. width: 240rpx;
  121. height: 48rpx;
  122. color: #2483c0;
  123. font-size: 24rpx;
  124. line-height: 48rpx;
  125. text-align: left;
  126. font-family: 'Lucida Sans',
  127. 'Lucida Sans Regular',
  128. 'Lucida Grande',
  129. 'Lucida Sans Unicode',
  130. Geneva,
  131. Verdana,
  132. sans-serif;
  133. }
  134. .register_view {
  135. width: 240rpx;
  136. height: 48rpx;
  137. position: absolute;
  138. bottom: 88rpx;
  139. left: 375rpx;
  140. margin-left: -120rpx;
  141. border-radius: 24rpx;
  142. border: 1rpx solid #83c4ee;
  143. color: #2483c0;
  144. font-size: 24rpx;
  145. line-height: 48rpx;
  146. text-align: center;
  147. font-family: 'Lucida Sans',
  148. 'Lucida Sans Regular',
  149. 'Lucida Grande',
  150. 'Lucida Sans Unicode',
  151. Geneva,
  152. Verdana,
  153. sans-serif;
  154. }
  155. .register_view.active {
  156. color: #fff;
  157. background-color: #83c4ee;
  158. }