timeLine.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. .mui-bar-nav~.mui-content {
  2. padding-top: 51px;
  3. }
  4. #timeSelect {
  5. background: #fff url(../images/calendar.png) no-repeat 10px center;
  6. background-size: 20px;
  7. padding-left: 30px;
  8. font-size: 16px;
  9. -webkit-box-sizing: border-box;
  10. box-sizing: border-box;
  11. height: 34px;
  12. border: 0;
  13. border-radius: 6px;
  14. line-height: 34px;
  15. color: #535353;
  16. }
  17. /*列表*/
  18. ul {
  19. padding: 0;
  20. list-style: none;
  21. }
  22. #dataList>li {
  23. border-left: 1px dashed #b8b8b8;
  24. margin-left: 20px;
  25. padding-bottom: 10px;
  26. }
  27. .equipItem {
  28. margin: 0 20px 0px 18px;
  29. position: relative;
  30. background: #fff;
  31. border-radius: 7px;
  32. padding: 12px;
  33. }
  34. .equipItem:before {
  35. position: absolute;
  36. top: 20px;
  37. left: -25px;
  38. width: 12px;
  39. height: 12px;
  40. border-radius: 50%;
  41. content: '';
  42. }
  43. .equipItem:after {
  44. position: absolute;
  45. top: 18px;
  46. left: -7px;
  47. width: 0;
  48. height: 0;
  49. content: '';
  50. background-size: 100% 100%;
  51. border: 8px solid #fff;
  52. border-left-color: transparent;
  53. border-top-color: transparent;
  54. transform: rotate(-225deg);
  55. }
  56. .upl_time {
  57. font-size: 16px;
  58. line-height: 30px;
  59. font-weight: bold;
  60. }
  61. .equipItem:active {
  62. background-color: #e4e3e3 !important;
  63. }
  64. .equipItem:active.equipItem:after {
  65. border: 8px solid #e4e3e3;
  66. border-left-color: transparent;
  67. border-top-color: transparent;
  68. }
  69. /*皮肤*/
  70. .blue:before {
  71. background: #00b9fe;
  72. }
  73. .blue .upl_time {
  74. color: #00b9fe;
  75. }
  76. .purple:before {
  77. background: #c8c6f7;
  78. }
  79. .purple .upl_time {
  80. color: #c8c6f7;
  81. }
  82. .searchBox {
  83. position: fixed;
  84. left: 0;
  85. right: 0;
  86. z-index: 222;
  87. padding: 0;
  88. }
  89. .mescroll {
  90. position: fixed;
  91. top: 100px;
  92. bottom: 0;
  93. height: auto;
  94. /*如设置bottom:50px,则需height:auto才能生效*/
  95. }