brand-detail.scss 476 B

12345678910111213141516171819202122232425262728293031
  1. .main {
  2. padding-top: 50px;
  3. .title {
  4. font-size: 28px;
  5. }
  6. .date {
  7. font-size: 18px;
  8. color: #b2b2b2;
  9. margin-top: 16px;
  10. }
  11. .line {
  12. width: 100%;
  13. margin: 40px 0 70px;
  14. position: relative;
  15. height: 1px;
  16. background-color: #d8d8d8;
  17. &::after {
  18. content: '';
  19. display: block;
  20. width: 24px;
  21. height: 2px;
  22. background: #0688d2;
  23. }
  24. }
  25. .detail {
  26. p {
  27. line-height: 34px;
  28. margin: 32px 0;
  29. }
  30. }
  31. }