12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /* pages/queueCar/index.wxss */
- .container {
- padding-top: 1px;
- }
- .pdInfo {
- padding: 30rpx;
- background-color: #fff;
- box-sizing: border-box;
- border-radius: 20rpx;
- box-shadow: 1px 2px 20rpx #eee;
- }
- .selfInfo {
- line-height: 40rpx;
- font-size: 32rpx;
- color: #8d8d8d;
- padding-bottom: 16rpx;
- border-bottom: 1px solid #F4F4F4;
- }
- .selfCarNum {
- color: #333;
- font-size: 52rpx;
- }
- .selfCarNum text {
- margin-left: 10rpx;
- }
- .goodsInfo,
- .selfInfo > view {
- margin: 14rpx 0;
- }
- .goodsInfo text,
- .driverInfo text {
- display: inline-block;
- height: 24rpx;
- line-height: 24rpx;
- margin-right: 20rpx;
- padding-right: 20rpx;
- border-right: 1px solid #8d8d8d;
- }
- .goodsInfo text:last-child,
- .driverInfo text:last-child {
- border-right: 0 none;
- }
- .pdOtherInfo {
- margin: 60rpx 0 60rpx;
- padding-top: 120rpx;
- text-align: center;
- position: relative;
- }
- .nowCarNum {
- font-size: 46rpx;
- color: #4B70EA;
- font-weight: bold;
- margin-bottom: 20rpx;
- }
- .nowTxt {
- padding: 0 30rpx;
- display: inline-block;
- height: 46rpx;
- line-height: 46rpx;
- font-size: 24rpx;
- border-radius: 23rpx;
- color: #333;
- background-color: #f5f5f5;
- }
- .otherInfo {
- position: absolute;
- right: 0;
- top: 10rpx;
- font-size: 24rpx;
- color: #8d8d8d;
- }
- .otherInfo view {
- color: #333;
- font-size: 38rpx;
- }
- .bottomBtn1 {
- position: absolute;
- left: 115rpx;
- bottom: 200rpx;
- }
- .waitingType {
- font-size: 52rpx;
- color: #07c160;
- font-weight: bold;
- margin-bottom: 20rpx;
- }
- .waitingType0 {
- color: #ee0a24 !important;
- }
- .selfCarNum {
- display: flex;
- align-items: center;
- font-weight: bold;
- }
|