.newshtml{
    padding-top: 90px;
    width: 100%;
    position: relative;
}

@media screen and (max-width: 768px){
    .newshtml {
    padding: 60px 0px;
    }
}

.news_container {
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    margin: 0px auto;
    width: 100%;
    max-width: 1200px;
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

.tag_menu {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 45px 0px 0px;
    z-index: 10;
    background-color: rgb(255, 255, 255);
    margin: 0px;
    top: 55px;
    position: sticky;
}



@media screen and (max-width: 992px) {
    .tag_menu {
        flex-wrap: wrap;
        padding: 35px 20px 0px;
    }
}
@media screen and (max-width: 767px) {
    .tag_menu {
        flex-wrap: wrap;
        padding: 5px 20px 0px;
    }
}

.tag {
    position: relative;
    padding: 0px 35px 15px;
    width: 16.6%;
    border-bottom: 1px solid rgb(153, 153, 153);
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    list-style: none;
    cursor: pointer;
    transition: all 0.25s ease 0s;
}

@media screen and (max-width: 992px) {
    .tag {
        width: 33.3%;
        margin-top: 15px;
        white-space: nowrap;
    }
}
@media screen and (max-width: 700px) {
    .tag {
        font-size: 16px;
        padding: 0px 0px 15px;
    }
}

.tag.active::after {
    position: absolute;
    left: 0px;
    bottom: -3px;
    display: block;
    content: "";
    height: 6px;
    width: 100%;
    background-color: #4872C6;
    opacity: 1;
    transition: all 0.25s ease 0s;
}

.news_html_con {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    align-items: stretch;
    width: 100%;
    padding-bottom: 50px;
}

.news_card {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 20px;
    width: calc(33.3% - 40px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 12px 1px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.news_card:nth-child(2n+1) {
    background-color: #345aa7;
}

@media screen and (max-width: 992px)
{
    .news_card {
    width: calc(50% - 40px);
    }
}

@media screen and (max-width: 700px)
{
    .news_card {
    margin: 20px 11vw;
    width: calc(100% - 22vw);
    display: flex;
    }
}

.news_card:nth-child(2n+1) h3 {
    color: #f8fafc;
    border-bottom: 1px solid rgb(108, 111, 141);
}

.news_card:nth-child(2n+1) p {
    color: #f8fafc;
}

.card_img {
    flex: 0 0 auto;
}



@media screen and (max-width: 1440px)
{
    .card_infor {
        padding: 15px 20px;
    }
}

.card_infor {
    flex: 1 1 auto;
    padding: 15px 40px;
}

.word {
    padding-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
    color: #1C3059;
}

