analysis.scss 626 B

123456789101112131415161718192021222324252627282930313233
  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. .tab {
  13. display: flex;
  14. border: solid 1px #1767f2;
  15. &-item {
  16. width: 40px;
  17. height: 28px;
  18. line-height: 28px;
  19. text-align: center;
  20. border-right: solid 1px #1767f2;
  21. color: #1767f2;
  22. font-size: 16px;
  23. &:last-child {
  24. border-right: none;
  25. }
  26. }
  27. .active {
  28. background-color: #1767f2;
  29. color: #fff;
  30. }
  31. }
  32. }
  33. }