register.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /* pages/register/register.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. .carNum_img {
  43. width: 36rpx;
  44. height: 26rpx;
  45. margin: 31rpx 22rpx 31rpx 0;
  46. }
  47. .man_img {
  48. width: 28rpx;
  49. height: 24rpx;
  50. margin: 32rpx 30rpx 32rpx 0;
  51. }
  52. .context_input .input_view {
  53. border-bottom: 1rpx solid #f1f1f1;
  54. }
  55. .context_input input {
  56. width: calc(100% - 58rpx);
  57. display: inline-block;
  58. font-size: 32rpx;
  59. height: 88rppx;
  60. line-height: 88rpx;
  61. min-height: 88rpx;
  62. color: #434343;
  63. font-family: 'Lucida Sans',
  64. 'Lucida Sans Regular',
  65. 'Lucida Grande',
  66. 'Lucida Sans Unicode',
  67. Geneva,
  68. Verdana,
  69. sans-serif;
  70. }
  71. .context_input .placeholder {
  72. color: #c9c9c9;
  73. font-size: 32rpx;
  74. height: 88rppx;
  75. line-height: 88rpx;
  76. min-height: 88rpx;
  77. font-family: 'Lucida Sans',
  78. 'Lucida Sans Regular',
  79. 'Lucida Grande',
  80. 'Lucida Sans Unicode',
  81. Geneva,
  82. Verdana,
  83. sans-serif;
  84. }
  85. .errorMsg{
  86. height: 28rpx;
  87. margin: 0rpx 32rpx 32rpx 30rpx;
  88. font-size: 28rpx;
  89. font-family: 'Lucida Sans',
  90. 'Lucida Sans Regular',
  91. 'Lucida Grande',
  92. 'Lucida Sans Unicode',
  93. Geneva,
  94. Verdana,
  95. sans-serif;
  96. color: red;
  97. text-overflow: ellipsis;
  98. white-space: nowrap;
  99. }
  100. .login_button {
  101. width: calc(100% - 62rpx);
  102. font-size: 32rpx;
  103. margin: 0rpx 32rpx;
  104. font-family: 'Lucida Sans',
  105. 'Lucida Sans Regular',
  106. 'Lucida Grande',
  107. 'Lucida Sans Unicode',
  108. Geneva,
  109. Verdana,
  110. sans-serif;
  111. color: #fff;
  112. text-overflow: ellipsis;
  113. white-space: nowrap;
  114. background-color: #3cb8b6;
  115. }
  116. .login_button_disable{
  117. width: calc(100% - 62rpx);
  118. font-size: 32rpx;
  119. margin: 0rpx 32rpx;
  120. font-family: 'Lucida Sans',
  121. 'Lucida Sans Regular',
  122. 'Lucida Grande',
  123. 'Lucida Sans Unicode',
  124. Geneva,
  125. Verdana,
  126. sans-serif;
  127. color: #fff;
  128. text-overflow: ellipsis;
  129. white-space: nowrap;
  130. background-color: #c9c9c9;
  131. }
  132. .login_button.button-hover {
  133. background-color: #36a9a6;
  134. }