﻿.index-news-box{
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 160px;
    padding-bottom: 80px;
}
.index-news-all-box{
    width: 1200px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 0;
    position: relative;
}
.index-news-bg-box{
    width: calc(100% - (100vw - 1200px) / 2);
    height: 100%;
    position: absolute;
    top: 25px;
    left: 0;
    background-color: #f5f5f5;
}
.index-news-bg-box::after{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    border-top: 90px solid #fff;
    border-left: 90px solid transparent;
}
.index-news-title-box p{
    font-size: 60px;
    font-family: 'roboto';
    font-weight: 500;
    letter-spacing: 0.06em;
    display: inline-block;
    color: #371268;
    line-height: 50px;
}
.index-news-title-box p>span{
    font-size: 16px;
    font-family: '微軟正黑體';
    letter-spacing: 0.06em;
    display: block;
    color: #555555;
    text-align: right;
}
.index-news-info-box{
    margin-top: 60px;
    box-sizing: border-box;
    padding: 0 100px;
}
.index-news-info{
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 15px 20px;
    border-bottom: 1px solid #d1d1d1;
    transition: all .3s linear;
}
.index-news-info-date{
    font-size: 16px;
    color: #888;
    letter-spacing: 0.06em;
    font-family: 'roboto';
    font-weight: lighter;
    line-height: 34px;
    transition: all .3s linear;
}
.index-news-info-text{
    font-size: 18px;
    color: #000;
    letter-spacing: 0.06em;
    line-height: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .3s linear;
}
.index-news-more-box{
    text-align: right;
    margin-top: 80px;
}
.index-news-more{
    width: 240px;
    line-height: 80px;
    display: inline-block;
    box-sizing: border-box;
    padding: 0 40px;
    border: 1px solid #d1d1d1;
    font-size: 18px;
    color: #888;
    letter-spacing: 0.06em;
    position: relative;
    text-align: left;
    transition: all .3s linear;
}
.index-news-more::after{
    content: '\f105';
    font-family: 'font awesome 5 free';
    display: block;
    font-weight: bold;
    font-size: 18px;
    color: #e3ae0f;
    position: absolute;
    right: 40px;
    top: 0;
    line-height: 80px;
}

.index-news-info:hover{
    background-color: #371268;
    padding: 15px;
}
.index-news-info:hover .index-news-info-date{
    color: #fff;
    font-weight: bold;
}
.index-news-info:hover .index-news-info-text{
    color: #fff;
    font-weight: bold;
}



@media only screen and (max-width: 1200px){
    .index-news-all-box{
        width: 1000px;
    }
    .index-news-bg-box {
        width: calc(100% - (100vw - 1000px) / 2);
    }
    .index-news-box{
        margin-top: 80px;
        padding-bottom: 40px;
    }
}
@media only screen and (max-width: 1000px){
    .index-news-all-box{
        width: 95%;
    }
    .index-news-bg-box {
        display: none;
    }
    .index-news-box{
        padding-top: 40px;
        margin-top: 0;
    }
    .index-news-info-box{
        margin-top: 10px;
        padding: 0;
    }
    .index-news-title-box p {
        font-size: 50px;
        line-height: 30px;
    }
    .index-news-title-box p>span {
        font-size: 14px;
    }
    .index-news-more-box{
        margin-top: 40px;
    }
}
@media only screen and (max-width: 768px){
    .index-news-info {
        padding: 10px 15px;
    }
    .index-news-info:hover{
        padding: 10px;
    }
}
@media only screen and (max-width: 550px){
    .index-news-box{
        padding: 20px 0;
    }
    .index-news-title-box p {
        font-size: 30px;
        line-height: 30px;
    }
    .index-news-title-box p>span {
        font-size: 12px;
        line-height: 20px;
    }
    .index-news-info {
        padding: 5px 10px;
    }
    .index-news-info:hover{
        padding: 5px;
    }
    .index-news-info-date{
        font-size: 12px;
        line-height: 26px;
    }
    .index-news-info-text{
        font-size: 16px;
        line-height: 30px;
    }
    .index-news-more-box {
        margin-top: 20px;
    }
    .index-news-more{
        width: 160px;
        line-height: 50px;
        padding: 0px 20px;
        font-size: 16px;
    }
    .index-news-more::after{
        font-size: 16px;
        line-height: 50px;
        right: 20px;
    }
}




@media only screen and (min-width: 1001px){
    .index-news-bg-box,
    .index-news-title-box p,
    .index-news-title-box p>span,
    .index-news-info,
    .index-news-more{
        opacity: 0;
    }

    .index-news-box.anima .index-news-bg-box{
        animation: fadeInLeft 1s ease 0s 1  both;
    }
    .index-news-box.anima .index-news-title-box p{
        animation: fadeInUp 1s ease 0.5s 1  both;
    }
    .index-news-box.anima .index-news-title-box p>span{
        animation: fade 1s ease 1s 1  both;
    }
    .index-news-box.anima .index-news-info{
        animation: fadeInLeft 1s ease .8s 1  both;
    }
    .index-news-box.anima .index-news-more{
        animation: fadeInLeft 1s ease 1.3s 1  both;
    }

    .index-news-more:hover{
        background-color: #371268;
        color: #fff;
    }
}