You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
615 B
30 lines
615 B
// scss 封装好的变量直接传入 使用 @include 调用 |
|
.chart-card{ |
|
@include wh(750upx,283); |
|
padding: 30upx 0upx; |
|
background: white; |
|
margin-top: 15upx; |
|
.chart-card-up{ |
|
@include wh(690upx,auto); |
|
margin: auto; |
|
@include flex(center,space-between); |
|
.chart-card-up-right,.chart-card-up-left{ |
|
@include flex(center,flex-start); |
|
.title{ |
|
@include fonts(30upx,#252525,500); |
|
margin-left: 10upx; |
|
} |
|
image{ |
|
@include wh(16upx,9upx) |
|
} |
|
text{ |
|
@include fonts(26upx,#697BFF,500); |
|
margin-left: 10upx; |
|
} |
|
} |
|
} |
|
.chart-box{ |
|
@include wh(690upx,400upx); |
|
margin: auto; |
|
} |
|
}
|
|
|