scan_result.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /* pages/scan_result/scan_result.wxss */
  2. page {
  3. background-color: #f4f4f4;
  4. height: 100%;
  5. overflow-y:hidden;
  6. }
  7. view.inline {
  8. display: inline-block;
  9. vertical-align: middle;
  10. line-height: 28rpx;
  11. height: 28rpx;
  12. min-height: 28rpx;
  13. }
  14. .map_text {
  15. position: relative;
  16. height: calc(100% - 210rpx);
  17. background: #fff;
  18. padding: 0 30rpx;
  19. margin: 30rpx 20rpx 50rpx 20rpx;
  20. border-radius: 20rpx;
  21. box-shadow: 0rpx 4rpx 4rpx #d5d5d5;
  22. }
  23. .map_text.active{
  24. background-color: #ebebeb;
  25. }
  26. .charging_text_title {
  27. height: 105rpx;
  28. width: 100%;
  29. display: flex;
  30. }
  31. .charging_text_title1 {
  32. width: 100%;
  33. text-overflow: ellipsis;
  34. white-space: nowrap;
  35. overflow: hidden;
  36. }
  37. .charging {
  38. width: 45rpx;
  39. height: 45rpx;
  40. margin: 30rpx 30rpx 30rpx 0;
  41. flex-shrink: 0;
  42. overflow: hidden;
  43. }
  44. .charging image {
  45. width: 45rpx;
  46. height: 45rpx;
  47. }
  48. text {
  49. margin: 0 0 20rpx 0;
  50. display: block;
  51. font-size: 24rpx;
  52. font-family: 'Lucida Sans',
  53. 'Lucida Sans Regular',
  54. 'Lucida Grande',
  55. 'Lucida Sans Unicode',
  56. Geneva,
  57. Verdana,
  58. sans-serif;
  59. color: #545253;
  60. text-overflow: ellipsis;
  61. white-space: nowrap;
  62. overflow: hidden;
  63. line-height: 24rpx;
  64. height: 24rpx;
  65. min-height: 24rpx;
  66. }
  67. text.bold {
  68. font-weight: bold;
  69. line-height: 24rpx;
  70. height: 24rpx;
  71. min-height: 24rpx;
  72. margin-top: 30rpx;
  73. margin-bottom: 1rpx;
  74. display: block;
  75. }
  76. text.inline {
  77. display: inline-block;
  78. color: #959595;
  79. }
  80. text.fast {
  81. color: #2483c0;
  82. }
  83. text.slow {
  84. color: #42b9b4;
  85. }
  86. .h1 {
  87. margin: 0rpx 0rpx 30rpx 0rpx;
  88. font-size: 20rpx;
  89. line-height: 20rpx;
  90. height: 20rpx;
  91. min-height: 20rpx;
  92. color: #959595;
  93. }
  94. .charg_button{
  95. font-size: 32rpx;
  96. margin: 50rpx 30rpx;
  97. font-family: 'Lucida Sans',
  98. 'Lucida Sans Regular',
  99. 'Lucida Grande',
  100. 'Lucida Sans Unicode',
  101. Geneva,
  102. Verdana,
  103. sans-serif;
  104. color: #ffffff;
  105. text-overflow: ellipsis;
  106. white-space: nowrap;
  107. background-color: #25e285;
  108. }
  109. .charg_button.button-hover{
  110. background-color: #1ca05e;
  111. }