1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .location-tip {
- position: fixed;
- bottom: 117rpx;
- z-index: 999;
- display: flex;
- align-items: center;
- box-sizing: border-box;
- margin: 0 24rpx;
- padding: 12rpx 24rpx;
- color: #fff;
- background-color: rgba(0, 0, 0, 0.75);
- border-radius: 16rpx;
- }
- .location-tip .location-tip-text {
- flex: 1;
- margin-right: 49rpx;
- font-size: 30rpx;
- line-height: 1.4;
- }
- .location-tip .location-tip-btn-enable {
- display: inline-flex;
- align-items: center;
- box-sizing: border-box;
- height: 49rpx;
- margin-right: 61rpx;
- padding: 8rpx 26rpx;
- color: #333;
- font-size: 24rpx;
- background-color: #fff;
- border-radius: 8rpx;
- }
- .location-tip .location-tip-btn-close {
- position: absolute;
- top: 20rpx;
- right: 24rpx;
- height: auto;
- color: #999;
- line-height: 24.8rpx;
- background-color: transparent;
- border: none;
- }
|