﻿


/* 公司简介导航 */

.news-nav{
    width: 100%;
    margin-bottom: 3%;
    border-bottom: 1px solid #e5e5e5;
}
.news-nav ul{
    max-width: 240px;
    height: 70px;
    margin: auto;
    display: flex;
    justify-content: space-around;
}
.news-nav ul li{
    float: left;
}
.news-nav ul li a{
    display: inline-block;
    height: 100%;
    text-decoration: none;
    color: #333;
    font-size: 17px;
    line-height: 70px;
}

.news-nav ul li:hover a{
    color: #027600;
}
.nav-active a{
    color: #027600 !important;
}


/* 内容 */
.item-container{
    max-width: 1400px;
    margin: auto;
}
    .item-box{
        display: inline-block;
        float: left;
        width: 31.33%;
        margin: 0 1%;
        margin-bottom: 3%;
    }
    .item-img{
        position: relative;
        width: 100%;
        padding-bottom: 68%;
overflow: hidden;
    }
    .item-img img{
        display: inline-block;
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        overflow: hidden;
        transition: 1s;
        -webkit-transition: 1s;
        -moz-transition: 1s;
        -ms-transition: 1s;
        -o-transition: 1s;
    }

    .item-time,.item-title,.item-text{
        padding: 0 10%;
    }
    .item-time{
        font-size: 14px;
        color: #666;
        margin-top: 5%;
        margin-bottom: 2.8%;
    }
    .item-title{
        /* color: #017600; */
        color: #333;
        font-size: 24px;
        margin-bottom: 4%;
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
    }
    .item-text{
        text-indent: 1em;
        line-height: 30px;
height:60px;
        color: #666;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        letter-spacing:1px;  
        margin-bottom: 5%;
    }
    .item-box:hover{
        box-shadow: 0px 0px 14px rgb(0, 0, 0, .06);
    }
    .item-box:hover .item-title{
        color: #017600; 
    }
    .item-box:hover .item-img>img{
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
}
.footer{
    margin-top: 4%;
}

@media(max-width:760px){
    .item-box{
        width: 48%;
    }
    .item-title{
        font-size: 18px;
    }
.item-box{
        box-shadow: 0px 0px 14px rgb(0, 0, 0, .06);
margin-bottom:5%;
    }
}
@media(max-width:440px){
    .item-box{
        width: 90%;
        margin-left: 5%;
margin-right: 5%;
    }
    .item-title{
        font-size: 16px;
    }
}