.story-timeline>select{width:min(320px,100%);height:45px;margin-bottom:25px;padding:0 12px;border:1px solid var(--line);border-radius:6px;background:#fff;color:#16283b}
.story-timeline>div{display:grid;gap:16px}
/* 每篇故事：日期(左) | 摘要(右) 上方；图片横排下方 */
.story-timeline article{display:block;padding:20px 22px;border:1px solid var(--line);border-radius:10px;background:var(--panel)}
.story-head{display:grid;grid-template-columns:150px minmax(0,1fr);gap:24px;align-items:start}
.story-head time{color:var(--cyan);font-weight:800;font-size:14px;padding-top:2px;white-space:nowrap}
.story-summary small{display:inline-block;margin-bottom:4px;color:var(--cyan);font-size:10px;font-weight:800;letter-spacing:.08em}
.story-summary h3{margin:0 0 6px;font-size:19px;color:#16283b}
.story-summary p{margin:0;color:var(--muted);line-height:1.7}
/* 图片横排：一排 4 张，缩小；多图时横向滚动 + 左右箭头 */
.story-photos{display:flex;gap:10px;overflow-x:auto;scroll-behavior:smooth;margin-top:16px;scrollbar-width:none}
.story-photos::-webkit-scrollbar{display:none}
.story-photo{position:relative;flex:0 0 calc((100% - 30px) / 4);aspect-ratio:4/3;overflow:hidden;border-radius:7px;background:linear-gradient(145deg,#e8f0f8,#d7e4f0)}
.story-photo img{width:100%;height:100%;object-fit:cover}
.story-photo-num{position:absolute;right:7px;bottom:7px;padding:2px 7px;border-radius:10px;background:rgba(14,35,60,.6);color:#fff;font-size:10px;font-weight:700}
.story-photo-empty{display:grid;place-items:center;color:#1668d844;font-size:28px;font-weight:900}
.story-photo-empty::before{content:"JYD"}
.story-nav{display:flex;justify-content:center;gap:10px;margin-top:12px}
.story-nav button{width:36px;height:32px;border:1px solid var(--line);border-radius:6px;background:#fff;color:#1668d8;font-size:18px;line-height:1;cursor:pointer;transition:.15s}
.story-nav button:hover{background:#eef3f8;border-color:var(--cyan)}
.story-read{display:inline-block;margin-top:14px;color:var(--cyan);font-size:11px;padding:0;border:0;background:none;font-weight:700}
@media(max-width:760px){
  .story-head{grid-template-columns:1fr;gap:8px}
  .story-photo{flex:0 0 calc((100% - 10px) / 2)}
}
