store.wxss 542 B

123456789101112131415161718192021222324252627282930313233
  1. /* pages/store/store.wxss */
  2. .storeContent {
  3. width: 100%;
  4. padding: 0 32rpx;
  5. box-sizing: border-box;
  6. }
  7. .storeSearch {
  8. width: 100%;
  9. height: 64rpx;
  10. background: #F6F6F6;
  11. border-radius: 32rpx;
  12. display: flex;
  13. align-items: center;
  14. justify-content: flex-start;
  15. padding: 0 32rpx;
  16. box-sizing: border-box;
  17. }
  18. .storeSearch image{
  19. width: 24rpx;
  20. height: 24rpx;
  21. }
  22. .storeSearch input{
  23. font-size: 24rpx;
  24. color: #333;
  25. margin-left: 4rpx;
  26. width: 100%;
  27. }
  28. .storeSearch .placeholderStyle{
  29. font-size: 24rpx;
  30. color: #B2B2B2;
  31. }