List.wxss 2.2 KB

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