123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /* #region 步骤条面板 */
- html,body{
- width: 100%;
- }
- .layui-step{
- width: 100%;
- height: 100%;
- position: relative;
- background-color: #fff;
- }
- .layui-step-title {
- width: 100%;
- padding-top: 10px;
- }
- .layui-step-title-item{
- min-height: 60px;
- float: left;
- background-color: #fff;
- text-align: center;
- position: relative;
- }
- .layui-step-title-item::after{
- content: "";
- width: 100%;
- display: inline-block;
- height: 2px;
- background-color: #ccc;
- position: absolute;
- top: 14px;
- left: 0px;
- }
- .layui-step-title-item.step-finish::after{
- background-color: #1E9FFF;
- }
- .layui-step-title-item.step-current::after{
- background-color: #1E9FFF;
- }
- .layui-step-title-item.step-disabled::after{
- background-color: #ccc;
- }
- .layui-step-title-item.step-first::after{
- width: 50%;
- left: 50%;
- }
- .layui-step-title-item.step-last::after{
- width: 50%;
- right: 50%;
- }
- .layui-step-title-item.step-finish .step-icon{
- background-color: #1E9FFF;
- color: #fff;
- border: 1px solid #1E9FFF
- }
- .layui-step-title-item.step-current .step-icon{
- background-color: #1E9FFF;
- color: #fff;
- border: 1px solid #1E9FFF;
- }
- .layui-step-title-item.step-disabled .step-icon{
- background-color: #ccc;
- color: #fff;
- border: 1px solid #ccc;
- cursor: not-allowed;
- }
- .layui-step-title-item.step-disabled .step-text{
- color: #bbb;
- }
- .layui-step-title-item.step-disabled .step-description{
- color: #ddd;
- }
- .step-icon{
- height: 26px;
- width: 26px;
- z-index: 1;
- color: #999;
- cursor: pointer;
- text-align: center;
- position: relative;
- border-radius: 50%;
- display: inline-block;
- background: #ffffff;
- border: 1px solid #ccc;
- }
- .step-icon>i{
- position: absolute;
- top: 5px;
- font-style: normal;
- left: 9px;
- }
- .step-text{
- font-weight: bolder;
- color: #555555;
- margin-bottom: 10px;
- padding: 0px 15px;
- }
- .step-description{
- color: #aaa;
- font-weight: 300;
- padding: 0px 15px;
- }
- .layui-step-content{
- width: 100%;
- min-height: calc(100% - 105px);
- position: relative;
- margin-top: 10px;
- background-color: #f5f5f5;
- }
- .layui-step-content-item{
- width: 100%;
- position: relative;
- padding: 15px 0px 0;
- top: 0px;
- left: 0px;
- display: none;
- }
- .layui-step-content-item .content-item-before{
- content: " ";
- width: 20px;
- height: 20px;
- background-color: #f5f5f5;
- position: absolute;
- top: -10px;
- transform: rotate(45deg);
- }
- .layui-step-btn{
- position: fixed;
- top: calc(100% - 48px);
- right: 50%;
- margin-right: -46px;
- }
- /* #endregion */
|