123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- .container {
- display: flex;
- flex-direction: column;
- background-color: #f5f5f5;
- min-height: 100vh;
- padding-bottom: 30rpx;
- }
- .header {
- position: relative;
- width: 100%;
- height: 300rpx;
- }
- .header .background {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: #4285f4;
- }
- .back-icon {
- position: absolute;
- left: 30rpx;
- top: 80rpx;
- font-size: 40rpx;
- color: white;
- z-index: 10;
- }
- .header-title {
- text-align: center;
- font-size: 36rpx;
- margin-bottom: 20rpx;
- }
- /* .custom-nav {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- z-index: 5;
- } */
- .user-info-container {
- position: relative;
- margin-top: -100rpx;
- padding: 0 30rpx;
- top: -20rpx;
- width: 100%;
- box-sizing: border-box;
- }
- .user-info {
- background-color: transparent;
- color: white;
- padding: 20rpx 20rpx;
- width: 100%;
- }
- .user-name {
- font-size: 40rpx;
- font-weight: bold;
- margin-bottom: 20rpx;
- }
- .user-id, .user-address {
- display: flex;
- align-items: center;
- font-size: 28rpx;
- margin-bottom: 10rpx;
- color: rgba(255, 255, 255, 0.9);
- }
- .id-icon, .address-icon {
- width: 30rpx;
- height: 30rpx;
- margin-right: 10rpx;
- }
- .bill-list-container {
- flex: 1;
- padding: 20rpx;
- margin-top: 30rpx;
- }
- .bill-date-section {
- font-size: 32rpx;
- font-weight: bold;
- padding: 20rpx 10rpx;
- color: #333;
- }
- .bill-card {
- background-color: white;
- border-radius: 12rpx;
- padding: 30rpx;
- margin-bottom: 20rpx;
- box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.05);
- }
- .bill-info {
- display: flex;
- align-items: center;
- }
- .bill-icon {
- margin-right: 20rpx;
- }
- .bill-icon image {
- width: 60rpx;
- height: 60rpx;
- }
- .bill-details {
- flex: 1;
- }
- .bill-number {
- font-size: 30rpx;
- font-weight: bold;
- margin-bottom: 10rpx;
- }
- .bill-usage, .bill-payment-time {
- font-size: 26rpx;
- color: #666;
- margin-top: 6rpx;
- }
- .bill-amount-status {
- text-align: right;
- }
- .bill-amount {
- font-size: 36rpx;
- font-weight: bold;
- }
- .bill-status {
- font-size: 26rpx;
- margin-top: 10rpx;
- }
- .paid {
- color: #333;
- }
- .unpaid {
- color: #ff4d4f;
- }
- .bill-action {
- margin-top: 20rpx;
- display: flex;
- justify-content: flex-end;
- }
- .pay-btn {
- background-color: #ff4d4f;
- color: white;
- font-size: 28rpx;
- padding: 10rpx 40rpx;
- border-radius: 30rpx;
- line-height: 1.5;
- }
- .detail-btn {
- background-color: #f0f0f0;
- color: #333;
- font-size: 28rpx;
- padding: 10rpx 40rpx;
- border-radius: 30rpx;
- line-height: 1.5;
- }
- .list-end {
- text-align: center;
- color: #999;
- font-size: 26rpx;
- padding: 30rpx 0;
- }
- .empty-list {
- text-align: center;
- color: #999;
- font-size: 28rpx;
- padding: 100rpx 0;
- }
|