participation.scss 2.71 KB
.page{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.more {
	height: 74rpx;
	background-color: #fff;
	border-radius: 21rpx;
	padding: 24rpx 32rpx 18rpx;
	margin: 26rpx 24rpx 0;
}
.head-search{
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	margin: 20rpx 24rpx;
	background-color: #FFFFFF;
	border-radius: 35rpx;
	padding: 0 10rpx;
	border: 2rpx solid #E8E8E8;
	.u-search {
		position: relative;
	}
	.u-btn {
		border: unset;
		border: 0px transparent;
		height: 46rpx;
		width: 88rpx;
		font-size: 24rpx;
		border-radius: 35rpx;
	}
}
/* 订单列表 */
.screen-list {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 20rpx;
	width: 100%;
	.list {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 25%;
		height: 100%;
		text {
			font-size: 26rpx;
			color: #555555;
		}
		image {
			width: 30rpx;
			height: 30rpx;
			margin-left: 10rpx;
		}
	}
}

.goods-data{
	width: 100%;
	padding: 0 24rpx;
	// height: calc(100% - 300rpx - 120rpx);
	// overflow-y: scroll;
	.goods-list{
		width: 100%;
		// height: 100%;
		.good-item {
			.info {
				margin: 20rpx 10rpx 26rpx;
				.title {
					font-weight: 700;
					line-height: 36rpx;
					color: #000;
					margin-bottom: 10rpx;
				}
				.name {
					font-size: 24rpx;
					line-height: 30rpx;
					color: #3D3D3D;
					margin-bottom: 12rpx;
				}
			}
		}
		.list{
			display: flex;
			margin-bottom: 40rpx;
			.thumb{
				display: flex;
				// align-items: center;
				width: 36%;
				image{
					width: 230rpx;
					height: 190rpx;
					border-radius: 10rpx;
				}
			}
			
			.item{
				width: 60%;
				margin-left: 4%;
				.title{
					display: flex;
					align-items: center;
					width: 100%;
					margin: 20rpx 0;
					.color{
						color: #A8A8A8;
					}
				}
				.canyu{
					width: 100%;
					padding: 30rpx 20rpx;
					background-color: #3F9B6A;
					height: 70rpx;
					text-align: center;
					line-height: 15rpx;
					color: #fff;
				}
				text{
					font-size: 30rpx;
					// font-weight: bold;
					color: #222222;
				}
				
			}
			
		}
		.goods-border{
			padding: 30rpx;
			border: 1px solid #F3F3F3;
		}
	}
}
/* 保存按钮 */
.page-footer{
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 120rpx;
	background-color: #FFFFFF;
	padding: 20rpx 20rpx;
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom);
	.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;
			}
		}
	}
}