searchRoom.wxss 854 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* pages/searchRoom/searchRoom.wxss */
  2. .storeContent {
  3. width: 100%;
  4. padding: 0 32rpx 10rpx;
  5. box-sizing: border-box;
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. position: fixed;
  10. top: 0;
  11. left: 0;
  12. background: #fff;
  13. z-index: 100;
  14. }
  15. .storeSearch {
  16. width: 614rpx;
  17. height: 64rpx;
  18. background: #F6F6F6;
  19. border-radius: 32rpx;
  20. display: flex;
  21. align-items: center;
  22. justify-content: flex-start;
  23. padding: 0 32rpx;
  24. box-sizing: border-box;
  25. margin-right: 10rpx;
  26. }
  27. .storeSearch image{
  28. width: 24rpx;
  29. height: 24rpx;
  30. }
  31. .storeSearch input{
  32. font-size: 24rpx;
  33. color: #333;
  34. margin-left: 4rpx;
  35. width: 80%;
  36. }
  37. .storeSearch .placeholderStyle{
  38. font-size: 24rpx;
  39. color: #B2B2B2;
  40. }
  41. .searchBtn{
  42. color: #0075DC;
  43. font-size: 28rpx;
  44. width: 60rpx;
  45. }
  46. .resulst{
  47. padding: 10rpx 32rpx;
  48. box-sizing: border-box;
  49. }