42 lines
802 B
SCSS
42 lines
802 B
SCSS
.leftbox {
|
|
// height: 128px;
|
|
height: 230px;
|
|
display: flex;
|
|
width: 640px;
|
|
flex-wrap: wrap;
|
|
.box {
|
|
margin-right: 16px;
|
|
width: 272px;
|
|
height: 100px;
|
|
padding: 12px 16px;
|
|
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;
|
|
margin-left: 20px;
|
|
|
|
.box__label {
|
|
color: #fffa;
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.box__value {
|
|
color: #fff;
|
|
font-weight: 400;
|
|
margin-left: 8px;
|
|
font-size: 34px;
|
|
line-height: 54px;
|
|
}
|
|
}
|
|
}
|
|
}
|