1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /* components/w-picker/index.wxss */
- .van-picker {
- --main-color: #1cacf1 !important;
- }
- .van-picker__toolbar,
- .toolbar-top {
- margin: 0 14rpx !important;
- padding: 0 14rpx !important;
- border-bottom: 2rpx solid #f2f2f2;
- height: auto !important;
- line-height: normal !important;
- }
- .van-picker__cancel,
- .van-picker__confirm,
- .toolbar-cancel {
- font-size: 32rpx !important;
- padding: 28rpx 0 !important;
- color: #777777 !important;
- }
- .van-picker__confirm {
- color: var(--main-color) !important;
- }
- .toolbar-top {
- --main-color: #1cacf1 !important;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin: 0 14rpx !important;
- padding: 0 14rpx !important;
- border-bottom: 2rpx solid #f2f2f2;
- height: auto !important;
- line-height: normal !important;
- .toolbar-confirm {
- color: var(--main-color) !important;
- }
- }
- .van-picker-column__item--selected {
- font-weight: 600;
- font-size: 32rpx;
- color: var(--main-color) !important;
- }
- .van-picker-column {
- position: relative;
- z-index: 1;
- }
- .van-picker__frame {
- z-index: 0 !important;
- &::after {
- background: #f6f6f6;
- border-radius: 8px;
- }
- }
- .searchList1 {
- .searchSection {
- padding: 20rpx;
- }
- }
- .pickerSection {
- position: relative;
- }
- .empty-box {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- z-index: 10;
- background-color: #fff;
- padding-top: 30rpx;
- .w-empty__img {
- width: 320rpx;
- height: 320rpx;
- }
- }
|