/* 原版样式 theme-1 */
.theme-1.job-card {
    position: relative;
    box-sizing: border-box;
    padding: 10px 20px 17px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    cursor: pointer;
}
.theme-1.job-card:hover {
    background: #00000003;
}
.theme-1.job-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eeeef4;
}
.theme-1.job-card:first-of-type {
    border: none;
}
.theme-1.job-card:first-of-type::after {
    background: none;
}
.theme-1 .job-card-cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 253px;
    height: 50px;
    object-fit: cover;
}
.theme-1 .job-card-cover-hurry {
    width: 100%;
    height: 100%;
    background: linear-gradient(141deg, #fffcf4 11.66%, #fffdf9 72.79%);
}
.theme-1 .job-card-left {
    position: relative;
    z-index: 1;
    margin-right: 10px;
    flex: 1;
    overflow: hidden;
    max-width: 700px;
}
.theme-1 .job-card-left-title {
    position: relative;
    display: flex;
    align-items: baseline;
}
.theme-1 .job-card-left-title-icon {
    margin-right: 4px;
    width: 18px;
    height: 18px;
    object-fit: cover;
    position: relative;
    bottom: -2px;
}
.theme-1 .job-card-left-title-text {
    display: flex;
    margin-top: -3px;
    font-size: 16px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 600;
    color: #111111;
}
.theme-1 .job-card-left-des {
    display: flex;
    align-items: baseline;
    margin-top: 8px;
}
.theme-1 .job-card-left-des-money {
    font-size: 16px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 600;
    color: #ff4c00;
    line-height: 22px;
}
.theme-1 .job-card-left-des-symbol {
    font-size: 10px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 600;
    color: #ff4c00;
    line-height: 14px;
}
.theme-1 .job-card-left-des-text {
    margin-left: 8px;
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 18px;
}
.theme-1 .job-card-left-tag {
    display: flex;
    flex-wrap: wrap;
    max-height: 32px;
    overflow: hidden;
}
.theme-1 .job-card-left-tag-item {
    margin-right: 4px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    height: 24px;
    background: #f3f3f3;
    border-radius: 4px;
    overflow: hidden;
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    color: #666666;
}
.theme-1 .job-card-people {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    margin-right: 30px;
    width: 334px;
}
.theme-1 .job-card-people-company {
    display: flex;
    align-items: center;
}
.theme-1 .job-card-people-company-name {
    position: relative;
    margin-right: 4px;
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #111111;
}
.theme-1 .job-card-people-company-icon {
    width: 52px;
    height: 16px;
    object-fit: cover;
}
.theme-1 .job-card-people-text {
    max-width: 334px;
    margin-top: 10px;
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 18px;
}
.theme-1 .job-card-people-operation {
    position: relative;
    z-index: 1;
    margin-top: 31px;
}
.theme-1 .job-card-people-operation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 32px;
    background: #1e6fff;
    border-radius: 16px;
    overflow: hidden;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
}
.theme-1 .job-card-people-operation-time {
    text-align: center;
    margin-top: 7px;
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #999999;
    line-height: 18px;
}

/* 新版样式 theme-2 */
.theme-2.job-card {
    position: relative;
    box-sizing: border-box;
    margin-bottom: 12px;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #f5f5f5;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s;
}
.theme-2.job-card:hover {
    cursor: pointer;
    box-shadow: 0px 4px 12px 0px rgba(31, 32, 36, 0.08);
    transform: translateY(-4px);
}
.theme-2 .job-card-cover {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: 45px;
    object-fit: cover;
}
.theme-2 .job-card-cover-hurry {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(141deg, #fffcf4 11.66%, #fffdf9 72.79%);
}
.theme-2 .job-card-top {
    position: relative;
    z-index: 1;
    padding: 16px;
    padding-right: 120px;
}
.theme-2 .gap-8 {
    gap: 8px;
}
.theme-2 .job-card-type-icon {
    width: 32px;
    height: 20px;
    flex-shrink: 0;
}
.theme-2 .job-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: #111;
}
.theme-2 .job-card-money {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: #ff5000;
    flex-shrink: 0;
}
.theme-2 .job-card-tag {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}
.theme-2 .job-card-tag-item {
    padding: 6px 8px;
    border-radius: 4px;
    background: #f5f5f5;
    font-size: 12px;
    line-height: 12px;
    color: #666;
}
.theme-2 .job-card-bottom {
    position: relative;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    background: linear-gradient(91deg, #fff 0.66%, #f5f9ff 24.05%, #fffef8 99.34%);
}
.theme-2 .job-card-company-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.theme-2 .job-card-company-name {
    font-size: 16px;
    line-height: 24px;
    color: #111;
}
.theme-2 .job-card-company-vip {
    padding: 6px;
    border-radius: 4px;
    border: 1px solid rgba(171, 106, 0, 0.2);
    background: #fffce6;
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
    color: #ab6a00;
}
.theme-2 .job-card-company-info {
    font-size: 14px;
    line-height: 14px;
    color: #999;
}
.theme-2 .job-card-time {
    margin-left: auto;
}
.theme-2 .job-card-is-new {
    padding: 4px;
    border-radius: 4px;
    border: 1px solid #00D66F;
    font-size: 12px;
    line-height: 12px;
    background: linear-gradient(143deg, #00EF21 0%, #00D56E 44.67%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-2 .job-card-apply {
    position: absolute;
    top: 27px;
    right: 16px;
    padding: 11px 16px;
    border-radius: 36px;
    background: linear-gradient(138deg, #0071ff 28.57%, #4d9cff 83.48%);
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
}
