/* 加入我们 */

.joinBox {
    padding: 0.8rem 0.3rem;
}

.joinWrap {
    display: flex;
    justify-content: space-between;
}

.joinL {
    width: 21%;
}

/* 左侧导航栏样式 */
.sideNavBar {
    /* width: 2.8rem; */
    background-color: #ffffff;
    border: 0.01rem solid #F0F0F0;
    box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.05);
    height: 100%;
}

.nav-section {
    margin-bottom: 0.05rem;
}

.nav-title {
    background-color: #F7F7F7;
    padding: 0.2rem 0.2rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.nav-title .arrow {
    display: block;
    width: 0.2rem;
    height: 0.2rem;
    background: url(../images/rightJianT.png) no-repeat center center;
    background-size: 0.2rem 0.2rem;
    transition: transform 0.3s ease;
}

.nav-title.expanded .arrow {
    transform: rotate(90deg);
}

.nav-items {
    list-style: none;
    display: none;
}

.nav-items.active {
    display: block;
}

.nav-items li {
    padding: 0.15rem 0.3rem;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s;
}

.nav-items li:hover {
    background-color: #f0f0f0;
}

.nav-items li.active {
    background-color: #f0f0f0;
    border-left: 0.03rem solid #c91f37;
}


















.joinR {
    width: 76%;
    background: #fff;
    border: 0.01rem solid #F4F4F4;
    padding: 0.4rem;
}


/* 搜索 */
.search-container {
    margin-bottom: 0.3rem;
    display: flex;
    max-width: 5rem;
}

.search-input {
    flex: 1;
    padding: 0.2rem 0.2rem;
    border: 0.01rem solid #ddd;
    border-radius: 0.04rem 0 0 0.04rem;
}

.search-button {
    background-color: #e0e0e0;
    color: #333;
    border: none;
    padding: 0 0.25rem;
    border-radius: 0 0.04rem 0.04rem 0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-button:hover {
    background-color: #d0d0d0;
}



/*  */
.recruitment {
    padding-top: 0.3rem;
    padding-bottom: 0.2rem;
}



.conBox>li {
    width: 100%;
    background: #fff;
    padding: 0.1rem 0;
    cursor: pointer;
}

.conBox>li:last-child {
    margin-bottom: 0px;
}

.topBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.2rem;
    border-bottom: 0.01rem solid #ededed;
}

.topBox h2 {
    max-width: 92%;
    color: #333;
    width: 50%;
}

.topBox img {
    display: block;
    width: 0.13rem;
    height: 0.09rem;
    rotate: 180deg;
}

.midCont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 32%;
}

.midCont p {
    flex: 0 0 40%;
}

.btmBox {
    border-top: 1px solid #EFEFEF;
    padding: 0.3rem;
    display: none;
    background: #F4F4F4;
}

.btmBox li {
    margin-bottom: 0.4rem;
}

.btmBox li:last-child {
    margin-bottom: 0rem;
}

.btmBox h3 {
    color: #333;
    margin-bottom: 0.2rem;
}

.btmBox p {
    color: #666;
    line-height: 1.8;
}

.conBox>li:first-child .btmBox {
    display: block;
}

/* 分页 */
.pageBox {
    margin: 0px auto;
    text-align: center;
}

.pageBox ul {
    display: inline-block;
}

.pageBox li {
    background: #fff;
}



/* 适配 */
@media (max-width: 992px) {
    .joinWrap {
        flex-direction: column;
    }

    .joinL {
        width: 100%;
    }

    .joinR {
        width: 100%;
    }

    .joinCon {
        padding: 0rem;
        border: none;
        margin-top: 0.5rem;
    }

    .search-container {
        max-width: 100%;
    }

    .search-input {
        padding: 0.1rem 0.2rem;
        line-height: 0.5rem;
    }

    .midCont {
        display: none;
    }
}

@media (max-width: 767px) {}