charginglog.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /* pages/ucenter/charginglog/charginglog.wxss */
  2. page {
  3. background-color: #f4f4f4;
  4. height: 100%;
  5. overflow-y: hidden;
  6. }
  7. .title {
  8. background-color: #24e383;
  9. width: 100%;
  10. height: 88rpx;
  11. line-height: 88rpx;
  12. min-height: 88rpx;
  13. border-top: 1rpx solid #37c2ab;
  14. padding: 0 30rpx;
  15. font-family: 'Lucida Sans',
  16. 'Lucida Sans Regular',
  17. 'Lucida Grande',
  18. 'Lucida Sans Unicode',
  19. Geneva,
  20. Verdana,
  21. sans-serif;
  22. color: #fff;
  23. vertical-align: text-bottom;
  24. }
  25. .title text {
  26. padding: 0 10rpx 0 0;
  27. display: inline-block;
  28. font-size: 24rpx;
  29. text-overflow: ellipsis;
  30. white-space: nowrap;
  31. overflow: hidden;
  32. line-height: 24rpx;
  33. height: 24rpx;
  34. min-height: 24rpx;
  35. }
  36. .title .bold {
  37. font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  38. font-style: italic;
  39. font-weight: bold;
  40. font-size: 28rpx;
  41. line-height: 28rpx;
  42. height: 28rpx;
  43. min-height: 28rpx;
  44. }
  45. .context {
  46. height: calc(100% - 89rpx);
  47. }
  48. .context_block {
  49. width: 100%;
  50. height: 32rpx;
  51. }
  52. .text_context {
  53. position: relative;
  54. height: 325rpx;
  55. background: #fff;
  56. padding: 0 30rpx;
  57. margin: 0 20rpx 32rpx 20rpx;
  58. border-radius: 20rpx;
  59. box-shadow: 0rpx 4rpx 4rpx #d5d5d5;
  60. }
  61. .text_context.active {
  62. background-color: #ebebeb;
  63. }
  64. .charging_text_title {
  65. height: 105rpx;
  66. width: 100%;
  67. display: flex;
  68. }
  69. .charging_text_title1 {
  70. width: 100%;
  71. text-overflow: ellipsis;
  72. white-space: nowrap;
  73. overflow: hidden;
  74. }
  75. .charging {
  76. width: 45rpx;
  77. height: 45rpx;
  78. margin: 30rpx 30rpx 30rpx 0;
  79. flex-shrink: 0;
  80. overflow: hidden;
  81. }
  82. .charging image {
  83. width: 45rpx;
  84. height: 45rpx;
  85. }
  86. .text_context text {
  87. margin: 0 0 20rpx 0;
  88. display: block;
  89. font-size: 24rpx;
  90. font-family: 'Lucida Sans',
  91. 'Lucida Sans Regular',
  92. 'Lucida Grande',
  93. 'Lucida Sans Unicode',
  94. Geneva,
  95. Verdana,
  96. sans-serif;
  97. color: #545253;
  98. text-overflow: ellipsis;
  99. white-space: nowrap;
  100. overflow: hidden;
  101. line-height: 24rpx;
  102. height: 24rpx;
  103. min-height: 24rpx;
  104. }
  105. .text_context .bold {
  106. font-weight: bold;
  107. line-height: 24rpx;
  108. height: 24rpx;
  109. min-height: 24rpx;
  110. margin-top: 28rpx;
  111. margin-bottom: 5rpx;
  112. display: block;
  113. }
  114. .text_context .h1 {
  115. margin: 0rpx 0rpx 28rpx 0rpx;
  116. font-size: 20rpx;
  117. line-height: 20rpx;
  118. height: 20rpx;
  119. min-height: 20rpx;
  120. color: #959595;
  121. }
  122. .text_context .h1, text.gray {
  123. color: #959595;
  124. }
  125. text.inline {
  126. display: inline-block;
  127. }
  128. text.red {
  129. color: red;
  130. }