/* 特性区域样式 */
.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature i {
    color: #3366ff;
    margin-right: 10px;
    font-size: 18px;
}

.feature span {
    font-size: 16px;
    color: #333;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
}


/* 数据统计区域样式 */
.stats {
    padding: 30px 0;
    background: none;
    margin-top: 50px;
    /* position: absolute;
    bottom:  0px; */
    padding-bottom: 0px;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 0 20px;
}

.stat-item h2 {
    font-size: 36px;
    font-weight: 700;
    color: #3366ff; /* 蓝色数字 */
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    color: #666;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .stats .container {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
}


/* 优势卡片区域样式 */
.advantages {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-tag {
    font-size: 14px;
    color: #5D79E3; /* 修改颜色为#5D79E3 */
    margin-bottom: 10px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.advantage-cards {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 20px;
}

.advantage-card {
    flex: 1;
    background-color: #f8f9ff;
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* 优势卡片图标样式调整 */
.advantage-card .icon {
    margin-bottom: 20px;
}

.advantage-card .icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* 移除了背景色相关样式 */

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.advantage-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.blue-btn {
    background-color: #3366ff;
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.blue-btn:hover {
    background-color: #2952cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.blue-btn2{
    background-color: #3366ff;
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}
.blue-btn2:hover {
    background-color: #2952cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* 响应式调整 */
@media (max-width: 992px) {
    .advantage-cards {
        flex-direction: column;
    }
    
    .advantage-card {
        margin-bottom: 20px;
    }
}

.explore-tag {
    color: #5D79E3;
}


/* 如果还没有这个样式，请添加 */
.text-center {
    text-align: center;
}


/* 全球分布区域样式 */
.global-talent {
    padding: 80px 0;
    background-color: #F7F9FD;
    text-align: center;
}

.global-talent .section-tag {
    font-size: 14px;
    color: #5D79E3;
    margin-bottom: 10px;
}

.global-talent .section-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.global-talent .section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.world-map {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.world-map img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.global-talent .primary-btn {
    background-color: #5D79E3;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.global-talent .primary-btn:hover {
    background-color: #4A61B8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .global-talent {
        padding: 40px 0;
    }
    
    .world-map {
        margin: 0 20px 30px;
    }
}

.explore-tag {
    color: #5D79E3;
}


/* 如果还没有这个样式，请添加 */
.text-center {
    text-align: center;
}


.industry-icons {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
}

.industry-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.industry-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.industry-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.industry-icon p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.cta {
    background: none;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

/* .cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/banner-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
} */

/* .cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(93, 121, 227, 0.9) 0%, rgba(139, 162, 255, 0.9) 100%);
    z-index: 1;
} */

.cta .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

section.cta h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

section.cta .primary-btn {
    background-color: white;
    color: #5D79E3;
    padding: 16px 48px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

section.cta .primary-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}