<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 主標題：文字置中、間距與色彩 */
.main-content h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #4A6572;
    letter-spacing: 1px;
    font-size: 2rem;
    padding-top: 20px;
}

/* GIF 圖檔的樣式（可依需求調整大小及對齊方式） */
.main-content .page-gif {
    display: block;
    margin: 0 auto 20px; /* 置中並在下方留空 */
    max-width: 400px;    /* 圖片最大寬度 */
    width: 100%;         /* 讓圖片自適應容器寬度 */
    height: auto;        /* 根據寬度自動調整高度 */
    border-radius: 4px;  /* 稍微圓角 */
}

/* 區塊標題 (如 Daily Practice) 的風格 */
.main-content h2 {
    margin-bottom: 10px;
    color: #4A6572;
    font-weight: 600;
    font-size: 1.5rem;
}

/* Daily Practice 下的段落增加行距與字距 */
.main-content h2 + p {
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* 每個句子的容器：加上間距、淡淡背景與邊線區分 */
.main-content .sentence-block {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #FAFAFA;
    border-left: 4px solid #BDC3C7;
    border-radius: 4px;
}

/* 句子文字本身的設定 */
.main-content .sentence-block p {
    margin: 8px 0;
    line-height: 1.6;
}

/* 音訊播放器 margin */
.main-content .audio-player {
    margin: 10px 0;
    width: 75%;
}

/* 分隔線：淺色虛線 */
.main-content hr {
    border: none;
    border-top: 1px dashed #ccc;
    margin: 30px 0;
}

/* 影片資訊標題 (Video Information) 與內容的區塊樣式 */
.main-content .video-info-title {
    margin-bottom: 5px;
    color: #4A6572;
    font-size: 1.1rem;
    font-weight: 600;
}

.main-content .video-info {
    margin-top: 15px;
    padding: 15px;
    background-color: #FAFAFA;
    border: 1px solid #E3E3E3;
    border-radius: 4px;
}

/* 推廣聯盟行銷資訊標題與內容的區塊樣式 */
.main-content .affiliate-info-title {
    margin-top: 30px;
    margin-bottom: 5px;
    color: #4A6572;
    font-size: 1.1rem;
    font-weight: 600;
}

.main-content .affiliate-info {
    margin-top: 15px;
    padding: 15px;
    background-color: #FCF8E8; /* 輕微米黃色背景做區隔 */
    border: 1px solid #E3E3E3;
    border-radius: 4px;
}

#am-url img {

}

/* ========== RWD: 小螢幕斷點設定 (max-width: 600px) ========== */
@media (max-width: 600px) {
    .main-content .container {
        margin: 20px auto;
        padding: 20px 15px;
    }

    .main-content h1 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .main-content .sentence-block {
        margin-bottom: 20px;
        padding: 10px;
    }

    .main-content hr {
        margin: 20px 0;
    }

    .main-content .video-info,
    .affiliate-info {
        padding: 10px;
    }
    .main-content .audio-player {
        width: 100%;
        min-height: 50px; /*嘗試拉大播放條*/
    }

    #am-url img {
        max-height: 500px;
    }
}

@media (max-width: 420px) {
    #am-url img {
        max-height: 300px;
    }
}</pre></body></html>