brand-detail.scss 399 B

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