/* 导航 */
.profile_nav {
    padding: 20px;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
}

.profile_nav a {
    margin-right: 40px;
    font-size: 14px;
    color: #333;
    font-weight: 700;
    position: relative;
}

/* 当前导航 */
.profile_nav a.active {
    color: var(--main-color);
}

.profile_nav a.active .line {
    position: absolute;
    bottom: -4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: 60px;
    height: 2px;
    background: var(--main-color);
    border-radius: 2px;
}


/* support栏目侧栏导航 */

/* 左侧栏导航区域 */
.affix-placeholder {
    height: 248px;
}

/* 左侧栏实际区域宽度 */
#p_companyprofile_sideBar {
    width: 210px;
}

/* 侧栏每项 */
#p_companyprofile_sideBar a div {
    width: 54px;
    height: 54px;
    box-shadow: 0 0 9px rgb(0 0 0 / 10%);
    position: absolute;
    left: 0;
    z-index: 1;
}

#p_companyprofile_sideBar a div img {
    width: 26px;
}

/* 侧栏每项文字 */
#p_companyprofile_sideBar a p {
    height: 50px;
    line-height: 50px;
    box-shadow: 0 0 9px rgb(0 0 0 / 10%);
    padding-left: 37px;
    margin-left: 27px;
}

/* 当前选中项目 */
#p_companyprofile_sideBar a.active p {
    color: var(--main-color);
}

/* support栏目侧栏导航结束 */


/* 导航 浮动 */
.affix-placeholder .affix {
    position: fixed;
    top: 40px;
    left: 109.6px;
    width: 210px;
}

@media screen and (max-width: 1024px) { 
    .profile_nav {
        display: none !important;
    }


    .affix-placeholder {
        display: none;
    }
}