| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- .w100 {
- width: 100%;
- }
- // 页头
- .ele-body {
- .page-title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1px solid #eaeefb;
- padding-bottom: 8px;
- margin-bottom: 16px;
- }
- }
- // ele-split-layout 左侧盒子充满
- .split-layout-right-content {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- box-sizing: border-box;
- border-width: 1px;
- border-style: solid;
- overflow: auto;
- }
- // tab切换框
- .switch {
- display: flex;
- justify-content: space-between;
- }
- .switch_left ul {
- list-style-type: none;
- display: flex;
- padding: 0;
- margin: 0;
- }
- .switch_left ul li {
- min-width: 80px;
- padding: 0 10px;
- text-align: center;
- background: #dfdfdf;
- color: #333;
- font-size: 14px;
- height: 36px;
- line-height: 32px;
- margin-right: 5px;
- border-top: 4px solid #dfdfdf;
- cursor: pointer;
- }
- .switch_left ul .active {
- background: #fff;
- border-top: 4px solid #157a2c;
- color: #157a2c;
- }
- // 步骤条边线显示
- .el-step__head.is-process .el-step__icon.is-text{
- border: none!important;
- background: none!important;
- }
- // .el-step.is-vertical .el-step__line{
- // left: 10px;
- // }
- .repair_infoLogs .el-step:last-of-type .el-step__line{
- display: block!important;
- width: 3px!important;
- }
- .repair_infoLogs .el-steps:last-child .el-step__line{
- display: none!important;
- }
|