index.scss 696B

1234567891011121314151617181920212223242526272829303132333435
  1. .components.TransactedCustomer {
  2. position: relative;
  3. overflow: hidden;
  4. width: 100%;
  5. height: 100%;
  6. >scroll-view {
  7. width: 100%;
  8. height: 100%;
  9. position: relative;
  10. .PageContent {
  11. position: relative;
  12. overflow: hidden;
  13. >.List {
  14. padding: 0 36px;
  15. position: relative;
  16. overflow: hidden;
  17. >view {
  18. margin-top: 20px;
  19. }
  20. }
  21. > .PageBottom {
  22. text-align: center;
  23. font-size: 0;
  24. white-space: nowrap;
  25. > text {
  26. display: inline-block;
  27. font-size: 28px;
  28. color: #666;
  29. line-height: 40px;
  30. margin: 20px auto;
  31. }
  32. }
  33. }
  34. }
  35. }