/* ========== 人员配备页面 独有样式 ========== */
.personnel-banner {
    background: linear-gradient(rgba(10,37,64,0.85), rgba(10,37,64,0.85)), url('/template/zizhi/images/8.png') center/cover;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 76px;
}
@media (max-width:992px) {
    .personnel-banner { margin-top: 0; }
}
.personnel-banner h2 {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    animation: bannerPulse 2s infinite alternate;
}
.personnel-banner p {
    font-size: 1.3rem;
    opacity: 0.9;
}
@keyframes bannerPulse {
    0% { text-shadow: 0 0 10px rgba(198,164,63,0.2); }
    100% { text-shadow: 0 0 30px rgba(198,164,63,0.8); }
}

.talent-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    background: white;
    border-radius: 80px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid #eef2f6;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #C6A43F;
    line-height: 1.2;
}
.stat-label {
    color: #4e5e73;
    font-size: 1.1rem;
}
@media (max-width: 768px) {
    .talent-stats { flex-wrap: wrap; gap: 30px; }
}

/* 以下样式与anxu.html中的service-detail-block等相同，但为了完整性再次列出 */
.service-detail-block {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    background: #ffffff;
    border-radius: 40px;
    padding: 48px;
    margin-bottom: 40px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.05);
    border: 1px solid #f0f3f7;
    transition: 0.3s;
}
.service-detail-block:hover {
    box-shadow: 0 25px 45px -10px rgba(198,164,63,0.15);
    border-color: #C6A43F;
}
.service-detail-block:nth-child(even) {
    background: #F9FAFD;
}
.service-icon-large {
    font-size: 4rem;
    color: #C6A43F;
    line-height: 1;
}
.service-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #0A2540;
    margin-bottom: 16px;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0 20px;
}
.service-tag {
    background: #eef2f6;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    color: #1e2b3c;
}
.service-desc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}
.service-desc-col p {
    margin-bottom: 10px;
    color: #4e5e73;
}
.service-desc-col i {
    color: #C6A43F;
    width: 22px;
    margin-right: 6px;
}
.service-advantage {
    background: #0A2540;
    color: white;
    border-radius: 28px;
    padding: 24px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.service-advantage span {
    font-size: 1.2rem;
    font-weight: 500;
}
.service-advantage i {
    color: #C6A43F;
    margin-right: 10px;
}
@media (max-width: 900px) {
    .service-detail-block { grid-template-columns: 1fr; padding: 30px; }
    .service-icon-large { text-align: center; }
    .service-desc { grid-template-columns: 1fr; }
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}
.advantage-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 32px;
    box-shadow: 0 15px 25px -8px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
    transition: all 0.3s;
    animation: float 5s infinite ease-in-out;
}
.advantage-card:nth-child(2) { animation-delay: 0.5s; }
.advantage-card:nth-child(3) { animation-delay: 1s; }
.advantage-card:nth-child(4) { animation-delay: 1.5s; }
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); box-shadow: 0 20px 30px -8px rgba(198,164,63,0.15); }
    100% { transform: translateY(0); }
}
.advantage-card i {
    font-size: 3rem;
    color: #C6A43F;
    margin-bottom: 20px;
}
.advantage-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
@media (max-width: 768px) {
    .advantage-grid { grid-template-columns: 1fr 1fr; }
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}
.step {
    flex: 1 1 200px;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 32px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    animation: stepGlow 4s infinite;
}
.step:nth-child(2) { animation-delay: 1s; }
.step:nth-child(3) { animation-delay: 2s; }
.step:nth-child(4) { animation-delay: 3s; }
@keyframes stepGlow {
    0% { background: white; box-shadow: 0 5px 15px rgba(198,164,63,0.1); }
    50% { background: #fcf8ed; box-shadow: 0 8px 25px rgba(198,164,63,0.3); transform: scale(1.02); }
    100% { background: white; box-shadow: 0 5px 15px rgba(198,164,63,0.1); }
}
.step .step-num {
    width: 50px;
    height: 50px;
    background: #0A2540;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.faq-simple {
    background: #F9FAFD;
    border-radius: 48px;
    padding: 48px;
    margin: 40px 0;
}
.faq-item {
    border-bottom: 1px dashed #d0d8e5;
    padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
    font-weight: 600;
    font-size: 1.2rem;
    color: #0A2540;
}
.faq-question i {
    color: #C6A43F;
    margin-right: 12px;
}
.faq-answer {
    margin-top: 12px;
    color: #4e5e73;
    padding-left: 36px;
}