| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- /* pages/driver/refuel-records/refuel-records.wxss */
- .container {
- background-color: #f8f8f8;
- min-height: 100vh;
- padding: 40rpx 20rpx 140rpx;
- font-size: 28rpx;
- line-height: 1.5;
- }
- /* 页面标题 */
- .page-title {
- font-size: 36rpx;
- font-weight: bold;
- margin-bottom: 40rpx;
- text-align: center;
- color: #333;
- }
- /* 时间选择区域 */
- .time-selector {
- background-color: white;
- border-radius: 20rpx;
- padding: 30rpx;
- margin-bottom: 40rpx;
- box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.05);
- display: flex;
- justify-content: space-between;
- align-items: center;
- gap: 30rpx;
- }
- .date-input {
- flex: 1;
- padding: 20rpx 24rpx;
- border: 2rpx solid #e0e0e0;
- border-radius: 10rpx;
- font-size: 28rpx;
- background-color: #f8f8f8;
- color: #333;
- }
- .query-btn {
- padding: 20rpx 40rpx;
- background-color: #0D7EE7;
- color: white;
- border: none;
- border-radius: 10rpx;
- font-size: 28rpx;
- font-weight: bold;
- white-space: nowrap;
- line-height: 1.2;
- }
- /* 加油流水列表 */
- .record-list {
- background-color: white;
- border-radius: 20rpx;
- overflow: hidden;
- box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.05);
- }
- .record-item {
- padding: 30rpx;
- border-bottom: 2rpx solid #f0f0f0;
- }
- .record-item:last-child {
- border-bottom: none;
- }
- /* 第一行:交易时间和订单编号 */
- .record-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .record-time {
- font-size: 28rpx;
- color: #666;
- }
- .order-id {
- font-size: 24rpx;
- color: #999;
- }
- /* 第二行:油品信息和单价 */
- .product-info {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .product-name {
- font-size: 32rpx;
- font-weight: bold;
- color: #333;
- }
- .unit-price {
- font-size: 28rpx;
- color: #666;
- }
- /* 第三行:升数和支付方式 */
- .amount-payment {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .amount {
- font-size: 28rpx;
- color: #666;
- }
- .payment-method {
- font-size: 28rpx;
- color: #666;
- }
- /* 第四行:应收款和状态 */
- .amount-status {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .receivable {
- font-size: 32rpx;
- font-weight: bold;
- color: #0D7EE7;
- }
- .empty-box {
- text-align: center;
- margin-top: 200rpx;
- color: #999;
- }
- .empty-text {
- font-size: 30rpx;
- }
- .status {
- font-size: 24rpx;
- padding: 8rpx 16rpx;
- border-radius: 24rpx;
- background-color: #e8f5e8;
- color: #0D7EE7;
- }
- /* 第五行:用户信息 */
- .user-info {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 28rpx;
- color: #666;
- }
- .card-footer{
- display:flex;
- justify-content:space-between;
- align-items:center;
- margin-top:20rpx;
- }
- .cancel-btn{
- background: #fff1f0;
- color:#ff4d4f;
- border:none;
- border-radius: 30rpx;
- font-size:24rpx;
- padding:8rpx 28rpx;
- }
- .cancel-btn::after{
- border:none;
- }
|