1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /* pages/store/store.wxss */
- .storeContent {
- width: 100%;
- padding: 0 32rpx;
- box-sizing: border-box;
- position: fixed;
- top: 0;
- left: 0;
- background: #fff;
- z-index: 100;
- }
- .storeSearch {
- width: 100%;
- height: 64rpx;
- background: #F6F6F6;
- border-radius: 32rpx;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- padding: 0 32rpx;
- box-sizing: border-box;
- }
- .storeSearch image {
- width: 24rpx;
- height: 24rpx;
- }
- .storeSearch input {
- font-size: 24rpx;
- color: #333;
- margin-left: 4rpx;
- width: 100%;
- }
- .storeSearch .placeholderStyle {
- font-size: 24rpx;
- color: #B2B2B2;
- }
- .storeList {
- width: 100%;
- padding: 0 32rpx;
- box-sizing: border-box;
- /* display: flex;
- align-items: center;
- justify-content: center; */
- margin-top: 32rpx;
- }
- .storeList>view {
- overflow: hidden;
- width: 334rpx;
- float: left;
- }
- .storeList>view:nth-of-type(odd){
- margin-right: 18rpx;
- }
- .unbrand {
- margin-top: 180rpx;
- text-align: center;
- }
- .unbrand image {
- display: inline-block;
- width: 250rpx;
- height: 274rpx;
- }
- .unbrand .text {
- color: #666C7D;
- font-size: 30rpx;
- margin-top: 40rpx;
- }
|