app.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. @import "colorui/main.wxss";
  2. @import "colorui/icon.wxss";
  3. .no_more {
  4. width: 100%;
  5. color: #3f4245;
  6. text-align: center;
  7. padding: 10rpx 0;
  8. }
  9. .bg-lw-header {
  10. background-color: #e60012;
  11. color: white;
  12. }
  13. .lw-red {
  14. background-color: #e60012 !important;
  15. color: white;
  16. }
  17. /* 搜索框 */
  18. .lw-search {
  19. width: 624rpx;
  20. height: 60rpx;
  21. border: 2rpx solid #dfe3ea;
  22. display: flex;
  23. align-items: center;
  24. border-radius: 40rpx;
  25. margin-left: 63rpx;
  26. overflow: hidden;
  27. }
  28. .lw-search .action {
  29. text-align: center;
  30. width: 102rpx;
  31. padding-left: 8rpx;
  32. background-color: white;
  33. height: 60rpx;
  34. line-height: 60rpx;
  35. }
  36. .lw-search .search-form {
  37. width: 442rpx;
  38. background-color: #dfe3ea;
  39. height: 60rpx;
  40. display: flex;
  41. align-items: center;
  42. }
  43. .lw-search .search-form input {
  44. padding-left: 30rpx;
  45. width: 100%;
  46. }
  47. .lw-search .search-form .placeholder {
  48. color: #687a9c;
  49. }
  50. .lw-search .search-icon {
  51. background-color: #dfe3ea;
  52. width: 80rpx;
  53. height: 60rpx;
  54. padding-left: 20rpx;
  55. display: flex;
  56. align-items: center;
  57. }
  58. /* 列表 */
  59. .lw-list {
  60. background-color: #efefef;
  61. }
  62. .lw-list .lw-item {
  63. background-color: white;
  64. margin: 10rpx;
  65. border: 2rpx solid #cccccc;
  66. border-radius: 10rpx;
  67. box-shadow: 0 0 4rpx #e8e8e8;
  68. padding: 10rpx 22rpx 0 22rpx;
  69. }
  70. .lw-list .lw-item .title {
  71. font-size: 28rpx;
  72. color: #221815;
  73. }
  74. .lw-list .lw-item .content {
  75. height: 150rpx;
  76. display: flex;
  77. margin: 20rpx 0;
  78. }
  79. .lw-list .lw-item .content>image {
  80. width: 284rpx;
  81. height: 150rpx;
  82. border-radius: 6rpx;
  83. }
  84. .lw-list .lw-item .content .desc {
  85. width: 400rpx;
  86. margin-left: 20rpx;
  87. }
  88. .lw-list .lw-item .content .desc .text-content {
  89. color: #858585;
  90. font-size: 22rpx;
  91. overflow: hidden;
  92. text-overflow: ellipsis;
  93. display: -webkit-box;
  94. -webkit-box-orient: vertical;
  95. -webkit-line-clamp: 2;
  96. line-height: 36rpx;
  97. height: 72rpx;
  98. }
  99. .lw-list .lw-item .content .desc .text-join {
  100. color: #858585;
  101. font-size: 22rpx;
  102. height: 46rpx;
  103. line-height: 40rpx;
  104. }
  105. /* 站点 */
  106. .site-list {
  107. background-color: #efefef;
  108. }
  109. .site-list .site-item {
  110. background-color: white;
  111. margin: 10rpx;
  112. border: 2rpx solid #cccccc;
  113. border-radius: 10rpx;
  114. box-shadow: 0 0 4rpx #e8e8e8;
  115. display: flex;
  116. padding: 20rpx 10rpx;
  117. }
  118. .site-item .main_image {
  119. width: 280rpx;
  120. height: 190rpx;
  121. margin-right: 20rpx;
  122. }
  123. .site-item .content {
  124. width: 430rpx;
  125. }
  126. .site-list .site-item .site-name {
  127. color: #221815;
  128. font-size: 28rpx;
  129. height: 80rpx;
  130. }
  131. .site-list .site-item .site-address {
  132. height: 40rpx;
  133. display: flex;
  134. align-items: center;
  135. color: #858585;
  136. font-size: 22rpx;
  137. }
  138. .site-item .content .site-address .address {
  139. width: 390rpx;
  140. }
  141. .site-list .site-item .site-address image {
  142. width: 30rpx;
  143. height: 30rpx;
  144. margin-right: 10rpx;
  145. }
  146. .site-list .site-item .site-mobile {
  147. margin-top: 40rpx;
  148. display: flex;
  149. align-items: center;
  150. color: #858585;
  151. font-size: 22rpx;
  152. }
  153. .site-list .site-item .site-mobile image {
  154. width: 40rpx;
  155. height: 30rpx;
  156. margin-right: 10rpx;
  157. }