.leader_content {
    /* display: flex;
    justify-content: end; */
}

.left_nav {
    /* background-color: #fff; */
    z-index: 999;
    width: 15%;
    /*padding: 20px; */
    box-sizing: border-box;
    position: fixed;
    left: 10%;
    top: 160px;
    background-color: transparent;
}


.right_leader_content {
    width: 80%;
    border-left: 1px solid #d9d9d9;
    padding-left: 40px;
    box-sizing: border-box;
    float: right;
    /*background-color: #fff;*/
}


.first_level a {
    display: flex;
    align-items: center;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #999;
    padding: 8px 16px;
    box-sizing: border-box;
}

.first_level>li>a {
    width: 100%;
}

.first_level li a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 2px;
    background: #999;
    margin-right: 10px;
    transition: width .4s;
}

.first_level li a:hover {
    background: #FCE8FF;
    color: #6A2686
}

.first_level li a:hover::before {
    width: 16px;
    background-color: #6A2686;
}

.selected {
    font-weight: bold !important;
    background: #FCE8FF !important;
    color: #6A2686 !important;
    border-radius: 10px;
}

.selected::before {
    width: 16px !important;
    background-color: #6A2686 !important;
}

.first_level .second_level {
    margin-left: 26px;
}

.first_level .second_level .third_level {
    margin-left: 26px;
}

.leader_list .grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.leader_list .grid .listitem {
    width: 50%;
    height: auto;
    box-sizing: border-box;
    position: relative;
    background: #fff;
    border-left: 1px solid #d9d9d9;
    border-top: 1px solid #d9d9d9;
}

.leader_list .grid .listitem:nth-of-type(even) {
    border-right: 1px solid #d9d9d9;
}

.leader_list .listitem:nth-child(2n+1):nth-last-child(-n+2),
.leader_list .listitem:nth-child(2n+1):nth-last-child(-n+2)~li {
    border-bottom: 1px solid #d9d9d9;
}

.leader_list .grid .listitem a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: auto;
}

.listitem .item_content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

.listitem .item_content .preview_img {
    /* width: 270px; */
    /* height: 338px; */
    width: 40%;
    height: 338px;
    object-fit: cover;
}

.listitem .item_content .prev_content {
    /* width: calc(100% - 330px); */
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    box-sizing: border-box;
}

.listitem .item_content .outer_border {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    z-index: 1;
    transition: all .4s;
}


.listitem .item_content h3 {
    font-size: 16px;
    font-weight: bold;
    color: #666666;
}

.listitem .item_content h3 .name {
    font-size: 20px;
    font-weight: bold;
    /*color: #1A1A1A;*/
    color:#6A2686;
}

.listitem .item_content p {
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
    margin-top: 20px;
    padding-left: 34px;
    box-sizing: border-box;
    background-size: 24px 24px;
}


.listitem .item_content .level {
    background: url(../images/icon_title.png) no-repeat;
    background-size: 24px 24px;
}

.listitem .item_content .address {
    background: url(../images/icon_address.png) no-repeat;
    background-size: 24px 24px;
}

.listitem .item_content .email {
    background: url(../images/icon_email.png) no-repeat;
    background-size: 24px 24px;
    color: #6A2686;
}


/* .listitem:hover .item_content .outer_border {
    border: 10px solid #6A2686;
}

.listitem:hover .item_content h3 {
    color: #6A2686;
} */