phone_login.wxss 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. /* pages/login/phone_login/phone_login.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. top: 0;
  12. }
  13. .logo_view{
  14. margin: 0rpx 268rpx;
  15. }
  16. .login_logo1 {
  17. height: 213rpx;
  18. width: 214rpx;
  19. margin-top: 90rpx;
  20. }
  21. .login_logo2 {
  22. height: 120rpx;
  23. width: 184rpx;
  24. margin: 0rpx 15rpx;
  25. }
  26. .main .context {
  27. height: 100%;
  28. width: 100%;
  29. position: absolute;
  30. top: 0;
  31. left: 0;
  32. box-shadow: 0rpx 6rpx 6rpx #f5f5f5 inset;
  33. }
  34. .context_input {
  35. margin-top: 20rpx;
  36. margin-right: 32rpx;
  37. margin-left: 32rpx;
  38. margin-bottom: 30rpx;
  39. }
  40. .account_img {
  41. width: 30rpx;
  42. height: 32rpx;
  43. margin: 28rpx 0rpx 28rpx 30rpx;
  44. padding-right:30rpx;
  45. border-right: 2rpx #999999 solid;
  46. }
  47. .phone_img {
  48. width: 31rpx;
  49. height: 30rpx;
  50. margin: 29rpx 0rpx 29rpx 30rpx;
  51. padding-right:29rpx;
  52. border-right: 2rpx #999999 solid;
  53. }
  54. .password_img {
  55. width: 26rpx;
  56. height: 34rpx;
  57. margin: 27rpx 0rpx 27rpx 32rpx;
  58. padding-right:32rpx;
  59. border-right: 2rpx #999999 solid;
  60. }
  61. .context_input input {
  62. width: calc(100% - 122rpx);
  63. display: inline-block;
  64. font-size: 32rpx;
  65. height: 88rppx;
  66. line-height: 88rpx;
  67. min-height: 88rpx;
  68. padding-left: 30rpx;
  69. color: #434343;
  70. font-family: 'Lucida Sans',
  71. 'Lucida Sans Regular',
  72. 'Lucida Grande',
  73. 'Lucida Sans Unicode',
  74. Geneva,
  75. Verdana,
  76. sans-serif;
  77. }
  78. .context_input .placeholder {
  79. color: #999999;
  80. font-family: 'Lucida Sans',
  81. 'Lucida Sans Regular',
  82. 'Lucida Grande',
  83. 'Lucida Sans Unicode',
  84. Geneva,
  85. Verdana,
  86. sans-serif;
  87. }
  88. .input_view{
  89. box-shadow: 0rpx 0rpx 10rpx #dedede;
  90. border-radius: 10rpx;
  91. margin: 40rpx 0rpx;
  92. height: 88rpx;
  93. }
  94. .errorMsg{
  95. margin-left: 10rpx;
  96. color: red;
  97. font-size:24rpx;
  98. font-family: 'Lucida Sans',
  99. 'Lucida Sans Regular',
  100. 'Lucida Grande',
  101. 'Lucida Sans Unicode',
  102. Geneva,
  103. Verdana,
  104. sans-serif;
  105. }
  106. .login_button {
  107. width: calc(100% - 270rpx);
  108. font-size: 32rpx;
  109. /* margin: 0rpx 32rpx; */
  110. font-family: 'Lucida Sans',
  111. 'Lucida Sans Regular',
  112. 'Lucida Grande',
  113. 'Lucida Sans Unicode',
  114. Geneva,
  115. Verdana,
  116. sans-serif;
  117. color: #fff;
  118. text-overflow: ellipsis;
  119. white-space: nowrap;
  120. background-color: #00a8dc;
  121. border-radius: 40rpx;
  122. height: 80rpx;
  123. border: none;
  124. margin: 125rpx 135rpx 0 135rpx;
  125. }
  126. .login_button_disable {
  127. width: calc(100% - 270rpx);
  128. font-size: 32rpx;
  129. /* margin: 0rpx 32rpx; */
  130. font-family: 'Lucida Sans',
  131. 'Lucida Sans Regular',
  132. 'Lucida Grande',
  133. 'Lucida Sans Unicode',
  134. Geneva,
  135. Verdana,
  136. sans-serif;
  137. color: #fff;
  138. text-overflow: ellipsis;
  139. white-space: nowrap;
  140. background-color: #c9c9c9;
  141. border-radius: 40rpx;
  142. height: 80rpx;
  143. border: none;
  144. margin: 125rpx 135rpx 0 135rpx;
  145. }
  146. .login_button.button-hover {
  147. background-color: #36a9a6;
  148. }
  149. .other_button {
  150. width: calc(100% - 270rpx);
  151. margin: 20rpx 135rpx;
  152. }
  153. .account_login {
  154. display: inline-block;
  155. height: 48rpx;
  156. color: #999999;
  157. font-size: 24rpx;
  158. line-height: 48rpx;
  159. text-align: left;
  160. font-family: 'Lucida Sans',
  161. 'Lucida Sans Regular',
  162. 'Lucida Grande',
  163. 'Lucida Sans Unicode',
  164. Geneva,
  165. Verdana,
  166. sans-serif;
  167. }
  168. .register_view {
  169. position: absolute;
  170. right: 320rpx;
  171. height: 48rpx;
  172. color: #999999;
  173. font-size: 24rpx;
  174. line-height: 48rpx;
  175. text-align: center;
  176. font-family: 'Lucida Sans',
  177. 'Lucida Sans Regular',
  178. 'Lucida Grande',
  179. 'Lucida Sans Unicode',
  180. Geneva,
  181. Verdana,
  182. sans-serif;
  183. }
  184. .forget_view {
  185. position: absolute;
  186. right: 145rpx;
  187. display: inline-block;
  188. height: 48rpx;
  189. color: #999999;
  190. font-size: 24rpx;
  191. line-height: 48rpx;
  192. text-align: right;
  193. font-family: 'Lucida Sans',
  194. 'Lucida Sans Regular',
  195. 'Lucida Grande',
  196. 'Lucida Sans Unicode',
  197. Geneva,
  198. Verdana,
  199. sans-serif;
  200. }
  201. .varification_button {
  202. display: inline-block;
  203. position: absolute;
  204. margin-top: 15rpx;
  205. padding: 0 15rpx;
  206. right: 45rpx;
  207. z-index:999;
  208. height: 60rpx;
  209. border-radius: 8rpx;
  210. color:rgba(255, 255, 255, 1);
  211. line-height:60rpx;
  212. text-align:center;
  213. font-size:24rpx;
  214. font-family: 'Lucida Sans',
  215. 'Lucida Sans Regular',
  216. 'Lucida Grande',
  217. 'Lucida Sans Unicode',
  218. Geneva,
  219. Verdana,
  220. sans-serif;
  221. }
  222. .getCode {
  223. background:#00AADD;
  224. }
  225. .getCode_disable {
  226. background-color: #c9c9c9;
  227. }
  228. .phone_call_class{
  229. text-align: center;
  230. margin: 40rpx;
  231. color: #c9c9c9;
  232. font-size: 28rpx;
  233. }