index.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. .requirements-container {
  2. width: 1100px;
  3. padding-top: 50px;
  4. padding-bottom: 80px;
  5. background: #ffffff;
  6. border-radius: 8px;
  7. }
  8. .requirements-title {
  9. text-align: center;
  10. height: 40px;
  11. font-size: 28px;
  12. font-weight: 500;
  13. color: #0b121a;
  14. line-height: 40px;
  15. }
  16. .requirements-step-container {
  17. width: 462px;
  18. margin-left: auto;
  19. margin-right: auto;
  20. margin-top: 40px;
  21. display: flex;
  22. height: 80px;
  23. }
  24. .requirements-step {
  25. flex: 1;
  26. height: 32px;
  27. position: relative;
  28. &:nth-last-child(1) {
  29. flex: 0;
  30. }
  31. }
  32. .requirements-step-status {
  33. height: 32px;
  34. position: relative;
  35. }
  36. .requirements-step-icon {
  37. position: relative;
  38. z-index: 5;
  39. width: 32px;
  40. height: 32px;
  41. background: #ebeced;
  42. border-radius: 100%;
  43. transition: all .3s;
  44. &.success {
  45. background: url("~@/assets/img/account/step_cur.png") no-repeat 50% 50%;
  46. background-size: 32px auto;
  47. }
  48. &.wait {
  49. background: #ebeced;
  50. }
  51. &.process {
  52. background: #45c47a;
  53. }
  54. }
  55. .requirements-step-line {
  56. position: absolute;
  57. z-index: 2;
  58. left: 0;
  59. right: 0;
  60. top: 50%;
  61. transform: translateY(-50%);
  62. height: 6px;
  63. background: #ebeced;
  64. transition: all .3s;
  65. &.success {
  66. background: #d0f2de;
  67. }
  68. &.wait {
  69. background: #ebeced;
  70. }
  71. &.process {
  72. background: #d0f2de;
  73. }
  74. }
  75. .requirements-step-tips {
  76. position: absolute;
  77. margin-top: 14px;
  78. font-size: 14px;
  79. font-family: PingFangSC-Regular, PingFang SC;
  80. font-weight: 400;
  81. color: #828c99;
  82. line-height: 20px;
  83. transform: translateX(-50%);
  84. left: 50%;
  85. top: 46px;
  86. white-space: nowrap;
  87. }
  88. .requirements-type-submit {
  89. text-align: center;
  90. margin-top: 80px;
  91. }