/* 信息公开中间主体区域 */
.infoOpen-main {
    background: #ffffff;
    padding: 80px 0 100px;
}

.info-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* 左侧菜单 */
.info-left {
    width: 300px;
}

.left-title {
    width: 300px;
    height: 73px;
    background: #1E72E1;
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    color: #FFFFFF;
    line-height: 73px;
}

.left-menu {
    border: 1px solid #d8d8d8;
    border-top: none;
}

.left-menu li a{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    font-size: 19px;
    color: #1A1A1A;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.left-menu li:last-child a{
    border-bottom: none;
}

.left-menu li.active a {
    color: #E4332D;
}

.arrow {
    display: block;
    width: 24px;
    height: 24px;
}

/* 右侧详情 */
.info-right {
    padding: 40px;
    width: 960px;
    border: 1px solid #D8D8D8;
    box-sizing: border-box;
}

.rightDetail{
    border: 0;
    padding: 0;
}

.info-right img {
    max-width: 100%;
}


.info-right .title{
    margin-bottom: 50px;
    font-weight: 400;
    font-size: 30px;
    color: #E4332D;
    line-height: 60px;
    text-align: center;
}

.artical{
    font-weight: 400;
    font-size: 15px;
    color: #1A1A1A;
    line-height: 30px;
}

/* 右侧技术人员列表 */
.staff-box-wrap {
    border: none;
    padding: 0;
}

.staff-row {
    display: flex;
    flex-wrap: wrap;
}

.staff-row:last-child {
    margin-bottom: 0;
}

.staff-item {
    margin-bottom: 60px;
    margin-right: 60px;
    width: 195px;
    height: 405px;
    border: 1px solid #D8D8D8;
    box-sizing: border-box;
}

.staff-item:nth-child(4n) {
    margin-right: 0;
}

/* 人员头像 */
.staff-img {
    width: 100%;
    height: 262px;
}

.staff-img img {
    display: block;
    width: 100%;
    height: 100%;
}

/* 姓名 */
.staff-name {
    text-align: center;
    font-size: 16px;
    margin: 20px;
    font-weight: 400;
    font-size: 20px;
    color: #1A1A1A;
    line-height: 29px;
}

/* 资质标签 */
.staff-tags p {
    font-weight: 400;
    font-size: 15px;
    color: #1A1A1A;
    line-height: 22px;
}

.linebox {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 0 20px;
}

linebox:last-child {
    margin-bottom: 0;
}

.linebox .point {
    margin-right: 7px;
    width: 7px;
    height: 8px;
    background: #E4332D;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.linebox .txt {
    font-size: 15px;
    color: #1A1A1A;
    line-height: 22px;
}