| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- @import './variables.scss';
- @import './mixin.scss';
- @import './animate.css';
- html,
- body .app {
- color: #333333;
- // font-family: Arial, Helvetica, 'STHeiti STXihei', 'Microsoft YaHei', Tohoma, sans-serif;
- background-color: $background-color;
- }
- .app-container {
- // padding-bottom: 50px;
- }
- #__vconsole {
- display: none;
- }
- .mask {
- background-color: rgba(0, 0, 0, 0);
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 20000;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .progressBox {
- width: 250px;
- height: 150px;
- background: #fff;
- border-radius: 10px;
- box-shadow: 0 0 6px 1px #bfbfbf;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- position: relative;
- color: #6c6c6c;
- font-size: 16px;
- }
- .progressBox {
- .el-progress-bar__outer {
- background-color: #d1dfff !important;
- .el-progress-bar__innerText{
- color: #fff !important;
- }
- }
- }
- .progressBox .lbox {
- height: 50px;
- font-size: 18px;
- display: flex;
- align-items: center;
- color: #747474;
- }
- .progressBox .lbox img {
- width: 40px;
- margin-right: 20px;
- }
|