analysis.scss 757 B

1234567891011121314151617181920212223242526272829303132333435
  1. .analysis {
  2. padding: 15px;
  3. font-family: PingFangSC-Regular, PingFang SC;
  4. &-header {
  5. background-color: #fff;
  6. border-radius: 5px;
  7. padding: 15px;
  8. display: flex;
  9. justify-content: space-between;
  10. align-items: center;
  11. margin-bottom: 10px;
  12. &-right {
  13. .tab {
  14. display: flex;
  15. border: solid 1px #1767f2;
  16. &-item {
  17. width: 40px;
  18. height: 28px;
  19. line-height: 28px;
  20. text-align: center;
  21. border-right: solid 1px #1767f2;
  22. color: #1767f2;
  23. font-size: 16px;
  24. &:last-child {
  25. border-right: none;
  26. }
  27. }
  28. .active {
  29. background-color: #1767f2;
  30. color: #fff;
  31. }
  32. }
  33. }
  34. }
  35. }