sence.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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: 10rpx auto 0 ;
  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: 0rpx 32rpx 10rpx;
  48. box-sizing: border-box;
  49. }
  50. .storeList {
  51. width: 100%;
  52. /* padding: 0 32rpx; */
  53. box-sizing: border-box;
  54. /* display: flex;
  55. align-items: center;
  56. justify-content: center; */
  57. margin-top: 20rpx;
  58. }
  59. .storeList>view {
  60. overflow: hidden;
  61. width: 334rpx;
  62. float: left;
  63. }
  64. .storeList>view:nth-of-type(odd){
  65. margin-right: 18rpx;
  66. }
  67. .unbrand {
  68. margin-top: 180rpx;
  69. text-align: center;
  70. }
  71. .unbrand image {
  72. display: inline-block;
  73. width: 250rpx;
  74. height: 274rpx;
  75. }
  76. .unbrand .text {
  77. color: #666C7D;
  78. font-size: 30rpx;
  79. margin-top: 40rpx;
  80. }