/* GEO介绍区域 - 独立样式，PC/手机适配 */
.geo-intro-section {
    width: 100%;
    padding: 80px 0;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}
.geo-intro-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><path d="M0,300 Q200,100 400,200 T800,100" fill="none" stroke="%23ddd" stroke-width="1"/><path d="M0,320 Q200,120 400,220 T800,120" fill="none" stroke="%23ddd" stroke-width="1"/><path d="M0,340 Q200,140 400,240 T800,140" fill="none" stroke="%23ddd" stroke-width="1"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.5;
}

.geo-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.geo-intro-header {
    margin-bottom: 40px;
}
.geo-intro-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}
.geo-intro-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}
.geo-intro-question {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}
.geo-intro-question span {
    color: #00ff88;
}
.geo-intro-desc {
    font-size: 16px;
    color: #666;
}

.geo-intro-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
}
.geo-flow-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #eee;
}
.geo-flow-card.geo-geo {
    background: linear-gradient(135deg, #e6f7ef 0%, #fff 100%);
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0,255,136,0.1);
}
.geo-flow-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
}
.geo-flow-steps {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.geo-step {
    background: #f5f5f5;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
}
.geo-geo .geo-step {
    background: #fff;
}
.geo-arrow {
    color: #00ff88;
    font-weight: bold;
}

.geo-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.geo-image-wrap {
    position: relative;
}
.geo-image-wrap img {
    width: 100%;
    border-radius: 12px;
}
.geo-image-tags {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-person-image {
    position: relative !important;
    z-index: 10 !important; /* 数值越大，层级越靠上 */
}
.tag-item {
    position: absolute;
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 6px;
}
.tag-ai {
    top: 10%;
    left: 5%;

}
.tag-ai .tag-icon {
    background: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative !important;
    z-index: 1 !important; /* 数值越小，层级越靠后 */
    font-size:12px;
}
.tag-mic {
    top: 15%;
    right: 10%;
}
.tag-like {
    bottom: 20%;
    right: 5%;
}
.tag-service {
    bottom: 10%;
    left: 5%;
}

.geo-core-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}
.geo-core-title span {
    color: #00ff88;
}
.geo-core-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 16px;
}
.geo-core-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* 响应式适配 */
@media (max-width: 900px) {
    .geo-intro-flow {
        grid-template-columns: 1fr;
    }
    .geo-intro-content {
        grid-template-columns: 1fr;
    }
    .geo-core-title {
        text-align: center;
    }
    .geo-core-subtitle {
        text-align: center;
    }
}
@media (max-width: 600px) {
    .geo-intro-section {
        padding: 60px 0;
    }
    .geo-intro-question {
        font-size: 28px;
    }
    .geo-flow-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .geo-arrow {
        transform: rotate(90deg);
    }
    .geo-core-desc {
        font-size: 15px;
    }
}