login.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* uni.scss */
  16. /* 行为相关颜色 */
  17. /* 文字基本颜色 */
  18. /* 背景颜色 */
  19. /* 边框颜色 */
  20. /* 尺寸变量 */
  21. /* 文字尺寸 */
  22. /* 图片尺寸 */
  23. /* Border Radius */
  24. /* 水平间距 */
  25. /* 垂直间距 */
  26. /* 透明度 */
  27. /* 文章场景相关 */
  28. .headers {
  29. text-align: center;
  30. }
  31. .headers > image {
  32. width: 400rpx;
  33. height: 400rpx;
  34. }
  35. .footer {
  36. /* // padding-left: 140upx; */
  37. justify-content: center;
  38. margin-top: 32rpx;
  39. font-size: 24rpx;
  40. color: #666666;
  41. display: flex;
  42. text-align: center;
  43. align-items: center;
  44. }
  45. page {
  46. background: #fff;
  47. }
  48. .send-msg {
  49. border-radius: 30px;
  50. color: black;
  51. background: white;
  52. height: 30px;
  53. font-size: 14px;
  54. line-height: 30px;
  55. }
  56. .container {
  57. top: 0;
  58. padding-top: 32rpx;
  59. position: relative;
  60. width: 100%;
  61. height: 100%;
  62. overflow: hidden;
  63. background: #fff;
  64. }
  65. .headers {
  66. margin: 35% auto 50rpx;
  67. text-align: center;
  68. border-radius: 60rpx;
  69. width: 650rpx;
  70. height: 300rpx;
  71. line-height: 450rpx;
  72. }
  73. .headers image {
  74. width: 300rpx;
  75. height: 300rpx;
  76. }
  77. .content {
  78. text-align: center;
  79. }
  80. .headers text {
  81. display: block;
  82. color: #9d9d9d;
  83. /* // margin-top: 40rpx; */
  84. }
  85. .bottom {
  86. line-height: 80rpx;
  87. border-radius: 80rpx;
  88. margin: 50rpx;
  89. height: 80rpx;
  90. font-size: 35rpx;
  91. }
  92. .welcome {
  93. position: relative;
  94. left: 30px;
  95. top: -55px;
  96. font-size: 28px;
  97. color: #555;
  98. text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.3);
  99. }
  100. .input-content {
  101. padding: 0 20px;
  102. }
  103. .left-top-sign {
  104. font-size: 80px;
  105. /* color: $page-color-base; */
  106. position: relative;
  107. }
  108. .right-top-sign {
  109. position: absolute;
  110. top: 40px;
  111. right: -15px;
  112. z-index: 95;
  113. }
  114. .right-top-sign:before,
  115. .right-top-sign:after {
  116. display: block;
  117. content: '';
  118. width: 20px;
  119. height: 40px;
  120. background: #FF7F00;
  121. }
  122. .right-top-sign:before {
  123. -webkit-transform: rotate(50deg);
  124. transform: rotate(50deg);
  125. border-radius: 0 50px 0 0;
  126. }
  127. .right-top-sign:after {
  128. position: absolute;
  129. right: -198px;
  130. top: 0;
  131. -webkit-transform: rotate(-50deg);
  132. transform: rotate(-50deg);
  133. border-radius: 50px 0 0 0;
  134. /* background: pink; */
  135. }
  136. /* ````` */
  137. .login {
  138. width: 100%;
  139. }
  140. .login_type {
  141. width: 90%;
  142. margin: 0 auto;
  143. margin-top: 50rpx;
  144. margin-bottom: 135rpx;
  145. }
  146. .type_name {
  147. font-size: 38rpx;
  148. font-weight: bold;
  149. letter-spacing: 2rpx;
  150. }
  151. .type_tit {
  152. color: #999999;
  153. font-size: 21rpx;
  154. margin-top: 10rpx;
  155. }
  156. /* 登录 */
  157. .login_input {
  158. width: 80%;
  159. margin: 0 auto;
  160. }
  161. .numbers {
  162. height: 120rpx;
  163. }
  164. .u-input__input {
  165. border-bottom: 1rpx solid #E6E6E6 !important;
  166. }
  167. .submit {
  168. width: 100%;
  169. height: 90rpx;
  170. background: #FF7F00;
  171. color: white;
  172. text-align: center;
  173. line-height: 90rpx;
  174. border-radius: 20rpx;
  175. margin-top: 75rpx;
  176. }
  177. .submit_bottom {
  178. display: flex;
  179. height: 70rpx;
  180. }
  181. .bottom_left {
  182. flex: 1;
  183. color: #999999;
  184. font-size: 26rpx;
  185. display: flex;
  186. justify-content: left;
  187. align-items: center;
  188. }
  189. .bottom_right {
  190. flex: 1;
  191. color: #FF7F00;
  192. display: flex;
  193. justify-content: flex-end;
  194. align-items: center;
  195. }
  196. .wrapper {
  197. position: relative;
  198. z-index: 90;
  199. background: #fff;
  200. padding-bottom: 20px;
  201. }