/* 紧凑招募卡片容器 - 核心优化 */
.compact-recruitment-card {
    background: white;
    border-radius: 12px;
    /* 增大圆角，与页面其他卡片风格统一 */
    height: 480px;
    /* 适度增高，容纳新增内容 */
    display: flex;
    position: relative;
    box-shadow: 0 6px 24px rgba(44, 90, 160, 0.08);
    /* 优化阴影，更柔和 */
    border: 1px solid #e8f0fe;
    overflow: hidden;
    margin-bottom: 20px;
    /* 增加底部间距，与下方内容区协调 */
}

/* 左侧区域 */
.compact-left {
    flex: 1;
    padding: 2rem;
    /* 增大内边距，提升呼吸感 */
    border-right: 1px solid #f0f5ff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* 内容垂直分布更均匀 */
}

/* 标题区域优化 */
.compact-header {
    margin-bottom: 1.5rem;
}

.header-badge {
    background: linear-gradient(135deg, #2c5aa0, #4a7bc8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.header-title {
    font-size: 1.4rem;
    color: #2c5aa0;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    line-height: 1.4;
}

.header-subtitle {
    font-size: 0.9rem;
    color: #4a7bc8;
    background: #f0f5ff;
    padding: 0.3rem 1rem;
    border-radius: 6px;
    display: inline-block;
}

/* 桥梁示意图优化 */
.compact-bridge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0 1.5rem;
    padding: 0 10px;
}

.bridge-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.node-icon.blue-gradient {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2c5aa0, #4a7bc8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.2);
}

.node-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c5aa0;
    background: #f0f5ff;
    padding: 0.3rem 1rem;
    border-radius: 12px;
    white-space: nowrap;
}

.bridge-connector {
    flex: 0 0 80px;
    /* 增大连接器宽度，更协调 */
    position: relative;
    display: flex;
    justify-content: center;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #d1e3ff, #4a7bc8, #d1e3ff);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.connector-center {
    width: 32px;
    height: 32px;
    background: white;
    border: 2px solid #4a7bc8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a7bc8;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(44, 90, 160, 0.15);
}

/* 机制展示优化 */
.compact-mechanism {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin: 1rem 0;
}

.mechanism-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.8rem;
    background: #f8fafd;
    border-radius: 8px;
    border: 1px solid #e8f0fe;
    transition: all 0.2s ease;
}

.mechanism-item:hover {
    background: #e8f0fe;
    transform: translateY(-3px);
    /* 增强悬浮效果 */
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.1);
}

.mech-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2c5aa0, #4a7bc8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.mech-text {
    display: flex;
    flex-direction: column;
}

.mech-text strong {
    font-size: 0.8rem;
    color: #2c5aa0;
    line-height: 1.3;
}

.mech-text span {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
}

/* 右侧区域优化 */
.compact-right {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* 内容垂直分布更均匀 */
}

/* 统一section-title样式 */
.section-titles {
    font-size: 1rem;
    color: #2c5aa0;
    margin: 0 0 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.section-titles i {
    font-size: 1rem;
}

/* 招募对象优化 */
.compact-recruit-section {
    margin-bottom: 1.2rem;
}

.type-tags {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.type-tag.blue-tag {
    background: #f0f5ff;
    color: #2c5aa0;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid #d1e3ff;
    transition: all 0.2s ease;
}

.type-tag.blue-tag:hover {
    background: #e8f0fe;
    transform: translateY(-2px);
}

.type-tag.blue-tag i {
    font-size: 0.8rem;
}

.recruit-desc {
    font-size: 0.85rem!important;
    color: #666;
    margin: 0;
    background: #f8fafd;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    line-height: 1.4;
    border: 1px solid #e8f0fe;
}

/* 福利保障优化 */
.compact-benefits {
    margin-bottom: 1.2rem;
}

.benefit-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #f8fafd;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #e8f0fe;
    transition: all 0.2s ease;
}

.benefit-item:hover {
    background: #e8f0fe;
    transform: translateY(-2px);
}

.benefit-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #2c5aa0, #4a7bc8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(44, 90, 160, 0.15);
}

.benefit-content {
    display: flex;
    flex-direction: column;
}

.benefit-content strong {
    font-size: 0.85rem;
    color: #2c5aa0;
    line-height: 1.3;
}

.benefit-content span {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
}

/* 加入价值优化 */
.compact-values {
    margin-bottom: 1.2rem;
}

.value-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.value-tag {
    background: linear-gradient(135deg, #f0f5ff, #ffffff);
    color: #2c5aa0;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #d1e3ff;
    transition: all 0.2s ease;
}

.value-tag:hover {
    background: #e8f0fe;
    transform: translateY(-2px);
}

/* 联系信息样式（复用原有样式） */
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 1rem;
    padding: 0.4rem;
    border-radius: 4px;
}

.contact-item i {
    color: #4a7bc8;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.contact-item strong {
    color: #2c5aa0;
    font-weight: 700;
}

.contact-btn.blue-gradient {
    width: 100%;
    background: linear-gradient(135deg, #2c5aa0, #4a7bc8);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    /* box-shadow: 0 2px 8px rgba(44, 90, 160, 0.15); */
}

.contact-btn.blue-gradient:hover {
    background: linear-gradient(135deg, #1c4a90, #3a6bc5);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(44, 90, 160, 0.2);
}

/* 响应式调整增强 */
@media (max-width: 1400px) {
    .compact-recruitment-card {
        height: 450px;
    }
    .wrapper {
        padding-right: 300px;
    }
    .floating-contact {
        width: 260px;
    }
}

@media (max-width: 1200px) {
    .compact-mechanism {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .benefit-items {
        grid-template-columns: 1fr;
    }

    .compact-bridge {
        flex-direction: column;
        height: 100px;
    }

    .bridge-connector {
        flex: 0 0 50px;
        width: 2px;
        height: 50px;
    }

    .connector-line {
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, #d1e3ff, #4a7bc8, #d1e3ff);
    }

    .compact-left,
    .compact-right {
        padding: 1.5rem;
    }

    .wrapper {
        padding-right: 280px;
    }
    .floating-contact {
        width: 240px;
        top: 80px;
    }
}

@media (max-width: 768px) {
    /* 移动端隐藏悬浮框，恢复原有布局 */
    .floating-contact {
        display: none;
    }
    .wrapper {
        padding-right: 15px;
    }

    /* 移动端恢复报名通道到原位置 */
    .compact-right {
        padding-bottom: 20px;
    }
    .compact-right::after {
        content: '';
        display: block;
    }

    .compact-recruitment-card {
        height: auto;
        flex-direction: column;
        min-height: 600px;
    }

    .compact-left,
    .compact-right {
        padding: 1.2rem;
        border-right: none;
        border-bottom: 1px solid #f0f5ff;
    }

    .compact-mechanism {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .compact-mechanism {
        grid-template-columns: 1fr;
    }

    .header-title {
        font-size: 1.2rem;
    }

    .compact-recruitment-card {
        min-height: 700px;
    }
}

/* 原有样式保留 */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 120px;
    margin: 10px 0;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2c5aa0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
}

.ptgj {
    margin-bottom: 20px;
}

.ptgj .card {
    color: white;
    border: none;
    border-radius: 8px;
}

.bule-bg {
    background-color: #2c5aa0;
}

.quick-link-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.template-format {
    float: right;
    font-size: 0.8rem;
    color: #666;
}

.rongliang {
    font-size: 0.8rem;
}

.ellipsis-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.broker-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    object-fit: cover;
}

.broker-header {
    text-align: center;
    padding: 15px 0;
}

.broker-name {
    font-weight: bold;
    margin: 10px 0 5px;
}

.broker-title {
    color: #666;
    font-size: 0.9rem;
}

.broker-tags {
    margin: 10px 0;
}

.tag {
    background-color: #e8f0fe;
    color: #2c5aa0;
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 5px;
    font-size: 0.8rem;
}

.view-profile {
    text-align: center;
    margin: 15px 0;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e8f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    margin-top: 0px;
    color: #0f52ba;
    font-size: 2rem;
    transition: all .3s cubic-bezier(.4,0,.2,1);
}

.service-title {
    font-size: 1.4rem;
    color: #0a1929;
    margin-bottom: 1rem;
    font-weight: 600;
}
.step h3 {
    font-size: 1.3rem;
    color: #0a1929;
    margin-bottom: .8rem;
    font-weight: 600;
}

.step p {
    color: #8892a0;
    line-height: 1.6;
}

