service.less 582 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* components/service/service.wxss */
  2. .service-container {
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. right: 0;
  7. bottom: 0;
  8. z-index: 999;
  9. .service-mask {
  10. position: absolute;
  11. top: 0;
  12. left: 0;
  13. right: 0;
  14. bottom: 0;
  15. background-color: rgba(0, 0, 0, 0.7);
  16. }
  17. .service-section {
  18. position: absolute;
  19. transform: translate(-50%, -50%);
  20. top: 50%;
  21. left: 50%;
  22. text-align: center;
  23. .iconImg {
  24. width: 590rpx;
  25. height: 848.22rpx;
  26. }
  27. .iconClose {
  28. margin-top: 40rpx;
  29. width: 60rpx;
  30. height: 60rpx;
  31. }
  32. }
  33. }