test.wxss 698 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* pages/test/test.wxss */
  2. .charts-box{
  3. width: 750rpx;
  4. height: auto;
  5. }
  6. .charts {
  7. width: 750rpx;
  8. height: 500rpx;
  9. }
  10. .chart-tips{
  11. width: 750rpx;
  12. height: 50rpx;
  13. display: flex;
  14. flex-direction: row;
  15. justify-content: center;
  16. align-items: center;
  17. padding-bottom: 64rpx;
  18. }
  19. .charts-tip{
  20. display: flex;
  21. flex-direction: row;
  22. align-items: center;
  23. }
  24. .charts-tip>span:nth-child(1){
  25. width: 40rpx;
  26. height: 10rpx;
  27. background: #FFA100;
  28. border-radius: 6px;
  29. margin-right: 16rpx;
  30. }
  31. .charts-tip>span:nth-child(2){
  32. width: auto;
  33. height: 32rpx;
  34. font-size: 26rpx;
  35. font-family: PingFangSC-Regular, PingFang SC;
  36. font-weight: 400;
  37. color: rgba(0,0,0,0.6);
  38. line-height: 32rpx;
  39. }