.flex_div{
    position: absolute;
    display: flex;
    justify-content: center;
    top: 50px;
    left: min(220px, 20vw);
    right: 95px;
}

.container {
    position: absolute;
    display: block;
    width: min(95%, 1000px);
}

.newsBox
{
    display: block;
    background-color: white;
    padding: 10px;
    margin-bottom: 20px;
}

.newsDate
{
    margin: 10px;
    font-size: min(1.1em, 5vw);
    font-family: 'Noto Serif TC', serif;
    font-weight: 900;
}
.highlight
{
    margin: 10px;
    font-size: min(1.1em, 5vw);
    font-family: 'Noto Serif TC', serif;
    font-weight: 600;
    color: #FFA723;
}

.innerContent
{
    margin: 10px;
    font-size: 1em;
    font-family: 'Noto Serif TC', serif;
    color: #6D6D6D;
    line-height: 1.8em;
}

.hline
{
    width: 90%;
    height: 1px;
    background-color: #D9D9D9;
}

.hline::after
{
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 2px;
    background-color: #FFA723;
}

@media screen and (max-width: 1024px) {

    .hline
    {
        width: 100%;
    }

}

@media screen and (max-width: 652px) {
    .flex_div{
        top: 140px;
        left: 0px;
        right: 0px;
    }

    .container {
        width: 100%;
    }
}
