index.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. page {
  2. position: relative;
  3. box-sizing: border-box;
  4. padding-bottom: 250rpx;
  5. overflow: hidden;
  6. width: 100%;
  7. height: 100%;
  8. }
  9. .count {
  10. z-index: 99;
  11. position: fixed;
  12. top: 30rpx;
  13. left: 30rpx;
  14. }
  15. .panel {
  16. box-sizing: border-box;
  17. padding-top: 10rpx;
  18. width: 100%;
  19. height: 250rpx;
  20. }
  21. .panel-base {
  22. position: relative;
  23. width: 100%;
  24. height: 120rpx;
  25. box-sizing: border-box;
  26. padding-left: 120rpx;
  27. }
  28. .panel-base-avatar {
  29. position: absolute;
  30. top: 15rpx;
  31. left: 15rpx;
  32. width: 90rpx;
  33. height: 90rpx;
  34. }
  35. .panel-base-name {
  36. box-sizing: border-box;
  37. width: 100%;
  38. height: 60rpx;
  39. line-height: 60rpx;
  40. font-size: 28rpx;
  41. }
  42. .panel-base-battery {
  43. box-sizing: border-box;
  44. line-height: 20rpx;
  45. }
  46. .panel-base-battery image {
  47. vertical-align: text-top;
  48. width: 40rpx;
  49. height: 40rpx;
  50. }
  51. .panel-base-battery text {
  52. margin-left: 10rpx;
  53. font-size: 24rpx;
  54. }
  55. .panel-base-call {
  56. text-align: center;
  57. line-height: 60rpx;
  58. color: white;
  59. top: 25rpx;
  60. right: 20rpx;
  61. border-radius: 100rpx;
  62. position: absolute;
  63. width: 120rpx;
  64. height: 60rpx;
  65. background: linear-gradient(45deg, rgb(135, 235, 111), rgb(18, 220, 123));
  66. }
  67. .panel-site {
  68. margin-top: 10rpx;
  69. overflow: hidden;
  70. width: 100%;
  71. height: 100rpx;
  72. }
  73. .panel-site-text {
  74. display: inline-block;
  75. position: relative;
  76. box-sizing: border-box;
  77. padding-left: 20rpx;
  78. width: 480rpx;
  79. height: 100rpx;
  80. color: var(--darkGray);
  81. font-size: 26rpx;
  82. line-height: 40rpx;
  83. text-indent: 100rpx;
  84. }
  85. .panel-site-nav {
  86. position: absolute;
  87. top: 0;
  88. left: 15rpx;
  89. width: 90rpx;
  90. height: 40rpx;
  91. background: var(--greyLight);
  92. border-radius: 100rpx;
  93. font-size: 22rpx;
  94. line-height: 40rpx;
  95. color: var(--black);
  96. text-indent: 0;
  97. text-align: center;
  98. }
  99. .panel-site-nav image {
  100. width: 20rpx;
  101. height: 20rpx;
  102. }
  103. .panel-site-date {
  104. float: right;
  105. margin-right: 10rpx;
  106. background: rgba(89, 170, 255, 0.2);
  107. text-align: center;
  108. font-size: 22rpx;
  109. color: #2d8cf0;
  110. border-radius: 20rpx;
  111. width: 120rpx;
  112. height: 40rpx;
  113. line-height: 40rpx;
  114. }
  115. .panel-site-refresh {
  116. box-sizing: border-box;
  117. padding-top: 12rpx;
  118. text-align: center;
  119. float: right;
  120. width: 70rpx;
  121. height: 70rpx;
  122. background: var(--greyLight);
  123. border-radius: 70rpx;
  124. margin: 15rpx 30rpx;
  125. }
  126. .map {
  127. z-index: 1;
  128. width: 100%;
  129. height: 100%;
  130. }
  131. .debug {
  132. border-radius: 10rpx;
  133. z-index: 99;
  134. min-height: 270rpx;
  135. box-sizing: border-box;
  136. padding: 10rpx;
  137. width: 280rpx;
  138. position: absolute;
  139. top: 30rpx;
  140. right: 30rpx;
  141. background: rgba(0, 0, 0, .4);
  142. }
  143. .debug view {
  144. color: white;
  145. width: 100%;
  146. line-height: 36rpx;
  147. font-size: 24rpx;
  148. }