123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- .top {
- display: flex;
- padding: 48px 60px 25px;
- .left {
- width: 50%;
- font-size: 28px;
- display: flex;
- align-items: center;
- }
- .img {
- width: 152px;
- margin-right: 45px;
- }
- .number {
- font-size: 80px;
- font-weight: bold;
- margin-bottom: 10px;
- color: #4A90E2;
- }
- .right {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- .row {
- font-size: 32px;
- }
- }
- .item {
- padding: 40px 60px;
-
- font-size: 32px;
- margin-top: 28px;
- display: flex;
- align-items: center;
- }
- .icon {
- width: 20px;
- height: 20px;
- border-radius: 50%;
- display: inline-block;
- background-color: #12ceb3;
- margin-right: 44px;
- vertical-align: middle;
- &.error {
- background-color: #fe5850;
- }
- &.offline {
- background-color: #9b9b9b;
- }
- }
- .btns {
- flex: right;
- }
|