39 lines
724 B
SCSS
39 lines
724 B
SCSS
|
.leftbox {
|
||
|
// height: 128px;
|
||
|
height: 230px;
|
||
|
display: flex;
|
||
|
width: 640px;
|
||
|
flex-wrap: wrap;
|
||
|
.box {
|
||
|
margin-right: 16px;
|
||
|
width: 300px;
|
||
|
height: 110px;
|
||
|
padding: 12px 8px;
|
||
|
background: url(../../../assets/CenterChart2ItemBg.png);
|
||
|
background-repeat: no-repeat;
|
||
|
background-size: 100% 100%;
|
||
|
display: flex;
|
||
|
letter-spacing: 2px;
|
||
|
align-items: flex-start;
|
||
|
// flex-wrap: wrap;
|
||
|
user-select: none;
|
||
|
|
||
|
.box__inner {
|
||
|
padding-top: 12px;
|
||
|
|
||
|
.box__label {
|
||
|
color: #fffa;
|
||
|
font-size: 18px;
|
||
|
line-height: 1;
|
||
|
}
|
||
|
|
||
|
.box__value {
|
||
|
color: #fff;
|
||
|
font-weight: 400;
|
||
|
font-size: 34px;
|
||
|
line-height: 54px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|