| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .metric_bg {
- width: 320px;
- display: flex;
- flex-direction: column;
- border-radius: 36px;
- padding-left: 36px;
- padding-right: 36px;
- padding-top: 24px;
- padding-bottom: 24px;
- background-color: #1c1c1c;
- box-sizing: border-box;
- margin-bottom: 30px;
- }
- .metric_title {
- font-size: 36px;
- line-height: 36px;
- height: 40px;
- color: #ffffff;
- }
- .metric_value_bg{
- height: 50px;
- margin-top: 10px;
- margin-bottom: 10px;
- }
- .metric_value {
- font-size: 48px;
- line-height: 48px;
- height: 50px;
- color: #ffffff;
- margin-top: 20px;
- margin-bottom: 12px;
- }
- .metric_unit {
- font-size: 32px;
- line-height: 32px;
- color: #ffffff;
- opacity: 0.8;
- }
- .metric_desc_bg {
- display: flex;
- height: 28px;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
- .mteric_desc {
- font-size: 24px;
- line-height: 24px;
- height: 28px;
- color: #ffffff;
- opacity: 0.2;
- }
- .operate {
- margin-top: 32px;
- height: 84px;
- border-radius: 42px;
- background-color: #EEC01F;
- color: #000;
- line-height: 84px;
- text-align: center;
- }
|