﻿
raw
Journal 419 styled · HTML
<style>
  /* ── 色票 ── */
  #jer-block {
    --brand-navy:   #336699;
    --brand-deep:   #003366;
    --brand-mid:    #4d7faa;
    --brand-accent: #cc6600;
    --bg-card:      #ffffff;
    --bg-row-alt:   #f4f7fb;
    --border:       #c8d6e3;
    --text-main:    #222c38;
    --text-mid:     #445566;
    --text-light:   #6a7f94;
    font-family: "微軟正黑體", "Microsoft JhengHei", "蘋方-繁", "PingFang TC", Arial, sans-serif;
  }
 
  /* ── 獎項圖片 table ── */
  #jer-block table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 8px;
    margin-bottom: .4rem;
  }
  #jer-block table td {
    padding: 7px;
    background: var(--bg-row-alt);
    border: 1px solid var(--border);
    border-radius: 3px;
    text-align: center;
    vertical-align: middle;
    transition: background .2s, border-color .2s, box-shadow .2s;
  }
  #jer-block table td:hover {
    background: var(--bg-card);
    border-color: var(--brand-navy);
    box-shadow: 0 3px 10px rgba(30,80,150,.13);
  }
  #jer-block table td a { display: block; line-height: 0; }
  #jer-block table td img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.08));
    transition: transform .22s ease, filter .22s ease;
  }
  #jer-block table td a:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.16));
  }
 
  /* ── 出版資訊 ul ── */
  #jer-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
  }
  #jer-block ul li {
    display: flex;
    align-items: baseline;
    gap: .65rem;
    padding: .5rem .9rem;
    border-left: 3px solid transparent;
    font-size: 1rem;
    line-height: 1;
    color: var(--text-mid);
    border-radius: 0 3px 3px 0;
    transition: background .15s, border-color .15s;
  }
  #jer-block ul li:nth-child(odd)  { background: var(--bg-row-alt); }
  #jer-block ul li:nth-child(even) { background: var(--bg-card); }
  #jer-block ul li:hover {
    background: #e6eef7;
    border-left-color: var(--brand-navy);
    color: var(--text-main);
  }
  #jer-block ul li::before {
    content: '›';
    color: var(--brand-accent);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
  }
 
  /* ── 內文段落 ── */
  #jer-block p {
    font-size: 1.05rem;
    line-height: 1.45;
    color: var(--text-mid);
    padding: 0;
    margin: 0 0 .9rem 0;
    background: none;
    border: none;
    letter-spacing: .03em;
  }
 
  /* 緊接在 ul 後的 p = 小節標題（主題預告） */
  #jer-block ul + p {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: .1em;
    color: var(--brand-deep);
    padding: .45rem .9rem .45rem 1rem;
    margin: .4rem 0 .6rem;
    background: linear-gradient(90deg, #dce9f5 0%, #edf3fa 100%);
    border-left: 4px solid var(--brand-navy);
    border-radius: 0 3px 3px 0;
    line-height: 1.4;
  }
 
  /* p 後緊接 ul = 小節標題（榮獲國家圖書館） */
  #jer-block p:has(+ ul) {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--brand-navy);
    padding: .35rem .9rem .35rem 1rem;
    margin-bottom: .4rem;
    background: linear-gradient(90deg, #e8f0f8 0%, #f2f7fc 100%);
    border-left: 3px solid var(--brand-mid);
    border-radius: 0 3px 3px 0;
    letter-spacing: .06em;
    line-height: 1.4;
  }
 
  /* 主題預告後的 ul 項目符號 */
  #jer-block ul + p ~ ul li::before {
    content: '◆';
    font-size: .62rem;
    color: var(--brand-accent);
    position: relative;
    top: -.05em;
  }
 
  /* ── 引文小字 ── */
  #jer-block .note-p {
    font-size: .95rem;
    color: var(--text-light);
    border-left: 2px solid var(--border);
    background: #f8fafc;
    padding: .4rem .8rem;
    margin-bottom: 1.2rem;
    border-radius: 0 2px 2px 0;
    line-height: 1.4;
  }
 
  /* ── 分隔帶（intro-block 上方） ── */
  #jer-block .intro-block {
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
  }
  #jer-block .intro-block p:last-child { margin-bottom: 0; }
</style>