style.scss 882 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .content {
  2. padding: 60px 0 0;
  3. .title {
  4. @include FONT(#333333, 24px, 600);
  5. margin: 0 16px;
  6. }
  7. .cell-group {
  8. margin: 22px 16px 30px;
  9. .cell-item {
  10. padding: 12px 0;
  11. border-bottom: 1px solid #ededed;
  12. display: flex;
  13. input {
  14. @include WH(100%, 24px);
  15. @include FONT(#333333, 17px, 400);
  16. }
  17. input::-webkit-input-placeholder {
  18. @include FONT(#cccccc, 17px, 400);
  19. }
  20. .send-code {
  21. width: 110px;
  22. text-align: right;
  23. @include FONT(#333333, 14px, 400);
  24. i {
  25. margin-left: 2px;
  26. }
  27. }
  28. }
  29. }
  30. .login-btn {
  31. @include WH(auto, 48px);
  32. background: #26baee;
  33. border-radius: 50px;
  34. @include FONT(#ffffff, 18px, 400);
  35. text-align: center;
  36. line-height: 48px;
  37. margin: 0 16px;
  38. }
  39. .footer {
  40. width: 100%;
  41. position: fixed;
  42. bottom: 10px;
  43. text-align: center;
  44. .icon-bolineyecare {
  45. @include FONT(#D0EFFF, 40px, 400);
  46. }
  47. }
  48. }