1
0

makecall.wxss 356 B

123456789101112131415161718
  1. /* mycustomer/pages/makecall/makecall.wxss */
  2. .makeCall {
  3. width: 100vw;
  4. height: 100vh;
  5. background-color: #fff;
  6. }
  7. .makeCall > view {
  8. position: fixed;
  9. top: 30%;
  10. left: 50%;
  11. transform: translate(-50%,-50%);
  12. border: 2rpx solid #249EFB;
  13. border-radius: 50%;
  14. padding: 40rpx;
  15. }
  16. .makeCall > view > image {
  17. width: 300rpx;
  18. }