index.wxss 466 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .fixed {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. bottom: 0;
  6. right: 0;
  7. z-index: 1000;
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. justify-content: center;
  12. }
  13. .mask {
  14. position: fixed;
  15. top: 0;
  16. left: 0;
  17. bottom: 0;
  18. right: 0;
  19. background: rgba(0, 0, 0, 0.6);
  20. }
  21. .cont {
  22. z-index: 1001;
  23. width: 80%;
  24. }
  25. .cont .img {
  26. width: 100%;
  27. }
  28. .close-img {
  29. margin-top: 40rpx;
  30. width: 60rpx;
  31. height: 60rpx;
  32. }
  33. .swiper {
  34. width: 100%;
  35. }