open-setting-location.css 798 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. page {
  2. background: #fbfbfb;
  3. }
  4. .open-setting-view {
  5. background: hsla(0, 0%, 0%, 0.1);
  6. position: fixed;
  7. top: 0;
  8. /* #ifdef H5 */
  9. top: calc(88rpx + env(safe-area-inset-top));
  10. /* #endif */
  11. left: 0;
  12. width: 100%;
  13. height: 100%;
  14. text-align: center;
  15. z-index: 1000000;
  16. }
  17. .open-setting-view .content {
  18. margin: 0 auto;
  19. width: 360rpx;
  20. height: 200rpx;
  21. padding: 50rpx;
  22. border-radius: 12rpx;
  23. margin-top: 70%;
  24. position: relative;
  25. }
  26. .open-setting-view .content button {
  27. margin-top: 15rpx;
  28. }
  29. .open-setting-view .content .value {
  30. margin-top: 5rpx;
  31. }
  32. .open-setting-view .content .value text {
  33. font-weight: 500;
  34. color: #333;
  35. }
  36. .open-setting-loding {
  37. padding-top: 35%;
  38. }
  39. .open-setting-loding image {
  40. margin: 0 auto;
  41. }