Blame view

lvdao-miniapp/pages/accepting/accepting.scss 2.57 KB
3f535f30   杨鑫   '初始'
1
2
3
4
5
6
  .page{
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
e5b57447   杨鑫   '分包问卷'
7
  	padding: 0 24rpx;
3f535f30   杨鑫   '初始'
8
9
10
11
  }
  /* 记录列表 */
  .record-list{
  	margin-top: 20rpx;
e5b57447   杨鑫   '分包问卷'
12
  	.good-item {
3f535f30   杨鑫   '初始'
13
  		width: 100%;
3f535f30   杨鑫   '初始'
14
  		display: flex;
e5b57447   杨鑫   '分包问卷'
15
16
17
18
19
20
21
  		background-color: #fff;
  		padding: 16rpx;
  		border-radius: 14rpx;
  		margin-bottom: 26rpx;
  		.img {
  			width: 200rpx;
  			height: 200rpx;
3f535f30   杨鑫   '初始'
22
  		}
e5b57447   杨鑫   '分包问卷'
23
24
25
26
27
  		.info {
  			width: calc(100% - 220rpx);
  			margin-left: 20rpx;
  			.title {
  				width: 100%;
3f535f30   杨鑫   '初始'
28
  				font-size: 28rpx;
e5b57447   杨鑫   '分包问卷'
29
30
31
32
33
34
  				line-height: 44rpx;
  				font-weight: 700;
  				white-space: nowrap;
  				overflow : hidden;
  				text-overflow: ellipsis;
  				margin-bottom: 20rpx;
3f535f30   杨鑫   '初始'
35
  			}
e5b57447   杨鑫   '分包问卷'
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  			.info-item {
  				display: flex;
  				line-height: 30rpx;
  				font-size: 26rpx;
  				color: #717981;
  				text {
  					white-space: nowrap;
  					overflow : hidden;
  					text-overflow: ellipsis;
  					margin-left: 10rpx;
  					span {
  						font-size: 30rpx;
  						color: #000;
  						font-weight: 700;
  					}
  				}
  				.u-tag {
  					margin: 0 6rpx;
  					border: unset;
  				}
3f535f30   杨鑫   '初始'
56
57
58
59
60
  			}
  		}
  	}
  }
  .msglist{
e5b57447   杨鑫   '分包问卷'
61
  	padding: 0 30rpx;
3f535f30   杨鑫   '初始'
62
  	background-color: #Fff;
e5b57447   杨鑫   '分包问卷'
63
64
65
  	border-radius: 14rpx;
  	margin-bottom: 20rpx;
  	.form-item {
3f535f30   杨鑫   '初始'
66
  		display: flex;
e5b57447   杨鑫   '分包问卷'
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
  		flex-direction: row;
  		align-items: center;
  		justify-content: space-between;
  		line-height: 70rpx;
  		border-bottom: #eee solid 1rpx;
  		padding: 10rpx 0;
  		&[label-top] {
  			flex-direction: column;
  			justify-content: flex-start;
  			align-items: flex-start;
  		}
  		text {
  			font-size: 24rpx;
  			color: #3D3D3D;
  		}
  		.img {
  			padding-bottom: 18rpx;
  		}
  		.deom-box {
  			width: 100%;
  			display: flex !important;
  			margin: 0 -20rpx;
  			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   杨鑫   '初始'
117
  	}
e5b57447   杨鑫   '分包问卷'
118
119
  	:last-child {
  		border-bottom: unset;
3f535f30   杨鑫   '初始'
120
121
122
  	}
  }
  .footbtn{
e5b57447   杨鑫   '分包问卷'
123
  	position: fixed;
3f535f30   杨鑫   '初始'
124
125
126
  	bottom: 0;
  	left: 0;
  	z-index: 10;
e5b57447   杨鑫   '分包问卷'
127
  	height:180rpx;
3f535f30   杨鑫   '初始'
128
  	width: 100%;
e5b57447   杨鑫   '分包问卷'
129
130
131
  	border-radius: 26rpx 26rpx 0 0;
  	background-color: #fff;
  	.info-total {
3f535f30   杨鑫   '初始'
132
  		display: flex;
e5b57447   杨鑫   '分包问卷'
133
134
  		flex-direction: row;
  		align-items: center;
3f535f30   杨鑫   '初始'
135
  		justify-content: space-between;
e5b57447   杨鑫   '分包问卷'
136
137
138
139
140
141
142
  		margin: 24rpx 50rpx;
  		font-weight: 700;
  		font-size: 24rpx;
  		span {
  			color: #0FBB59;
  			font-size: 32rpx
  		}
3f535f30   杨鑫   '初始'
143
  	}
e5b57447   杨鑫   '分包问卷'
144
145
146
147
148
  	.footer-btn {
  		display: flex;
  		.u-btn {
  			width: 40%;
  		}
3f535f30   杨鑫   '初始'
149
150
  	}
  }