合伙人运营小程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

index.wxss 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /* 自定义导航栏 */
  2. .details{
  3. width: 100%;
  4. height: 100vh;
  5. display: flex;
  6. flex-direction: column;
  7. background: linear-gradient(to bottom, #007544 -40%, #F0F5F5 40%,#F0F5F5 100%);
  8. }
  9. .navigation-container {
  10. position: fixed;
  11. width: 100%;
  12. z-index: 99;
  13. }
  14. .navigation-bar {
  15. position: relative;
  16. width: 100%;
  17. display: flex;
  18. align-items: center;
  19. justify-content: center;
  20. flex-direction: row;
  21. color: #333333;
  22. }
  23. .nav-title {
  24. height: 100%;
  25. display: flex;
  26. align-items: center;
  27. margin-left: 20rpx;
  28. box-sizing: border-box;
  29. }
  30. .nav-search {
  31. position: absolute;
  32. display: flex;
  33. justify-content: flex-end;
  34. align-items: center;
  35. }
  36. .bg-logo {
  37. width:100%;
  38. height: 100%;
  39. display: flex;
  40. align-items: center;
  41. color: #f7f7f7;
  42. position: absolute;
  43. top: 0;
  44. left:20rpx;
  45. }
  46. .detail_s{
  47. height: 100%;
  48. font-size: 28rpx;
  49. display: flex;
  50. align-items: center;
  51. margin-right: 30px;
  52. }
  53. .container{
  54. width: 100%;
  55. height: 800rpx;
  56. margin-top: 200rpx;
  57. }
  58. #mychart-dom-gauge{
  59. width: 100%;
  60. height: 800rpx;
  61. }
  62. .canvasArea1 {
  63. width: 100%;
  64. display: flex;
  65. flex-direction: column;
  66. align-items: center;
  67. margin-top: 60rpx;
  68. }
  69. .realtime2{
  70. width: 100%;
  71. display: flex;
  72. justify-content: space-between;
  73. padding: 0rpx 20rpx;
  74. padding-top: 20rpx;
  75. box-sizing: border-box;
  76. }
  77. .realtime_left2{
  78. width: 48%;
  79. height: 100rpx;
  80. display: flex;
  81. align-items: center;
  82. justify-content: space-around;
  83. border-radius: 10rpx;
  84. font-size: 14px;
  85. background-color: #ffffff;
  86. }
  87. .realtime_title{
  88. font-size: 14px;
  89. margin-top: 10rpx;
  90. color: #222;
  91. }
  92. .realtime_text{
  93. font-size: 18px;
  94. margin-right: 4px;
  95. color: #00BA82;
  96. }
  97. .realtime_right2{
  98. width: 48%;
  99. height: 100rpx;
  100. display: flex;
  101. align-items: center;
  102. justify-content: center;
  103. font-size: 14px;
  104. background-color: #ffffff;
  105. justify-content: space-around;
  106. border-radius: 10rpx;
  107. }
  108. .realtime_title{
  109. font-size: 14px;
  110. margin-top: 10rpx;
  111. color: #222;
  112. }
  113. /* // {
  114. // type: "gauge",
  115. // radius: "77%",
  116. // z: 4,
  117. // axisTick: {
  118. // show: true,
  119. // lineStyle: {
  120. // width: 2,
  121. // color: 'rgba(1, 244, 255, 0.9)'
  122. // }
  123. // },
  124. // splitLine: {
  125. // length: 16,
  126. // lineStyle: {
  127. // width: 2,
  128. // color: 'rgba(1, 244, 255, 0.9)'
  129. // }
  130. // },
  131. // axisLabel: {
  132. // show: false
  133. // },
  134. // axisLine: {
  135. // lineStyle: {
  136. // opacity: 0
  137. // }
  138. // },
  139. // detail: {
  140. // valueAnimation: true,
  141. // formatter: `${value}%`
  142. // },
  143. // data: [
  144. // {
  145. // value: value,
  146. // name: `${value}%`
  147. // }
  148. // ],
  149. // progress: {
  150. // show: true,
  151. // itemStyle: {
  152. // width: 2,
  153. // color: 'rgba(1, 144, 155, 0.9)'
  154. // // color: 'red' // 设置进度条颜色为红色
  155. // }
  156. // },
  157. // pointer: {
  158. // show: false // 去掉指针
  159. // }
  160. // }, */