site-more.wxss 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. .page-background.data-v-eb9bae84{
  2. display: block;
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. }
  9. .body.data-v-eb9bae84{
  10. width: 100%;
  11. height: 100%;
  12. position: relative;
  13. z-index: 1;
  14. }
  15. .top-title-box.data-v-eb9bae84{
  16. display: flex;
  17. align-items: center;
  18. justify-content: space-between;
  19. }
  20. .title.data-v-eb9bae84{
  21. font-size: 16px;
  22. font-weight: bold;
  23. }
  24. .subtitle.data-v-eb9bae84{
  25. font-size: 12px;
  26. color: #aaa;
  27. margin-top: 10px;
  28. }
  29. .site-more-topIcon.data-v-eb9bae84{
  30. width: 140rpx;
  31. height: 140rpx;
  32. }
  33. /* 面包屑 */
  34. .crumbs.data-v-eb9bae84{
  35. display: flex;
  36. align-items: center;
  37. height: 60px;
  38. border-radius: 8px;
  39. background-color: #fff;
  40. margin: 15px 0;
  41. }
  42. .crumbs .item.data-v-eb9bae84{
  43. flex: 1;
  44. display: flex;
  45. align-items: center;
  46. justify-content: center;
  47. flex-direction: column;
  48. }
  49. .crumbs .item .value.data-v-eb9bae84{
  50. font-size: 16px;
  51. font-weight: bold;
  52. color: #3EB6F8;
  53. }
  54. .crumbs .item .name.data-v-eb9bae84{
  55. font-size: 12px;
  56. }
  57. /* 切换 */
  58. .switch.data-v-eb9bae84{
  59. display: flex;
  60. align-items: center;
  61. justify-content: space-between;
  62. width: 100%;
  63. height: 44px;
  64. background-color: #fff;
  65. border-radius: 100pc;
  66. position: relative;
  67. }
  68. .switch .bg.data-v-eb9bae84{
  69. width: 50%;
  70. height: 40px;
  71. background-color: #3EB6F8;
  72. border-radius: 100pc;
  73. position: absolute;
  74. top: 2px;
  75. left: 2px;
  76. transition: all 200ms ease;
  77. }
  78. .switch .contet.data-v-eb9bae84{
  79. display: flex;
  80. align-items: center;
  81. justify-content: space-between;
  82. width: 100%;
  83. }
  84. .switch .text.data-v-eb9bae84{
  85. flex: 1;
  86. display: flex;
  87. align-items: center;
  88. justify-content: center;
  89. font-size: 14px;
  90. position: relative;
  91. z-index: 2;
  92. transition: color 200ms ease;
  93. }
  94. .switch .text.data-v-eb9bae84:first-child,
  95. .switch.another .text.data-v-eb9bae84:last-child{
  96. color: #fff;
  97. }
  98. .switch.another .text.data-v-eb9bae84:first-child{
  99. color: inherit;
  100. }
  101. .switch.another .bg.data-v-eb9bae84{
  102. -webkit-transform: translateX(100%);
  103. transform: translateX(100%);
  104. }
  105. .list.data-v-eb9bae84{
  106. height: var(--list-height);
  107. overflow: auto;
  108. padding: 10px 0;
  109. }
  110. .list.data-v-eb9bae84::-webkit-scrollbar{
  111. display: none;
  112. }
  113. /* 设备列表 */
  114. .terminals.data-v-eb9bae84{
  115. margin-top: 10px;
  116. }
  117. .terminal-item.data-v-eb9bae84{
  118. display: flex;
  119. align-items: center;
  120. justify-content: space-between;
  121. background-color: #fff;
  122. border-radius: 8px;
  123. height: 78px;
  124. padding: 10px;
  125. }
  126. .terminal-item+.terminal-item.data-v-eb9bae84{
  127. margin-top: 10px;
  128. }
  129. .terminal-item .state.data-v-eb9bae84{
  130. display: flex;
  131. width: 58px;
  132. height: 58px;
  133. border-radius: 100%;
  134. margin-right: 10px;
  135. padding: 4px;
  136. background-image: linear-gradient(to right, #ccc 0%, #ccc 35.8%, #c7cccf 65.9%, #e8e8e8 80.4%, #c8c8c8 100%);
  137. }
  138. .terminal-item .state .cake.data-v-eb9bae84{
  139. display: flex;
  140. align-items: center;
  141. justify-content: center;
  142. flex-direction: column;
  143. width: 100%;
  144. height: 100%;
  145. border-radius: 100%;
  146. background-color: #eee;
  147. }
  148. .terminal-item .state .icon.data-v-eb9bae84{
  149. display: block;
  150. width: 20px;
  151. height: 20px;
  152. }
  153. .terminal-item .state .name.data-v-eb9bae84{
  154. font-size: 12px;
  155. margin-top: 3px;
  156. }
  157. .terminal-item .info.data-v-eb9bae84{
  158. flex: 1;
  159. }
  160. .terminal-item .info .name.data-v-eb9bae84{
  161. font-size: 14px;
  162. font-weight: bold;
  163. margin-bottom: 5px;
  164. }
  165. .terminal-item .info .subinfo.data-v-eb9bae84{
  166. font-size: 12px;
  167. color: #aaa;
  168. }
  169. .terminal-item .state.green.data-v-eb9bae84{
  170. background-image: linear-gradient(to right, #73e6a0 0%, #3eff8a 30%, #4edc86 60%, #b4ffd1 75%, #6be49a 100%);
  171. }
  172. .terminal-item .state.green .cake.data-v-eb9bae84{
  173. background-color: #ECFFF4;
  174. }
  175. .terminal-item .state.blue.data-v-eb9bae84{
  176. background-image: linear-gradient(to right, #3eb6f8 0%, #81d8ff 35%, #75ceff 65%, #94e2ff 80%, #2cb5ff 100%);
  177. }
  178. .terminal-item .state.blue .cake.data-v-eb9bae84{
  179. background-color: #E9F9FF;
  180. }
  181. .terminal-item .state.orange.data-v-eb9bae84{
  182. background-image: linear-gradient(to right, #FFE9BC 0%, #FFD070 35%, #FFD887 65%, #FFD887 80%, #FFC246 100%);
  183. }
  184. .terminal-item .state.orange .cake.data-v-eb9bae84{
  185. background-color: #FFF8EB;
  186. }
  187. .terminal-item .state.err.data-v-eb9bae84{
  188. background-image: linear-gradient(to right, #FFC4C4 0%, #F77474 35%, #FFAAAA 65%, #FFAAAA 80%, #F55B5B 100%);
  189. }
  190. .terminal-item .state.err .cake.data-v-eb9bae84{
  191. background-color: #FFE9E9;
  192. }
  193. /* 价格列表 */
  194. .price.data-v-eb9bae84{
  195. padding: 10px;
  196. background-color: #fff;
  197. border-radius: 8px;
  198. border: 1px solid transparent;
  199. position: relative;
  200. overflow: hidden;
  201. }
  202. .price + .price.data-v-eb9bae84{
  203. margin-top: 10px;
  204. }
  205. .price .header.data-v-eb9bae84{
  206. display: flex;
  207. align-items: center;
  208. }
  209. .price .header .icon.data-v-eb9bae84{
  210. display: flex;
  211. align-items: center;
  212. justify-content: center;
  213. width: 20px;
  214. height: 20px;
  215. font-size: 14px;
  216. color: #fff;
  217. border-radius: 4px;
  218. background-color: #ccc;
  219. margin-right: 14px;
  220. }
  221. .price .header .value.data-v-eb9bae84{
  222. font-size: 14px;
  223. font-weight: bold;
  224. }
  225. .price .info.data-v-eb9bae84{
  226. background-color: #F6F6F6;
  227. border-radius: 8px;
  228. padding: 10px;
  229. font-size: 14px;
  230. margin: 10px 0;
  231. }
  232. .price .info .row.data-v-eb9bae84{
  233. display: flex;
  234. align-items: center;
  235. justify-content: space-between;
  236. height: 30px;
  237. }
  238. .price .info .row .unit.data-v-eb9bae84{
  239. color: #aaa;
  240. margin-left: 5px;
  241. }
  242. .price .footer.data-v-eb9bae84{
  243. display: flex;
  244. align-items: center;
  245. justify-content: space-between;
  246. font-size: 14px;
  247. }
  248. .price.active.data-v-eb9bae84{
  249. border-color: #47B9F8;
  250. }
  251. .price.active .footer.data-v-eb9bae84,
  252. .price.active .header.data-v-eb9bae84{
  253. color: #47B9F8;
  254. }
  255. .price.active .header .icon.data-v-eb9bae84{
  256. background: linear-gradient(to right,#8FF8FB,#47AEFF);
  257. }
  258. .price.active.data-v-eb9bae84::after{
  259. content: '当前时段';
  260. display: flex;
  261. width: 76px;
  262. height: 30px;
  263. font-size: 14px;
  264. align-items: center;
  265. justify-content: center;
  266. color: #fff;
  267. background: linear-gradient(to right,#8FF8FB,#47AEFF);
  268. position: absolute;
  269. top: 0;
  270. right: 0;
  271. border-radius: 0 0 0 8px;
  272. text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
  273. }
  274. .price.active .row .name.data-v-eb9bae84{
  275. font-weight: bolder;
  276. }
  277. .price.active .row .value.data-v-eb9bae84,.price.active .row .unit.data-v-eb9bae84{
  278. font-size: 18px;
  279. font-weight: bolder;
  280. color: #FF5D50;
  281. }
  282. /* 底部 */
  283. .underside.data-v-eb9bae84{
  284. position: fixed;
  285. left: 0;
  286. right: 0;
  287. bottom: 0;
  288. z-index: 10;
  289. padding: 10px;
  290. padding-bottom: 0;
  291. }
  292. .underside .scan.data-v-eb9bae84{
  293. display: flex;
  294. align-items: center;
  295. justify-content: center;
  296. width: 100%;
  297. height: 50px;
  298. border-radius: 8px;
  299. font-size: 14px;
  300. background: linear-gradient(to right,#8FF8FB,#47AEFF);
  301. }
  302. .operation-price-box.data-v-eb9bae84{
  303. display: flex;
  304. align-items: center;
  305. }
  306. .operation-symbol.data-v-eb9bae84{
  307. font-size: 24rpx;
  308. }
  309. .operation-price.data-v-eb9bae84{
  310. font-weight: 800;
  311. font-size: 40rpx;
  312. color: #F5531A;
  313. }
  314. .mini-text.data-v-eb9bae84 {
  315. margin-left: 6rpx;
  316. font-size: 12px;
  317. }
  318. .operation-price-btn.data-v-eb9bae84 {
  319. margin-left: 20rpx;
  320. width: 140rpx;
  321. height: 40rpx;
  322. background: #FF6457;
  323. border-radius: 22rpx 22rpx 22rpx 22rpx;
  324. font-style: italic;
  325. text-align: center;
  326. line-height: 40rpx;
  327. font-weight: 400;
  328. font-size: 22rpx;
  329. color: #FFFFFF;
  330. }
  331. .ordinary-price.data-v-eb9bae84 {
  332. margin-left: 12rpx;
  333. font-size: 24rpx;
  334. color: #AAAAAA;
  335. text-decoration: line-through;
  336. }