1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .chart_box{
- width: 100%;
- height: 550rpx;
- }
- .analysis_box {
- padding: 20rpx 25rpx;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- overflow: hidden;
- }
- .analysis_text {
- font-size: 30rpx;
- font-weight: bold;
- color: #FFF;
- z-index: 5;
- }
-
- .analysis_data {
- font-size: 50rpx;
- color: #FFF;
- font-family: YSfont;
- z-index: 5;
- }
-
- .icon_box {
- width: 0rpx;
- height: 0rpx;
-
- .t-icon {
- position: relative;
- top: -230rpx;
- left: 160rpx;
- width: 200rpx;
- height: 200rpx;
- z-index: 1;
- background-repeat: no-repeat;
- background-size: 100%;
- }
- }
|