@charset "UTF-8";

/* 第77期 page170-172 樣式 */
/**
 * 生成時間：2025-12-28 06:02:00
 * 功能描述：第77期雙月刊 page170-172 頁面樣式
 * 包含頁面：page170-172（我的命盤 - 第二章：香港董慕節）
 * 備註：完全複製 p88 架構樣式
 */

/* ============ 主容器 ============ */
.bundle-170-172 .container {
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 100px 20px 100px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: #fff;
    position: relative;
}

/* ============ 內容樣式 ============ */
.bundle-170-172 .content {
    max-width: 600px;
    margin: 0 auto;
}

/* ============ Page 170 文章頭部區塊樣式 ============ */

/* 文章頭部容器 - 蓮花圖標 + 標題文字 */
.bundle-170-172 .page-170 .article-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* 蓮花圖標 */
.bundle-170-172 .page-170 .header-icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
}

.bundle-170-172 .page-170 .header-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 標題文字區塊 */
.bundle-170-172 .page-170 .header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ============ 圓形點點的虛線 ============ */
.bundle-170-172 .dotted-line {
    height: 8px;
    width: 100%;
    margin: 25px 0;
    background-image: radial-gradient(circle, #6850a1 1px, transparent 1px);
    background-size: 8px 8px;
    background-position: center;
}

/* ============ Page 170 章節標題樣式 ============ */

/* 章節編號（第二章）- 較小字級 */
.bundle-170-172 .chapter-number {
    display: block;
    text-align: left;
    color: #6850a1;
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 5px;
}

/* 章節標題（香港董慕節）- 較大字級 */
.bundle-170-172 .chapter-title {
    text-align: left;
    color: #6850a1;
    margin: 0;
    font-size: 2.2rem;
    font-weight: bold;
    font-family: 'Zen Old Mincho', serif;
    letter-spacing: 0.3em;
}

/* ============ 段落樣式 ============ */
.bundle-170-172 .content-paragraph {
    text-align: justify;
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #231f20;
    text-indent: 2em;
}

/* 首段不縮排 */
.bundle-170-172 .content-paragraph:first-of-type {
    text-indent: 0;
}

/* 首段縮排 */
.bundle-170-172 .content-paragraph.indent {
    text-indent: 2em;
}

/* ============ 粗體文字樣式 ============ */
.bundle-170-172 .fw-bold {
    font-weight: bold;
}

/* ============ Page 171 純圖片頁樣式 ============ */
.page-171 .content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    padding: 0;
}

.page-171 figure {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.page-171 figure img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

/* ============ Page 172 內文 + 圖片樣式 ============ */
.page-172 .float-left {
    float: left;
    width: 45%;
    margin: 0 20px 15px 0;
}

.page-172 .float-left img {
    width: 100%;
    height: auto;
    display: block;
}

/* 清除浮動 */
.page-172 .content::after {
    content: "";
    display: table;
    clear: both;
}

/* ============ 頁碼樣式 ============ */
.bundle-170-172 .page-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.bundle-170-172 .page-number .page-text {
    color: #666;
}

.bundle-170-172 .page-number .page-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #6850a1;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

/* ============ RWD 響應式設計 ============ */

/* 平板尺寸 */
@media (max-width: 992px) {
    .bundle-170-172 .container {
        padding: 20px 60px;
    }

    .bundle-170-172 .page-170 .header-icon {
        width: 80px;
        height: 80px;
    }

    .bundle-170-172 .chapter-number {
        font-size: 1.2rem;
    }

    .bundle-170-172 .chapter-title {
        font-size: 1.4rem;
    }
}

/* 手機尺寸 */

/* ============ 固定垂直標籤（Fixed Vertical Label）============ */
.bundle-170-172-active .fixed-vertical-label {
    position: fixed;
    top: 30px;
    left: 30px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    background-color: #823D5B;
    color: white;
    padding: 10px 8px;
    font-size: 1rem;
    white-space: nowrap;
    border-radius: 5px;
    z-index: 1000;
    font-weight: bold;
}

@media (max-width: 768px) {
    .bundle-170-172 .container {
        padding: 15px 30px;
    }

    .bundle-170-172 .page-170 .article-header {
        gap: 15px;
    }

    .bundle-170-172 .page-170 .header-icon {
        width: 80px;
        height: 80px;
    }

    .bundle-170-172 .chapter-number {
        font-size: 1.2rem;
    }

    .bundle-170-172 .chapter-title {
        font-size: 1.4rem;
    }

    .bundle-170-172 .content-paragraph {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .page-172 .float-left {
        float: none;
        width: 100%;
        margin: 15px 0;
    }

    /* 固定垂直標籤 RWD */
    .bundle-170-172-active .fixed-vertical-label {
        font-size: 11px;
        padding: 2px 0;
        left: 0;
        line-height: 1.2;
    }
}

/* 小手機尺寸 */
@media (max-width: 576px) {
    .bundle-170-172 .container {
        padding: 10px 20px;
    }

    .bundle-170-172 .page-170 .article-header {
        gap: 12px;
    }

    .bundle-170-172 .page-170 .header-icon {
        width: 80px;
        height: 80px;
    }

    .bundle-170-172 .chapter-number {
        font-size: 1.2rem;
    }

    .bundle-170-172 .chapter-title {
        font-size: 1.4rem;
        letter-spacing: 0.1em;
    }

    .bundle-170-172 .content-paragraph {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}