| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- .pickerMask {
- position: fixed;
- z-index: 998;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.6);
- }
- .r-dtpicker {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- /*height: 600upx;*/
- -webkit-transition: all 0.3s ease;
- transition: all 0.3s ease;
- -webkit-transform: translateY(100%);
- transform: translateY(100%);
- z-index: 998;
- }
- .r-dtpicker-show {
- -webkit-transform: translateY(0);
- transform: translateY(0);
- }
- .rdtBtn {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- padding: 20rpx 15rpx;
- background-color: #fff;
- position: relative;
- text-align: center;
- font-size: 32rpx;
- }
- .rdtBtn:after {
- content: ' ';
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- height: 1rpx;
- border-bottom: 1rpx solid #e5e5e5;
- color: #e5e5e5;
- -webkit-transform-origin: 0 100%;
- transform-origin: 0 100%;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- }
- .rdtBtn view{
- display: block;
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- color: #1aad19;
- }
- .rdtBtn view:first-child {
- text-align: left;
- color: #888;
- }
- .rdtBtn view:last-child {
- text-align: right;
- }
- .picker-item {
- text-align: center;
- line-height: 40rpx;
- font-size: 24rpx;
- }
- .mpvue-picker-view {
- position: relative;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 400rpx;
- background-color: rgba(255, 255, 255, 1);
- }
- .rangeBox{
- background: #fff;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- padding: 15rpx 0;
- font-size: 26rpx;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .rangeBox input{
- width: 180rpx;
- margin: 0 10rpx;
- text-align: center;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- min-height: auto;
- border-bottom: 1rpx solid #000;
- }
|