@import url("reset.css");

html, body{
    width: 100%;
    -webkit-text-size-adjust: none;
    font-family: Arial, Helvetica, "Microsoft JhengHei", sans-serif;
}

/* 公告打開 */
.black_Ann > .black{
    display: block;
}
.black_Ann .black-off .black-off-top{
    transform: translateY(16px) rotate(45deg);
}
.black_Ann .black-off .black-off-bott{
    transform: translateY(-16px) rotate(-45deg);
}

/* 公告內容 */
.black_show .OfficialAnn_wrap{
    width: fit-content;
    height: calc(100vh - 40px);

    display: flex;
    align-items: center;
    justify-content: right;
    overflow: hidden;
    margin: 0 auto;
}

/* 內容 */
.OfficialAnn_wrap .content{
    width: fit-content;
    height: fit-content;
    position: relative;
    top: -20px;
}
.OfficialAnn_wrap .content p{
    font-size: 24px;
    line-height: 42px;
    margin-bottom: 30px;
}

/* 文字 */
.txt-focus{
    border-top: 1px solid #d5d5d5;
    margin-bottom: 10px;
}
.txt-focus .ct-01{
    width: 430px;
    position: relative;
    top: -21px;
    background-color: #FFF;
}
.OfficialAnn_wrap .content .ct-p-03{
    padding-bottom: 35px;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 0;
}
.OfficialAnn_wrap .content .ct-01{
    font-size: 30px;
    color: rgb(59, 184, 206);
    font-weight: bold;
}
.OfficialAnn_wrap .content .ct-a{
    color: #fa9719;
    font-weight: bold;
}
.OfficialAnn_wrap .content .fa{
    margin-right: 5px;
}
.OfficialAnn_wrap .content h3{
    font-size: 24px;
    margin-bottom: 50px;
}
.OfficialAnn_wrap .content .ct-02{
    text-align: right;
}


/* == 手機版型 ========================================================= */

@media ( max-width: 767px ){

    /* 公告 */
    .black_show .OfficialAnn_wrap{
        width: 100%;
        min-height: calc(100vh - 40px);
        height: fit-content;
        border: 8px solid rgb(59, 184, 206);
        border-radius: 0;
        padding: 0;
        margin-top: 40px;

        background-image: none;
        align-items: normal;
    }

    /* 內容 */
    .OfficialAnn_wrap .content{
        width: 100%;
        padding: 20px 10px;
        text-align: start;
    }
    .OfficialAnn_wrap .content p{
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    /* 文字 */
    .txt-focus{
        border-top: none;
        margin-bottom: 5px;
    }
    .txt-focus .ct-01{
        width: auto;
        top: 0;
    }
    .OfficialAnn_wrap .content .ct-p-03{
        padding-bottom: 0;
        border-bottom: none;
    }
    .OfficialAnn_wrap .content .ct-01{
        font-size: 22px;
        margin-bottom: 10px;
    }

}