Sanakey
2020-11-06 65c4a68484a8d6fee25d3bb94bb7a24da6dfc147
提交 | 用户 | age
d98d05 1 /* pages/store/stores.wxss */
S 2 @import "../../src/weui.wxss";
3 @import "../template/tabbar/tabbar-template.wxss";
4
5 .page__bd{
6   height: 66px;
7 }
8 .search-container {
9   position: fixed;
10   top: 0;
11   left: 0;
12   width: 100%;
13   background-color: #fff;
14   z-index: 90;
15 }
16
17 .weui-search-bar {
18   position: relative;
19   padding: 6px 10px;
20   display: flex;
21   box-sizing: border-box;
22   background-color: #EFEFF4;
23   border-top: 0 solid #D7D6DC;
24   border-bottom: 0 solid #D7D6DC;
25   border-radius: 10rpx;
26   align-items: center;
27 }
28
29 .search-log {
30   border: 2rpx solid #eee !important;
31   display: inline-block !important;
32   margin-left: 20rpx !important;
33   margin-top: 20rpx !important;
34   border-radius: 10rpx;
35   padding: 0 30rpx;
36   box-sizing: border-box;
37   text-align: center;
38   text-decoration: none;
39   line-height: 60rpx;
40 }
41
42 .weui-search-bar__cancel-btn {
43   font-size: 30rpx;
44 }
45
46 .weui-panel__hd::after {
47   border-bottom: none;
48 }
49
50 /*门店列表  */
51 .store-list {
52   border-top: 1rpx solid #ddd;
53   border-bottom: 1rpx solid #ddd;
54   margin: 20rpx 10rpx;
55   margin-top: 66px;
56
57 }
58
59 .goods-item {
60   display: flex;
61   flex-direction: row;
62   justify-content: space-between;
63   line-height: 60rpx;
64   align-items: center;
65   padding: 25rpx;
66   background-color: #fff;
67 }
68
69 .goods-item + .goods-item {
70   border-top: 1rpx solid #ddd;
71 }
72
73 .item-img {
74   width: 150rpx;
75   height: 150rpx;
76   margin-right: 20rpx;
77 }
78
79 .item {
80   line-height: 50rpx;
81   height: 150rpx;
82 }
83
84 .item-title, .item-text, .item-total {
85   font-size: 27rpx;
86   overflow: hidden;
87   white-space: nowrap;
88   text-overflow: ellipsis;
89   width: 500rpx;
90 }
91
92 .result {
93   font-size: 28rpx;
94   text-align: center;
95 }