clearWarning.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. .news_nav {
  2. height: 88rpx;
  3. display: flex;
  4. position: relative;
  5. border-bottom: 1px solid #f8f8f8;
  6. z-index: 1;
  7. background-color: #ffffff;
  8. justify-content: space-between;
  9. }
  10. .news_nav_item {
  11. width: 50%;
  12. flex: auto;
  13. display: flex;
  14. justify-content: center;
  15. align-items: center;
  16. }
  17. .news_nav_item view {
  18. display: inline-block;
  19. flex: none;
  20. position: relative;
  21. font-size: 30rpx;
  22. color: #999999;
  23. line-height: 88rpx;
  24. }
  25. .news_nav_item text {
  26. display: inline-block;
  27. font-size: 18rpx;
  28. color: #ffffff;
  29. background-color: #D0021B;
  30. border-radius: 100rpx;
  31. min-width: 24rpx;
  32. line-height: 24rpx;
  33. text-align: center;
  34. margin-left: 10rpx;
  35. }
  36. .news_nav_item.sec view {
  37. color: var(--color);
  38. }
  39. .news_nav_item.sec view::before {
  40. content: "";
  41. position: absolute;
  42. bottom: 0;
  43. left: 50%;
  44. width: 100rpx;
  45. display: block;
  46. height: 4rpx;
  47. margin: 0 -50rpx;
  48. background-color: var(--color);
  49. border-radius: 4rpx;
  50. }
  51. .list_item{
  52. margin-top: 20rpx;
  53. background: #fff;
  54. padding: 0 20rpx;
  55. }
  56. .worningList_item_txt{
  57. display: flex;
  58. word-break: break-all;
  59. align-items: center;
  60. padding: 20rpx 0;
  61. border-bottom: 2.5rpx solid #f5f5f5;
  62. }
  63. .worningList_item_info{
  64. display: flex;
  65. justify-content: space-around;
  66. line-height: 70rpx;
  67. width: 100%;
  68. text-align: center;
  69. }
  70. .worningList_item_info > view{
  71. width: 50%;
  72. }
  73. .worningList_item_info > view:nth-child(1){
  74. color: #999999;
  75. border-right: 2.5rpx solid #f5f5f5;
  76. }
  77. .worningList_item_info > view:nth-child(2){
  78. color: #F22828;
  79. }
  80. .worningList{
  81. padding: 0rpx 30rpx;
  82. }
  83. .worningList_item_txt > view{
  84. width: 13%;
  85. }
  86. .worningList_item_txt >text{
  87. width: 87%;
  88. }
  89. .news_empty {
  90. position: fixed;
  91. top: 0;
  92. left: 0;
  93. right: 0;
  94. bottom: 0;
  95. z-index: 0;
  96. display: flex;
  97. justify-content: center;
  98. align-items: center;
  99. background-color: #ffffff;
  100. }
  101. .news_empty_mid {
  102. text-align: center;
  103. width: 442rpx;
  104. }
  105. .news_empty_mid image {
  106. width: 442rpx;
  107. height: 194rpx;
  108. }
  109. .news_empty_mid view {
  110. font-size: 26rpx;
  111. color: #999999;
  112. }