List.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. .container {
  2. background-color: #F6F7F8;
  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: 60rpx;
  23. line-height: 60rpx;
  24. font-size: 36rpx;
  25. }
  26. .searchBtn {
  27. position: absolute;
  28. line-height: 60rpx;
  29. top: 26rpx;
  30. right: 26rpx;
  31. background-color: #E5F7FF;
  32. color: #3e6ffd;
  33. font-size: 36rpx;
  34. padding: 4rpx 20rpx;
  35. border-radius: 30rpx;
  36. }
  37. .tabBox {
  38. padding: 0;
  39. line-height: 48rpx;
  40. }
  41. .tabItem {
  42. padding: 20rpx 0 30rpx;
  43. display: inline-block;
  44. width: calc(25%);
  45. text-align: center;
  46. color: #333333;
  47. font-size: 36rpx;
  48. position: relative;
  49. }
  50. .active {
  51. color: #3e6ffd;
  52. }
  53. .active::after {
  54. content: " ";
  55. width: 72rpx;
  56. height: 6rpx;
  57. background-color: #3e6ffd;
  58. position: absolute;
  59. bottom: 0;
  60. left: calc(50% - 36rpx);
  61. }
  62. .contentBox {
  63. position: relative;
  64. height: calc(100% - 200rpx);
  65. }
  66. .listInfo {
  67. margin: 20rpx;
  68. padding: 30rpx 20rpx;
  69. border-radius: 20rpx;
  70. background-color: #fff;
  71. }
  72. .listCode {
  73. padding-bottom: 30rpx;
  74. border-bottom: 2rpx #EEEEEE solid;
  75. }
  76. .codeTextBox {
  77. width: calc(100% - 160rpx);
  78. display: inline-block;
  79. font-size: 36rpx;
  80. color: #666666;
  81. vertical-align: middle;
  82. }
  83. .codeText {
  84. color: #000006;
  85. }
  86. .codeType {
  87. padding: 2rpx 6rpx 4rpx;
  88. margin-left: 20rpx;
  89. border: 2rpx #3e6ffd solid;
  90. border-radius: 10rpx;
  91. color: #3e6ffd;
  92. font-size: 32rpx;
  93. }
  94. .codeStatus {
  95. width: calc(160rpx);
  96. display: inline-block;
  97. color: #3e6ffd;
  98. font-size: 36rpx;
  99. text-align: right;
  100. vertical-align: middle;
  101. }
  102. .listTitle {
  103. color: #000405;
  104. font-size: 40rpx;
  105. line-height: 50rpx;
  106. white-space: pre-line;
  107. overflow: hidden;
  108. text-overflow: ellipsis;
  109. display: -webkit-box;
  110. -webkit-box-orient: vertical;
  111. /*行向垂直排列*/
  112. -webkit-line-clamp: 2;
  113. width: 100%;
  114. padding-top: 20rpx;
  115. }
  116. .listDetailBox {
  117. color: #666666;
  118. font-size: 32rpx;
  119. padding-top: 30rpx;
  120. display: block;
  121. }
  122. .listArea {
  123. font-size: 32rpx;
  124. margin-right: 20rpx;
  125. }
  126. .listDate {
  127. font-size: 32rpx;
  128. }