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.

188 lines
3.4 KiB

2 years ago
  1. @charset "utf-8";
  2. /* CSS Document */
  3. /*-----------------------progress----------------------*/
  4. .progress {
  5. margin-bottom: -10px;
  6. }
  7. .progress li.active div {
  8. background: #EC681E;
  9. }
  10. .progress li.bluePro div {
  11. background: #003A70;
  12. }
  13. h6 {
  14. font-size: 15px;
  15. color: #BDBDBD;
  16. }
  17. h6 span {
  18. display: inline-block;
  19. width: 60px;
  20. border-top: 1px solid #BDBDBD;
  21. height: 5px;
  22. margin-right: 5px;
  23. }
  24. h6 span[data-i18n] {
  25. border-top: 0px solid #BDBDBD;
  26. }
  27. /*-----------------------css table----------------------*/
  28. .css-table {
  29. display: table;
  30. width: 100%;
  31. }
  32. .css-table .thead {
  33. display: table-header-group;
  34. }
  35. .css-table .tbody {
  36. display: table-row-group;
  37. }
  38. .css-table .tr {
  39. display: table-row;
  40. }
  41. .css-table .th, .css-table .td {
  42. display: table-cell;
  43. padding: 10px 5px;
  44. /*border-bottom: 1px solid #e0e0e0;*/
  45. vertical-align: middle;
  46. line-height: 120%;
  47. }
  48. .css-table .th {
  49. background: #E1E1E1;
  50. }
  51. .css-table .center {
  52. text-align: center;
  53. }
  54. .css-table .tr:nth-child(even) .td {
  55. background: #F3F3F3;
  56. }
  57. /*-----------------------for PC-----------------------*/
  58. @media screen and (min-width:801px) {
  59. .trackInfo {
  60. background: #FFEBDD;
  61. padding: 15px;
  62. font-size: 17px;
  63. }
  64. .trackInfo li {
  65. display: inline-block;
  66. }
  67. .trackInfo li:last-child {
  68. margin-left: 10px;
  69. border-left: 1px solid #f60;
  70. padding-left: 10px;
  71. }
  72. .trackDivider {
  73. width: 100%;
  74. height: 10px;
  75. margin: 25px 0;
  76. background: url(../images/dividerBG.png) repeat-x;
  77. }
  78. /*-----------------------progress----------------------*/
  79. .progress li {
  80. position: relative;
  81. text-align: center;
  82. width: 16.6%;
  83. float: left;
  84. }
  85. .progress li p {
  86. margin-bottom: 5px;
  87. }
  88. .progress li div {
  89. width: 100%;
  90. height: 20px;
  91. background: #ddd;
  92. }
  93. .progress li span {
  94. position: absolute;
  95. bottom: 0px;
  96. right: -10px;
  97. width: 20px;
  98. height: 20px;
  99. background-image: url(../images/progress.png);
  100. background-repeat: no-repeat;
  101. background-size: cover;
  102. z-index: 20;
  103. }
  104. .progress li .entab {
  105. position: absolute;
  106. bottom: -1px;
  107. right: -11px;
  108. width: 30px;
  109. height: 25px;
  110. background-image: url(../images/progress.png);
  111. background-repeat: no-repeat;
  112. background-size: cover;
  113. z-index: 20;
  114. }
  115. .tWarpper h6 {
  116. display: none;
  117. }
  118. }
  119. /*------------------for mobile------------------------*/
  120. @media screen and (max-width:800px) {
  121. /*-----------------------progress----------------------*/
  122. .progress li {
  123. text-align: center;
  124. width: 33%;
  125. float: left;
  126. color: #999;
  127. background-image: url(../images/progressLine.gif);
  128. background-repeat: repeat-x;
  129. background-position: left 38px;
  130. position: relative;
  131. }
  132. /*-----------------------progress----------------------*/
  133. .progress li {
  134. position: relative;
  135. width: auto;
  136. float: left;
  137. margin-bottom: 10px;
  138. }
  139. .progress li p {
  140. margin-bottom: 5px;
  141. padding: 0 10px;
  142. font-size: 13px;
  143. }
  144. .progress li div {
  145. width: 100%;
  146. height: 20px;
  147. background: #ddd;
  148. }
  149. .progress li span {
  150. position: absolute;
  151. bottom: 0px;
  152. right: -10px;
  153. width: 20px;
  154. height: 20px;
  155. background: url(../images/progress.png) no-repeat;
  156. z-index: 10
  157. }
  158. /*--------------- css table -----------------*/
  159. .mob-table {
  160. display: block;
  161. overflow-x: auto;
  162. min-width: 100%;
  163. }
  164. .mob-table .th, .mob-table .td {
  165. display: table-cell;
  166. padding: 7px 10px;
  167. vertical-align: middle;
  168. white-space: nowrap;
  169. }
  170. .tWarpper {
  171. border-right: 1px solid #aaa;
  172. position: relative;
  173. }
  174. .tWarpper h6 {
  175. position: absolute;
  176. right: -15px;
  177. top: 50%;
  178. width: 15px;
  179. height: 15px;
  180. margin-top: -7px;
  181. background-image: url(../images/tableNext.png);
  182. background-repeat: no-repeat;
  183. background-size: cover;
  184. }
  185. }