1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /* required by usingComponents */
- /* pages/trip_detail/trip_detail.wxss */
- page {
- background-color: #f2f3f5;
- padding-top: 20rpx;
- }
- .trip-detail {
- padding: 0 20rpx;
- }
- .top-map {
- padding: 30rpx;
- border-radius: 12rpx;
- font-weight: 500;
- margin-bottom: 30rpx;
- background-color: #ffffff;
- }
- .top-map-title {
- font-size: 32rpx;
- font-weight: 500;
- margin-bottom: 30rpx;
- }
- #map {
- height: 250rpx;
- width: 100%;
-
- }
- .bike-no {
- float: right;
- }
- .bill-detail {
- font-size: 30rpx;
- font-weight: 500;
- margin-top: 30rpx;
- margin-bottom: 20rpx;
- }
- .bill-dec{
- font-size: 26rpx;
- color: #999999;
- margin-bottom: 40rpx;
- }
- .total-money{
- text-align: right;
- padding-bottom: 40rpx;
- border-bottom: solid 1rpx #f2f3f5;
- margin-bottom: 40rpx;
- font-size: 30rpx;
- }
- .total-num{
- font-size: 40rpx;
- display: inline-block;
- margin: 0 5rpx;
- }
- .guize{
- height: 80rpx;
- width:45%;
- text-align: center;
- margin: 0 auto;
- border-radius: 10rpx;
- line-height: 80rpx;
- margin-top: 70rpx;
- border: solid 2rpx #999999;
- font-size: 28rpx;
- }
- .problem{
- height: 100rpx;
- text-align: center;
- line-height: 100rpx;
- font-size: 24rpx;
- color: #999999;
- }
|