index.less 620 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .container {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. align-content: center;
  6. align-items: center;
  7. .top-view {
  8. position: sticky;
  9. top: 0;
  10. z-index: 999;
  11. width: 100%;
  12. }
  13. &__content {
  14. width: 100%;
  15. }
  16. &__notify {
  17. width: 95%;
  18. height: 30px;
  19. color: #666;
  20. font-size: 14px;
  21. margin-top: 10px;
  22. }
  23. &__button-view {
  24. border-radius: 10px;
  25. width: 95%;
  26. padding-top: 15px;
  27. display: flex;
  28. flex-direction: row;
  29. align-content: center;
  30. align-items: center;
  31. justify-content: space-between;
  32. van-button {
  33. width: 45%;
  34. }
  35. }
  36. }