service.less 804 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* components/service/service.wxss */
  2. .iconSerivce {
  3. position: fixed;
  4. // bottom: 198rpx;
  5. // right: 8rpx;
  6. width: 84rpx;
  7. height: 103rpx;
  8. z-index: 2998;
  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: 590rpx;
  33. height: 848rpx;
  34. }
  35. .iconClose {
  36. position: absolute;
  37. z-index: 1;
  38. bottom: -100rpx;
  39. transform: translate(-50%, -50%);
  40. left: 50%;
  41. width: 60rpx;
  42. height: 60rpx;
  43. }
  44. }
  45. }