/* tab 栏 */
.tab-box {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
}
.tab-box .tab-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.tab-box .tab-item {
    width: 106px;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.tab-box .tab-item:hover,
.tab-box .tab-item.active {
    background: #ee733f;
    color: #fff;
}
.tab-list {
    display: none;
}
.tab-list.active {
    display: block;
}

.tab-list {
    display: none;
}
.tab-list.active {
    display: block;
}
/* 人才招聘 */
.recruit {
    padding: 30px var(--theme-pd) 58px;
    display: flex;
    justify-content: center;
}
.recruit .recruitment {
    width: 100%;
    padding: 0 calc(var(--theme-pd)* 1.25);
}
.recruitment .recruitment-item {
    overflow: hidden;
    height: 60px;
    border: 1px solid #e0e0e0;
    transition: height .5s;
}
.recruitment .recruitment-item:hover,
.recruitment .recruitment-item.active {
    border-color: #ee733f;
}
.recruitment .recruitment-item:hover .nav,
.recruitment .recruitment-item.active .nav {
    background: #ee733f;
    color: #fff;
}
.recruitment .recruitment-item .nav {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    cursor: pointer;
}
.recruitment .recruitment-item .nav .title,
.recruitment .recruitment-item .nav .time {
    white-space: nowrap;
}
.recruitment .recruitment-item .nav .time {
    margin-left: 220px;
    font-size: 14px;
}
.recruitment .recruitment-item .nav .iconfont {
    margin-left: auto;
    font-size: 20px;
    font-weight: 700;
}
.recruitment .recruitment-item .nav .hide {
    display: none;
}
.recruitment .recruitment-item.active .nav .show {
    display: none;
}
.recruitment .recruitment-item.active .nav .hide {
    display: block;
}
.recruitment .recruitment-item.active .content {
    /* display: block; */
}
.recruitment .recruitment-item .content {
    /* display: none; */
    padding: 20px 30px;
    cursor: auto;
}
.recruitment .recruitment-item .content .title {
    font-size: 22px;
    font-weight: 700;
}
.recruitment .recruitment-item .content .desc {
    margin: 20px 0 40px;
    font-size: 14px;
}
.recruitment .recruitment-item .content .request {
    margin-bottom: 56px;
}
.recruitment .recruitment-item .content .request,
.recruitment .recruitment-item .content .request .title {
    font-size: 14px;
}
.recruitment .recruitment-item .content .request p {
    /* text-indent: 2em; */
}

/* 在线应聘 */
.apply-online {
    width: 650px;
    margin: 0 auto;
}
.apply-online .title {
    font-size: 24px;
    text-align: center;
}
.apply-online .tips {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin: 16px 0 46px;
}
.apply-online .form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.apply-online .form label {
    display: flex;
    align-items: center;
}
.apply-online .form input,
.apply-online .form textarea,
.apply-online .form .gVerify {
    width: 100%;
    background: #f2f2f2;
    border: 1px solid #e0e0e0;
    padding: 15px;
    resize: none;
}
.apply-online .form input[type='file'] {
    width: 60%;
    position: relative;
    /* opacity: 0; */
    display: none;
    border: none;
}
.apply-online .form label[for='file'] {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border: 1px solid #ee733f;
    color: #ee733f;
    font-size: 14px;
    box-sizing: border-box;
    cursor: pointer;
}
.apply-online .form .file-name {
    margin-left: 30px;
}
.apply-online .form .upload-file{
    display: flex;
    align-items: center;
}
.apply-online .form .upload-file span {
    margin-left: 30px;
}
.apply-online .form input[data="gVerify"] {
    width: 30%;
}
.apply-online .form .gVerify {
    padding: 0;
    width: 60%;
    display: flex;
}
.apply-online .form .gVerify input {
    flex: 1;
    background: none;
    border: none;
}
.apply-online .form .gVerify .verification-code {
    width: 62%;
    height: 46px;
}
.apply-online .form .tips {
    font-size: 12px;
    margin: 40px 0 5px;
    text-align: left;
}
.apply-online .form .btn {
    background: #eb5922;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    cursor: pointer;
}

@media only screen and (max-width: 650px) {
    .recruitment .recruitment-item .nav .time {
        display: none;
    }
    .apply-online .form .gVerify {
        width: 100%;
    }
}