Blame view

lvdao-miniapp/pages/business/businessList/businessList.scss 1.93 KB
e5b57447   杨鑫   '分包问卷'
1
2
3
4
5
6
7
8
9
10
  .page{
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  	// padding: 0 40rpx;
  	// background-color: #fff;
  }
  .head-search{
f692f3a5   wesley88   1
11
12
13
14
  	// display: flex;
  	// align-items: center;
  	// justify-content: space-between;
  	// position: relative;
e5b57447   杨鑫   '分包问卷'
15
16
  	margin: 20rpx 0;
  	background-color: #FFFFFF;
f692f3a5   wesley88   1
17
18
  	border-radius: 18rpx;
  	// padding: 0 10rpx;
e5b57447   杨鑫   '分包问卷'
19
20
  	border: 2rpx solid #E8E8E8;
  	margin: 22rpx 24rpx;
f692f3a5   wesley88   1
21
  	overflow: hidden;
e5b57447   杨鑫   '分包问卷'
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  	.u-search {
  		position: relative;
  	}
  	.u-btn {
  		border: unset;
  		border: 0px transparent;
  		height: 46rpx;
  		width: 88rpx;
  		font-size: 24rpx;
  		border-radius: 35rpx;
  	}
  }
  
  .goods-data{
  	width: 100%;
  	.goods-list{
  		width: 100%;
  		.good-item {
  			width: 100%;
  			background-color: #FFFFFF;
  			border-bottom: #eee solid 1rpx;
60cd6339   杨鑫   '最新'
43
  			padding: 18rpx 10rpx;
e5b57447   杨鑫   '分包问卷'
44
45
46
47
48
  			.body {
  				display: flex;
  				width: 100%;
  				height: calc(100% - 70rpx);
  				padding: 15rpx 18rpx;
844aa73a   杨鑫   '最新'
49
  				justify-content: space-around;
e5b57447   杨鑫   '分包问卷'
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  				image {
  					width: 194rpx;
  					height: 144rpx;
  					border-radius: 8rpx;
  				}
  				.info {
  					// flex: 1;
  					width: calc(100% - 236rpx);
  					.title {
  						width: 100%;
  						font-size: 28rpx;
  						line-height: 44rpx;
  						font-weight: 700;
  						// white-space: nowrap;
  						// overflow : hidden;
  						// text-overflow: ellipsis;
844aa73a   杨鑫   '最新'
66
  						margin-bottom: 70rpx;
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
  					}
  					.info-item {
  						line-height: 30rpx;
  						font-size: 26rpx;
  						color: #9FABB5;
  					}
  				}
  			}
  		}
  	}
  }
  .page-footer{
  	position: fixed;
  	left: 0;
  	bottom: 0;
  	width: 100%;
  	height: 120rpx;
  	background-color: #FFFFFF;
  	padding: 20rpx 20rpx;
  	padding-bottom: constant(safe-area-inset-bottom);
  	padding-bottom: env(safe-area-inset-bottom);
  	z-index: 999;
  	.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;
  			}
  		}
  	}
  }