12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- .main {
- .title {
- font-size: 24px;
- font-weight: bold;
- }
- .about {
- .cover {
- width: 614px;
- height: 412px;
- background-color: pink;
- }
- .container {
- position: relative;
- }
- .content {
- position: absolute;
- bottom: 0;
- right: 0;
- width: 518px;
- .title {
- font-size: 34px;
- text-transform: uppercase;
- }
- .detail {
- font-size: 14px;
- line-height: 40px;
- text-align: justify;
- }
- .tags {
- margin-top: 36px;
- display: flex;
- .tag {
- padding: 8px 14px;
- font-size: 16px;
- color: #0688d2;
- background: #eff9ff;
- }
- }
- .line {
- margin: 32px 0;
- width: 32px;
- height: 2px;
- background: #d8d8d8;
- }
- }
- }
- .service {
- margin-top: 180px;
- margin-bottom: 80px;
- .cover {
- width: 640px;
- height: 480px;
- box-sizing: border-box;
- padding: 24px;
- background-color: pink;
- }
- .content {
- width: 560px;
- background: #0688d2;
- }
- }
- }
|