/* 特性区域样式 */
.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);
}

/* 人才搜索展示区域样式 */
.talent-search-showcase {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.talent-search-showcase .container {
    max-width: 1200px;
}

.talent-search-showcase .showcase-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.talent-search-showcase .showcase-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 50%;
}

.talent-search-showcase .showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.talent-search-showcase .showcase-text {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.talent-search-showcase .showcase-title {
    font-size: 36px;
    font-weight: 600;
    color: #17181A;
    line-height: 1.4;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.talent-search-showcase .showcase-description {
    font-size: 16px;
    font-weight: 400;
    color: #45464A;
    line-height: 1.6;
    margin: 6px 0 48px 0;
}

.talent-search-showcase .showcase-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 48px;
    background-color: #3457DC;
    color: #FFFFFF;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.talent-search-showcase .showcase-cta-btn:hover {
    background-color: #2A47C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 87, 220, 0.3);
}

/* 响应式设计 - 平板 */
@media screen and (max-width: 1024px) {
    .talent-search-showcase .showcase-content {
        gap: 40px;
    }
    
    .talent-search-showcase .showcase-title {
        font-size: 36px;
    }
}

/* 响应式设计 - 移动端 */
@media screen and (max-width: 768px) {
    .talent-search-showcase {
        padding: 60px 0;
    }
    
    .talent-search-showcase .showcase-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .talent-search-showcase .showcase-image {
        max-width: 100%;
        width: 100%;
    }
    
    .talent-search-showcase .showcase-text {
        max-width: 100%;
        text-align: center;
    }
    
    .talent-search-showcase .showcase-title {
        font-size: 28px;
        text-align: center;
    }
    
    .talent-search-showcase .showcase-description {
        font-size: 14px;
        text-align: center;
    }
    
    .talent-search-showcase .showcase-cta-btn {
        margin: 0 auto;
    }
}

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

.global-talent-distribution .container {
    max-width: 1200px;
}

.global-talent-distribution .distribution-title {
    font-size: 40px;
    font-weight: 700;
    color: #17181A;
    margin: 0 0 24px 0;
    letter-spacing: -1px;
}

.global-talent-distribution .distribution-description {
    font-size: 16px;
    font-weight: 400;
    color: #7C7D81;
    line-height: 1.6;
    max-width: 1040px;
    margin: 0 auto 60px;
}

.global-talent-distribution .distribution-map {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.global-talent-distribution .distribution-map img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    object-fit: contain;
}

.global-talent-distribution .distribution-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 48px;
    background-color: #17181A;
    color: #FFFFFF;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    padding: 0 32px;
}

.global-talent-distribution .distribution-cta-btn:hover {
    background-color: #2A2A2A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(23, 24, 26, 0.3);
}

/* 响应式设计 - 平板 */
@media screen and (max-width: 1024px) {
    .global-talent-distribution {
        padding: 60px 0;
    }
    
    .global-talent-distribution .distribution-title {
        font-size: 40px;
    }
    
    .global-talent-distribution .distribution-map {
        margin: 0 auto 40px;
    }
}

/* 响应式设计 - 移动端 */
@media screen and (max-width: 768px) {
    .global-talent-distribution {
        padding: 50px 0;
    }
    
    .global-talent-distribution .distribution-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .global-talent-distribution .distribution-description {
        font-size: 14px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .global-talent-distribution .distribution-map {
        margin: 0 20px 40px;
    }
    
    .global-talent-distribution .distribution-cta-btn {
        min-width: 200px;
        height: 44px;
        font-size: 14px;
    }
}

/* AI 功能展示区域样式 */
.ai-feature-showcase {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.ai-feature-showcase .container {
    max-width: 1200px;
}

.ai-feature-showcase .feature-showcase-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.ai-feature-showcase-reverse .feature-showcase-content {
    flex-direction: row-reverse;
}

.ai-feature-showcase .feature-showcase-text {
    flex: 1;
    max-width: 50%;
}

.ai-feature-showcase .feature-showcase-title {
    font-size: 36px;
    font-weight: 600;
    color: #17181A;
    line-height: 1.3;
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
}

.ai-feature-showcase .feature-showcase-description {
    font-size: 16px;
    font-weight: 400;
    color: #45464A;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.ai-feature-showcase .feature-showcase-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.ai-feature-showcase .feature-showcase-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
    color: #4A4A4A;
    line-height: 1.6;
}

.ai-feature-showcase .feature-showcase-list li i {
    margin-right: 12px;
    margin-top: 0;
    flex-shrink: 0;
    font-size: 16px;
    background-color: #F0F3FF;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-feature-showcase .feature-showcase-list li span {
    flex: 1;
}

.ai-feature-showcase .feature-showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 48px;
    background-color: #3457DC;
    color: #FFFFFF;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ai-feature-showcase .feature-showcase-btn:hover {
    background-color: #2A47C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 87, 220, 0.3);
}

.ai-feature-showcase .feature-showcase-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 50%;
}

.ai-feature-showcase .feature-showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* 响应式设计 - 平板 */
@media screen and (max-width: 1024px) {
    .ai-feature-showcase {
        padding: 80px 0;
    }
    
    .ai-feature-showcase .feature-showcase-content {
        gap: 50px;
    }
    
    .ai-feature-showcase .feature-showcase-title {
        font-size: 36px;
    }
}

/* 响应式设计 - 移动端 */
@media screen and (max-width: 768px) {
    .ai-feature-showcase {
        padding: 60px 0;
    }
    
    .ai-feature-showcase .feature-showcase-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .ai-feature-showcase-reverse .feature-showcase-content {
        flex-direction: column;
    }
    
    .ai-feature-showcase .feature-showcase-text {
        max-width: 100%;
    }
    
    .ai-feature-showcase .feature-showcase-title {
        font-size: 28px;
        text-align: center;
    }
    
    .ai-feature-showcase .feature-showcase-description {
        font-size: 16px;
        text-align: center;
    }
    
    .ai-feature-showcase .feature-showcase-image {
        max-width: 100%;
        width: 100%;
    }
    
    .ai-feature-showcase .feature-showcase-btn {
        margin: 0 auto;
        display: block;
        width: 200px;
    }
}