.bundle-107 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bundle-107 {
    font-family: "Microsoft JhengHei", "SimSun", serif;
    line-height: 1.8;
    background-color: #fff5e6;
    color: #4a4a4a;
    padding: 20px;
}

.bundle-107 .container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(139, 119, 101, 0.1);
    position: relative;
}

.bundle-107 .news-badge {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    /* 使用放射性漸層，從中心向外擴散 */
    background: radial-gradient(circle at 40% 40%,
            #E99970 0%,
            /* 中心點較淺的褐色 */
            #A16D53 50%,
            /* 中間過渡色 */
            #805c3c 100%
            /* 邊緣較深的褐色 */
        );

    /* 內容置中對齊 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* 添加細緻陰影效果 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);

    /* 文字相關設定 */
    color: #ffffff;
    text-align: center;

    /* 確保圓形位置固定 */
    position: absolute;
    top: 20px;
    right: 30px;


    /* 平滑效果 */
    transition: all 0.3s ease;
}

.bundle-107 .news-text {
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.bundle-107 .chinese-text {
    font-size: 15px;
    line-height: 1.4;
}

.bundle-107 .book-title {
    font-size: 28px;
    color: #734d26;
    margin-bottom: 10px;
}

.bundle-107 .subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.bundle-107 .book-info {
    margin-bottom: 20px;
}

.bundle-107 .book-info p {
    margin-bottom: 5px;
    color: #5a4a3f;
}

.bundle-107 .book-cover {
    float: right;
    width: 300px;
    margin: 0 0 0 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.bundle-107 .content {
    font-size: 20px;
    line-height: 2;
    color: #5a4a3f;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 0px 20px 10px;
    /*line-height: 1.8;*/
    background-color: white;
}

.bundle-107 .content p {
    text-indent: 2em;
    margin-bottom: 1.5em;
    text-align: justify;
}

.bundle-107 .page-number {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 30px;
    padding: 8px 0;
}

.bundle-107 .page-text {
    color: #666;
    font-size: 14px;
}

.bundle-107 .page-circle {
    background: #8b7765;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}


.bundle-107 {
    margin: 0;
    padding: 20px;
    font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.bundle-107 .tag {
    position: fixed;
    top: 20px;
    left: 0;
    background-color: #9b8778;
    color: white;
    padding: 12px 4px;
    font-size: 14px;
    z-index: 1000;
    transition: all 0.3s ease;
    writing-mode: vertical-lr;
    letter-spacing: 4px;
    border-radius: 0 18px 18px 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}


.bundle-107 .main-text {
    margin-top: 60px;
    font-size: 16px;
    line-height: 1.8;
}

.bundle-107 .page-number {
    color: #9b8778;
    font-size: 24px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}



.bundle-107 .header {
    /*                max-width: 800px;*/
    margin: 0 auto 3em auto;
    text-align: center;
}

.bundle-107 .header .title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.bundle-107 .header .dot {
    width: 16px;
    height: 16px;
    background-color: #CE855F;
    border-radius: 50%;
    margin-right: 8px;
}

.bundle-107 .header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
}

.bundle-107 .header .subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.bundle-107 .header .info-container {
    display: inline-block;
    /*! text-align: left; */
    /*! width: 250px; */
}

.bundle-107 .header .info-group {
    margin: 8px 0;
    display: flex;
}

.bundle-107 .header .label {
    width: 52px;
}

.bundle-107 .header .scontent {
    margin-left: 0;
}




/* RWD 設定 */

@media screen and (max-width: 600px) {

    .bundle-107 .container {
        padding: 15px;
    }

    .bundle-107 .news-badge {
        transform: scale(.75);
        top: 40px;
        right: -30px;
    }

    .bundle-107 .book-title {
        font-size: 20px;
    }

    .bundle-107 .book-cover {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }

    .bundle-107 .page-text {
        font-size: 12px;
    }

    .bundle-107 .page-circle {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .bundle-107 .tag {
        left: 0;
        transform: scale(0.7);
        transform-origin: left top;
    }

    .bundle-107 .content {
        padding: 0 0 20px 0;
    }
}


@media screen and (min-width: 600px) and (max-width: 800px) {
    .bundle-107 {
        padding: 0;
    }

    .bundle-107 .container {
        padding: 20px;
        margin: 10px;
    }

    .bundle-107 .corner-label {
        transform: scale(0.8);
    }

    .bundle-107 .book-title {
        font-size: 24px;
    }

    .bundle-107 .news-badge {
        width: 95px;
        height: 95px;
        right: 19px;
    }

    .bundle-107 .news-text {
        font-size: 19px;
    }

    .bundle-107 .chinese-text {
        font-size: 13px;
    }

    .bundle-107 .page-text {
        font-size: 13px;
    }

    .bundle-107 .page-circle {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .bundle-107 .tag {
        left: 0;
        transform: scale(0.8);
        transform-origin: left top;
    }
}

@media screen and (max-width: 800px) {}

@media screen and (min-width: 801px) {
    .bundle-107 .tag {
        left: calc(50% - 400px);
        /* (100% - 800px) / 2 = content 的左邊界位置 */
    }
}