| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- .detePickerHeader {
- position: relative;
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 750rpx;
- height: 100rpx;
- padding: 0 30rpx;
- box-sizing: border-box;
- text {
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: var(--assist);
- }
- .type {
- display: flex;
- width: 384rpx;
- height: 80rpx;
- border: 1rpx solid var(--assist);
- box-sizing: border-box;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- border-radius: 4rpx;
- overflow: hidden;
- .option {
- height: 100%;
- width: 50%;
- padding: 10rpx 0 0 20rpx;
- box-sizing: border-box;
- font-size: 20rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: var(--assist);
- .time {
- margin-top: 4rpx;
- }
- }
- .active-op {
- background-color: var(--assist);
- color: #fff;
- }
- }
- }
- .time-range {
- display: flex;
- .default {
- font-family: PingFang SC, PingFang SC;
- font-size: 24rpx;
- color: #999999;
- }
- .left {
- display: flex;
- align-items: center;
- flex-shrink: 0;
- .iconfont {
- font-family: PingFang SC, PingFang SC;
- font-size: 24rpx;
- color: #333333;
- }
- .iconfont::before {
- font-size: 28rpx;
- margin-right: 20rpx;
- }
- .dateType {
- min-width: 128rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 24rpx;
- color: #999999;
- text-align: center;
- }
- .blue {
- color: #3874F6;
- }
- }
- .right {
- display: flex;
- flex: 1;
- width: 0;
- flex-shrink: 0;
- justify-content: space-between;
- .iconfont {
- transform: rotate(-90deg);
- color: #999999;
- }
- .range {
- display: flex;
- align-items: center;
- font-family: PingFang SC, PingFang SC;
- font-size: 24rpx;
- color: #3874F6;
- .middle {
- color: #999999;
- padding: 0 15rpx;
- }
- }
- }
- }
|