123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .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;
- font-weight: bold;
- color: #FFF;
- transform: skew(-10deg);
- 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%;
- }
- }
|