123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- /* pages/ucenter/chargemoneylog/chargemoneylog.wxss */
- page {
- background-color: #f4f4f4;
- height: 100%;
- overflow-y: hidden;
- }
- .title {
- background-color: #42b9b4;
- width: 100%;
- height: 88rpx;
- line-height: 88rpx;
- min-height: 88rpx;
- padding: 0 30rpx;
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #fff;
- vertical-align: text-bottom;
- }
- .title text {
- padding: 0 10rpx 0 0;
- display: inline-block;
- font-size: 24rpx;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- line-height: 24rpx;
- height: 24rpx;
- min-height: 24rpx;
- }
- .title .bold {
- font-style: italic;
- font-weight: bold;
- font-size: 28rpx;
- line-height: 28rpx;
- height: 28rpx;
- min-height: 28rpx;
- }
- .context {
- height: calc(100% - 88rpx);
- }
- .context_block {
- width: 100%;
- height: 32rpx;
- }
- .text_context {
- position: relative;
- height:281rpx;
- background: #fff;
- padding: 0 30rpx;
- margin: 0 20rpx 32rpx 20rpx;
- border-radius: 20rpx;
- box-shadow: 0rpx 4rpx 4rpx #d5d5d5;
- }
- .text_context.active {
- background-color: #ebebeb;
- }
- .charging_text_title {
- height: 105rpx;
- width: 100%;
- display: flex;
- }
- .charging_text_title1 {
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- image.card {
- margin: 39rpx 10rpx 39rpx 0;
- width: 40rpx;
- height: 27rpx;
- flex-shrink: 0;
- overflow: hidden;
- }
- image.car {
- margin: 39rpx 10rpx 39rpx 30rpx;
- width: 36rpx;
- height: 26rpx;
- flex-shrink: 0;
- overflow: hidden;
- }
- .text_context text {
- 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_context .bold {
- font-size: 28rpx;
- font-weight: bold;
- line-height: 45rpx;
- height: 45rpx;
- min-height: 45rpx;
- margin-top: 30rpx;
- margin-right: 10rpx;
- }
- text.inline {
- display: inline-block;
- }
- text.green{
- color: #18b15c;
- }
|