TitleBar.scss 735 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .detail{
  2. display: flex;
  3. flex-direction: row;
  4. justify-content: space-between;
  5. align-items: center;
  6. margin-bottom: 10px;
  7. color: #fff;
  8. background-color: #000;
  9. }
  10. .title{
  11. color: #fff;
  12. font-size: 48px;
  13. line-height: 48px;
  14. margin-bottom: 8px;
  15. }
  16. .time{
  17. color: #fff;
  18. opacity: 0.4;
  19. font-size: 32px;
  20. line-height: 48px;
  21. }
  22. .detail_item{
  23. display: flex;
  24. flex: 1;
  25. flex-direction: column;
  26. justify-content: center;
  27. align-items: center;
  28. }
  29. .title_bg{
  30. padding-top: 9px;
  31. position: relative;
  32. width: 100px;
  33. }
  34. .badge{
  35. position: absolute;
  36. right: -9px;
  37. top: 0px;
  38. width: 18px;
  39. height: 18px;
  40. border-radius: 50%;
  41. background-color: #AAFF00;
  42. }