elpackage.wxss 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. /* pages/scan_result/scan_result.wxss */
  2. page {
  3. height: 100%;
  4. }
  5. view.inline {
  6. display: inline-block;
  7. vertical-align: middle;
  8. line-height: 28rpx;
  9. height: 28rpx;
  10. min-height: 28rpx;
  11. }
  12. .map_text {
  13. position: relative;
  14. height: calc(100% - 160rpx);
  15. padding: 20rpx 30rpx 0 30rpx;
  16. box-shadow: 0rpx 6rpx 6rpx #f5f5f5 inset;
  17. width: calc(100% - 60rpx);
  18. }
  19. .charging_text_title {
  20. height: 105rpx;
  21. width: 100%;
  22. display: flex;
  23. margin-bottom: 20rpx;
  24. }
  25. .charging_text_title1 {
  26. width: 100%;
  27. text-overflow: ellipsis;
  28. white-space: nowrap;
  29. overflow: hidden;
  30. }
  31. .charging {
  32. width: 62rpx;
  33. height: 62rpx;
  34. margin: 30rpx 30rpx 30rpx 0;
  35. flex-shrink: 0;
  36. overflow: hidden;
  37. }
  38. .charging image {
  39. width: 62rpx;
  40. height: 62rpx;
  41. }
  42. text {
  43. margin: 0 0 18rpx 0;
  44. display: block;
  45. font-size: 26rpx;
  46. font-family: 'Lucida Sans',
  47. 'Lucida Sans Regular',
  48. 'Lucida Grande',
  49. 'Lucida Sans Unicode',
  50. Geneva,
  51. Verdana,
  52. sans-serif;
  53. color: #231400;
  54. text-overflow: ellipsis;
  55. white-space: nowrap;
  56. overflow: hidden;
  57. line-height: 30rpx;
  58. height: 30rpx;
  59. min-height: 30rpx;
  60. }
  61. text.bold {
  62. font-weight: bold;
  63. line-height: 34rpx;
  64. height: 34rpx;
  65. min-height: 34rpx;
  66. margin-top: 28rpx;
  67. margin-bottom: 8rpx;
  68. display: block;
  69. font-size: 30rpx;
  70. }
  71. text.inline {
  72. display: inline-block;
  73. color: #575757;
  74. margin-top:18rpx;
  75. margin-bottom: 0;
  76. }
  77. .h1 {
  78. margin: 0rpx 0rpx 24rpx 0rpx;
  79. font-size: 24rpx;
  80. line-height: 28rpx;
  81. height: 28rpx;
  82. min-height: 28rpx;
  83. color: #a3a3a3;
  84. }
  85. .charg_button {
  86. font-size: 32rpx;
  87. margin: 20rpx 65rpx;
  88. height: 90rpx;
  89. font-family: 'Lucida Sans',
  90. 'Lucida Sans Regular',
  91. 'Lucida Grande',
  92. 'Lucida Sans Unicode',
  93. Geneva,
  94. Verdana,
  95. sans-serif;
  96. color: #ffffff;
  97. text-overflow: ellipsis;
  98. white-space: nowrap;
  99. background-color: #1d9bf7;
  100. border-radius: 45rpx;
  101. box-shadow: 0rpx 16rpx 0rpx #edf5fd;
  102. border: none;
  103. position: fixed;
  104. bottom: 10rpx;
  105. width: 80%;
  106. }
  107. .charg_button.button-hover {
  108. background-color: #1d9cf7b9;
  109. color: #ffffff;
  110. }
  111. .rtable{
  112. width: 100%;
  113. display: flex;
  114. flex-direction: column;
  115. justify-content: space-between;
  116. }
  117. .rtable .rtr{
  118. width: 100%;
  119. height: 40rpx;
  120. display: flex;
  121. flex-direction: row;
  122. }
  123. .rtable .rtr{
  124. font-size: 26rpx;
  125. }
  126. .rtable .rtr.active{
  127. color:#f06c6c;
  128. font-weight: bold;
  129. font-size: 28rpx;
  130. font-style: italic;
  131. }
  132. .rtable .rtr .rtd{
  133. font-size: 26rpx;
  134. }
  135. .rtable .rtr .rtd.t1{
  136. width: 210rpx
  137. }
  138. .rtable .rtr .rtd.t2{
  139. width: 180rpx
  140. }
  141. .context{
  142. height: 1400rpx;
  143. width: 100%;
  144. }
  145. .richHourNum{
  146. display: inline;
  147. color: red;
  148. padding-left: 10rpx;
  149. padding-right: 20rpx;
  150. }
  151. .scan_img{
  152. width:400rpx;
  153. height:400rpx;
  154. padding: 0 calc((100% - 400rpx) / 2);
  155. }
  156. .scan_text{
  157. word-wrap: break-word;
  158. word-break: break-all;
  159. white-space: pre-line;
  160. text-align: center;
  161. padding:0 calc((100% - 500rpx) / 2);
  162. padding-bottom: 200rpx;
  163. }
  164. .cardHub{
  165. height:calc(100% - 230rpx);
  166. width:100%;
  167. background-color: #FFF;
  168. }
  169. .cardHub .card{
  170. float:left;
  171. margin-bottom: 20rpx;
  172. width:330rpx;
  173. height:200rpx;
  174. background-color: #FFFFFF;
  175. display:flex;
  176. flex-direction: column;
  177. position: relative;
  178. overflow: hidden;
  179. box-shadow:0px 0px 5px 1px #DEDEDEFF;
  180. border-radius: 15rpx;
  181. }
  182. .cardHub .card:nth-child(odd){
  183. margin-right: 20rpx;
  184. }
  185. .cardHub .card .circleOut{
  186. background-color: #21ADFF;
  187. position: absolute;
  188. width: 28rpx;
  189. height: 28rpx;
  190. border-radius: 50%;
  191. padding: 0;
  192. top:10rpx;
  193. left:10rpx;
  194. }
  195. .cardHub .card .circleOut .circleIn{
  196. background-color: #ebf8ff;
  197. color:#21ADFF;
  198. font-size: 18rpx;
  199. width: 24rpx;
  200. height: 24rpx;
  201. line-height: 22rpx;
  202. text-align: center;
  203. border-radius: 50%;
  204. margin: 3rpx;
  205. padding: 0;
  206. }
  207. .cardHub .card .main{
  208. width:100%;
  209. height:calc(100% - 34rpx);
  210. background:#ebf8ff;
  211. }
  212. .cardHub .card .main .no{
  213. width:100%;
  214. height:32rpx;
  215. font-size: 24rpx;
  216. text-align: center;
  217. color: #21ADFF;
  218. line-height: 80rpx;
  219. }
  220. .cardHub .card .foot{
  221. width:100%;
  222. height:34rpx;
  223. background-color:#21ADFF;
  224. font-size: 24rpx;
  225. color:#FFF;
  226. text-align: center;
  227. }
  228. .cardHub .card.dis .main{
  229. background-color: #EEEEEE;
  230. color:#A4A3A3;
  231. }
  232. .cardHub .card.dis .foot{
  233. background-color: #B6B3B1;
  234. }
  235. .cardHub .card.dis .circleOut .circleIn{
  236. background-color: #EEEEEE;
  237. color:#A4A3A3;
  238. }
  239. .cardHub .card.dis .circleOut{
  240. background-color: #B6B3B1;
  241. }
  242. .cardHub .card.dis .no{
  243. color:#A4A3A3;
  244. }