Blame view

pages/FindWord/FindWord.scss 2.57 KB
c7add6cf   “wangming”   初始版本开发完毕
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
  .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;

  	}

  }