login.wxss 760 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* pages/login/login.wxss */
  2. page {
  3. background: #fff;
  4. }
  5. .container {
  6. padding: 30rpx;
  7. }
  8. /* 标题 */
  9. .title {
  10. font-size: 42rpx;
  11. font-family: PingFangSC;
  12. font-weight: 500;
  13. color: #31364c;
  14. margin-bottom: 45rpx;
  15. }
  16. /* 单元格输入框 */
  17. .cell {
  18. height: 116rpx;
  19. background: #fff;
  20. display: flex;
  21. align-items: center;
  22. justify-content: space-between;
  23. border-bottom: 1rpx solid #eaebee;
  24. }
  25. .cell .input {
  26. flex: 1;
  27. height: 100rpx;
  28. display: flex;
  29. align-items: center;
  30. margin-right: 15rpx;
  31. }
  32. .code {
  33. font-size: 30rpx;
  34. color: #3243bd;
  35. }
  36. .color {
  37. color: #888a8e;
  38. }
  39. .agreement {
  40. color: #888a8e;
  41. font-size: 24rpx;
  42. margin-top: 30rpx;
  43. display: flex;
  44. flex-direction: column;
  45. }
  46. .agreement-link {
  47. color: #3243bd;
  48. }