拓恒河湖长制全民护河平台WEB端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

138 lines
2.9KB

  1. /* pages/all/index.wxss */
  2. .protecityct_container {
  3. width: 100%;
  4. height: calc(100vh - 90rpx);
  5. display: flex;
  6. flex-direction: column;
  7. justify-content: flex-start;
  8. align-items: center;
  9. color: #333333;
  10. background-color: rgba(242, 246, 249, 1);
  11. }
  12. .protect_head {
  13. width: 100%;
  14. display: flex;
  15. flex-direction: column;
  16. justify-content: flex-start;
  17. align-items: flex-end;
  18. }
  19. .select_location {
  20. width: 150rpx;
  21. height: 60rpx;
  22. margin-right: 30rpx;
  23. line-height: 60rpx;
  24. text-align: center;
  25. border: 1rpx solid #e0e0e0;
  26. border-radius: 10rpx;
  27. color: #999;
  28. font-size: 24rpx;
  29. }
  30. .search_container {
  31. width: 100%;
  32. box-sizing: border-box;
  33. padding: 20rpx 30rpx;
  34. margin-bottom: 20rpx;
  35. background: #fff;
  36. position: relative;
  37. }
  38. .search_icon{
  39. height: 34rpx;
  40. width: 34rpx;
  41. position: absolute;
  42. top:50%;
  43. left:51rpx;
  44. transform: translateY(-50%);
  45. }
  46. .task-search {
  47. height: 70rpx;
  48. text-align: left;
  49. background: #F3F4F5;
  50. border-radius: 30rpx;
  51. font-size: 28rpx;
  52. padding-left: 80rpx;
  53. }
  54. .placeholder-style{
  55. font-family: "PingFangSC-Regular", "PingFang SC";
  56. font-weight: normal;
  57. color: #a6a6a6;
  58. }
  59. /* 列表样式 */
  60. .river_list {
  61. width: 100%;
  62. height: calc(100% - 140rpx);
  63. }
  64. .river_item {
  65. width: 100%;
  66. margin-bottom: 20rpx;
  67. padding: 30rpx;
  68. display: flex;
  69. justify-content: space-between;
  70. align-items: flex-start;
  71. background-color: #ffffff;
  72. border-radius: 10rpx;
  73. box-shadow: 0px 0px 14px 2px rgba(43,93,184,0.09);
  74. }
  75. .river_image {
  76. width: 180rpx;
  77. height: 180rpx;
  78. margin-right: 30rpx;
  79. border-radius: 10rpx;
  80. }
  81. .river_info {
  82. flex: 1;
  83. height: 100%;
  84. display: flex;
  85. flex-direction: column;
  86. justify-content: flex-start;
  87. align-items: flex-start;
  88. }
  89. .river_head {
  90. width: 100%;
  91. margin-bottom: 10rpx;
  92. display: flex;
  93. justify-content: space-between;
  94. align-items: center;
  95. }
  96. .river_name {
  97. font-weight: 600;
  98. max-width: 280rpx;
  99. overflow: hidden;
  100. white-space: nowrap;
  101. text-overflow: ellipsis;
  102. }
  103. .river_button {
  104. width: 132rpx;
  105. height: 50rpx;
  106. font-size: 26rpx;
  107. color: #fff;
  108. line-height: 50rpx;
  109. text-align: center;
  110. background-color: #2a82e4;
  111. border-radius: 8rpx;
  112. align-self: flex-end;
  113. }
  114. .river_location {
  115. max-width: 440rpx;
  116. margin-bottom: 10rpx;
  117. padding: 8rpx 14rpx;
  118. background-color: rgba(40, 127, 251, 0.1);
  119. color: rgba(40, 127, 251, 1);
  120. border-radius: 10rpx;
  121. font-size: 26rpx;
  122. overflow: hidden;
  123. white-space: nowrap;
  124. text-overflow: ellipsis;
  125. }
  126. .river_note {
  127. max-width: 440rpx;
  128. font-size: 28rpx;
  129. color: rgba(118, 120, 129, 1);
  130. display: -webkit-box;
  131. overflow: hidden;
  132. text-overflow: ellipsis;
  133. word-wrap: break-word;
  134. white-space: normal !important;
  135. -webkit-line-clamp: 2;
  136. -webkit-box-orient: vertical;
  137. }