Blame view

pages/propertyPay/propertyPayList/propertyPayList.scss 2.02 KB
abd11604   monkeyhouyi   物业缴费
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
  .page{
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  	padding: 0 20rpx;
  }
  .search-box {
  	background-color: #FFFFFF;
  	border-radius: 20rpx;
  	padding: 20rpx;
  	margin-top: 26rpx;
  	.search-total {
  		display: flex;
  		flex-direction: row;
  		align-items: flex-end;
  		justify-content: space-between;
  		font-size: 24rpx;
  		padding: 0 10rpx;
  		margin-top: 20rpx;
  		.left {
  			color: #757575;
  			.price-total {
  				color: #0FBB59;
  				font-size: 50rpx;
  				font-weight: 700;
  			}
  		}
  		.right {
  			width: 30vw;
  			text-align: right;
  		}
  	}
  }
  .price {
  	color: #0FBB59;
  	font-size: 32rpx;
  	font-weight: 700;
  }
  /* 记录列表 */
  .record-list{
  	margin-top: 20rpx;
  	// margin: 0 20rpx;
  	.record-list-box {
  		background-color: #FFFFFF;
  		border-radius: 20rpx;
  		padding: 20rpx 30rpx;
  		margin-bottom: 20rpx;
  		width: 100%;
  		.list {
  			width: 100%;
  			display: flex;
  			padding: 20rpx 30rpx;
  			border-bottom: #f6f6f6 solid 1rpx;
  			align-items: center;
  			.list-item {
  				flex: 1;
  			}
  			
  			.list-info {
  				display: flex;
  				align-items: center;
  				.img {
  					width: 72rpx;
  					height: 72rpx;
  					border-radius: 50%;
  					overflow: hidden;
  					image {
  						width: 100%;
  						height: 100%;
  					}
  				}
  				.info-items {
  					margin-left: 20rpx;
  					.info-title {
  						font-weight: 700;
  						font-size: 28rpx;
  						line-height: 40rpx;
  						
  					}
  					.info-item {
  						font-size: 24rpx;
  						color: #808080;
  						margin-top: 20rpx;
  					}
  				}
  			}
  			
  		}
  	}
  }
  .page-footer{
  	position: fixed;
  	left: 0;
  	bottom: 0;
  	width: 100%;
  	height: 120rpx;
  	background-color: #FFFFFF;
  	padding: 0 20rpx;
  	padding-bottom: constant(safe-area-inset-bottom);
  	padding-bottom: env(safe-area-inset-bottom);
  	z-index: 999;
  	.footer-buy{
  		display: flex;
  		align-items: center;
  		justify-content: space-between;
  		width: 100%;
  		height: 100%;
  		.cart-add{
  			display: flex;
  			align-items: center;
  			justify-content: center;
  			width: 100%;
  			height: 70rpx;
  			background-color: #3f9b6a;
  			text{
  				font-size: 28rpx;
  				color: #FFFFFF;
  			}
  		}
  	}
  }