/* 路由导航 */
.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;
}

.news-content{
    min-height: 400px;
}
/* 左边导航栏 */
.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;
}

.body-main .main-title {
    font-size: 24px;
    color: #333333;
    font-weight: bolder;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.body-main .main-subtitle {
    font-size: 14px;
    color: #666666;
    /* font-weight: bolder; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.body-main .news-content div {
    /* width: 940px; */
    /*height: 475px;  
    background-color: #eee;*/
}

.body-main .news-content p {
    line-height: 3rem;
    text-indent: 2rem;
}

.body-main .passage{
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #F5F7FA;
    padding: 20px 0;
    font-size: 12px;
}

.body-main .passage a{
    font-size: 14px;
    text-decoration: none;
    color: #333333;
}