payDetail.scss 1 KB
.page{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 24rpx 24rpx 0;
}
.content {
	width: 100%;
	background-color: #fff;
	padding: 0 34rpx;
	border-radius: 16rpx;
	margin-bottom: 20rpx;
	.form-item {
		display: flex;
		align-items: center;
		justify-content: space-between;
		line-height: 50rpx;
		padding: 6rpx 0;
		.left {
			color: #808080;
		}
	}
	:last-child {
		border-bottom: unset;
	}
	.list-info {
		width: 100%;
		display: flex;
		align-items: center;
		padding: 26rpx 0;
		border-bottom: #f6f6f6 solid 1rpx;
		.img {
			width: 80rpx;
			height: 80rpx;
			border-radius: 50%;
			overflow: hidden;
			image {
				width: 100%;
				height: 100%;
			}
		}
		.info-items {
			width: calc(100% - 100rpx);
			margin-left: 20rpx;
			font-size: 24rpx;
			.info-item {
				width: 100%;
				display: flex;
				flex-direction: row;
				align-items: center;
				justify-content: space-between;
				// line-height: 50rpx;
				padding: 8rpx 10rpx;
				.price {
					color: #0FBB59;
				}
			}
		}
	}
}