warning.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /* 搜索框 */
  2. .warnind-seek-box {
  3. position: fixed;
  4. width: 100%;
  5. z-index: 200;
  6. background: #fff;
  7. }
  8. .warnind-seek {
  9. border-radius: 15px;
  10. border: 1px solid #f6f6f6;
  11. width: 70%;
  12. font-size: 14px;
  13. padding: 10rpx 0 10rpx 25rpx;
  14. margin: 20rpx 0 0 60rpx;
  15. background: #f6f6f6;
  16. }
  17. /* 搜索图标 */
  18. .warnind-seek-img {
  19. width: 50rpx;
  20. height: 50rpx;
  21. float: right;
  22. margin: -40rpx -60rpx 0 0;
  23. }
  24. /* 列表数据 */
  25. .warnind-ul {
  26. width: 90%;
  27. position: relative;
  28. top: 120rpx;
  29. left: 4%;
  30. }
  31. .warnind-list {
  32. border: 1px solid #fff;
  33. display: flex;
  34. justify-content: space-between;
  35. border-radius: 5px;
  36. box-shadow: 0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04);
  37. position: relative;
  38. margin: 0 0 30rpx 0;
  39. }
  40. .warnind-list-line {
  41. border-right: 1px dashed #9d9d9d;
  42. height: 100%;
  43. width: 1px;
  44. float: right;
  45. margin: 0 0 0 30rpx;
  46. }
  47. /* 半圆 */
  48. .warnind-list::after {
  49. width: 20px;
  50. height: 12px;
  51. content: "";
  52. right: 287px;
  53. top: -2px;
  54. position: absolute;
  55. display: block;
  56. border-radius: 0 0 10px 10px;
  57. box-shadow: 0px 0px 2px 2px rgb(248, 247, 247) inset;
  58. background-color: #f9f9f9;
  59. }
  60. .warnind-list::before {
  61. width: 20px;
  62. height: 12px;
  63. content: "";
  64. left: 61px;
  65. top: 65px;
  66. position: absolute;
  67. display: block;
  68. border-radius: 10px 10px 0 0;
  69. box-shadow: 0px 0px 1px 1px rgb(248, 247, 247) inset;
  70. background-color: #f9f9f9;
  71. }
  72. .warnind-list-img-box {
  73. /* border: 1px solid #000; */
  74. }
  75. .warnind-list-img {
  76. width: 80rpx;
  77. height: 80rpx;
  78. padding: 20rpx 0 20rpx 20rpx;
  79. }
  80. .warnind-list-img-right {
  81. width: 50rpx;
  82. height: 50rpx;
  83. padding: 40rpx 20rpx 30rpx 0;
  84. }
  85. .warnind-list-box {
  86. /* border: 1px solid #000; */
  87. padding: 20rpx 0 20rpx 0;
  88. margin: 0 0 0 -25rpx;
  89. }
  90. .warnind-list-id,
  91. .warnind-list-name {
  92. display: flex;
  93. }
  94. .warnind-list-id-line {
  95. border: 1px solid #3ad19c;
  96. width: 6px;
  97. height: 6px;
  98. border-radius: 50px;
  99. margin: 15rpx 0 20rpx 0;
  100. }
  101. .warnind-list-id-tit {
  102. font-size: 14px;
  103. color: #636363;
  104. font-weight: 550;
  105. margin-left: 10rpx;
  106. }
  107. .warnind-list-id-txt {
  108. font-size: 14px;
  109. color: #636363;
  110. font-weight: 550;
  111. margin-left: 10rpx;
  112. }
  113. .warnind-list-name-line {
  114. border: 1px solid #3ad19c;
  115. width: 6px;
  116. height: 6px;
  117. border-radius: 50px;
  118. margin: 15rpx 0 20rpx 0;
  119. }
  120. .warnind-list-name-tit {
  121. font-size: 14px;
  122. color: #636363;
  123. font-weight: 550;
  124. margin-left: 10rpx;
  125. }
  126. .warnind-list-name-txt {
  127. /* font-size: 14px;
  128. color: #636363;
  129. font-weight: 550; */
  130. margin-left: 10rpx;
  131. color: #636363;
  132. font-size: 12px;
  133. font-weight: 500;
  134. line-height: 40rpx;
  135. text-align: left;
  136. width: 272rpx;
  137. overflow: hidden;
  138. /* text-overflow: ellipsis; */
  139. white-space: nowrap;
  140. display: -webkit-box;
  141. -webkit-line-clamp: 2;
  142. /* autoprefixer: off */
  143. -webkit-box-orient: vertical;
  144. /* autoprefixer: on */
  145. word-break: break-all;
  146. }
  147. /* 返回顶部 */
  148. .goTop {
  149. height: 80rpx;
  150. width: 80rpx;
  151. position: fixed;
  152. bottom: 50rpx;
  153. /* background: rgba(0,0,0,.3); */
  154. right: 30rpx;
  155. border-radius: 50%;
  156. }
  157. /* 底部提示 */
  158. .warnind-ul-dowtxt {
  159. height: 50rpx;
  160. text-align: center;
  161. font-size: 15px;
  162. color: rgb(129, 129, 129);
  163. }