class.scss 460 B

1234567891011121314151617181920212223242526272829
  1. @import '@css/mixin.scss';
  2. .scoped-box {
  3. padding-top: 20px;
  4. .sb-item {
  5. width: 694px;
  6. height: 150px;
  7. margin: 0 auto;
  8. margin-bottom: 20px;
  9. border-radius: 20px;
  10. overflow: hidden;
  11. .bg {
  12. width: 694px;
  13. height: 150px;
  14. border-radius: 20px;
  15. overflow: hidden;
  16. }
  17. }
  18. }
  19. .scoped-top {
  20. width: 750px;
  21. height: 250px;
  22. overflow: hidden;
  23. margin-bottom: 10px;
  24. .bg {
  25. width: 750px;
  26. height: 250px;
  27. }
  28. }