1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .steps {
- list-style-type: none;
- padding: 0;
- display: flex;
- align-items: center;
- padding-left: 10px;
- }
- .step{
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width:100px;
- }
- .step .inner{
- display: flex;
- align-items: center;
- justify-content: center;
- width: 40px;
- height: 40px;
- border-radius: 50%;
- background-color: #ccc;
- font-size: 16px;
- color: #fff;
- }
- .line{
- width: 150px;
- height: 2px;
- background-color: #ccc;
- margin-top: -20px;
- }
- .title{
- margin-top: 4px;
- }
- .innerActive {
- background-color: #67c23a !important;
- }
- .innerActiveNone{
- border: 2px solid #000 !important;
- }
- .font{
- font-weight: 700;
- color:#1e1e1e;
- }
|