123456789101112131415161718 |
- /* mycustomer/pages/makecall/makecall.wxss */
- .makeCall {
- width: 100vw;
- height: 100vh;
- background-color: #fff;
- }
- .makeCall > view {
- position: fixed;
- top: 30%;
- left: 50%;
- transform: translate(-50%,-50%);
- border: 2rpx solid #249EFB;
- border-radius: 50%;
- padding: 40rpx;
- }
- .makeCall > view > image {
- width: 300rpx;
- }
|