.join-map-banner {
    position: relative; /* 为绝对定位子元素建立参照 */
}
.job-info .location{
width:32%;
}
.jobs-section{
padding-bottom:70px;
}
.pub-banner-new-button-box{
	background: #cdb639;
    display: flex;
    height: clamp(90px, 6.77vw, 132px);;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
    justify-content: center;
	position: relative;
}
.pub-banner-new-button-text{
	position: absolute;
    height: clamp(90px, 6.77vw, 132px);;
    line-height: clamp(90px, 6.77vw, 132px);;
    top: clamp(-132px, -6.77vw, -90px);
    font-size: clamp(16px, 1.875vw, 36px);
    color: #fff;
    text-shadow: 0px 1px 1px rgba(11, 44, 11, 0.67);
}
.pub-banner-new-button{
	background: #9b751b;
    min-width: 18.23vw;
    text-align: center;
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    font-size:  clamp(16px, 1.5625vw, 32px);
	cursor: pointer;
	padding:0.5vw;
}

.join-map-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}
.title {
    font-size: 104px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 50px;
}
.subtitle {
    font-size: 48px;
    font-weight: bold;
}

.jobs-section{
    background: #F4F9F8;
}
.jobs-tabs {
    gap: 10px;
}
.tab-btn {
    padding: 12px 40px;
    border: none;
    background: #F4F9F8;
    color: #103029;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 29px;
	line-height:35px;
    position: relative; /* 为伪元素定位做准备 */
    padding-bottom: 34px; /* 为下划线预留空间 */
    padding-top: 34px;
}
/* 下划线动画效果 */
.tab-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #195732;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.tab-btn.active {
    color: #195732;
	background-image:none;
    font-weight: 500;
	font-size:33px;
	
}
.tab-btn.active::after{
    width: calc(100% - 20px);
    background: #195732; /* 深绿色 */
}
.tab-btn:hover::after {
    width: calc(100% - 20px);
    background: #195732; /* 深绿色 */
}
.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.tab-pane.active {
    display: block;
    opacity: 1;
}
.jobs-rectangle-gray{
    width: 100%;
    height: 1px;
    background: #969696;
}

.tab-content{
    min-height: 500px;
}
.job-info span{
    width: 25%;
}
.jobs-filter-form {
    padding: 44px 0;
}
.filter-flex-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; /* 抵消子元素边距 */
}
.filter-group {
    flex: 1;
    min-width: 200px; /* 最小宽度防止挤压 */
    margin: 0 10px 20px;
    box-sizing: border-box;
}
/* 搜索按钮特殊处理 */
.filter-group:last-child {
    flex: none;
    min-width: auto;
    align-self: flex-end;
    display: flex;
    justify-content: center;
    width: 134px;
}
.jobs-section label {
    font-size: 18px;
    color: #636363;
    font-weight: 400;
    margin-left: 24px;
    margin-bottom: 10px;
}
.form-select, .form-input {
    padding: 10px 15px;
    border-radius: 8px;
    width: 100%;
    background: #F4F9F8;
    font-size: 14px;
    border: 1px solid #3C3C3C;
    margin-top: 10px;
}
.form-select {
    appearance: none;
    background-image: url("../images/arrow-right.png"); /* 修改为您的图片路径 */
    background-repeat: no-repeat;
    background-position: right 15px center; /* 调整位置 */
    background-size: 8px auto; /* 根据实际图片尺寸调整 */
    padding-right: 40px; /* 增加右侧内边距 */
}
.jobs-section .search-btn {
    background: #009850;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s;
    width: 100%;
    justify-content: center;
}
.jobs-section .search-btn:hover {
    background: #218838;
}

/* 岗位列表样式 */
.jobs-list {
    border-top: 1px solid #969696;
}
.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #969696;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}
.job-item:hover {
    background: #f8f9fa;
}
.job-info {
    flex: 1;
    display: flex;
    gap:75px;
    align-items: center;
    min-width: 0; /* 允许内容收缩 */
}
.position {
    font-weight: 700;
    color: #2E2E2E;
    min-width: 160px; /* 固定职位名称宽度 */
    font-size: 21px;
}
.location,
.department,
.category {
    color: #666;
    font-size: 21px;
}
.separator {
    color: #999;
    opacity: 0.6;
}
.arrow-icon {
    width: 35px;
    height: 20px;
    background: url('../images/arrow.png') no-repeat center;
    background-size: contain; /* 自适应容器 */
    transition: all 0.3s;
}
.job-item:hover .arrow-icon {
    transform: translateX(3px);
}
@media screen and (max-width:1024px){
.tab-btn{
font-size:14px !important;
padding:7px 3px !important;
}
.jobs-section label{
font-size:14px !important;
margin-left:0 !important;
}
.job-item{
padding:15px !important;

}
.jobs-list{
padding-bottom:30px !important;
}
.job-info span{
width:100% !important;
}
.job-info{
flex-direction:column;
gap:7px !important;
}
.job-info span{
font-size:16px !important;
}
.jobs-tabs{
justify-content: space-around;
}
.jobs-section .search-btn{
font-size:14px !important;
}
.filter-flex-container{
margin:0 !important;
justify-content: space-between;
}
.jobs-section{
margin-top:20px;
padding-top:30px ;
}
.filter-group{
padding-top:0 !important;
margin:0  0 15px 0!important;
}
.filter-group{
width:48% !important;
flex:none !important;
min-width:initial !important;

}
.jobs-filter-form{
padding:30px 0 15px 0 !important;
}
.tab-content{
min-height:initial !important;
}

}