123456789101112131415161718192021222324252627282930313233 |
- /* pages/store/store.wxss */
- .storeContent {
- width: 100%;
- padding: 0 32rpx;
- box-sizing: border-box;
- }
- .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;
- }
|