| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 | .box{		width: 100%;		.top{			width: 100%;			display: flex;			align-items: center;			justify-content: center;			.title{				font-size: 50rpx;				font-weight: bold;				color: #191919;				margin: 100rpx;			}		}		.item{			display: flex;			align-items: center;			margin: 0 60rpx;			padding: 10rpx 0;			min-height: 110rpx;			border-bottom: 1rpx solid #f5f5f5;			.l{				flex: 4;				display: flex;				align-items: center;				color: #191919;				padding-right: 10rpx;			}			.r{				flex: 10;				display: flex;				align-items: center;				.btn{					color: #0080ff;					font-size: 28rpx;				}				.unit{					color: #191919;					font-size: 28rpx;					border: 1rpx solid #eee;					padding: 10rpx 15rpx;					border-radius: 5rpx;				}				.img{					margin: 30rpx 0;				}				.p-picker{					width: 100%;					display: flex;					position: relative;					background-color: #f7f7f7;					padding: 20rpx;					border-radius: 5rpx;					.p-text{						color: #191919;					}					.p-icon{						position: absolute;						right: 20rpx;						top: 50%;						transform: translateY(-50%);					}				}			}		}	}	.common-btn,.common-btn2{		margin: 100rpx auto;		width: 400rpx;		height: 88rpx;		font-weight: bold;		display: flex;		align-items: center;		justify-content: center;		border-radius: 10rpx;	}	.common-btn{		color: #fff;		font-size: 32rpx;		background-color: #0080ff;	}	.common-btn2{		color: #191919;		font-size: 28rpx;		background-color: #fff;		border: 1px solid #eee;	}
 |