history.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
  5. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  6. */
  7. .history {
  8. padding-bottom: 20px;
  9. }
  10. .history .search {
  11. background-color: #ffffff;
  12. padding: 30px 16px 6px;
  13. }
  14. .history .search .search_wrap {
  15. background-color: #F8F5F5;
  16. border-radius: 10px;
  17. display: flex;
  18. align-items: center;
  19. padding: 6px 8px;
  20. }
  21. .history .search .search_wrap image {
  22. width: 16px;
  23. height: 16px;
  24. margin: 0 10px;
  25. }
  26. .history .search .search_wrap input {
  27. width: 100%;
  28. }
  29. .history .title {
  30. padding: 20px 25px 0;
  31. }
  32. .history .title .name {
  33. font-size: 18px;
  34. font-weight: 400;
  35. color: #000000;
  36. }
  37. .history .title .banben {
  38. font-size: 11px;
  39. font-weight: 400;
  40. color: #707070;
  41. padding-top: 10px;
  42. }
  43. .history .step_wrap {
  44. padding: 40px 30px 0;
  45. position: relative;
  46. display: flex;
  47. flex-direction: column;
  48. }
  49. .history .step_wrap .item {
  50. position: relative;
  51. border-left: 2px solid #565656;
  52. min-height: 100px;
  53. width: 100%;
  54. display: inline-block;
  55. }
  56. .history .step_wrap .item .dot {
  57. position: absolute;
  58. width: 10px;
  59. height: 10px;
  60. background-color: #565656;
  61. border-radius: 50%;
  62. top: -5px;
  63. left: -5px;
  64. }
  65. .history .step_wrap .item .version {
  66. font-size: 14px;
  67. font-weight: 400;
  68. color: #000000;
  69. margin: -10px 0 0 10px;
  70. }
  71. .history .step_wrap .item .desc {
  72. font-size: 14px;
  73. font-weight: 400;
  74. color: #000000;
  75. padding-top: 7px;
  76. margin-left: 10px;
  77. }
  78. .history .step_wrap .active {
  79. position: relative;
  80. border-left: 2px solid #16BA63;
  81. display: inline-block;
  82. min-height: 100px;
  83. width: 100%;
  84. }
  85. .history .step_wrap .active .dot {
  86. position: absolute;
  87. width: 10px;
  88. height: 10px;
  89. background-color: #16BA63;
  90. border-radius: 50%;
  91. }
  92. .history .step_wrap .active .version {
  93. font-size: 14px;
  94. font-weight: 400;
  95. color: #000000;
  96. margin: -10px 0 0 10px;
  97. }
  98. .history .step_wrap .active .desc {
  99. font-size: 14px;
  100. font-weight: 400;
  101. color: #000000;
  102. padding-top: 7px;
  103. margin-left: 10px;
  104. }
  105. .history .step_wrap .first {
  106. position: relative;
  107. border-left: none;
  108. display: inline-block;
  109. min-height: 100px;
  110. width: 100%;
  111. }
  112. .history .step_wrap .first .version {
  113. font-size: 14px;
  114. font-weight: 400;
  115. color: #000000;
  116. margin: -10px 0 0 10px;
  117. }
  118. .history .step_wrap .first .desc {
  119. font-size: 14px;
  120. font-weight: 400;
  121. color: #000000;
  122. padding-top: 7px;
  123. margin-left: 10px;
  124. }