* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
}

#teachers {
    width: 100%;
    height: 100vh;
}

#teachers .banner_box {
    width: 100%;
    /* height: 360px; */
    height: 400px;
    background: #eee;
}


/* 导航 */

#nav_bar_box {
    width: 100%;
    height: 100px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

#nav_bar_box ul {
    width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
}

#nav_bar_box ul li:nth-child(1) {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #484848;
}

#nav_bar_box ul li:nth-child(2) {
    width: 2px;
    height: 20px;
    background: #E5E3E3;
    border-radius: 1px;
    margin: 0 60px 0 30px;
}

#nav_bar_box ul li:nth-child(3) {
    display: flex;
}

#nav_bar_box ul li:nth-child(3) div {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 500;
    /* color: #202B3A; */
    margin-right: 65px;
    text-align: center;
    padding: 7px 20px;
    cursor: pointer;
}

.nav_name_active {
    color: #3E7EFF;
    color: red1!important;
    padding: 7px 20px;
    /* background: #3e7eff26; */
    background: #e9f2ff;
    border-radius: 20px;
}


/* 版心 */

#teachers #content {
    width: 1200px;
    /* height: 1000px; */
    margin: auto;
    /* overflow: hidden; */
}


/* 资讯中心内容 */

.information_box {
    /* width: 100%; */
    width: 1100px;
    margin: 30px 0 30px;
    /* overflow: hidden; */
}

.information_box .information_item {
    height: 209px;
    position: relative;
    cursor: pointer;
}

.information_box .information_item .information {
    height: 209px;
    display: flex;
    align-items: center;
}

.information_item .information img {
    width: 224px;
    height: 149px;
}

.information_item .information .right {
    height: 149px;
    display: flex;
    flex-flow: column;
    /* justify-content: space-between; */
    margin-left: 31px;
}

.information_item .information .right #right_title {
    font-size: 18px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #363636;
}


/* .information_item .information .right #right_title {
    font-size: 18px;
    font-family: PingFang SC;
    font-weight: 600;
    color: #363636;
} */

.information_item .information .right .right_desc {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
    margin-top: 19px;
    /* margin: 19px 0 58px; */
}


/* .right ul {
    display: flex;
}

.right ul li:nth-child(1) {
    width: 78px;
    display: flex;
    align-items: center;
}

.right ul li:nth-child(1) img {
    width: 16px;
    height: 11px;
}

.right ul li:nth-child(1) span {
    font-size: 12px;
    font-family: MicrosoftYaHei;
    font-weight: 400;
    color: #999999;
} */

.right ul li {
    position: absolute;
    bottom: 29px;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #989898;
}

.information_box .information_item #line {
    width: 1100px;
    height: 1px;
    background: #000000;
    opacity: 0.1;
}

.information_box .information_item:last-child #line {
    display: none;
}