| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /* components/service/service.wxss */
- .iconSerivce {
- position: fixed;
- // bottom: 198rpx;
- // right: 8rpx;
- width: 84rpx;
- height: 103rpx;
- z-index: 2998;
- }
- .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: 590rpx;
- height: 848rpx;
- }
- .iconClose {
- position: absolute;
- z-index: 1;
- bottom: -100rpx;
- transform: translate(-50%, -50%);
- left: 50%;
- width: 60rpx;
- height: 60rpx;
- }
- }
- }
|