/* 路由导航 */
a{
    color:#000;
}
.page-route {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 50px;
}

.page-route img {
    width: 18px;
    height: 16px;
}

.page-route a {
    font-size: 14px;
    font-weight: 400;
    color: #3E3E3E;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
}

.page-route a:hover {
    color: #0176DF;
    cursor: pointer
}

/* 主体 */
.company-body {
    display: flex;

    width: 70%;
margin: 50px auto;
overflow: hidden;
}

/* 左边导航栏 */
.navigation-bar {
    align-items: end;
    display: flex;
    flex-direction: column;
    margin-right: 30px;
    margin-bottom: 50px;
}

/* 第一栏 */
.navigation-bar .enter-company {
    display: flex;
    flex-direction: column;
    width: 220px;
    margin-bottom: 10px;
}

.navigation-bar .enter-company .company-title {
    background-color: #53B448;
    color: #fff;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    padding: 10px;
    font-size: 24px;
}

.navigation-bar .enter-company .company-menu div {
    background-color: #F5F5F5;
    padding: 10px 50px;
}

.navigation-bar .enter-company .company-menu div:hover {
    background-color: #DAF5D7;
    border-left: 2px solid #53B448;
}


.navigation-bar .enter-company .company-menu .menu-active {
    background-color: #DAF5D7;
    border-left: 2px solid #53B448;

}

.navigation-bar .enter-company .company-menu .menu-active a {
    background-color: #DAF5D7;
    color: #53B448;
}

.navigation-bar .enter-company .company-menu div a {
    text-decoration: none;
    color: #333333;

}


/* 除第一栏 */
.navigation-bar .menu-list {
    display: flex;
    flex-direction: column;
    width: 220px;
    margin-bottom: 10px;
}

.navigation-bar .menu-list .title {
    background-color: #53B448;
    color: #fff;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    padding: 10px;
    font-size: 24px;
}

.navigation-bar .menu-list .menu{
    overflow: hidden;
}

.navigation-bar .menu-list .menu div {
    background-color: #F5F5F5;
    padding: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow:ellipsis;
}

.navigation-bar .menu-list .menu .menu-active {
    background-color: #DAF5D7;
    border-left: 2px solid #53B448;

}

.navigation-bar .menu-list .menu div a {
    text-decoration: none;
    color: #333333;
}

/* 联系我们 */
.navigation-bar .concat-us{
    width: 220px;
    height: 130px;
    background: #53B448;
    border-radius: 5px;
    color: #fff;    
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding: 0 10px; */
    /* align-items: center; */
}
.navigation-bar .concat-us div{
    width: 90%;
    margin: 10px auto;
}
.navigation-bar .concat-us div:nth-child(1){
    font-size: 24px;
}

.navigation-bar .concat-us div:nth-child(2){
    font-size: 26px;
    font-weight: bold;
}

/* 主体内容 */
.body-main {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}
.news-list{
    width: 100%;
}

.body-main .news-list .list-item{
    background-color: #F5F7FA;
    display: flex;
    margin-bottom: 20px;
    cursor: pointer

}

.body-main .news-list .list-item a img{
    width: 420px;
    height: 279px;
    flex: 1;
    /* height: 210px; */
    /* border: 1px solid #333; */
    margin-right: 40px;
}

.body-main .news-list .list-item .item-detail{
    padding: 20px 0;
    flex: 2;
}

.body-main .news-list .list-item .item-detail .detail-top{
    display: flex;
    justify-content: space-between;
    width: 96%;
}

.body-main .news-list .list-item .item-detail .detail-top .top-time{
    color: #999999;
    text-align: center;
}

.body-main .news-list .list-item .item-detail .detail-top .right{
    width: 36px;
    height: 36px;
    background-image: url('../images/right-none.png');
}

/* .body-main .news-list .list-item .item-detail .detail-top .right:hover{
    background-image: url('../../img/right.png');
} */

.body-main .news-list .list-item .item-detail .detail-top .top-time div:nth-child(1){
    font-size: 28px;
    font-weight: bolder;
    line-height: 1;
}

.body-main .news-list .list-item .item-detail .detail-top .top-time div:nth-child(2){
    font-size: 14px;
}

.body-main .news-list .list-item .item-detail .detail-center{
    color: #333333;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 50px;

}

.body-main .news-list .list-item .item-detail .detail-center a{
    color: #333333;
    font-size: 24px;
    margin-top: 10px;
    text-decoration: none;
}

.body-main .news-list .list-item .item-detail:hover .detail-center a{
    color: #53B448;

}
.body-main .news-list .list-item .item-detail:hover .detail-top .right{
    background-image: url('../images/right.png');
}

/* .body-main .news-list .list-item .item-detail .detail-center a:hover{
    color: #53B448;
} */

.body-main .news-list .list-item .item-detail .detail-bottom{
    width: 96%;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    color: #666666;
    -webkit-box-orient: vertical;
    line-height: 2rem;
}

.pages{
    display: flex;
}

.pages a{
    width: 35px;
    height: 35px;
    margin-right: 10px;
    background-color: #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.pages .page-active{
    background-color: #53B448;
    color: #fff;
}
