login.scss 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. @import "./common.wxss";
  2. page {
  3. background: white;
  4. }
  5. .loginx {
  6. width: 190rpx;
  7. height: 204rpx;
  8. margin: 139rpx auto 0 auto;
  9. }
  10. .tip-box {
  11. text-align: center;
  12. margin-top: 132rpx;
  13. display: flex;
  14. align-items: center;
  15. justify-content: center;
  16. }
  17. .tip-box .my {
  18. font-size: 24rpx;
  19. color: #999999;
  20. }
  21. .tip-box .yin {
  22. font-size: 24rpx;
  23. color: #00a5fb;
  24. }
  25. .li1 {
  26. width: 276rpx;
  27. height: 276rpx;
  28. margin: 50rpx auto 0 auto;
  29. }
  30. .li2 {
  31. width: 281rpx;
  32. height: 69rpx;
  33. margin: 29rpx auto 0 auto;
  34. }
  35. .li3 {
  36. width: 402rpx;
  37. height: 48rpx;
  38. margin: 29rpx auto 0 auto;
  39. }
  40. .li4 {
  41. width: 313rpx;
  42. height: 44rpx;
  43. margin: 27rpx auto 0 auto;
  44. }
  45. .footer-t {
  46. font-size: 24rpx;
  47. font-family: PingFang SC, PingFang SC-Regular;
  48. font-weight: 400;
  49. text-align: center;
  50. color: #999999;
  51. line-height: 40rpx;
  52. }
  53. .footer-t text {
  54. color: #9ddb52;
  55. }
  56. .welcome {
  57. font-size: 40rpx;
  58. text-shadow: 0px 0px 0.1px gray;
  59. font-weight: 500;
  60. }
  61. .content {
  62. width: 80%;
  63. height: 100vh;
  64. margin: 0 auto;
  65. padding-bottom: 50rpx;
  66. box-sizing: border-box;
  67. display: flex;
  68. flex-direction: column;
  69. justify-content: center;
  70. }
  71. .footer-t1 {
  72. margin-top: auto;
  73. }
  74. .login-info {
  75. margin-top: 20%;
  76. }
  77. .login-info>view>text {
  78. margin-left: 10rpx;
  79. font-size: 31rpx;
  80. letter-spacing: 3rpx;
  81. color: #494949;
  82. }
  83. .input-placeholder {
  84. color: #dcdcdc;
  85. font-size: 30rpx;
  86. }
  87. .login-info>view>input {
  88. width: 65%;
  89. border: none;
  90. border-bottom: 1px solid #f5f5f5;
  91. padding: 10rpx 200rpx 10rpx 1rpx;
  92. z-index: 0;
  93. }
  94. .yzm {
  95. margin-top: 30rpx;
  96. }
  97. .btnwrap {
  98. display: flex;
  99. flex-direction: row;
  100. align-items: center;
  101. margin-top: 30rpx;
  102. }
  103. .cancel {
  104. margin-top: 40rpx;
  105. height: 90rpx;
  106. display: flex;
  107. justify-content: center;
  108. align-items: center;
  109. color: #101010;
  110. width: 100%;
  111. border: 1px solid #efefef;
  112. border-radius: 46rpx;
  113. background-color: #efefef;
  114. }
  115. .btn-submit {
  116. background: #ffdc2f !important;
  117. font-size: 32rpx;
  118. box-shadow: 0px 0px 8rpx 0px rgba(6, 6, 6, 0.14);
  119. display: flex;
  120. justify-content: center;
  121. align-items: center;
  122. color: #1a1a1a !important;
  123. border: 1px solid #ffdc2f !important;
  124. width: 630rpx;
  125. height: 91rpx;
  126. border-radius: 46rpx;
  127. }
  128. .code {
  129. font-size: 30rpx;
  130. position: absolute;
  131. bottom: 15rpx;
  132. right: 15rpx;
  133. color: #414141;
  134. padding: 5rpx;
  135. border-left: 1px solid #ececec;
  136. padding-left: 15rpx;
  137. z-index: 999;
  138. }
  139. .img-code {
  140. width: 35%;
  141. height: 85rpx;
  142. position: absolute;
  143. right: 0;
  144. bottom: 0;
  145. }
  146. .gohome {
  147. font-size: 22rpx;
  148. color: #999999;
  149. margin-top: 5rpx;
  150. }
  151. .tips {
  152. width: 355rpx;
  153. height: 98rpx;
  154. margin: 131rpx auto 0 auto;
  155. }
  156. .invitation-code {
  157. text-align: center;
  158. margin-top: 60rpx;
  159. }
  160. .invitation-code text {
  161. color: #828486;
  162. vertical-align: middle;
  163. }
  164. .invitation-code input {
  165. display: inline-block;
  166. vertical-align: middle;
  167. border: 1px dashed #ffdc2f;
  168. height: 60rpx;
  169. line-height: 60rpx;
  170. border-radius: 10rpx;
  171. text-align: left;
  172. padding-left: 10rpx;
  173. }
  174. .app-title {
  175. text-align: center;
  176. font-size: 48rpx;
  177. font-family: PingFang SC, PingFang SC-Bold;
  178. font-weight: 700;
  179. text-align: center;
  180. color: #1a1a1a;
  181. }
  182. // 登录弹窗
  183. .login-popup {
  184. position: fixed;
  185. top: 0;
  186. left: 0;
  187. width: 100%;
  188. height: 100%;
  189. background-color: rgba(0, 0, 0, .5);
  190. transition: all .3s;
  191. z-index: 9;
  192. .popup-close {
  193. display: block;
  194. width: 48rpx;
  195. height: 48rpx;
  196. margin-left: auto;
  197. margin-bottom: 20rpx;
  198. }
  199. .user-info-box {
  200. position: absolute;
  201. bottom: 0;
  202. padding: 60rpx 40rpx 40rpx;
  203. width: 750rpx;
  204. box-sizing: border-box;
  205. background-color: #fff;
  206. border-top-left-radius: 30rpx;
  207. border-top-right-radius: 30rpx;
  208. overflow: hidden;
  209. .top-title {
  210. display: flex;
  211. flex-direction: column;
  212. .title {
  213. font-size: 36rpx;
  214. font-weight: 600;
  215. }
  216. .tip {
  217. margin-top: 10rpx;
  218. font-size: 28rpx;
  219. color: #aaa;
  220. }
  221. }
  222. .func-box {
  223. .avatar-box,
  224. .name-box,
  225. .phone-box {
  226. position: relative;
  227. display: flex;
  228. align-items: center;
  229. justify-content: space-between;
  230. width: 100%;
  231. padding: 20rpx 0;
  232. margin-top: 40rpx;
  233. .box-left {
  234. .txt {
  235. font-size: 30rpx;
  236. font-weight: bold;
  237. margin-right: 20rpx;
  238. }
  239. }
  240. .box-right {
  241. display: flex;
  242. align-items: center;
  243. text {
  244. font-size: 30rpx;
  245. color: #333;
  246. }
  247. }
  248. }
  249. .avatar-box {
  250. justify-content: space-between;
  251. image {
  252. width: 80rpx;
  253. height: 80rpx;
  254. border-radius: 50%;
  255. }
  256. .box-right {
  257. text {
  258. color: #aaa;
  259. margin-left: 10rpx;
  260. }
  261. }
  262. }
  263. .name-box {
  264. margin-bottom: 20rpx;
  265. input {
  266. font-size: 30rpx;
  267. color: #333;
  268. text-align: right;
  269. }
  270. }
  271. .phone-box {
  272. .box-right {
  273. button {
  274. margin-left: 20rpx;
  275. border-radius: 10rpx;
  276. font-size: 24rpx;
  277. background-color: #ffdc2f;
  278. color: #000;
  279. }
  280. }
  281. }
  282. .avatarBtn {
  283. margin: 0;
  284. padding: 0;
  285. background-color: rgba(0, 0, 0, 0);
  286. line-height: inherit;
  287. border-radius: 0;
  288. border: none;
  289. display: flex;
  290. justify-content: center;
  291. align-items: center;
  292. }
  293. .avatarBtn::after {
  294. border: none;
  295. }
  296. .avatarBtn .button-hover {
  297. background-color: rgba(0, 0, 0, 0);
  298. }
  299. }
  300. .custom-style {
  301. // color: #606266;
  302. margin: 70rpx auto 30rpx;
  303. width: 400rpx;
  304. background-color: #ffdc2f;
  305. }
  306. }
  307. }