123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508 |
- .rc-steps {
- font-size: 0;
- width: 100%;
- line-height: 1.5;
- display: flex;
- }
- .rc-steps,
- .rc-steps * {
- box-sizing: border-box;
- }
- .rc-steps-item {
- position: relative;
- display: inline-block;
- vertical-align: top;
- flex: 1;
- overflow: hidden;
- }
- .rc-steps-item-container[role='button'] {
- cursor: pointer;
- transition: opacity 0.3s;
- }
- .rc-steps-item-container[role='button']:hover {
- opacity: 0.7;
- }
- .rc-steps-item:last-child {
- flex: none;
- }
- .rc-steps-item:last-child .rc-steps-item-tail,
- .rc-steps-item:last-child .rc-steps-item-title:after {
- display: none;
- }
- .rc-steps-item-container {
- display: inline-block;
- }
- .rc-steps-item-icon,
- .rc-steps-item-content {
- display: inline-block;
- vertical-align: top;
- }
- .rc-steps-item-icon {
- border: 1px solid #ccc;
- width: 26px;
- height: 26px;
- line-height: 26px;
- text-align: center;
- border-radius: 26px;
- font-size: 14px;
- margin-right: 8px;
- transition: background-color 0.3s, border-color 0.3s;
- }
- .rc-steps-item-icon > .rc-steps-icon {
- line-height: 1;
- top: -1px;
- color: #108ee9;
- position: relative;
- }
- .rc-steps-item-icon > .rc-steps-icon.rcicon {
- font-size: 12px;
- position: relative;
- top: -2px;
- }
- .rc-steps-item-tail {
- position: absolute;
- left: 0;
- width: 100%;
- top: 12px;
- padding: 0 10px;
- }
- .rc-steps-item-tail:after {
- content: '';
- display: inline-block;
- background: #e9e9e9;
- height: 1px;
- border-radius: 1px;
- width: 100%;
- transition: background 0.3s;
- }
- .rc-steps-item-content {
- margin-top: 3px;
- }
- .rc-steps-item-title {
- font-size: 14px;
- margin-bottom: 4px;
- color: #666;
- font-weight: bold;
- display: inline-block;
- padding-right: 10px;
- position: relative;
- }
- .rc-steps-item-title:after {
- content: '';
- height: 1px;
- width: 1000px;
- background: #e9e9e9;
- display: block;
- position: absolute;
- top: 0.55em;
- left: 100%;
- }
- .rc-steps-item-subtitle {
- font-size: 12px;
- display: inline-block;
- color: #999;
- margin-left: 8px;
- }
- .rc-steps-item-description {
- font-size: 12px;
- color: #999;
- }
- .rc-steps-item-wait .rc-steps-item-icon {
- border-color: #ccc;
- background-color: #fff;
- }
- .rc-steps-item-wait .rc-steps-item-icon > .rc-steps-icon {
- color: #ccc;
- }
- .rc-steps-item-wait .rc-steps-item-icon > .rc-steps-icon .rc-steps-icon-dot {
- background: #ccc;
- }
- .rc-steps-item-wait .rc-steps-item-title {
- color: rgba(0, 0, 0, 0.43);
- }
- .rc-steps-item-wait .rc-steps-item-title:after {
- background-color: #e9e9e9;
- }
- .rc-steps-item-wait .rc-steps-item-description {
- color: rgba(0, 0, 0, 0.43);
- }
- .rc-steps-item-wait .rc-steps-item-tail:after {
- background-color: #e9e9e9;
- }
- .rc-steps-item-process .rc-steps-item-icon {
- border-color: #108ee9;
- background-color: #fff;
- }
- .rc-steps-item-process .rc-steps-item-icon > .rc-steps-icon {
- color: #108ee9;
- }
- .rc-steps-item-process .rc-steps-item-icon > .rc-steps-icon .rc-steps-icon-dot {
- background: #108ee9;
- }
- .rc-steps-item-process .rc-steps-item-title {
- color: rgba(0, 0, 0, 0.65);
- }
- .rc-steps-item-process .rc-steps-item-title:after {
- background-color: #e9e9e9;
- }
- .rc-steps-item-process .rc-steps-item-description {
- color: rgba(0, 0, 0, 0.65);
- }
- .rc-steps-item-process .rc-steps-item-tail:after {
- background-color: #e9e9e9;
- }
- .rc-steps-item-process .rc-steps-item-icon {
- background: #108ee9;
- }
- .rc-steps-item-process .rc-steps-item-icon > .rc-steps-icon {
- color: #fff;
- }
- .rc-steps-item-finish .rc-steps-item-icon {
- border-color: #108ee9;
- background-color: #fff;
- }
- .rc-steps-item-finish .rc-steps-item-icon > .rc-steps-icon {
- color: #108ee9;
- }
- .rc-steps-item-finish .rc-steps-item-icon > .rc-steps-icon .rc-steps-icon-dot {
- background: #108ee9;
- }
- .rc-steps-item-finish .rc-steps-item-title {
- color: rgba(0, 0, 0, 0.43);
- }
- .rc-steps-item-finish .rc-steps-item-title:after {
- background-color: #108ee9;
- }
- .rc-steps-item-finish .rc-steps-item-description {
- color: rgba(0, 0, 0, 0.43);
- }
- .rc-steps-item-finish .rc-steps-item-tail:after {
- background-color: #108ee9;
- }
- .rc-steps-item-error .rc-steps-item-icon {
- border-color: #f50;
- background-color: #fff;
- }
- .rc-steps-item-error .rc-steps-item-icon > .rc-steps-icon {
- color: #f50;
- }
- .rc-steps-item-error .rc-steps-item-icon > .rc-steps-icon .rc-steps-icon-dot {
- background: #f50;
- }
- .rc-steps-item-error .rc-steps-item-title {
- color: #f50;
- }
- .rc-steps-item-error .rc-steps-item-title:after {
- background-color: #e9e9e9;
- }
- .rc-steps-item-error .rc-steps-item-description {
- color: #f50;
- }
- .rc-steps-item-error .rc-steps-item-tail:after {
- background-color: #e9e9e9;
- }
- .rc-steps-item.rc-steps-next-error .rc-steps-item-title:after {
- background: #f50;
- }
- .rc-steps-horizontal:not(.rc-steps-label-vertical) .rc-steps-item {
- margin-right: 10px;
- }
- .rc-steps-horizontal:not(.rc-steps-label-vertical) .rc-steps-item:last-child {
- margin-right: 0;
- }
- .rc-steps-horizontal:not(.rc-steps-label-vertical) .rc-steps-item-tail {
- display: none;
- }
- .rc-steps-horizontal:not(.rc-steps-label-vertical) .rc-steps-item-description {
- max-width: 100px;
- }
- .rc-steps-item-custom .rc-steps-item-icon {
- background: none;
- border: 0;
- width: auto;
- height: auto;
- }
- .rc-steps-item-custom .rc-steps-item-icon > .rc-steps-icon {
- font-size: 20px;
- top: 1px;
- width: 20px;
- height: 20px;
- }
- .rc-steps-item-custom.rc-steps-item-process .rc-steps-item-icon > .rc-steps-icon {
- color: #108ee9;
- }
- .rc-steps-small .rc-steps-item-icon {
- width: 18px;
- height: 18px;
- line-height: 18px;
- text-align: center;
- border-radius: 18px;
- font-size: 12px;
- margin-right: 10px;
- }
- .rc-steps-small .rc-steps-item-icon > .rc-steps-icon {
- font-size: 12px;
- font-size: 9px \9;
- transform: scale(0.75);
- top: -1px;
- }
- .rc-steps-small .rc-steps-item-content {
- margin-top: 0;
- }
- .rc-steps-small .rc-steps-item-title {
- font-size: 12px;
- margin-bottom: 4px;
- color: #666;
- font-weight: bold;
- }
- .rc-steps-small .rc-steps-item-description {
- font-size: 12px;
- color: #999;
- }
- .rc-steps-small .rc-steps-item-tail {
- top: 8px;
- padding: 0 8px;
- }
- .rc-steps-small .rc-steps-item-tail:after {
- height: 1px;
- border-radius: 1px;
- width: 100%;
- }
- .rc-steps-small .rc-steps-item-custom .rc-steps-item-icon {
- width: inherit;
- height: inherit;
- line-height: inherit;
- border-radius: 0;
- border: 0;
- background: none;
- }
- .rc-steps-small .rc-steps-item-custom .rc-steps-item-icon > .rc-steps-icon {
- font-size: 20px;
- top: -2.5px;
- transform: none;
- }
- .rc-steps-vertical {
- display: block;
- }
- .rc-steps-vertical .rc-steps-item {
- display: block;
- overflow: visible;
- }
- .rc-steps-vertical .rc-steps-item-icon {
- float: left;
- }
- .rc-steps-vertical .rc-steps-item-icon-inner {
- margin-right: 16px;
- }
- .rc-steps-vertical .rc-steps-item-content {
- min-height: 48px;
- overflow: hidden;
- display: block;
- }
- .rc-steps-vertical .rc-steps-item-title {
- line-height: 26px;
- }
- .rc-steps-vertical .rc-steps-item-title:after {
- display: none;
- }
- .rc-steps-vertical .rc-steps-item-description {
- padding-bottom: 12px;
- }
- .rc-steps-vertical .rc-steps-item-tail {
- position: absolute;
- left: 13px;
- top: 0;
- height: 100%;
- width: 1px;
- padding: 30px 0 4px 0;
- }
- .rc-steps-vertical .rc-steps-item-tail:after {
- height: 100%;
- width: 1px;
- }
- .rc-steps-vertical.rc-steps-small .rc-steps-item-tail {
- position: absolute;
- left: 9px;
- top: 0;
- padding: 22px 0 4px 0;
- }
- .rc-steps-vertical.rc-steps-small .rc-steps-item-title {
- line-height: 18px;
- }
- .rc-steps-label-vertical .rc-steps-item {
- overflow: visible;
- }
- .rc-steps-label-vertical .rc-steps-item-tail {
- padding: 0px 24px;
- margin-left: 48px;
- }
- .rc-steps-label-vertical .rc-steps-item-content {
- display: block;
- text-align: center;
- margin-top: 8px;
- width: 100px;
- }
- .rc-steps-label-vertical .rc-steps-item-icon {
- display: inline-block;
- margin-left: 36px;
- }
- .rc-steps-label-vertical .rc-steps-item-title {
- padding-right: 0;
- }
- .rc-steps-label-vertical .rc-steps-item-title:after {
- display: none;
- }
- .rc-steps-label-vertical .rc-steps-item-description {
- text-align: left;
- }
- .rc-steps-dot .rc-steps-item-tail {
- width: 100%;
- top: 1px;
- margin: 0 0 0 50px;
- padding: 0;
- }
- .rc-steps-dot .rc-steps-item-tail:after {
- height: 3px;
- }
- .rc-steps-dot .rc-steps-item-icon {
- padding-right: 0;
- width: 5px;
- height: 5px;
- line-height: 5px;
- border: 0;
- margin-left: 48px;
- }
- .rc-steps-dot .rc-steps-item-icon .rc-steps-icon-dot {
- float: left;
- width: 100%;
- height: 100%;
- border-radius: 2.5px;
- }
- .rc-steps-dot .rc-steps-item-process .rc-steps-dot .rc-steps-item-icon {
- top: -1px;
- width: 7px;
- height: 7px;
- line-height: 7px;
- }
- .rc-steps-dot .rc-steps-item-process .rc-steps-dot .rc-steps-item-icon .rc-steps-icon-dot {
- border-radius: 3.5px;
- }
- .rc-steps-navigation {
- padding-top: 8px;
- }
- .rc-steps-navigation.rc-steps-horizontal .rc-steps-item-description {
- max-width: 140px;
- }
- .rc-steps-navigation .rc-steps-item {
- box-sizing: border-box;
- text-align: center;
- overflow: visible;
- }
- .rc-steps-navigation .rc-steps-item-container {
- text-align: left;
- padding-bottom: 8px;
- outline: none;
- }
- .rc-steps-navigation .rc-steps-item-title {
- max-width: 140px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .rc-steps-navigation .rc-steps-item-title:after {
- display: none;
- }
- .rc-steps-navigation .rc-steps-item:last-child {
- flex: 1;
- }
- .rc-steps-navigation .rc-steps-item:last-child:after {
- display: none;
- }
- .rc-steps-navigation .rc-steps-item:after {
- content: '';
- display: inline-block;
- width: 16px;
- height: 16px;
- border: 1px solid #ccc;
- border-bottom: none;
- border-left: none;
- transform: rotate(45deg);
- position: absolute;
- top: 50%;
- left: 100%;
- margin-top: -12px;
- margin-left: -8px;
- }
- .rc-steps-navigation .rc-steps-item-active .rc-steps-item-container {
- padding-bottom: 5px;
- border-bottom: 3px solid #108ee9;
- }
- .rc-steps-inline {
- width: auto;
- display: inline-flex;
- }
- .rc-steps-inline .rc-steps-item {
- flex: none;
- }
- .rc-steps-inline .rc-steps-item-container {
- padding: 9px 4px 0;
- margin: 0 2px;
- border-radius: 4px;
- cursor: pointer;
- }
- .rc-steps-inline .rc-steps-item-container:hover {
- background: rgba(0, 0, 0, 0.04);
- }
- .rc-steps-inline .rc-steps-item-container[role='button']:hover {
- opacity: 1;
- }
- .rc-steps-inline .rc-steps-item-icon {
- width: 6px;
- height: 6px;
- margin-left: calc(50% - 3px);
- }
- .rc-steps-inline .rc-steps-item-icon > .rc-steps-icon {
- top: 0;
- }
- .rc-steps-inline .rc-steps-item-icon .rc-steps-icon-dot {
- border-radius: 3px;
- }
- .rc-steps-inline .rc-steps-item-content {
- width: auto;
- margin-top: 7px;
- }
- .rc-steps-inline .rc-steps-item-title {
- color: rgba(0, 0, 0, 0.25);
- font-size: 12px;
- line-height: 20px;
- font-weight: normal;
- margin-bottom: 2px;
- }
- .rc-steps-inline .rc-steps-item-description {
- display: none;
- }
- .rc-steps-inline .rc-steps-item-tail {
- margin-left: 0;
- top: 11px;
- }
- .rc-steps-inline .rc-steps-item-tail:after {
- height: 1px;
- }
- .rc-steps-inline .rc-steps-item:first-child .rc-steps-item-tail {
- width: 50%;
- margin-left: 50%;
- }
- .rc-steps-inline .rc-steps-item:last-child .rc-steps-item-tail {
- display: block;
- width: 50%;
- }
- .rc-steps-inline .rc-steps-item-finish .rc-steps-item-tail:after {
- background-color: #e9e9e9;
- }
- .rc-steps-inline .rc-steps-item-finish .rc-steps-item-icon .rc-steps-icon .rc-steps-icon-dot {
- background-color: #e9e9e9;
- }
- .rc-steps-inline .rc-steps-item-wait .rc-steps-item-icon .rc-steps-icon .rc-steps-icon-dot {
- background-color: #fff;
- border: 1px solid #e9e9e9;
- }
|