|
37 | 37 | } |
38 | 38 | [data-theme="dark"] { |
39 | 39 | --bg-main: #181818; |
40 | | - --text-main: #e5e5e5; |
| 40 | + --text-main: #1a1a1a; /* 保持文字颜色一致 */ |
41 | 41 | } |
| 42 | + |
42 | 43 | html { |
43 | 44 | scroll-behavior: smooth; |
44 | 45 | } |
| 46 | + |
45 | 47 | body { |
46 | 48 | background: var(--bg-main); |
47 | 49 | color: var(--text-main); |
48 | 50 | font-family: "Noto Sans", sans-serif; |
49 | 51 | } |
50 | 52 |
|
51 | | - /* Navbar fixed styling */ |
| 53 | + /* Navbar 固定 */ |
52 | 54 | .navbar { |
53 | 55 | position: sticky; |
54 | 56 | top: 0; |
|
64 | 66 | .title.is-1 { |
65 | 67 | font-size: 2.5rem !important; |
66 | 68 | } |
67 | | - |
68 | 69 | @media (min-width: 1024px) { |
69 | 70 | .title.is-1 { |
70 | 71 | font-size: 3rem !important; |
71 | 72 | } |
72 | 73 | } |
73 | | - |
74 | 74 | @media (min-width: 1440px) { |
75 | 75 | .title.is-1 { |
76 | 76 | font-size: 3.5rem !important; |
77 | 77 | } |
78 | 78 | } |
79 | 79 |
|
80 | | - /* Dark mode title fix */ |
| 80 | + /* 深色模式标题修正 */ |
81 | 81 | [data-theme="dark"] .title { |
82 | 82 | color: #ffffff !important; |
83 | 83 | } |
84 | 84 |
|
85 | | - /* Dark mode fix for .hero.is-light */ |
| 85 | + /* Hero is-light 深色背景修正 */ |
86 | 86 | [data-theme="dark"] .hero.is-light { |
87 | 87 | background: #1e1e1e !important; |
88 | 88 | color: #e5e5e5 !important; |
89 | 89 | } |
90 | 90 |
|
91 | | - /* Strong/figcaption color fix for dark mode */ |
| 91 | + /* 强调文字修正 */ |
92 | 92 | [data-theme="dark"] p strong, |
93 | 93 | [data-theme="dark"] li strong, |
94 | 94 | [data-theme="dark"] figcaption strong { |
95 | | - color: #ffffff !important; |
| 95 | + color: #1a1a1a !important; |
96 | 96 | } |
97 | 97 | [data-theme="dark"] figcaption { |
98 | | - color: #dcdcdc !important; |
| 98 | + color: #444 !important; |
99 | 99 | } |
100 | 100 |
|
101 | | - /* Key Findings and Summary gradient box */ |
| 101 | + /* ✅ 关键模块卡片样式统一 */ |
102 | 102 | .gradient-box { |
103 | 103 | position: relative; |
104 | 104 | color: #1a1a1a !important; |
|
108 | 108 | box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); |
109 | 109 | transition: all 0.2s ease; |
110 | 110 | } |
| 111 | + |
111 | 112 | .gradient-box::before { |
112 | 113 | content: ""; |
113 | 114 | position: absolute; |
|
117 | 118 | mix-blend-mode: multiply; |
118 | 119 | pointer-events: none; |
119 | 120 | } |
| 121 | + |
120 | 122 | [data-theme="dark"] .gradient-box { |
121 | | - background: #2b2b2b; |
| 123 | + background: #f5f5f5 !important; |
122 | 124 | color: #1a1a1a !important; |
123 | 125 | text-shadow: none !important; |
124 | 126 | } |
125 | 127 |
|
126 | | - .gradient-box .title-inside { |
127 | | - margin-top: 0; |
128 | | - margin-bottom: 0.2rem; |
129 | | - font-weight: 600; |
130 | | - font-size: 1.15rem; |
131 | | - line-height: 1.2; |
| 128 | + /* ✅ 保证卡片文字统一间距 */ |
| 129 | + .gradient-box p strong { |
| 130 | + display: inline-block; |
| 131 | + font-size: 1.1rem; |
| 132 | + margin-top: -0.2rem; |
| 133 | + margin-bottom: 0.6rem; |
132 | 134 | } |
133 | 135 |
|
134 | | - .gradient-box .box-body-text { |
135 | | - margin-top: 0.4rem; |
136 | | - line-height: 1.5; |
137 | | - font-size: 0.98rem; |
138 | | - } |
139 | | - |
140 | | - /* Equal height columns for summary cards */ |
| 136 | + /* ✅ 等高布局支持 */ |
141 | 137 | .equal-height-columns { |
142 | 138 | display: flex; |
143 | 139 | flex-wrap: wrap; |
144 | 140 | } |
| 141 | + |
145 | 142 | .equal-height-columns .column { |
146 | 143 | display: flex; |
147 | 144 | } |
| 145 | + |
148 | 146 | .equal-height-columns .box { |
149 | 147 | flex: 1; |
150 | 148 | display: flex; |
|
153 | 151 | min-height: 240px; |
154 | 152 | } |
155 | 153 |
|
156 | | - /* Figure styles */ |
| 154 | + /* 图片样式 */ |
157 | 155 | .carousel img, |
158 | 156 | figure img { |
159 | 157 | border-radius: 8px; |
160 | 158 | box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08); |
161 | 159 | } |
| 160 | + |
162 | 161 | figure figcaption { |
163 | 162 | margin-top: 6px; |
164 | 163 | font-size: 0.8rem; |
165 | 164 | color: #666; |
166 | 165 | text-align: center; |
167 | 166 | } |
168 | 167 |
|
169 | | - /* Author tooltip-style inline affiliations */ |
| 168 | + /* 作者部分 */ |
170 | 169 | .affiliation { |
171 | 170 | font-weight: normal; |
172 | 171 | font-size: 0.9em; |
173 | 172 | color: #888; |
174 | 173 | margin-left: 4px; |
175 | 174 | } |
| 175 | + |
176 | 176 | a[title] { |
177 | 177 | text-decoration: none; |
178 | 178 | border-bottom: 1px dashed #ccc; |
179 | 179 | cursor: help; |
180 | 180 | } |
| 181 | + |
181 | 182 | [data-theme="dark"] a[title] { |
182 | 183 | border-bottom-color: #666; |
183 | 184 | } |
| 185 | + |
184 | 186 | [data-theme="dark"] .affiliation { |
185 | 187 | color: #aaa; |
186 | 188 | } |
187 | 189 |
|
188 | | - /* BibTeX copy button */ |
| 190 | + /* BibTeX 拷贝按钮 */ |
189 | 191 | .copy-btn { |
190 | 192 | position: absolute; |
191 | 193 | top: 8px; |
|
199 | 201 | cursor: pointer; |
200 | 202 | } |
201 | 203 |
|
202 | | - /* Footer in dark mode */ |
| 204 | + /* Footer 深色修正 */ |
203 | 205 | [data-theme="dark"] .footer { |
204 | 206 | background-color: #181818 !important; |
205 | 207 | color: #e5e5e5 !important; |
206 | 208 | } |
| 209 | + |
207 | 210 | [data-theme="dark"] .footer a { |
208 | 211 | color: #a0c8ff !important; |
209 | 212 | } |
210 | 213 |
|
211 | | - /* Remove underlines from #design <u> */ |
| 214 | + /* 去掉 design 中下划线 */ |
212 | 215 | #design u { |
213 | 216 | text-decoration: none; |
214 | 217 | } |
215 | 218 | </style> |
216 | 219 |
|
217 | 220 |
|
218 | 221 |
|
| 222 | + |
219 | 223 | <!-- Sticky Nav --> |
220 | 224 | <nav class="navbar" role="navigation"> |
221 | 225 | <div class="container is-max-desktop" style="justify-content:space-between"> |
@@ -443,55 +447,42 @@ <h4 class="title is-5">Scaling with parameters</h4> |
443 | 447 | <figcaption><strong>Scaling Trend.</strong> Accuracy vs. parameter count (1 B → 110 B).</figcaption> |
444 | 448 | </figure> |
445 | 449 |
|
446 | | -<!-- Result Summary --> |
447 | | -<section class="section"> |
448 | | - <div class="container is-max-desktop"> |
449 | | - <h2 class="title is-3 has-text-centered">📌 Result Summary</h2> |
450 | | - <div class="columns is-multiline is-centered equal-height-columns" style="margin-top: 2rem;"> |
451 | | - |
452 | | - <div class="column is-half"> |
453 | | - <div class="box gradient-box" style="background:linear-gradient(135deg,#d4eaff,#edf4ff);"> |
454 | | - <p class="title-inside">Congruency Effect</p> |
455 | | - <p class="box-body-text"> |
456 | | - >95% models show conflict interference.<br> |
457 | | - Stroop: t = 8.99, p < 10⁻¹⁴<br> |
458 | | - Flanker-L: t = 17.88, p < 10⁻³³<br> |
459 | | - Flanker-N: t = 16.85, p < 10⁻³¹ |
460 | | - </p> |
461 | | - </div> |
| 450 | +<!-- Result Summary Section --> |
| 451 | +<section style="margin-top: 3rem;"> |
| 452 | + <h3 class="title is-4 has-text-centered">Result Summary</h3> |
| 453 | + <div class="columns is-multiline is-centered equal-height-columns"> |
| 454 | + |
| 455 | + <div class="column is-half"> |
| 456 | + <div class="box gradient-box solid-style" style="background:#fceabb;"> |
| 457 | + <p><strong>Congruency Effect</strong><br> |
| 458 | + >95% models show conflict interference.<br> |
| 459 | + Stroop: t = 8.99, p < 10⁻¹⁴<br> |
| 460 | + Flanker-L: t = 17.88, p < 10⁻³³<br> |
| 461 | + Flanker-N: t = 16.85, p < 10⁻³¹</p> |
462 | 462 | </div> |
| 463 | + </div> |
463 | 464 |
|
464 | | - <div class="column is-half"> |
465 | | - <div class="box gradient-box" style="background:linear-gradient(135deg,#ffe9ec,#fff6f7);"> |
466 | | - <p class="title-inside">Squared Conflict</p> |
467 | | - <p class="box-body-text"> |
468 | | - Fully-incongruent (SIRC) trials show largest drop.<br> |
469 | | - All p < 0.001 |
470 | | - </p> |
471 | | - </div> |
| 465 | + <div class="column is-half"> |
| 466 | + <div class="box gradient-box solid-style" style="background:#d5f4e6;"> |
| 467 | + <p><strong>Squared Conflict</strong><br> |
| 468 | + Fully-incongruent (SIRC) trials show largest drop. All p < 0.001</p> |
472 | 469 | </div> |
| 470 | + </div> |
473 | 471 |
|
474 | | - <div class="column is-half"> |
475 | | - <div class="box gradient-box" style="background:linear-gradient(135deg,#f2fbdc,#fafff0);"> |
476 | | - <p class="title-inside">Control Accuracy</p> |
477 | | - <p class="box-body-text"> |
478 | | - Accuracy ≈ 85% on 238 control trials<br> |
479 | | - (OCR, color, spatial tasks). |
480 | | - </p> |
481 | | - </div> |
| 472 | + <div class="column is-half"> |
| 473 | + <div class="box gradient-box solid-style" style="background:#e2f0cb;"> |
| 474 | + <p><strong>Control Accuracy</strong><br> |
| 475 | + Accuracy ≈ 85% on 238 control trials (OCR, color, spatial).</p> |
482 | 476 | </div> |
| 477 | + </div> |
483 | 478 |
|
484 | | - <div class="column is-half"> |
485 | | - <div class="box gradient-box" style="background:linear-gradient(135deg,#f0e8ff,#faf5ff);"> |
486 | | - <p class="title-inside">Task Concordance</p> |
487 | | - <p class="box-body-text"> |
488 | | - r = 0.96 between Letter-/Number-Flanker<br> |
489 | | - → shared bottleneck |
490 | | - </p> |
491 | | - </div> |
| 479 | + <div class="column is-half"> |
| 480 | + <div class="box gradient-box solid-style" style="background:#fcd5ce;"> |
| 481 | + <p><strong>Task Concordance</strong><br> |
| 482 | + r = 0.96 between Letter-/Number-Flanker → shared bottleneck</p> |
492 | 483 | </div> |
493 | | - |
494 | 484 | </div> |
| 485 | + |
495 | 486 | </div> |
496 | 487 | </section> |
497 | 488 |
|
|
0 commit comments