Blame view

lvdao-miniapp/pages/questionnaire/questionnaire.scss 2.21 KB
3f535f30   杨鑫   '初始'
1
  .page{
e5b57447   杨鑫   '分包问卷'
2
3
4
5
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
3f535f30   杨鑫   '初始'
6
  	height: 100%;
e5b57447   杨鑫   '分包问卷'
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
  	background-color: #f6f6f6;
  }
  .head-search{
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	position: relative;
  	margin: 20rpx 24rpx;
  	background-color: #FFFFFF;
  	border-radius: 35rpx;
  	padding: 0 10rpx;
  	border: 2rpx solid #E8E8E8;
  	.u-search {
  		position: relative;
  	}
  	.u-btn {
  		border: unset;
  		border: 0px transparent;
  		height: 46rpx;
  		width: 88rpx;
  		font-size: 24rpx;
  		border-radius: 35rpx;
  	}
  }
  .screen-list {
  	display: flex;
  	align-items: center;
  	width: 100%;
  	margin: 20rpx 0;
  	padding: 0 20rpx;
  	.zidong{
  		width: 160rpx;
  		background-color: #3F9B6A;
  		color: #fff;
  		padding: 10rpx;
  		border-radius: 30rpx;
  		font-size: 24rpx;
  		text-align: center;
  	}
  	.list {
  		display: flex;
  		justify-content: center;
  		align-items: center;
  		width: 25%;
  		height: 100%;
  		text {
  			font-size: 26rpx;
  			color: #555555;
  		}
  		image {
  			width: 30rpx;
  			height: 30rpx;
  			margin-left: 10rpx;
  		}
  	}
  	.action {
  		text {
  			color: $base;
  		}
  	}
  }
  .list-scorll {
  	padding: 0 24rpx;
3f535f30   杨鑫   '初始'
70
71
72
73
74
  }
  .listbox{
  	margin-bottom: 20rpx;
  	display: flex;
  	justify-content: space-between;
e5b57447   杨鑫   '分包问卷'
75
  	padding: 18rpx;
3f535f30   杨鑫   '初始'
76
  	background-color:#fff;
e5b57447   杨鑫   '分包问卷'
77
  	border-radius: 14rpx;
3f535f30   杨鑫   '初始'
78
  	.img{
e5b57447   杨鑫   '分包问卷'
79
80
81
82
  		width: 190rpx;
  		height: 190rpx;
  		border-radius: 14rpx;
  		overflow: hidden;
3f535f30   杨鑫   '初始'
83
84
85
86
87
  		image{
  			width:100%;
  			height: 100%;
  		}	
  	}
e5b57447   杨鑫   '分包问卷'
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
  	.info {
  		width: calc(100% - 216rpx);
  		margin-left: 26rpx;
  		.title {
  			width: 100%;
  			font-size: 28rpx;
  			line-height: 40rpx;
  			font-weight: 700;
  			white-space: nowrap;
  			overflow : hidden;
  			text-overflow: ellipsis;
  			margin-bottom: 6rpx;
  		}
  		.info-item {
  			font-size: 24rpx;
  			line-height: 50rpx;
  		}
3f535f30   杨鑫   '初始'
105
  	}
3f535f30   杨鑫   '初始'
106
  }
3f535f30   杨鑫   '初始'
107
  .page-footer{
e5b57447   杨鑫   '分包问卷'
108
109
110
  	position: fixed;
  	left: 0;
  	bottom: 0;
3f535f30   杨鑫   '初始'
111
  	width: 100%;
e5b57447   杨鑫   '分包问卷'
112
  	height: 120rpx;
3f535f30   杨鑫   '初始'
113
  	background-color: #FFFFFF;
e5b57447   杨鑫   '分包问卷'
114
  	padding: 20rpx 20rpx;
3f535f30   杨鑫   '初始'
115
116
  	padding-bottom: constant(safe-area-inset-bottom);
  	padding-bottom: env(safe-area-inset-bottom);
e5b57447   杨鑫   '分包问卷'
117
  	z-index: 999;
3f535f30   杨鑫   '初始'
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
  	.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: 70rpx;
  			background-color: #3f9b6a;
  			text{
  				font-size: 28rpx;
  				color: #FFFFFF;
  			}
  		}
  	}
  }