Feedback.scss 2.3 KB
.page{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #f6f6f6;
}
.titleall-box {
	display: flex;
	justify-content: space-between;
	padding: 40rpx 20rpx 20rpx 0;
	.titleall-left {
		font-size: 32rpx;
		font-weight: bold;
		display: flex;
		align-items: center;
		.titleall-left-line {
			width: 14rpx;
			height: 36rpx;
			border-radius: 0 10rpx 10rpx 0;
			background-color: #E60012;
			box-shadow: 0 0 10rpx 5rpx #fbdadc;
			margin-right: 20rpx;
		}
		text {
			font-size: 28rpx;
			color: #999999;
		}
	}
}
/* 反馈类型 */
.feedback-type{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 94%;
	height: 100rpx;
	margin: 20rpx auto;
	background-color: #FFFFFF;
	border-radius: 20rpx;
	padding: 0 4%;
	.feedback-type-left {
		color: #909090;
	}
	.title{
		display: flex;
		align-items: center;
		text{
			font-size: 26rpx;
		}
	}
	.picker{
		position: absolute;
		width: 100%;
		height: 100%;
		opacity: 0;
	}
	.more{
		display: flex;
		align-items: center;
		text{
			color: #000;
			font-size: 34rpx;
		}
		image {
			width: 20rpx;
			height: 20rpx;
			margin-left: 10rpx;
		}
	}
	.feedback-type-right {
		display: flex;
		align-items: center;
	}
}

/* 反馈内容 */
.feedback-data{
	width: 94%;
	height: 600rpx;
	margin: 20rpx auto;
	background-color: #FFFFFF;
	border-radius: 20rpx;
	.content{
		padding: 20rpx;
		textarea{
			width: 94%;
			height: 320rpx;
			background-color: #f6f6f6;
			border-radius: 20rpx;
			padding: 20rpx;
			font-size: 26rpx;
			color: #222222;
		}
	}
	.voucher-img{
		display: flex;
		align-items: center;
		padding: 0 20rpx;
		height: 240rpx;
		margin-top: 20rpx;
		.list{
			width: 33%;
			height: 100%;
			image{
				width: 160rpx;
				height: 160rpx;
				border-radius: 10rpx;
			}
		}
	}
}

/* 联系方式 */
.contact-way{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 94%;
	height: 100rpx;
	margin: 20rpx auto;
	background-color: #FFFFFF;
	border-radius: 20rpx;
	input{
		width: 100%;
		height: 100%;
		padding: 0 4%;
		font-size: 26rpx;
		color: #222222;
	}
}

/* 提交 */
.submit-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 94%;
	height: 80rpx;
	margin: 30rpx auto;
	background: #E60012;
	border-radius: 80rpx;
	text{
		color: #FFFFFF;
		font-size: 28rpx;
	}
}