12345678910111213141516171819202122232425262728293031323334 |
- .picker-popup {
- z-index: 1002 !important;
- .picker-content{
- height: 55vh;
- background-color: #fff;
- border-radius: 30rpx 30rpx 0 0;
- .city-picker-btn {
- height: 100rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 30rpx;
- }
- .picker-view {
- height: calc(100% - 100rpx);
- text-align: center;
- .indicator-class {
- height: 100rpx;
- }
-
- .uni-picker-view-content {
- .item {
- text-align: center;
- line-height: 100rpx ;
- }
- }
- }
- }
- }
-
|