/* 容器布局 */
.container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    gap: 24px;
    padding: 0;
}

/* 中间内容区样式 */
.middle-content {
    width: 320px;
    flex-shrink: 0;
    padding: 0;
    border-radius: 8px;
    border: none;
    position: relative;
}

.middle-content-main {
    overflow-y: auto;
    height: calc(100vh - 80px);
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-item {
    padding: 24px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background-color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #fff;
}

.job-item.active {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: #00b38a;
}

.job-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: #00b38a;
}

.job-header {
    margin-bottom: 12px;
}

.job-header-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.job-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-right: 12px;
    line-height: 1.4;
    flex: 1;
}

.job-salary {
    color: #ff4d4f;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    line-height: 1.4;
}

.job-tags {
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #f5f7fa;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    border: none;
}

.company-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.company-basic {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-logo {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid #eee;
}

.company-name {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.company-detail {
    display: flex;
    gap: 12px;
    color: #999;
    font-size: 13px;
}

/* 右侧内容区样式 */
.right-content {
    flex: 1;
}

/* 职位详情卡片样式 */
.job-detail-card {
    padding: 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 80px);
}

.job-detail-card .job-title-row {
    display: flex;
    align-items: center;
    flex: 1;
    width: 0;
}

.job-detail-card .job-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
    /*display: flex;*/
    /*align-items: center;*/
    gap: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.job-detail-card .job-salary {
    font-size: 20px;
    color: #ff4d4f;
    font-weight: 500;
    margin-left: 15px;
}

.job-detail-card .job-title-actions {
    display: flex;
    gap: 12px;
    margin-left: auto;
    width: 128px;
    padding-left: 20px;
    white-space: nowrap;
}

.job-detail-card .job-meta {
    display: flex;
    gap: 16px;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.job-detail-card .job-meta-item {
    display: flex;
    align-items: center;
}

.job-detail-card .job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
}

.job-requirements {
    font-size: 14px;
    color: #333;
    line-height: 2.2;
    margin-bottom: 8px;
}

.job-detail-card .job-requirements h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.job-detail-card .job-requirements p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
}

.job-detail-card .job-location {
    display: flex;
    gap: 16px;
    color: #666;
    font-size: 14px;
    margin-bottom: 24px;
}

.action-buttons {
    display: flex;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
}

.btn-apply {
    padding: 12px 32px;
    background: #00b38a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.btn-apply:hover {
    background: #009b76;
}

.btn-favorite {
    padding: 12px 32px;
    background: #fff;
    color: #00b38a;
    border: 1px solid #00b38a;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-favorite:hover {
    background: #f0f9f6;
}

.btn-more {
    display: block;
    width: 100%;
    padding: 12px 0;
    background: #f7f9fa;
    color: #666;
    border: 1px solid #eee;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 16px;
    text-decoration: none;
}

.btn-more:hover {
    background: #f0f2f5;
    color: #00b38a;
    border-color: #00b38a;
    font-weight: 500;
}

/* 地区筛选样式 */
.location-filter {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    display: flex;
    padding: 16px 20px;
}

.mod-header-inner {
    max-width: 1200px;
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.location-filter .mod-header-inner .country-select-icon {
    position: absolute;
    left: 12px;
    top: 8px;
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url("../img/er9qh8p0071706619183893.png.webp") no-repeat;
    background-position: -14px 0;
    background-size: 28px 14px;
}

.location-filter .mod-header-inner .country-select1.active .country-select-icon {
    background-position: 0 0;
}

.location-filter .mod-header-inner .country-select1.active .country-select-placeholder {
    color: #00a6a7;
}

.location-filter .mod-header-inner .country-select-placeholder {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    max-width: 140px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.location-filter .mod-header-inner .country-select1.active .country-select-arrow {
    border-top: 4px solid #00bebd;
}

.location-filter .mod-header-inner .country-select-arrow {
    position: absolute;
    top: 13px;
    right: 12px;
    border-top: 4px solid #ccc;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    width: 0;
    height: 0;
    vertical-align: top;
    transition: all .2s linear;
}

.location-filter .mod-header-inner .country-select1:hover {
    background: rgba(0, 190, 189, .1);
    border: 1px solid #00bebd;
}
.location-filter .mod-header-inner .country-select1.active {
    background: rgba(0, 190, 189, .1);
    border: 1px solid #00bebd;
}
.filter-content {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.location {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
    background-color: #f8f9fa;
    text-decoration: none;
    border: 1px solid transparent;
}

.location:hover {
    color: #00b38a;
    background-color: #e8f7f3;
}

.location.active {
    background: rgba(0, 190, 189, .1);
    color: #00a6a7;
    border-color: #00bebd;
}

.dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 999;
    width: 60%;
    height: 65%;
    background-color: #ffffff;
    display: none;
}

.dialog::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.dialog-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #fff url("../img/jdacybbjxw1698303778621.png") 100% 0 / auto 96px no-repeat;
    z-index: 20;
    border-radius: 8px;
}

.dialog-inner .main {
    /*padding: 20px;*/
    height: calc(100% - 75px);
}

/*叉*/
.dialog-close {
    position: absolute;
    top: 0;
    right: 20px;
    width: 16px;
    height: 16px;
    z-index: 22;
}

.dialog-close:before {
    content: '×';
    width: 16px;
    height: 16px;
    cursor: pointer;
    font-size: 40px;
    line-height: 1;
    font-weight: 400;
}

.dialog-content {
    width: 100%;
    height: 100%;
}

.dialog-content2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    z-index: 20;
    overflow: hidden;
}

.dialog-content-btns {
    text-align: right;
}

.dialog-content-btns .btn {
    margin-left: 10px;
    padding: 5px 20px;
}

.dialog-content-btns .btn-confirm {
    border-radius: 4px;
    transition: all .2s linear;
    background: #00bebd;
    line-height: 20px;
    padding: 7px 20px;
    color: #fff;
    border: none;
    cursor: pointer;
    float: right;
}

.dialog-content-btns .btn-cancel {
    cursor: pointer;
    transition: all .2s linear;
    color: #00a6a7;
    line-height: 20px;
    padding: 6px 19px;
    border-radius: 4px;
    border: 1px solid #00bebd;
    background: #fff;
    margin-right: 10px;
    float: right;
}

.dialog-title-text {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    margin: 0;
}

.country-select-span {
    width: 20%;
    display: inline-block;
    margin: 5px 0;
}

.dialog-content .location {
    border-radius: 3px;
}


.job-pagination {
    border-radius: 4px;
    margin-top: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-pagination .last {
    margin-left: 5px;
}

.job-pagination li {
    display: inline;
}

.job-pagination li a {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #00b38a;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.job-pagination li.active a {
    z-index: 2;
    color: #fff;
    background-color: #00b38a;
    border-color: #00b38a;
}


/* 对话框头部 */
.dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.dialog-title-text {
    font-size: 16px;
    /*font-weight: bold;*/
}

.dialog-close {
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

/* 对话框主体 */
.dialog-body {
    text-align: center;
    display: flex;
    height: 100%;
}

.dialog-body .left {
    width: 325px;
    background: linear-gradient(214deg, #dffbff, #faf6f3);
    padding: 20px;
    height: 100%;
}

.dialog-body .left .item {
    color: #666;
    display: block;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-left: 53px;
    margin-top: 50px;
    text-align: left;
}

.dialog-body .left .item:hover {
    color: #00a6a7;
    cursor: pointer;
}

.dialog-body .left .item.active {
    color: #00a6a7;
}

.qr-code-container {
    margin-bottom: 20px;
    flex: 1;
    padding: 20px;
    height: 100%;
}

.qr-code-container h4 {
    color: #222;
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    padding-top: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.dialog-body .left .item .span {
    margin-top: 10px;
    font-size: 16px;
}

.qr-code-container img {
    width: 200px;
    display: inline-block;
}

.country-main {
    display: flex;
    /*margin-top: 20px;*/
    /*border-top: 1px solid #eee;*/
    height: calc(100% - 75px);
}

.country-main .left {
    width: 120px;
    border-right: 5px solid #eee;
    padding: 4px;
    overflow-y: auto;
}

.country-main .left .item {
    display: block;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 4px;
    color: #333;
    line-height: 20px;
    /*transition: all .2s linear;*/
    margin-top: 4px;
    font-size: 14px;
}
.country-main .left .item a{
    padding: 8px 16px;
    display: block;
}
.country-main .left .item.actived {
    color: #00a6a7;
    background: rgba(0, 190, 189, .1);
}
.country-main .right {
    flex: 1;
    width: auto;
    padding: 10px;
    overflow-y: auto;
}

.country-main .right .title {
    margin: 10px 0;
}

.country-main .right-items {
    display: flex;
    flex-wrap: wrap;
}

.country-main .right-items .country-select {
    margin-right: 5px;
}

.container-main {
    display: flex;
    gap: 24px;
}

.mod-job-cont {
    display: none;
}

.mod-job-cont {
    text-align: center;
    min-height: 340px;
    position: relative;
    background: #fff;
    padding: 100px 0;
    border-radius: 12px;
    width: 100%;
}

.job-empty-wrapper .job-empty-icon {
    display: block;
    width: 200px;
    height: 122px;
    margin: 0 auto;
}

.job-empty-box p {
    text-align: center;
    font-size: 16px;
    color: #999;
    font-weight: 200;
    line-height: 22px;
    margin-top: 16px;
}

.location-filter .country-select1 {
    position: relative;
    padding-left: 34px;
    margin: 0 12px 0 0;
    display: inline-block;
    width: 200px;
    height: 32px;
    background: #f8f8f8;
    border-radius: 4px;
    line-height: 31px;
    border: 1px solid transparent;
    cursor: pointer;
}

.selected-area {
    flex-shrink: 0;
    padding: 20px 30px;
    background: #fff;
    box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, .06);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.selected-area .selected-area-label {
    color: #666;
    float: left;
    margin-top: 4px;
    line-height: 20px;
    margin-right: 16px;
}

.selected-area .selected-list {
    overflow: auto;
    margin: -4px 0;
}

.selected-area .selected-list li {
    float: left;
    color: #00a6a7;
    line-height: 20px;
    padding: 4px 8px;
    font-size: 14px;
    background: rgba(0, 190, 189, .1);
    margin: 4px;
    border-radius: 4px;
}

.selected-area .selected-list li i {
    color: #00a6a7;
    cursor: pointer;
    border-radius: 100%;
    padding: 0;
    font-size: 16px;
    margin-left: 4px;
    transition: all .2s linear;
    height: 14px;
    display: inline-block;
    width: 16px;
    line-height: 15px;
    text-align: center;
}

.selected-area .selected-list li i:hover {
    background: #00bebd;
    color: #fff;
}
.dialog-title{
    height: 70px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #ededed;
}
.country-select-search {
    margin-left: 60px;
    width: 260px;
    position: relative;
}
.suggest input {
    display: inline-block;
    width: 100%;
    height: 34px;
    line-height: 1.5;
    padding: 5px 24px 5px 8px;
    font-size: 14px;
    border: 1px solid #e3e7ed;
    border-radius: 4px;
    color: #414a60;
    background-color: #fff;
    background-image: none;
    position: relative;
    cursor: text;
    transition: border .2s ease-in-out, background-color .2s ease-in-out, box-shadow .2s ease-in-out;
}
.suggest .search-icon {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 8px;
    font-size: 16px;
    margin-top: -8px;
    color: #c0c5cc;
}
.suggest-list {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    min-width: 100px;
    max-height: 240px;
    overflow-y: auto;
    background-color: #fff;
    list-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 4px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .1);
    z-index: 10;
    display: none;
}
.suggest-list li:hover {
    text-decoration: none;
    color: #00a6a7;
    background-color: #f2f5fa;
}

.suggest-list li {
    margin: 0;
    line-height: 1.5;
    padding: 10px 20px;
    clear: both;
    list-style: none;
    cursor: pointer;
    transition: background .1s ease-in-out;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.suggest input:hover {
    border-color: #00bebd;
}
