123456789101112131415161718192021222324252627282930313233343536373839 |
- /* pages/test/test.wxss */
- .charts-box{
- width: 750rpx;
- height: auto;
- }
- .charts {
- width: 750rpx;
- height: 500rpx;
- }
- .chart-tips{
- width: 750rpx;
- height: 50rpx;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- padding-bottom: 64rpx;
- }
- .charts-tip{
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .charts-tip>span:nth-child(1){
- width: 40rpx;
- height: 10rpx;
- background: #FFA100;
- border-radius: 6px;
- margin-right: 16rpx;
- }
- .charts-tip>span:nth-child(2){
- width: auto;
- height: 32rpx;
- font-size: 26rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.6);
- line-height: 32rpx;
- }
|