﻿.news-box{
    width: 1920px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    font-size: 0;
    min-height: calc(100vh - 100px);
    overflow: hidden;
}
.news-all-box{
    width: 1200px;
    max-width: 100%;
    display: block;
    margin: 0 auto;;
    position: relative;
    box-sizing: border-box;
    padding: 80px 0;
}
.news-title-box{
    box-sizing: border-box;
    /* padding: 0 58px; */
}
.news-title-box h2{
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #555;
    line-height: 40px;
    transform: skewX(-10deg);
}
.news-info-box{
    box-sizing: border-box;
    padding: 50px 0;
    position: relative;
    margin-top: 15px;
}
.news-info{
    box-sizing: border-box;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.news-info-top{
    box-sizing: border-box;
    padding: 3px 10px;
    border: 1px solid #f3cd05;
    border-radius: 5px;
    position: relative;
    transition: all .3s linear;
}
.news-info-country{
    display: block;
}
.news-info-country span{
    width: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.news-info-country p{
    width: calc(100% - 25px);
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
}
.news-info-data{
    font-size: 16px;
    line-height: 50px;
    letter-spacing: 0.06em;
    font-family: 'roboto';
    font-weight: 300;
    display: inline-block;
    vertical-align: middle;
    transition: all .3s linear;
}
.news-info-dot{
    width: 5px;
    height: 5px;
    display: inline-block;
    vertical-align: middle;
    background-color: #eee;
    border-radius: 50%;
    margin: 0 20px;
}
.news-info-text{
    width: calc(100% - 9px);
    font-size: 18px;
    font-weight: bold;
    color: #555;
    letter-spacing: 0.06em;
    display: inline-block;
    vertical-align: middle;
    transition: all .3s linear;
}
.news-info-arrow{
    font-size: 16px;
    color: #555;
    letter-spacing: 0.06em;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: calc(50% - 12px);
    right: 5px;
    transition: all .3s linear;
}
.news-info-top{
    cursor: pointer;
}
.news-info-bottom{
    display: none;
    background-color: #fff;
}
.news-info-bottom-edit{
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.06em;
    box-sizing: border-box;
    padding: 40px 35px;
    color: #555;
}
.news-info-line-box{
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 33px;
}
.news-info-line{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    background-color: #eee;
}
.news-info-line:before{
    content: '';
    width: 5px;
    height: 5px;
    display: inline-block;
    vertical-align: middle;
    background-color: #f3cd05;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: -2px;
}
.news-info-line:after{
    content: '';
    width: 5px;
    height: 5px;
    display: inline-block;
    vertical-align: middle;
    background-color: #eee;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: -2px;
}
.news-info.active,
.news-info:hover{
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.news-info.active .news-info-top,
.news-info:hover .news-info-top{
    background-color: #f3cd05;
}
.news-info.active .news-info-dot,
.news-info:hover .news-info-dot{
    background-color: #555;
}
.news-info.active .news-info-text,
.news-info:hover .news-info-text{
    color: #555;
}
.news-info.active .news-info-arrow,
.news-info:hover .news-info-arrow{
    color: #555;
}





@media only screen and (max-width: 1200px){
    .news-all-box{
        width: 1000px;
    }
}
@media only screen and (max-width: 1000px){
    .news-all-box{
        width: 95%;
    }
}
@media only screen and (max-width: 750px){
    .news-all-box{
        padding: 60px 0;
    }
    .news-title-box{
        padding: 0 68px;
    }
    .news-title-box h2{
        font-size: 26px;
        line-height: 36px;
    }
}
@media only screen and (max-width: 550px){
    .news-all-box{
        padding: 20px 0;
    }
    .news-title-box{
        padding: 0 68px;
    }
    .news-title-box h2{
        font-size: 20px;
        line-height: inherit;
    }
    .news-info-box{
        padding: 20px 0;
    }
    .news-info-data{
        font-size: 14px;
        line-height: 40px;
    }
    .news-info-text{
        font-size: 14px;
        width: calc(100% - 34px);
    }
    .news-info-arrow{
        font-size: 14px;
    }
    .news-info-bottom-edit{
        font-size: 14px;
        padding: 20px 10px;
    }
    .news-info-line-box{
        left: 23px;
    }
    .news-info{
        margin-bottom: 10px;
    }
    .news-info-dot{
        margin: 0 10px;
    
    }
}



@media only screen and (min-width: 1000px){
    .news-title-box h2,
    .news-info,
    .news-info-line-box,
    .news-info-line:before{
        opacity: 0;
    }
    .news-title-box.anima h2{
        animation: fadeInDown 1s ease 0s 1 both;
    }
    .news-info.anima{
        animation: fadeInUp 1s ease 0s 1 both;
    }
    .news-info-line-box.anima{
        opacity: 1;
        transform-origin: 50% 0%;
        animation: line2 1s ease 0s 1 both;
    }
    .news-info-line-box.anima .news-info-line:before{
        animation: fade_top 1s ease .4s 1 both;
    }
}