Blame view

yslvdao-miniapp/pages/accepting/accepting.scss 2.57 KB
d64cd58f   wesley88   上传验收小程序
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
  .page{
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  	padding: 0 24rpx;
  }
  /* 记录列表 */
  .record-list{
  	margin-top: 20rpx;
  	.good-item {
  		width: 100%;
  		display: flex;
  		background-color: #fff;
  		padding: 16rpx;
  		border-radius: 14rpx;
  		margin-bottom: 26rpx;
  		.img {
  			width: 200rpx;
  			height: 200rpx;
  		}
  		.info {
  			width: calc(100% - 220rpx);
  			margin-left: 20rpx;
  			.title {
  				width: 100%;
  				font-size: 28rpx;
  				line-height: 44rpx;
  				font-weight: 700;
  				white-space: nowrap;
  				overflow : hidden;
  				text-overflow: ellipsis;
  				margin-bottom: 20rpx;
  			}
  			.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;
  				}
  			}
  		}
  	}
  }
  .msglist{
  	padding: 0 30rpx;
  	background-color: #Fff;
  	border-radius: 14rpx;
  	margin-bottom: 20rpx;
  	.form-item {
  		display: flex;
  		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;
  				}
  			}
  		}
  	}
  	:last-child {
  		border-bottom: unset;
  	}
  }
  .footbtn{
  	position: fixed;
  	bottom: 0;
  	left: 0;
  	z-index: 10;
  	height:180rpx;
  	width: 100%;
  	border-radius: 26rpx 26rpx 0 0;
  	background-color: #fff;
  	.info-total {
  		display: flex;
  		flex-direction: row;
  		align-items: center;
  		justify-content: space-between;
  		margin: 24rpx 50rpx;
  		font-weight: 700;
  		font-size: 24rpx;
  		span {
  			color: #0FBB59;
  			font-size: 32rpx
  		}
  	}
  	.footer-btn {
  		display: flex;
  		.u-btn {
  			width: 40%;
  		}
  	}
  }