Feedback.scss 2.57 KB
.page{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #f6f6f6;
	padding-bottom: 100rpx;
}
.feedback-top {
	color: #577EFF;
	width: 70%;
	margin: 40rpx auto;
	text-align: center;
	font-size: 28rpx;
}
.titleall-box {
	display: flex;
	justify-content: space-between;
	padding-bottom: 20rpx;
	.titleall-left {
		font-size: 32rpx;
		font-weight: bold;
		display: flex;
		align-items: center;
		color: #577EFF;
		.titleall-left-line {
			width: 16rpx;
			height: 36rpx;
			border-radius: 100rpx;
			background: -webkit-gradient(linear, left top, right top, from(#527DFE), to(#5D93FE));
			background: -o-linear-gradient(left, #527DFE, #5D93FE);
			background: linear-gradient(to right, #527DFE, #5D93FE);
			margin-right: 20rpx;
		}
	}
}
/* 反馈类型 */
.feedback-type{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 60rpx;
	.title{
		display: flex;
		align-items: center;
		text{
			font-size: 28rpx;
			color: #000;
		}
	}
	.picker{
		position: absolute;
		width: 100%;
		height: 100%;
		opacity: 0;
	}
	.more{
		display: flex;
		align-items: center;
		text{
			color: #222222;
			font-size: 34rpx;
		}
	}
}

/* 反馈内容 */
.feedback-data{
	width: 94%;
	margin: 20rpx auto;
	background-color: #FFFFFF;
	border-radius: 20rpx;
	padding: 20rpx;
	.feedback-data-title {
		margin: 20rpx 0;
		font-size: 28rpx;
		color: #000;
	}
	.content{
		textarea{
			width: 100%;
			height: 320rpx;
			background-color: #f6f6f6;
			border-radius: 20rpx;
			padding: 20rpx;
			font-size: 26rpx;
			color: #222222;
		}
	}
	.voucher-img{
		display: flex;
		align-items: center;
		margin-top: 20rpx;
		.list{
			width: 33%;
			height: 100%;
			image{
				width: 160rpx;
				height: 160rpx;
				border-radius: 10rpx;
			}
		}
	}
}
.feedback-line {
	width:98%;
	margin: 20rpx 0;
	border-bottom: 2rpx dashed #E5E5E5;
}
/* 联系方式 */
.contact-way{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 94%;
	margin-top: 10rpx;
	input{
		width: 100%;
		height: 100%;
		font-size: 26rpx;
		color: #222222;
		text-align: right;
	}
}
.my-phone {
		font-size: 24rpx;
	text-align: center;
	color: #A2A2A2;
	margin-top: 40rpx;
	view {
		margin-bottom: 10rpx;
	}
}
/* 提交 */
.submit-btn{

	position: fixed;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100rpx;
	background-color: #577EFF;
	text{
		color: #FFFFFF;
		font-size: 30rpx;
	}
}