You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

153 lines
2.9 KiB

2 years ago
  1. @charset "utf-8";
  2. /* CSS Document */
  3. /*-----------------------progress----------------------*/
  4. #progress {
  5. overflow: auto;
  6. }
  7. #progress li {
  8. text-align: center;
  9. width: 16.6%;
  10. float: left;
  11. color: #999;
  12. background-image: url(../images/progressLine.gif);
  13. background-repeat: repeat-x;
  14. background-position: left 60px;
  15. }
  16. #progress li span {
  17. display: inline-block;
  18. width: 60px;
  19. height: 60px;
  20. line-height: 60px;
  21. font-size: 31px;
  22. border-radius: 40px;
  23. background: #ddd;
  24. color: #fff;
  25. }
  26. #progress li.active {
  27. background-image: url(../images/progressLineAct.gif);
  28. }
  29. #progress li.active span {
  30. background: #f26529;
  31. color: #fff;
  32. }
  33. #progress li p {
  34. font-size: 19px;
  35. }
  36. #progress li.active p {
  37. color: #f26529;
  38. }
  39. /*-----------------------for PC-----------------------*/
  40. @media screen and (min-width:801px) {
  41. /*-----------------------progress----------------------*/
  42. #progress {
  43. overflow: auto;
  44. }
  45. #progress li {
  46. text-align: center;
  47. width: 16.6%;
  48. float: left;
  49. color: #999;
  50. background-image: url(../images/progressLine.gif);
  51. background-repeat: repeat-x;
  52. background-position: left 60px;
  53. }
  54. #progress li span {
  55. display: inline-block;
  56. width: 60px;
  57. height: 60px;
  58. line-height: 60px;
  59. font-size: 31px;
  60. border-radius: 40px;
  61. background: #ddd;
  62. color: #fff;
  63. }
  64. #progress li.active {
  65. background-image: url(../images/progressLineAct.gif);
  66. }
  67. #progress li.active span {
  68. background: #f26529;
  69. color: #fff;
  70. }
  71. #progress li p {
  72. font-size: 19px;
  73. }
  74. #progress li.active p {
  75. color: #f26529;
  76. }
  77. /*-----------------------trackBtn----------------------*/
  78. #trackBtn {
  79. text-align: center;
  80. }
  81. #trackBtn li {
  82. display: inline-block;
  83. margin-right: 10px;
  84. }
  85. #trackBtn li:last-child {
  86. margin-right: 0;
  87. }
  88. /*-----------------------trackInfo----------------------*/
  89. #trackInfo{
  90. padding:20px;
  91. background:#f9f9f9;
  92. overflow:auto;
  93. }
  94. #trackInfo li{
  95. width:49%;
  96. border-bottom:1px dotted #ccc;
  97. float:left;
  98. padding:5px 0;
  99. display:block;
  100. margin-right:2%;
  101. }
  102. #trackInfo li:nth-child(even){margin:0;}
  103. }
  104. /*------------------for mobile------------------------*/
  105. @media screen and (max-width:800px) {
  106. /*-----------------------progress----------------------*/
  107. #progress li {
  108. text-align: center;
  109. width: 33%;
  110. float: left;
  111. color: #999;
  112. background-image: url(../images/progressLine.gif);
  113. background-repeat: repeat-x;
  114. background-position: left 35px;
  115. }
  116. #progress li span {
  117. display: inline-block;
  118. width: 30px;
  119. height: 30px;
  120. line-height: 30px;
  121. font-size: 21px;
  122. border-radius: 30px;
  123. background: #ddd;
  124. color: #fff;
  125. }
  126. #progress li p {
  127. font-size:15px;
  128. }
  129. #progress li:nth-child(n+4):nth-child(-n+6){ margin-top:10px;}
  130. /*-----------------------trackBtn----------------------*/
  131. #trackBtn {
  132. }
  133. #trackBtn li {
  134. width:100%;
  135. margin-bottom: 10px;
  136. }
  137. #trackBtn li:last-child {
  138. margin-bottom: 0;
  139. }
  140. /*-----------------------trackInfo----------------------*/
  141. #trackInfo{
  142. padding:5px 10px;
  143. background:#f9f9f9;
  144. }
  145. #trackInfo li{
  146. border-bottom:1px dotted #ccc;
  147. padding:5px 0;
  148. display:block;
  149. }
  150. #trackInfo li:last-child {
  151. border-bottom:none;
  152. }
  153. }