commentsCarousel.wxss 498 B

1234567891011121314151617181920212223242526272829
  1. /* pages/components/blocks/commentsCarousel/commentsCarousel.wxss */
  2. .carousel_container {
  3. position: fixed;
  4. left: 0;
  5. right: 0;
  6. top: 0;
  7. bottom: 0;
  8. z-index: 99;
  9. background: #000;
  10. }
  11. .comments_swiper {
  12. width: 100%;
  13. height: 100%;
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. }
  18. .comments_swiper swiper-item {
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. }
  23. .comments_swiper image {
  24. max-width: 100%;
  25. max-height: 100%;
  26. display: block;
  27. }