Blame view

lvdao-miniapp/pages/complaint/complaint.scss 1.68 KB
3f535f30   杨鑫   '初始'
1
2
3
4
5
  .page{
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
3f535f30   杨鑫   '初始'
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
  	background-color: #f6f6f6;
  }
  
  .add-list{
  	padding: 0 4%;
  	background-color: #FFFFFF;
  	border-radius: 20rpx;
  	margin-top: 20rpx;
  	width: 100%;
  	.list{
  		display: flex;
  		justify-content: space-between;
  		align-items: center;
  		width: 100%;
  		height: 100rpx;
  		border-bottom: 2rpx solid #f6f6f6;
  		.title{
  			display: flex;
  			align-items: center;
  			height: 100%;
  			text{
  				font-size: 26rpx;
  				color: #222222;
  			}
  			.star{
  				color: red;
  			}
  		}
  		.content{
  			display: flex;
  			align-items: center;
  			text-align: right;
  			input{
  				width: 100%;
  				color: #222222;
  				font-size: 26rpx;
  				padding-top: 6rpx;
  				/* #ifdef MP */
  				padding-top: 5rpx;
  				/* #endif */
  			}
  			image {
  				width: 20rpx;
  				height: 20rpx;
  				margin-left: 10rpx;
  				/* #ifdef MP */
  				margin-top: 5rpx;
  				/* #endif */
  			}
  		}
  	}
  }
  
  /* 保存按钮 */
  .page-footer{
  	position: fixed;
  	left: 0;
  	bottom: 0;
  	display: flex;
e3789a75   杨鑫   '最新'
65
66
  	align-items: center;
  	justify-content: center;
3f535f30   杨鑫   '初始'
67
  	width: 100%;
e3789a75   杨鑫   '最新'
68
  	height: 60px;
3f535f30   杨鑫   '初始'
69
  	background-color: #FFFFFF;
e3789a75   杨鑫   '最新'
70
71
72
73
74
75
  
  	.footer-btn {
  		display: flex;
  		width: 90%;
  	}
  	.footer-service {
3f535f30   杨鑫   '初始'
76
  		display: flex;
e3789a75   杨鑫   '最新'
77
  		flex-direction: column;
3f535f30   杨鑫   '初始'
78
  		align-items: center;
e3789a75   杨鑫   '最新'
79
80
81
  		text {
  			margin-top: 6rpx;
  			line-height: 32rpx;
3f535f30   杨鑫   '初始'
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
  		}
  	}
  }
  
  .feedback-data{
  	width: 100%;
  	padding-bottom: 20rpx;
  	border-bottom: 2rpx solid #f6f6f6;
  	.title{
  		display: flex;
  		align-items: center;
  		height: 100rpx;
  		text{
  			font-size: 26rpx;
  			color: #222222;
  		}
  		.star{
  			color: red;
  		}
  	}
  	.voucher-img{
  		display: flex;
  		align-items: center;
  		.voucher-list {
  			width: 33%;
  			height: 100%;
  			image{
  				width: 160rpx;
  				height: 160rpx;
  				border-radius: 10rpx;
  			}
  		}
  	}
  }