service.less 762 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* components/service/service.wxss */
  2. .iconSerivce {
  3. position: fixed;
  4. // bottom: 198rpx;
  5. // right: 8rpx;
  6. width: 112rpx;
  7. height: 119rpx;
  8. z-index: 998;
  9. }
  10. .service-container {
  11. position: fixed;
  12. top: 0;
  13. left: 0;
  14. right: 0;
  15. bottom: 0;
  16. z-index: 999;
  17. .service-mask {
  18. position: absolute;
  19. top: 0;
  20. left: 0;
  21. right: 0;
  22. bottom: 0;
  23. background-color: rgba(0, 0, 0, 0.7);
  24. }
  25. .service-section {
  26. position: absolute;
  27. transform: translate(-50%, -50%);
  28. top: 50%;
  29. left: 50%;
  30. text-align: center;
  31. .iconImg {
  32. width: 578rpx;
  33. height: 686rpx;
  34. }
  35. .iconClose {
  36. position: absolute;
  37. z-index: 1;
  38. top: 34rpx;
  39. right: 16rpx;
  40. width: 44rpx;
  41. height: 44rpx;
  42. }
  43. }
  44. }