index.scss 275 B

1234567891011121314151617181920
  1. // @import "../../assets/css/variables";
  2. .item-wrap {
  3. position: relative;
  4. .item {
  5. position: absolute;
  6. z-index: 1;
  7. top: 0;
  8. left: 0;
  9. &.tran {
  10. transition: transform 0.3s !important;
  11. }
  12. &.cur {
  13. z-index: 2;
  14. }
  15. &.fixed {
  16. z-index: 0 !important;
  17. }
  18. }
  19. }