index.less 1.82 KB
Newer Older
熊成伟's avatar
熊成伟 committed
1 2 3 4 5
.auto-step{
  background: #ffffff;
  border-radius: 6px;
  padding: 15px;
}
熊成伟's avatar
熊成伟 committed
6 7 8 9 10 11
.auto-step-item-title{
  display: flex;
  align-items: center;
  //height: 43px;
  font-size: 14px;
  padding: 0 10px;
熊成伟's avatar
熊成伟 committed
12
}
熊成伟's avatar
熊成伟 committed
13 14 15 16 17 18 19 20 21 22 23 24 25 26

.auto-step-item-title.step-success::before{
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url("/img/step-success.png") center;
  background-size: cover;
}
.auto-step-item-title.step-current::before{
  content: '';
  display: block;
  width: 16px;
  height: 16px;
熊成伟's avatar
熊成伟 committed
27
  background: url("/img/step-current.png") center;
熊成伟's avatar
熊成伟 committed
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
  background-size: cover;
}
.auto-step-item-title.step-future::before{
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 60%;
  background: rgba(228, 228, 228, 1);
}

.auto-step-item-title-name{
  margin-left: 10px;
}
.auto-step-content{
  display: flex;
  align-items: center;
  padding: 0 17px;
}
.auto-step-content.step-success::before{
  content: '';
  display: block;
  width: 1px;
熊成伟's avatar
熊成伟 committed
51
  min-height: 80px;
熊成伟's avatar
熊成伟 committed
52 53 54 55 56 57
  background-color: rgba(34, 192, 100, 1);
}
.auto-step-content::before{
  content: '';
  display: block;
  width: 1px;
熊成伟's avatar
熊成伟 committed
58
  min-height: 80px;
熊成伟's avatar
熊成伟 committed
59 60 61 62 63 64
  background-color: rgba(228, 228, 228, 1);
}

.auto-step-card > .auto-step-item:last-child .auto-step-content::before{
  background-color: #ffffff;
}
熊成伟's avatar
熊成伟 committed
65 66 67 68 69 70 71 72 73 74 75 76 77 78
.step-content-wrapper{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 17px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}
.auto-step-content-flow{
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}
.auto-step-content-head{
  display: flex;
熊成伟's avatar
熊成伟 committed
79
  align-items: center;
熊成伟's avatar
熊成伟 committed
80 81 82 83 84 85
}
.step-content-head-img{
  width: 30px;
  height: 30px;
  margin-right: 7px;
}
熊成伟's avatar
熊成伟 committed
86

熊成伟's avatar
熊成伟 committed
87 88 89 90
.auto-step-content-result{
  margin-top: 15px;
  line-height: 41px;
  border-radius: 7px;
熊成伟's avatar
熊成伟 committed
91
  background: rgba(0, 0, 0, 0.05);
熊成伟's avatar
熊成伟 committed
92 93
  padding: 0 15px;
}
熊成伟's avatar
熊成伟 committed
94

熊成伟's avatar
熊成伟 committed
95 96 97 98
.pos-center{
  display: flex;
  align-items: center;
}