app.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /**app.wxss**/
  2. page {
  3. background-color: #f8f8f8;
  4. box-sizing: border-box;
  5. color: #333;
  6. font-size: 14px;
  7. }
  8. view {
  9. box-sizing: border-box;
  10. }
  11. .container {
  12. height: 100%;
  13. display: flex;
  14. flex-direction: column;
  15. box-sizing: border-box;
  16. font-size: 14px;
  17. color: #5a5a5a;
  18. }
  19. .page-foot {
  20. position: absolute;
  21. bottom: 30px;
  22. width: 100%;
  23. /* margin: 15px 0; */
  24. text-align: center;
  25. font-size: 10px;
  26. color: #b0b0b0;
  27. }
  28. .border-bottom {
  29. border-bottom: solid 1px #e5e6e7;
  30. }
  31. .border-top {
  32. border-top: solid 1px #e5e6e7;
  33. }
  34. .no-border {
  35. border: none;
  36. }
  37. .loading {
  38. text-align: center;
  39. font-size: 12px;
  40. color: #999;
  41. margin-top: 20px;
  42. }
  43. .define-btn-kf {
  44. border: none;
  45. padding: 0;
  46. margin: 0;
  47. background-color: inherit;
  48. font-size: inherit;
  49. line-height: inherit;
  50. }
  51. .define-btn-kf::after {
  52. border: none;
  53. }
  54. .flex-row {
  55. display: flex;
  56. flex-direction: row;
  57. align-items: center;
  58. }
  59. .flex-between {
  60. justify-content: space-between;
  61. }
  62. .flex-around {
  63. justify-content: space-around;
  64. }
  65. .flex-start {
  66. justify-content: flex-start;
  67. }
  68. .flex-column {
  69. display: flex;
  70. flex-direction: column;
  71. }
  72. .no-more {
  73. margin: 50px 0;
  74. font-size: 12px;
  75. color: #888;
  76. text-align: center;
  77. }
  78. .define-btn-kf {
  79. border: none;
  80. padding: 0;
  81. margin: 0;
  82. background-color: inherit;
  83. font-size: inherit;
  84. line-height: inherit;
  85. }
  86. .define-btn-kf::after {
  87. border: none;
  88. }
  89. .no-btn {
  90. border: none;
  91. background: none;
  92. padding: 0;
  93. line-height: 1;
  94. overflow: visible;
  95. }
  96. .no-btn::after {
  97. border: none;
  98. background: none;
  99. }
  100. .map-label-num {
  101. display: flex;
  102. align-items: center;
  103. justify-content: center;
  104. background: #FFFFFF;
  105. min-width: 40rpx;
  106. height: 34rpx;
  107. font-family: DIN, DIN;
  108. font-size: 24rpx !important;
  109. color: #0074FF !important;
  110. background: #FFFFFF;
  111. border-radius: 18rpx;
  112. margin-left: 50rpx;
  113. margin-top: -40rpx;
  114. }
  115. .map-label {
  116. min-width: 250rpx;
  117. padding: 0 20rpx;
  118. height: 56rpx;
  119. background: #FFFFFF;
  120. box-shadow: 0rpx 0rpx 16rpx 0rpx rgba(197, 208, 219, 0.6);
  121. border-radius: 28rpx !important;
  122. font-weight: 500 !important;
  123. font-size: 26rpx !important;
  124. color: #060809 !important;
  125. display: flex;
  126. align-items: center;
  127. justify-content: center;
  128. margin-top: 120rpx;
  129. }
  130. .line2 {
  131. overflow: hidden;
  132. text-overflow: ellipsis;
  133. display: -webkit-box;
  134. -webkit-line-clamp: 2;
  135. -webkit-box-orient: vertical;
  136. }