propertyPayList.scss 2.02 KB
.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;
			}
		}
	}
}