public.css 807 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. header {
  2. width: 100%;
  3. height: 48px;
  4. background: #FFFFFF;
  5. font-size: 14px;
  6. font-family: PingFang SC-Bold, PingFang SC;
  7. font-weight: bold;
  8. color: #333333;
  9. }
  10. .content {
  11. width: 100%;
  12. background: #fff;
  13. padding: 20px 16px;
  14. box-sizing: border-box;
  15. margin-bottom: 10px;
  16. }
  17. .title-box {
  18. display: flex;
  19. justify-content: space-between;
  20. align-items: center;
  21. width: 100%;
  22. height: 36px;
  23. box-sizing: border-box;
  24. }
  25. .title {
  26. position: relative;
  27. font-size: 14px;
  28. font-family: PingFang SC-Bold, PingFang SC;
  29. font-weight: bold;
  30. color: #333333;
  31. padding-left: 11px;
  32. }
  33. .title::after {
  34. position: absolute;
  35. content: '';
  36. display: block;
  37. width: 4px;
  38. height: 20px;
  39. background: #3874F6;
  40. top: 0;
  41. left: 0;
  42. }