xw.scss 1.59 KB
.listBox{
	position: relative;
	z-index: 1;
}
.content {
	width: 100%;
}
/* 订单列表 */
.order-list{
	width: 100%;
	padding-bottom: 10rpx;
	.list{
		padding: 30rpx;
		background-color: #FFFFFF;
		border-radius: 20rpx;
		margin: 25rpx;
		.title-status{
			display: flex;
			align-items: center;
			justify-content: space-between;
			width: 100%;
			height: 100rpx;
			.title{
				display: flex;
				align-items: center;
				text{
					font-size: 26rpx;
					color: #A7A7A7;
				}
				image {
					width: 18rpx;
					height: 18rpx;
					margin-left: 10rpx;
				}
			}
			.status{
				display: flex;
				align-items: center;
				text{
					font-size: 26rpx;
					color: #EE8952;
				}
			}
		}
		.goods-list{
			width: 100%;
			.goods{
				display: flex;
				justify-content: space-between;
				width: 100%;
				position: relative;
					.goods-name{
						width: 65%;
						font-size: 26rpx;
						color: #A7A7A7;
						.goods-name-title {
							font-size: 30rpx;
							color: #3d3d3d;
							font-weight: bold;
							margin-bottom: 20rpx;
						}
					}
				.btn{
					width: 200rpx;
					height: 58rpx;
					position: absolute;
					bottom: 0;
					right: 0;
					text{
						font-size: 28rpx;
						color: #fff;
						position: absolute;
						width: 200rpx;
						line-height: 58rpx;
						text-align: center;
						z-index: 1;
					}
					image {
						width: 200rpx;
						height: 58rpx;
						position: absolute;
						z-index: 0;
						box-shadow: 5rpx 10rpx 20rpx 0 #b7c8ff;
						border-radius: 100rpx;
					}
				}
			}
		}
	}
}