12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /* pages/rechargeRecord/rechargeRecord.wxss */
- .record-content {
- width: 100%;
- height: 100%;
- background-color: #f7f7f7;
- padding-top: 1rpx;
- }
- .main-content {
- width: 690rpx;
- min-height: 100%;
- margin: 20rpx auto 0;
- }
- .record-item {
- width: 100%;
- height: 188rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- margin-bottom: 20rpx;
- }
- .icon {
- width: 80rpx;
- height: 80rpx;
- margin: 0 22rpx;
- }
- .image {
- width: 100%;
- height: 100%;
- }
- .center {
- width: 500rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
- }
- .info-item {
- font-size: 26rpx;
- height: 36rpx;
- }
- .carno {
- margin: 10rpx 0;
- color: #999;
- }
- .time {
- color: #999;
- }
- .title {
- color: #333333;
- }
- .count {
- font-size: 26rpx;
- font-weight: 400;
- color: var(--maincolor);
- margin-right: 20rpx;
- }
|