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