123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- /* components/parking-order.wxss */
- .popup-mask {
- /* width: 800rpx;
- height: 1200rpx; */
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.6);
- display: flex;
- justify-content: center;
- align-items: center;
- z-index: 99998;
- }
- .popup-content {
- width: 65%;
- background: #fff;
- border-radius: 12rpx;
- padding: 24rpx;
- position: absolute;
- z-index: 99999;
- }
- .popup-title {
- text-align: center;
- font-size: 34rpx;
- /* margin-bottom: 20rpx; */
- }
- .station-section {
- display: flex;
- align-items: flex-start;
- padding: 0 10rpx;
- margin-bottom: 10rpx;
- }
- .station-icon {
- width: 40rpx;
- height: 40rpx;
- margin-right: 10rpx;
- margin-top: 4rpx;
- }
- .station-info {
- flex: 1;
- }
- .station-name {
- font-size: 30rpx;
- color: #333;
- margin-bottom: 4rpx;
- }
- .station-id {
- font-size: 28rpx;
- color: #999;
- }
- .pile-info {
- font-size: 24rpx;
- color: #333;
- padding: 0 10rpx;
- font-weight: 600;
- }
- .time-info {
- margin-bottom: 10rpx;
- }
- .info-row {
- font-size: 28rpx;
- color: #333;
- padding: 0 10rpx;
- text-align: left;
- }
- .label {
- display: inline;
- font-weight: 600;
- }
- .value {
- display: inline;
- color: #AAAAAA;
- }
- .fee-info {
- margin-bottom: 10rpx;
- }
- .warning-text {
- color: #E99D42;
- font-size: 28rpx;
- padding: 0 10rpx;
- margin-bottom: 50rpx;
- line-height: 1.4;
- }
- .warning-code {
- color: #999;
- font-size: 26rpx;
- text-align: center;
- margin-bottom: 20rpx;
- }
- .confirm-btn {
- background: #21adff;
- color: #fff;
- font-size: 28rpx;
- height: 66rpx;
- line-height: 66rpx;
- border-radius: 8rpx;
- margin-bottom: 16rpx;
- width: 70% !important;
- padding: 0;
- border: none;
- }
- .contact-link {
- color: #848484;
- font-size: 28rpx;
- text-align: center;
- }
- .chargpile {
- font-size: 22rpx;
- line-height: 42rpx;
- height: 42rpx;
- min-height: 42rpx;
- color: #9d9d9d;
- /* margin-left: -50rpx; */
- }
- .charging {
- width: 62rpx;
- height: 62rpx;
- margin: 30rpx 30rpx 30rpx 0;
- flex-shrink: 0;
- overflow: hidden;
- }
- .charging image {
- width: 62rpx;
- height: 62rpx;
- }
- .charging_text_title {
- height: 105rpx;
- width: 100%;
- display: flex;
- margin-bottom: 20rpx;
- }
- .charging_text_title1 {
- /* width: 100%; */
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- text .occupyTest {
- margin: 0 0 20rpx 0;
- display: block;
- font-size: 24rpx;
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #545253;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- line-height: 24rpx;
- height: 24rpx;
- min-height: 24rpx;
- }
- text.bold {
- font-weight: bold;
- line-height: 50rpx;
- height: 50rpx;
- min-height: 50rpx;
- margin: 20rpx 0 0 0;
- display: block;
- font-size: 32rpx;
- }
- text.inline{
- display: inline-block;
- margin:0;
- }
- .h1 {
- font-size: 22rpx;
- line-height: 42rpx;
- height: 42rpx;
- min-height: 42rpx;
- color: #9d9d9d;
- margin: 0;
- }
|