12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- .lys-date {
- position: fixed;
- z-index: 999;
- top: 0;
- left: 0;
- right: 0;
- bottom: constant(safe-area-inset-bottom); /* 兼容 iOS < 11.2 */
- bottom: env(safe-area-inset-bottom); /* 兼容 iOS >= 11.2 */
- background-color: rgba(0, 0, 0, 0.4);
- &-con {
- position: fixed;
- z-index: 998;
- bottom: constant(safe-area-inset-bottom); /* 兼容 iOS < 11.2 */
- bottom: env(safe-area-inset-bottom); /* 兼容 iOS >= 11.2 */
- left: 0;
- right: 0;
- height: 700rpx;
- background-color: #fff;
- border-top-left-radius: 20rpx;
- border-top-right-radius: 20rpx;
- &-title {
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 30rpx;
- background-color: #fafafa;
- margin-bottom: 10rpx;
- border-top-left-radius: 20rpx;
- border-top-right-radius: 20rpx;
- & > view:nth-child(1) {
- width: 100rpx;
- color: #999999;
- }
- & > view:nth-child(2) {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- font-size: 30rpx;
- }
- & > view:nth-child(3) {
- width: 100rpx;
- padding: 10rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 10%;
- background-color: blue;
- color: #fff;
- }
- }
- &-sel {
- width: 690rpx;
- height: 60rpx;
- margin: 0 auto;
- padding: 2rpx 6rpx;
- border-radius: 6rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #f3f4f8;
- & > view {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .sel {
- background-color: #fff;
- border-radius: 6rpx;
- }
- }
- &-picker {
- .picker-view {
- height: 450rpx;
- }
- .item {
- line-height: 100rpx;
- text-align: center;
- }
- }
- }
- }
|