roomManger.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /* miniprogram/pages/tab/tab.wxss */
  2. /* pages/searchRoom/searchRoom.wxss */
  3. .storeContent {
  4. width: 100%;
  5. /* padding: 0 10rpx; */
  6. box-sizing: border-box;
  7. display: flex;
  8. align-items: center;
  9. justify-content: center;
  10. position: fixed;
  11. flex-direction: column;
  12. top: 0;
  13. left: 0;
  14. background: #fff;
  15. z-index: 100;
  16. padding-bottom: 10rpx;
  17. }
  18. .tab-header {
  19. width: 100%;
  20. height: 80rpx;
  21. display: flex;
  22. flex-direction: row;
  23. justify-content: center;
  24. align-items: center;
  25. }
  26. .tab-header .active text{
  27. color: #0075DC;
  28. border-bottom:4rpx solid #0075DC;
  29. }
  30. .tab-header view text{
  31. padding-bottom:15rpx;
  32. /*transition: all 0.3s;*/
  33. }
  34. .storeSearch image {
  35. width: 24rpx;
  36. height: 24rpx;
  37. }
  38. .un-start,
  39. .has-start {
  40. width: 50%;
  41. display: flex;
  42. flex-direction: row;
  43. justify-content: center;
  44. align-items: center;
  45. }
  46. .storeSearch {
  47. width: 614rpx;
  48. height: 64rpx;
  49. background: #F6F6F6;
  50. border-radius: 32rpx;
  51. display: flex;
  52. align-items: center;
  53. justify-content: flex-start;
  54. padding: 0 32rpx;
  55. box-sizing: border-box;
  56. margin: 10rpx auto 0;
  57. position: relative;
  58. }
  59. .storeSearch image {
  60. width: 24rpx;
  61. height: 24rpx;
  62. }
  63. .storeSearch input {
  64. font-size: 24rpx;
  65. color: #333;
  66. margin-left: 4rpx;
  67. width: 80%;
  68. }
  69. .storeSearch .placeholderStyle {
  70. font-size: 24rpx;
  71. color: #B2B2B2;
  72. }
  73. .search-container{
  74. display: flex;
  75. width: 100%;
  76. flex-direction: row;
  77. justify-content: center;
  78. align-items: center;
  79. padding: 0 32rpx;
  80. }
  81. .searchBtn {
  82. color: #0075DC;
  83. font-size: 28rpx;
  84. width: 60rpx;
  85. }
  86. .result {
  87. margin-top: 80rpx;
  88. padding: 100rpx 32rpx 10rpx 32rpx;
  89. box-sizing: border-box;
  90. }
  91. .addRoom{
  92. position: fixed;
  93. right: 20rpx;
  94. bottom:200rpx;
  95. background-color: #0075DC;
  96. border-radius: 50%;
  97. text-align: center;
  98. width: 100rpx;
  99. height: 100rpx;
  100. line-height: 100rpx;
  101. font-size: 80rpx;
  102. color: #fff;
  103. }
  104. .storeList {
  105. width: 100%;
  106. /* padding: 0 32rpx; */
  107. box-sizing: border-box;
  108. /* display: flex;
  109. align-items: center;
  110. justify-content: center; */
  111. margin-top: 20rpx;
  112. }
  113. .storeList>view {
  114. overflow: hidden;
  115. width: 334rpx;
  116. float: left;
  117. }
  118. .storeList>view:nth-of-type(odd) {
  119. margin-right: 18rpx;
  120. }
  121. .unbrand {
  122. margin-top: 180rpx;
  123. text-align: center;
  124. }
  125. .unbrand image {
  126. display: inline-block;
  127. width: 250rpx;
  128. height: 274rpx;
  129. }
  130. .unbrand .text {
  131. color: #666C7D;
  132. font-size: 30rpx;
  133. margin-top: 40rpx;
  134. }