| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- @import '@/utils/common.scss';
- .stepper_bg{
- display: flex;
- flex-direction: row;
- align-items: center;
- background-color: $ringColor;
- height: 128px;
- width: 578px;
- margin-bottom: 40px;
- border-radius: 36px;
- // padding-left: 20px;
- // padding-right: 20px;
- // padding-top: 24px;
- box-sizing: border-box;
- // box-shadow: 0px 8px 20px 0px red//$blackColor;
- }
- .stepper_icon{
- width: 40px;
- height: 40px;
- }
- .stepper_item{
- background-color: transparent;
- width: 112px;
- height: 128px;
- border-radius: 24px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .stepper_item_padding_left{
- padding-left: 16px;
- }
- .stepper_item_padding_right{
- padding-right: 16px;
- }
|