Store-Management.wxss 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. .top{
  2. height: 3rem;
  3. margin-top: 2.3rem;
  4. width: 100%;
  5. position: relative;
  6. z-index: 0;
  7. }
  8. .return{
  9. width: 1.4rem;
  10. height: 1.4rem;
  11. margin-left: 1rem;
  12. float: left;
  13. }
  14. .top-title{
  15. line-height: 1.75rem;
  16. box-sizing: border-box;
  17. margin-left: 7.2rem;
  18. float: left;
  19. font-weight: 400;
  20. color: #333333;
  21. font-size: large;
  22. }
  23. .top-button{
  24. background: transparent;
  25. width: 5.6rem;
  26. height: 1.75rem;
  27. font-size: 0.8125rem;
  28. font-family: PingFangSC, "PingFang SC 標準體", "PingFang SC", sans-serif;
  29. color: orange;
  30. font-weight: 400;
  31. float: left;
  32. border-radius: 1.5rem;
  33. text-align: center;
  34. line-height: 1.75rem;
  35. margin-left: 3rem;
  36. border:0.05rem solid orange;
  37. }
  38. .search{
  39. margin: 1rem 1rem;
  40. margin-bottom: 1rem;
  41. }
  42. .search-text{
  43. border: darkgray solid 0.05rem;
  44. border-radius: 1rem;
  45. line-height: 1.5rem;
  46. padding-left: 1.5rem;
  47. height: 2rem;
  48. box-shadow: 0.01rem 0.1rem rgb(88, 39, 39);
  49. }
  50. .btn{
  51. background-color:orange;
  52. font-size: x-small;
  53. position: absolute;
  54. width: 4.5rem;
  55. height: 1.7rem;
  56. text-align: center;
  57. line-height: 1.5rem;
  58. color: white;
  59. font-size: 0.8rem;
  60. top: 6.5rem;
  61. left: 17.6rem;
  62. border-radius: 1rem;
  63. }
  64. .button_container{
  65. display: flex;
  66. flex-direction: row;
  67. justify-content: space-around
  68. }
  69. .main{
  70. background-color: rgb(243, 242, 242);
  71. height: 33rem;
  72. position: relative;
  73. top: -0.5rem;
  74. }
  75. .center{
  76. margin: 2rem 1rem;
  77. }
  78. radio .wx-radio-input {
  79. width: 30rpx;
  80. height: 30rpx;
  81. border: 4rpx solid #8C8C8C;/* 外圈边框,默认灰色,即未选中状态*/
  82. border-radius: 50%;
  83. background: none;
  84. }
  85. checkbox .wx-checkbox-input {
  86. width: 30rpx;
  87. height: 30rpx;
  88. border: 4rpx solid #999;
  89. border-radius: 100%;
  90. }
  91. /*复选框外框选中样式*/
  92. checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  93. border-color: orange;
  94. }
  95. /*复选框选中后内部样式*/
  96. checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
  97. width: 60%;
  98. height: 60%;
  99. background: orange;
  100. border-radius: 100%;
  101. content: '';
  102. transform: translate(-50%, -50%) scale(1);
  103. -webkit-transform: translate(-50%, -50%) scale(1);
  104. }
  105. radio .wx-radio-input {
  106. width: 40rpx;
  107. height: 40rpx;
  108. border: 4rpx solid #999;
  109. border-radius: 100%;
  110. background: none;
  111. }
  112. /*单选按钮选中后内部样式*/
  113. radio .wx-radio-input.wx-radio-input-checked {
  114. border: 4rpx solid orange!important;
  115. }
  116. radio .wx-radio-input.wx-radio-input-checked::before {
  117. width: 60%;
  118. height: 60%;
  119. background: orange;
  120. border-radius: 100%;
  121. content: '';
  122. transform: translate(-50%, -50%) scale(1);
  123. -webkit-transform: translate(-50%, -50%) scale(1);
  124. }
  125. .all-top{
  126. margin-top: 1rem;
  127. height: 4rem;
  128. }
  129. .all{
  130. margin-left: 0.5rem;
  131. color: #2c2828;
  132. font-size:x-small;
  133. }
  134. .btn-on{
  135. color: green;
  136. border:0.1rem solid green;
  137. border-radius: 1.3rem;
  138. width: 4.2rem;
  139. height: 1.5rem;
  140. display: inline-block;
  141. line-height: 1.5rem;
  142. text-align: center;
  143. float: right;
  144. font-size: small;
  145. margin: 1rem 0.2rem;
  146. }
  147. .btn-down{
  148. color: red;
  149. border:0.1rem solid red;
  150. border-radius: 1.3rem;
  151. width: 4.2rem;
  152. height: 1.5rem;
  153. display: inline-block;
  154. line-height: 1.5rem;
  155. text-align: center;
  156. float: right;
  157. font-size: small;
  158. margin: 1rem 0.2rem;
  159. }
  160. .checkbox{
  161. height: 29rem;
  162. background-color: white;
  163. border-radius: 0.5rem;
  164. }
  165. .kong{
  166. height: 1rem;
  167. background-color: rgb(243, 242, 242);
  168. float: left;
  169. width: 30rem;
  170. margin-top: 0.4rem;
  171. }
  172. .xian{
  173. height: 0.15rem;
  174. background-color: rgb(243, 242, 242);
  175. float: left;
  176. width: 20rem;
  177. margin: 0.2rem 1rem;
  178. }
  179. .change{
  180. margin-left: 0.7rem;
  181. margin-top: 0.5rem;
  182. }
  183. .weui-cell__bd{
  184. margin-left: 0.5rem;
  185. font-weight: 600;
  186. color: #0a0a0a;
  187. font-size: small;
  188. display: inline-block;
  189. }
  190. .gray{
  191. background: rgb(184, 184, 184);
  192. width: 9rem;
  193. height: 5rem;
  194. border-radius: 0.5rem;
  195. margin: 0rem 0.5rem;
  196. display: inline-block;
  197. float: left;
  198. }
  199. .state{
  200. background-color: orange;
  201. display: inline-block;
  202. width: 5rem;
  203. height: 1.3rem;
  204. float: right;
  205. border-radius: 0.8rem;
  206. color: white;
  207. font-size:small;
  208. line-height: 1.3rem;
  209. text-align: center;
  210. margin-top: 0.5rem;
  211. border-top-right-radius: 0px;
  212. border-bottom-right-radius: 0px
  213. }
  214. .state1{
  215. background-color: pink;
  216. display: inline-block;
  217. width: 5rem;
  218. height: 1.3rem;
  219. float: right;
  220. border-radius: 0.8rem;
  221. color: white;
  222. font-size:small;
  223. line-height: 1.3rem;
  224. text-align: center;
  225. margin-top: 0.5rem;
  226. border-top-right-radius: 0px;
  227. border-bottom-right-radius: 0px
  228. }
  229. .state2{
  230. background-color: green;
  231. display: inline-block;
  232. width: 5rem;
  233. height: 1.3rem;
  234. float: right;
  235. border-radius: 0.8rem;
  236. color: white;
  237. font-size:small;
  238. line-height: 1.3rem;
  239. text-align: center;
  240. margin-top: 0.5rem;
  241. border-top-right-radius: 0px;
  242. border-bottom-right-radius: 0px
  243. }
  244. .fa{
  245. float: left;
  246. width: 100%;
  247. margin-top: 1rem;
  248. }
  249. .price{
  250. color: rgb(97, 96, 96);
  251. float: left;
  252. display: inline-block;
  253. font-size: small;
  254. }
  255. .price{
  256. color: rgb(97, 96, 96);
  257. float: left;
  258. display: inline-block;
  259. font-size: small;
  260. }
  261. .price{
  262. color: rgb(97, 96, 96);
  263. float: left;
  264. display: inline-block;
  265. font-size: small;
  266. }
  267. .card{
  268. color: rgb(97, 96, 96);
  269. float: left;
  270. display: inline-block;
  271. font-size: small;
  272. margin-right: 2rem;
  273. margin-top: 0.2rem;
  274. }
  275. /******************switch效果********************/
  276. .wx-switch-input {
  277. width: 27px !important;
  278. height: 15px !important;
  279. box-sizing: border-box;
  280. position: relative;
  281. background: #b6b5b5 !important;
  282. border: 0.2rem solid rgb(1, 107, 1);
  283. }
  284. .wx-switch-input::before {
  285. width: 27px !important;
  286. height: 15px !important;
  287. background: #b6b5b5 !important;
  288. border: 0px solid #bbbaba ;
  289. box-shadow: none !important;
  290. left: 0px;
  291. top: 0px;
  292. }
  293. .wx-switch-input::after {
  294. width: 10px !important;
  295. height: 10px !important;
  296. top: 1px !important;
  297. left: 0px !important;
  298. opacity: 1 !important;
  299. box-sizing: border-box;
  300. box-shadow: none !important;
  301. border: 0px !important;
  302. background: rgb(1, 107, 1);
  303. }
  304. .chance{
  305. float: right;
  306. }
  307. .clect{
  308. font-size: small;
  309. float: right;
  310. margin-top: 0.1rem;
  311. }
  312. .clt{
  313. color: green!important;
  314. }
  315. .clect-2{
  316. font-size: small;
  317. color: #858383;
  318. margin-right: 0.3rem;
  319. float: right;
  320. margin-top: 0.1rem;
  321. }
  322. .clt2{
  323. color: #858383!important;
  324. }
  325. .red{
  326. color: aqua;
  327. }
  328. .fa-change{
  329. background: #9c9b9b;
  330. display: inline-block;
  331. width: 4rem;
  332. height: 1.3rem;
  333. color: white;
  334. border-radius: 0.3rem;
  335. line-height: 2em;
  336. text-align: center;
  337. font-size: x-small;
  338. font: sans-serif;
  339. float: right;
  340. margin-top: 0.4rem;
  341. }
  342. .pink{
  343. background-color:pink;
  344. }
  345. .green{
  346. background-color:green;
  347. }