| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | /* components/service/service.wxss */.iconSerivce {  position: fixed;  // bottom: 198rpx;  // right: 8rpx;  width: 112rpx;  height: 119rpx;  z-index: 998;}.service-container {  position: fixed;  top: 0;  left: 0;  right: 0;  bottom: 0;  z-index: 999;  .service-mask {    position: absolute;    top: 0;    left: 0;    right: 0;    bottom: 0;    background-color: rgba(0, 0, 0, 0.7);  }  .service-section {    position: absolute;    transform: translate(-50%, -50%);    top: 50%;    left: 50%;    text-align: center;    .iconImg {      width: 578rpx;      height: 686rpx;    }    .iconClose {      position: absolute;      z-index: 1;      top: 34rpx;      right: 16rpx;      width: 44rpx;      height: 44rpx;    }  }}
 |