12345678910111213141516171819202122232425262728293031 |
- .main {
- padding-top: 50px;
- .title {
- font-size: 28px;
- }
- .date {
- font-size: 18px;
- color: #b2b2b2;
- margin-top: 16px;
- }
- .line {
- width: 100%;
- margin: 40px 0 70px;
- position: relative;
- height: 1px;
- background-color: #d8d8d8;
- &::after {
- content: '';
- display: block;
- width: 24px;
- height: 2px;
- background: #0688d2;
- }
- }
- .detail {
- p {
- line-height: 34px;
- margin: 32px 0;
- }
- }
- }
|