roomManger.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  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. z-index:10;
  104. }
  105. .storeList {
  106. width: 100%;
  107. /* padding: 0 32rpx; */
  108. box-sizing: border-box;
  109. /* display: flex;
  110. align-items: center;
  111. justify-content: center; */
  112. margin-top: 20rpx;
  113. }
  114. .storeList>view {
  115. overflow: hidden;
  116. width: 334rpx;
  117. float: left;
  118. }
  119. .storeList>view:nth-of-type(odd) {
  120. margin-right: 18rpx;
  121. }
  122. .unbrand {
  123. margin-top: 180rpx;
  124. text-align: center;
  125. }
  126. .unbrand image {
  127. display: inline-block;
  128. width: 250rpx;
  129. height: 274rpx;
  130. }
  131. .unbrand .text {
  132. color: #666C7D;
  133. font-size: 30rpx;
  134. margin-top: 40rpx;
  135. }
  136. .parent{
  137. background:#fff;
  138. padding-bottom:0;
  139. width:100%;
  140. box-sizing: border-box;
  141. display: inline-block;
  142. padding: 20rpx 0;
  143. border-bottom: 2rpx solid #EDEDED;
  144. }
  145. .parent:first-child{
  146. border-top: 2rpx solid #f0f0f0;
  147. }
  148. .moveArea{
  149. height: 200rpx;
  150. width: 100%;
  151. margin-bottom:10rpx;
  152. }
  153. .moveView{
  154. height: 200rpx;
  155. width: 100%;
  156. }
  157. .list-item{
  158. padding:20rpx 0;
  159. width: 100%;
  160. display: flex;
  161. justify-content: space-between;
  162. align-items: center;
  163. border-bottom: 2rpx solid #f0f0f0;
  164. }
  165. .item-content{
  166. width: 100%;
  167. height: 100%;
  168. display: flex;
  169. flex-direction: column;
  170. justify-content: center;
  171. padding: 0 20rpx 0 20rpx;
  172. -webkit-transition: all 0.4s;
  173. transition: all 0.4s;
  174. -webkit-transform: translateX(180rpx);
  175. transform: translateX(180rpx);
  176. margin-left: -200rpx;
  177. }
  178. .content-info{
  179. display: flex;
  180. width: 100%;
  181. justify-content: space-between;
  182. font-size: 32rpx;
  183. color: #999
  184. }
  185. .content-name{
  186. width: 100%;
  187. }
  188. .list-item-touch-active .item-content{
  189. margin-left: -100rpx;
  190. }
  191. .list-item-touch-active .item-content, .list-item-touch-active .item-delete {
  192. -webkit-transform: translateX(0) !important;
  193. transform: translateX(0) !important;
  194. }
  195. .item-delete{
  196. font-size: 24rpx;
  197. color: #666;
  198. width: 100rpx;
  199. padding:5rpx 10rpx;
  200. border:1rpx solid #ff5d5d;
  201. border-radius:15rpx;
  202. display: flex;
  203. justify-content: center;
  204. align-items: center;
  205. background:#f9bfbf;
  206. color: #ff5d5d;
  207. font-size: 32rpx;
  208. -webkit-transform: translateX(180rpx);
  209. transform: translateX(180rpx);
  210. -webkit-transition: all 0.4s;
  211. transition: all 0.4s;
  212. }
  213. .swider-item{
  214. }