style.scss 545 B

1234567891011121314151617181920212223242526272829
  1. .content {
  2. position: absolute;
  3. left: 0;
  4. right: 0;
  5. top: 0;
  6. bottom: 0;
  7. background: #f5f5f5;
  8. .cell-group {
  9. background: #ffffff;
  10. .cell-item {
  11. padding: 16px;
  12. border-bottom: 1px solid #ededed;
  13. @include FONT(#333333, 14px, 400);
  14. @include FLEX(flex, row, space-between, center);
  15. }
  16. .cell-item:last-child {
  17. border-bottom: 0;
  18. }
  19. }
  20. .login-btn {
  21. @include WH(auto, 50px);
  22. background: #ffffff;
  23. border-radius: 25px;
  24. @include FONT(#ff0000, 16px, 500);
  25. text-align: center;
  26. line-height: 50px;
  27. margin: 22px 16px;
  28. }
  29. }