brandStore.wxss
1.81 KB
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
/* pages/goodsList/brandStore.wxss */
@import "productListCell.wxss";
@import "categoryProductListFilter.wxss";
.scroll-view {
display: flex;
flex-direction: column;
background-color: white;
}
.store-info {
display: flex;
width: 100%;
flex-direction: column;
justify-content: flex-start;
}
.store-info-bg {
left: 0px;
top: 0px;
width: 100%;
height: 100%;
background-color: black;
}
.store-logo-mask {
width: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
.store-info-content {
display: flex;
flex-direction: row;
align-items: flex-end;
width: 100%;
height: 120rpx;
margin-top: -140rpx;
}
.store-info-content .store-info-left {
height: 100%;
width: 689rpx;
display: flex;
flex-direction: row;
align-items: flex-end;
}
.store-info-content .store-info-left .store-logo {
margin-left: 30rpx;
width: 120rpx;
height: 120rpx;
}
.store-info-content .store-info-left .store-title {
color: white;
margin-left: 20rpx;
font-weight: bold;
font: 32rpx;
text-align: left;
width: 509rpx;
height: 34rpx;
line-height:34rpx;
white-space: nowrap;
text-overflow:ellipsis;
display: block;
overflow: hidden;
margin-bottom: 20rpx;
}
.store-info-content .store-share {
width: 41rpx;
height: 42rpx;
margin-bottom: 10rpx;
}
.store-fixedFilter {
position: fixed;
top: -1rpx;
left: 0rx;
height: 90rpx;
width: 100%;
background-color: white;
z-index: 999;
border-bottom: 1rpx #e5e5e5 solid;
}
.store-list {
display: flex;
flex-direction: row;
flex-wrap: wrap;
background-color: white;
}
.store-loadMore {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
width: 100%;
height: 88rpx;
}
.store-loadText {
margin-left: 10;
color: #b1b1b1;
text-align: center;
font-size: 28rpx;
}