﻿.index-news-box{
    width: 100%;
    display: block;
    position: relative;
}
.index-news-all-box{
    width: 1300px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 0;
    box-sizing: border-box;
    padding-bottom: 60px;
}
.index-news-title{
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 35px 0;
}
.index-news-title h2{
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.1em;
    font-family: "Roboto";
    font-weight: 500;
    color: #000;
}
.index-news-title h3{
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0.1em;
    font-family: 'Noto Sans TC';
    color: #666;
    font-weight: 300;
}
.index-news-info{
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 32px 15px;
    transition: all .3s linear;
    /* background-color: #fafafa; */
}
.index-news-info-date{
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 18px;
    color: #000;
    letter-spacing: 0.1em;
    line-height: 36px;
    display: inline-block;
    vertical-align: middle;
}
.index-news-info-line{
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 18px;
    color: #ddd;
    letter-spacing: 0.1em;
    line-height: 36px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
}
.index-news-info-text{
    width: calc(100% - 146px);
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0.1em;
    font-family: 'Noto Sans TC';
    font-weight: 100;
    color: #000;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


@media only screen and (max-width: 1300px){
    .index-news-all-box{
        width: 1200px;
    }
}
@media only screen and (max-width: 1200px){
    .index-news-all-box{
        width: 1000px;
    }
}
@media only screen and (max-width: 1000px){
    .index-news-all-box{
        width: 750px;
    }
}
@media only screen and (max-width: 768px){
    .index-news-all-box{
        width: 550px;
    }
    .index-news-title{
        padding: 20px 0;
    }
    .index-news-title h2{
        font-size: 22px;
        line-height: 26px;
    }
    .index-news-title h3{
        font-size: 16px;
        line-height: 26px;
    }
    .index-news-info{
        padding: 22px 10px;
        box-sizing: border-box;
        border-bottom: 1px solid #d1d1d1;
    }
    .index-news-info-date{
        font-size: 16px;
        line-height: 26px;
    }
    .index-news-info-line{
        font-size: 16px;
        line-height: 26px;
    }
    .index-news-info-text{
        width: calc(100% - 133px);
        font-size: 16px;
        line-height: 26px;
    }
}
@media only screen and (max-width: 550px){
    .index-news-all-box{
        padding-bottom: 20px;
    }
    .index-news-title{
        padding-bottom: 10px;
    }
    .index-news-title h2{
        font-size: 18px;
        line-height: 22px;
    }
    .index-news-title h3{
        font-size: 14px;
        line-height: 22px;
    }
    .index-news-info{
        padding: 12px 0;
        box-sizing: border-box;
        border-bottom: 1px solid #d1d1d1;
    }
    .index-news-info-date{
        font-size: 14px;
        line-height: 22px;
    }
    .index-news-info-line{
        display: none;
    }
    .index-news-info-text{
        width: 100%;
        display: block;
        font-size: 14px;
        line-height: 22px;
    }
}







/*animation*/
/*<-------------動畫------------->*/
@media only screen and (min-width: 1001px){
    /* .index-news-title h2,
    .index-news-title h3,
    .index-news-info{
        opacity: 0;
    }
	.index-news-title.anima h2{
        animation: fadeInUp 1s ease 0s 1 both ;
    }
	.index-news-title.anima h3{
        animation: fadeInUp 1s ease .2s 1 both ;
    }
    .index-news-info.anima{
        animation: fadeInUp 1s ease 0s 1 both ;
    } */

    .index-news-info:hover{
        background-color: #f9f9f9;
    }
}