Blame view

lvdao-miniapp/pages/advertisementAdd/advertisementAdd.scss 2.58 KB
3f535f30   杨鑫   '初始'
1
2
3
4
5
  .page{
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
e5b57447   杨鑫   '分包问卷'
6
7
  	overflow-y: scroll;
  	height: calc(100% - 120rpx);
3f535f30   杨鑫   '初始'
8
9
  	background-color: #f6f6f6;
  }
e5b57447   杨鑫   '分包问卷'
10
11
12
  .steps-box {
  	padding-top: 40rpx;
  }
3f535f30   杨鑫   '初始'
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
  
  .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 */
  			}
  		}
  	}
e5b57447   杨鑫   '分包问卷'
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
  	.deom-box {
  		width: 100vw;
  		display: flex !important;
  		padding: 14rpx 0;
  		background-color: #FFFFFF;
  		border-radius: 9px;
  		// margin-top: 9px;
  		width: 100%;
  		// .u-upload {
  		// .u-add-wrap {
  		// 	width: 304rpx !important;
  		// 	height: 182rpx !important;
  		// }
  		// }
  		// .u-upload {
  		// 	height: 88px;
  		// 	width: 155px;
  		// 	background: url(/static/images/uploadID1.png);
  		// 	background-size:134rpx 188rpx;
  		// 	background-repeat:no-repeat;
  		// }
  		.img-deom {
  			flex: 1;
  			display: flex;
  			flex-direction: column;
  			align-items: center;
  			padding: 20rpx;
  			text {
  				margin-top: 18rpx;
  			}
  		}
  	}
3f535f30   杨鑫   '初始'
94
95
96
97
98
99
100
101
  }
  
  /* 保存按钮 */
  .page-footer{
  	position: fixed;
  	left: 0;
  	bottom: 0;
  	display: flex;
e5b57447   杨鑫   '分包问卷'
102
  	align-items: center;
3f535f30   杨鑫   '初始'
103
  	width: 100%;
e5b57447   杨鑫   '分包问卷'
104
  	height: 125rpx;
3f535f30   杨鑫   '初始'
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
  	background-color: #FFFFFF;
  	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: 100rpx;
  			background-color: #3f9b6a;
  			text{
  				font-size: 28rpx;
  				color: #FFFFFF;
  			}
  		}
  	}
  }
  
3f535f30   杨鑫   '初始'
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
  .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;
  			}
  		}
  	}
  }