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