HazardPublicity.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .container {
  2. background-color: #f3f3f3;
  3. }
  4. .headerBox {
  5. line-height: 0;
  6. background-color: #fff;
  7. }
  8. .searchBox {
  9. padding: 20rpx;
  10. position: relative;
  11. }
  12. .searchIcon {
  13. position: absolute;
  14. top: 40rpx;
  15. left: 50rpx;
  16. }
  17. .searchInput {
  18. background-color: #F6F7F8;
  19. border-radius: 30rpx;
  20. padding: 10rpx 110rpx 10rpx 80rpx;
  21. width: calc(100% - 190rpx);
  22. height: 46rpx;
  23. line-height: 46rpx;
  24. }
  25. .searchBtn {
  26. position: absolute;
  27. line-height: 48rpx;
  28. top: 28rpx;
  29. right: 28rpx;
  30. background-color: #E5F7FF;
  31. color: #3e6ffd;
  32. font-size: 28rpx;
  33. padding: 2rpx 20rpx;
  34. border-radius: 30rpx;
  35. }
  36. .contentBox {
  37. position: relative;
  38. height: calc(100% - 108rpx);
  39. }
  40. .listInfo {
  41. margin: 20rpx;
  42. padding: 30rpx 20rpx;
  43. border-radius: 20rpx;
  44. background-color: #fff;
  45. }
  46. .listCode {
  47. padding-bottom: 30rpx;
  48. border-bottom: 2rpx #EEEEEE solid;
  49. }
  50. .codeTextBox {
  51. width: calc(100% - 120rpx);
  52. display: inline-block;
  53. font-size: 28rpx;
  54. color: #666666;
  55. vertical-align: middle;
  56. }
  57. .codeText {
  58. color: #000006;
  59. }
  60. .codeStatus {
  61. width: calc(120rpx);
  62. display: inline-block;
  63. color: #169BD5;
  64. font-size: 28rpx;
  65. text-align: right;
  66. vertical-align: middle;
  67. }
  68. .listTitle {
  69. color: #000405;
  70. font-size: 32rpx;
  71. line-height: 46rpx;
  72. white-space: pre-line;
  73. overflow: hidden;
  74. text-overflow: ellipsis;
  75. display: -webkit-box;
  76. -webkit-box-orient: vertical;
  77. /*行向垂直排列*/
  78. -webkit-line-clamp: 2;
  79. width: 100%;
  80. padding-top: 20rpx;
  81. }
  82. .listDetailBox {
  83. color: #666666;
  84. font-size: 24rpx;
  85. padding-top: 30rpx;
  86. display: block;
  87. }
  88. .listArea {
  89. font-size: 24rpx;
  90. margin-right: 20rpx;
  91. }
  92. .listDate {
  93. font-size: 24rpx;
  94. }