﻿.news-box{
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}
.news-all-box{
    width: 1280px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 0;
    box-sizing: border-box;
    padding: 150px 0;
}
.news-info-box{
    margin-top: 100px;
    box-sizing: border-box;
    border-top: 1px solid #ddd;
}
.news-info{
    width: 100%;
    display: block;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
    padding: 24px 0;
    padding-right: 100px;
    transition: all .3s linear;
    position: relative;
}
.news-info-date{
    font-family: "Roboto";
    font-size: 14px;
    color: #666;
    letter-spacing: 0.06em;
    line-height: 1;
    transition: all .3s linear;
}
.news-info-text{
    font-family: "Noto Sans TC";
    font-size: 18px;
    color: #000;
    letter-spacing: 0.06em;
    transition: all .3s linear;
    margin-top: 10px;
}
.news-info-arrow{
    font-size: 18px;
    line-height: 20px;
    color: #000;
    position: absolute;
    top: calc(50% - 10px);
    right: 40px;
    font-family: "Noto Sans TC";
    font-weight: 700;
    transition: all .3s linear;
}




/* page */
.news-page-info-title{
    font-family: "Noto Sans TC";
    font-weight: 700;
    font-size: 36px;
    line-height: 1.6;
    color: #003b83;
    letter-spacing: 0.06em;
}
.news-page-info-date{
    font-family: "Roboto";
    font-size: 24px;
    color: #666;
    line-height: 1;
    letter-spacing: 0.06em;
    margin-top: 30px;
}
.news-page-info-edit{
    font-family: "Noto Sans TC";
    font-size: 20px;
    line-height: 1.8;
    color: #666;
    letter-spacing: 0.06em;
    margin-top: 50px;
}
.news-page-info-arrows-box{
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #ddd;
    padding-top: 30px;
    margin-top: 100px;
}
.news-page-info-arrows{
    width: calc((100% - 50px) / 2);
    display: inline-block;
    vertical-align: middle;
}
.news-page-arrows-next{
    text-align: right;
}
.news-page-info-arrows p{
    max-width: calc(80% - 52px);
    font-family: "Noto Sans TC";
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.06em;
    color: #000;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0 15px;
    transition: all .3s linear;
}
.news-page-info-arrows span{
    font-family: "Noto Sans TC";
    font-size: 24px;
    line-height: 30px;
    color: #e48e00;
    display: inline-block;
    vertical-align: middle;
}
.news-page-info-arrows-back{
    width: 50px;
    display: inline-block;
    vertical-align: middle;
    font-family: "Noto Sans TC";
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.06em;
    color: #003b83;
    text-align: center;
    transition: all .3s linear;
}



@media only screen and (max-width: 1280px){
    .news-all-box{
        width: 1000px;
    }
}
@media only screen and (max-width: 1000px){
    .news-all-box{
        width: 750px;
        padding: 100px 0;
    }
    .news-info-box{
        margin-top: 60px;
    }
}
@media only screen and (max-width: 768px){
    .news-all-box{
        width: 550px;
        padding: 60px 0;
    }
    .news-info-box{
        margin-top: 40px;
    }
}
@media only screen and (max-width: 550px){
    .news-all-box{
        width: calc(100vw - 40px);
        padding: 40px 0;
    }
    .news-info-box{
        margin-top: 20px;
    }
    .news-info{
        padding: 14px 0;
        padding-right: 30px;
    }
    .news-info-date{
        font-size: 12px;
    }
    .news-info-text{
        font-size: 16px;
        line-height: 1.2;
        margin-top: 5px;
    }
    .news-info-arrow{
        right: 7px;
    }
}



@media only screen and (min-width: 769px){
    .news-info:hover .news-info-date,
    .news-info:hover .news-info-text{
        color: #003b83;
    }
    .news-info:hover{
        border-color: #003b83;
    }
    .news-info:hover .news-info-arrow{
        color: #e48e00;
    }
    .news-page-info-arrows p{
        position: relative;
        display: inline-block;
    }
    .news-page-info-arrows>a:hover p{
        color: #003b83;
    }
    .news-page-info-arrows>a p::after{
        content: '';
        width: 0%;
        height: 1px;
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: #003b83;
        transition: all .3s linear;
    }
    .news-page-info-arrows>a:hover p::after{
        width: 100%;
    }
    .news-page-info-arrows-back:hover{
        color: #e48e00;
    }

    .news-info{
        opacity: 0;
    }
    .news-info.anima{
        animation: fadeInUp 1.4s ease 1 0s both;
    }
}