certify.less 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. .wrap {
  2. width: 100%;
  3. margin: 0 auto;
  4. background: #ffffff;
  5. .certify-header {
  6. background: #f8f8f8;
  7. width: 100%;
  8. .certify-logo {
  9. width: 100%;
  10. margin: 0 auto;
  11. padding: 10px 0;
  12. .logo {
  13. width: 12%;
  14. padding-top: 60px;
  15. float: left;
  16. margin-left: 40px;
  17. position: relative;
  18. overflow: hidden;
  19. img {
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. height: 60px;
  24. width: 120px;
  25. }
  26. }
  27. .certify-text {
  28. width: 84%;
  29. float: left;
  30. line-height: 60px;
  31. font-size: 24px;
  32. .text {
  33. border-left: 1px solid #999999;
  34. }
  35. .alink {
  36. float: right;
  37. font-size: 14px;
  38. line-height: 60px;
  39. a {
  40. color: #333;
  41. padding: 0 8px;
  42. border-left: 1px solid #999999;
  43. &:first-child {
  44. border: none;
  45. }
  46. }
  47. }
  48. span {
  49. padding-left: 10px;
  50. }
  51. }
  52. }
  53. }
  54. .certify-content {
  55. .certify-step {
  56. width: 1030px;
  57. height: 60px;
  58. margin: 40px auto;
  59. border-radius: 8px;
  60. background: #c1c1c1;
  61. overflow: hidden;
  62. >div {
  63. width: 150px;
  64. height: 60px;
  65. display: table;
  66. color: #fff;
  67. float: left;
  68. padding: 0 22px 0 10px;
  69. >div {
  70. vertical-align: middle;
  71. display: table-cell;
  72. font-size: 15px;
  73. }
  74. &:first-child {
  75. padding-left: 6px;
  76. }
  77. &:last-child {
  78. width: 130px;
  79. background-image: none;
  80. }
  81. >i {
  82. margin-top: 17px;
  83. display: inline-block;
  84. height: 26px;
  85. width: 26px;
  86. border-radius: 50%;
  87. background: #fff;
  88. overflow: hidden;
  89. text-align: center;
  90. line-height: 26px;
  91. font-size: 20px;
  92. font-style: normal;
  93. }
  94. }
  95. .step-done {
  96. background: #ff6500;
  97. background-image: url(../../../image/scd.png);
  98. background-repeat: no-repeat;
  99. background-position-x: right;
  100. background-size: 22px;
  101. >i {
  102. color: #ff6500;
  103. }
  104. }
  105. .step-doing {
  106. background: #ff8a33;
  107. background-image: url(../../../image/trd.png);
  108. background-repeat: no-repeat;
  109. background-position-x: right;
  110. background-size: 22px;
  111. >i {
  112. color: #ff8a33;
  113. }
  114. }
  115. .step-off {
  116. background: #ff6500;
  117. background-image: url(../../../image/fst.png);
  118. background-repeat: no-repeat;
  119. background-position-x: right;
  120. background-size: 22px;
  121. >i {
  122. color: #ff6500;
  123. }
  124. }
  125. .step-none {
  126. background: #c1c1c1;
  127. background-image: url(../../../image/none.png);
  128. background-repeat: no-repeat;
  129. background-position-x: right;
  130. background-size: 22px;
  131. >i {
  132. color: #c1c1c1;
  133. }
  134. }
  135. .step-last {
  136. background: #c1c1c1;
  137. width: 130px;
  138. >i {
  139. color: #c1c1c1;
  140. }
  141. }
  142. }
  143. }
  144. .footer {
  145. padding: 10px 0;
  146. text-align: center;
  147. background: #f0f0f0;
  148. p {
  149. margin: 10px 0;
  150. }
  151. }
  152. }