刘嘉昕 | 34401cc | 2025-06-09 22:47:33 +0800 | [diff] [blame] | 1 | .help-page-wrapper { |
| 2 | min-height: 100vh; |
| 3 | background-color: #fff7e6; /* 淡橙色背景 */ |
| 4 | padding: 3rem 1rem; /* 上下3rem,左右1rem */ |
| 5 | box-sizing: border-box; |
| 6 | } |
| 7 | |
| 8 | .help-container { |
| 9 | max-width: 960px; /* 大约是4xl宽度 */ |
| 10 | margin: 0 auto; |
| 11 | background: white; |
| 12 | border: 4px solid black; |
| 13 | border-radius: 0.5rem; |
| 14 | box-shadow: 0 0 10px rgb(0 0 0 / 0.1); |
| 15 | padding: 2rem; |
| 16 | box-sizing: border-box; |
| 17 | } |
| 18 | |
| 19 | .help-title { |
| 20 | font-size: 2rem; |
| 21 | font-weight: 700; |
| 22 | text-align: center; |
| 23 | margin-bottom: 1.5rem; |
| 24 | border-bottom: 2px solid black; |
| 25 | padding-bottom: 1rem; |
| 26 | } |
| 27 | |
| 28 | .help-content { |
| 29 | max-width: none; /* 让内容最大宽度不限制 */ |
| 30 | margin: 0 auto; |
| 31 | padding: 0 2rem; /* 左右边距2rem */ |
| 32 | box-sizing: border-box; |
| 33 | } |
| 34 | |
| 35 | /* markdown 内容排版,配合 rehype-highlight 样式 */ |
| 36 | .help-content p { |
| 37 | margin: 1rem 0; |
| 38 | line-height: 1.6; |
| 39 | } |
| 40 | |
| 41 | .help-content h1 { |
| 42 | font-size: 1.5rem; |
| 43 | margin: 2rem 0 1rem; |
| 44 | font-weight: 700; |
| 45 | border-bottom: 1px solid #ccc; |
| 46 | padding-bottom: 0.5rem; |
| 47 | } |
| 48 | |
| 49 | .help-content h2 { |
| 50 | font-size: 1.25rem; |
| 51 | margin: 1.5rem 0 1rem; |
| 52 | font-weight: 600; |
| 53 | } |
| 54 | |
| 55 | .help-content code { |
| 56 | background-color: #f3f4f6; |
| 57 | padding: 0.2rem 0.4rem; |
| 58 | border-radius: 0.25rem; |
| 59 | font-family: monospace; |
| 60 | font-size: 0.9rem; |
| 61 | } |
| 62 | |
| 63 | .help-content pre { |
| 64 | background-color: #f3f4f6; |
| 65 | padding: 1rem; |
| 66 | border-radius: 0.5rem; |
| 67 | overflow-x: auto; |
| 68 | margin: 1rem 0; |
| 69 | border: 1px solid #d1d5db; |
| 70 | } |
| 71 | |
| 72 | .help-content blockquote { |
| 73 | border-left: 4px solid #9ca3af; |
| 74 | padding-left: 1rem; |
| 75 | font-style: italic; |
| 76 | color: #6b7280; |
| 77 | margin: 1rem 0; |
| 78 | } |