Skip to content

Commit c4be402

Browse files
authored
Update index.html
1 parent b8964d8 commit c4be402

File tree

1 file changed

+62
-70
lines changed

1 file changed

+62
-70
lines changed

index.html

Lines changed: 62 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,20 @@
3838
}
3939
[data-theme="dark"] {
4040
--bg-main: #181818;
41-
--text-main: #e5e5e5;
41+
--text-main: #1a1a1a; /* 保持文字颜色一致 */
4242
}
43+
4344
html {
4445
scroll-behavior: smooth;
4546
}
47+
4648
body {
4749
background: var(--bg-main);
4850
color: var(--text-main);
4951
font-family: "Noto Sans", sans-serif;
5052
}
5153

52-
/* Navbar fixed styling */
54+
/* Navbar 固定 */
5355
.navbar {
5456
position: sticky;
5557
top: 0;
@@ -65,41 +67,39 @@
6567
.title.is-1 {
6668
font-size: 2.5rem !important;
6769
}
68-
6970
@media (min-width: 1024px) {
7071
.title.is-1 {
7172
font-size: 3rem !important;
7273
}
7374
}
74-
7575
@media (min-width: 1440px) {
7676
.title.is-1 {
7777
font-size: 3.5rem !important;
7878
}
7979
}
8080

81-
/* Dark mode title fix */
81+
/* 深色模式标题修正 */
8282
[data-theme="dark"] .title {
8383
color: #ffffff !important;
8484
}
8585

86-
/* Dark mode fix for .hero.is-light */
86+
/* Hero is-light 深色背景修正 */
8787
[data-theme="dark"] .hero.is-light {
8888
background: #1e1e1e !important;
8989
color: #e5e5e5 !important;
9090
}
9191

92-
/* Strong/figcaption color fix for dark mode */
92+
/* 强调文字修正 */
9393
[data-theme="dark"] p strong,
9494
[data-theme="dark"] li strong,
9595
[data-theme="dark"] figcaption strong {
96-
color: #ffffff !important;
96+
color: #1a1a1a !important;
9797
}
9898
[data-theme="dark"] figcaption {
99-
color: #dcdcdc !important;
99+
color: #444 !important;
100100
}
101101

102-
/* Key Findings and Summary gradient box */
102+
/* ✅ 关键模块卡片样式统一 */
103103
.gradient-box {
104104
position: relative;
105105
color: #1a1a1a !important;
@@ -109,6 +109,7 @@
109109
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
110110
transition: all 0.2s ease;
111111
}
112+
112113
.gradient-box::before {
113114
content: "";
114115
position: absolute;
@@ -118,34 +119,31 @@
118119
mix-blend-mode: multiply;
119120
pointer-events: none;
120121
}
122+
121123
[data-theme="dark"] .gradient-box {
122-
background: #2b2b2b;
124+
background: #f5f5f5 !important;
123125
color: #1a1a1a !important;
124126
text-shadow: none !important;
125127
}
126128

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;
133135
}
134136

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+
/* ✅ 等高布局支持 */
142138
.equal-height-columns {
143139
display: flex;
144140
flex-wrap: wrap;
145141
}
142+
146143
.equal-height-columns .column {
147144
display: flex;
148145
}
146+
149147
.equal-height-columns .box {
150148
flex: 1;
151149
display: flex;
@@ -154,39 +152,43 @@
154152
min-height: 240px;
155153
}
156154

157-
/* Figure styles */
155+
/* 图片样式 */
158156
.carousel img,
159157
figure img {
160158
border-radius: 8px;
161159
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
162160
}
161+
163162
figure figcaption {
164163
margin-top: 6px;
165164
font-size: 0.8rem;
166165
color: #666;
167166
text-align: center;
168167
}
169168

170-
/* Author tooltip-style inline affiliations */
169+
/* 作者部分 */
171170
.affiliation {
172171
font-weight: normal;
173172
font-size: 0.9em;
174173
color: #888;
175174
margin-left: 4px;
176175
}
176+
177177
a[title] {
178178
text-decoration: none;
179179
border-bottom: 1px dashed #ccc;
180180
cursor: help;
181181
}
182+
182183
[data-theme="dark"] a[title] {
183184
border-bottom-color: #666;
184185
}
186+
185187
[data-theme="dark"] .affiliation {
186188
color: #aaa;
187189
}
188190

189-
/* BibTeX copy button */
191+
/* BibTeX 拷贝按钮 */
190192
.copy-btn {
191193
position: absolute;
192194
top: 8px;
@@ -200,23 +202,25 @@
200202
cursor: pointer;
201203
}
202204

203-
/* Footer in dark mode */
205+
/* Footer 深色修正 */
204206
[data-theme="dark"] .footer {
205207
background-color: #181818 !important;
206208
color: #e5e5e5 !important;
207209
}
210+
208211
[data-theme="dark"] .footer a {
209212
color: #a0c8ff !important;
210213
}
211214

212-
/* Remove underlines from #design <u> */
215+
/* 去掉 design 中下划线 */
213216
#design u {
214217
text-decoration: none;
215218
}
216219
</style>
217220

218221

219222

223+
220224
<!-- Sticky Nav -->
221225
<nav class="navbar" role="navigation">
222226
<div class="container is-max-desktop" style="justify-content:space-between">
@@ -444,59 +448,47 @@ <h4 class="title is-5">Scaling with parameters</h4>
444448
<figcaption><strong>Scaling Trend.</strong> Accuracy vs. parameter count (1&nbsp;B → 110&nbsp;B).</figcaption>
445449
</figure>
446450

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 &lt; 10⁻¹⁴<br>
459-
Flanker-L: t = 17.88, p &lt; 10⁻³³<br>
460-
Flanker-N: t = 16.85, p &lt; 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>
463463
</div>
464+
</div>
464465

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 &lt; 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>
473470
</div>
471+
</div>
474472

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>
483477
</div>
478+
</div>
484479

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>
493484
</div>
494-
495485
</div>
486+
496487
</div>
497488
</section>
498489

499490

491+
500492

501493
<!-- BibTeX -->
502494
<section class="section" id="BibTeX">

0 commit comments

Comments
 (0)