index.acss 832 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .location-tip {
  2. position: fixed;
  3. bottom: 117rpx;
  4. z-index: 999;
  5. display: flex;
  6. align-items: center;
  7. box-sizing: border-box;
  8. margin: 0 24rpx;
  9. padding: 12rpx 24rpx;
  10. color: #fff;
  11. background-color: rgba(0, 0, 0, 0.75);
  12. border-radius: 16rpx;
  13. }
  14. .location-tip .location-tip-text {
  15. flex: 1;
  16. margin-right: 49rpx;
  17. font-size: 30rpx;
  18. line-height: 1.4;
  19. }
  20. .location-tip .location-tip-btn-enable {
  21. display: inline-flex;
  22. align-items: center;
  23. box-sizing: border-box;
  24. height: 49rpx;
  25. margin-right: 61rpx;
  26. padding: 8rpx 26rpx;
  27. color: #333;
  28. font-size: 24rpx;
  29. background-color: #fff;
  30. border-radius: 8rpx;
  31. }
  32. .location-tip .location-tip-btn-close {
  33. position: absolute;
  34. top: 20rpx;
  35. right: 24rpx;
  36. height: auto;
  37. color: #999;
  38. line-height: 24.8rpx;
  39. background-color: transparent;
  40. border: none;
  41. }