| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /* pages/userlist/index.wxss */
- page{
- width: 100%;
- height: 100vh;
- background: linear-gradient(to bottom, #F0F5F5 -40%, #F0F5F5 40%,#F0F5F5 100%);
- padding: 0rpx 22rpx;
- box-sizing: border-box;
-
- }
- .driver-info {
- background-color: white;
- border-radius: 16rpx;
- padding: 20rpx;
- box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
- display: flex;
- align-items: center;
- margin-top: 26rpx;
- }
-
- .driver-avatar {
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- }
-
- .driver-details {
- margin-left: 24rpx;
- flex: 1;
- }
-
- .driver-name {
- font-size: 32rpx;
- font-weight: bold;
- }
- .driver-car {
- font-size: 28rpx;
- color: #999999;
- margin-top: 8rpx;
- }
-
- .driver-arrive {
- font-size: 28rpx;
- /* color: #2C85FF; */
- /* color: #666; */
- color: #999999;
-
- margin-top: 8rpx;
- }
-
- .cancel-btn {
- width: 180rpx;
- height: 64rpx;
- line-height: 64rpx;
- font-size: 28rpx;
- color: #FF5252;
- border: 1rpx solid #FF5252;
- background-color: white;
- border-radius: 32rpx;
- }
- .driverpopup{
- width: 100%;
- height: 600rpx;
- padding: 20rpx;
- padding-top:100rpx;
- box-sizing: border-box;
- }
- .driverpopup_box{
- width: 100%;
- height: 100rpx;
- align-items: center;
- }
- .picker{
- width: 100%;
- height: 100rpx;
- align-items: center;
- }
- .botton{
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .botton_box{
- width: 400rpx;
- height: 70rpx;
- margin-top: 100rpx;
- font-size: 28rpx;
- border-radius: 10rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #ffffff;
- background-color: #2C85FF;
- }
|