@charset "utf-8";
@import "page.css";
/* --- Hero横幅区域 --- */
.geo-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2b1d 0%, #0d3b2e 50%, #064e3b 100%);
}

.geo-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    animation: heroBgAnimation 15s ease-in-out infinite;
}

@keyframes heroBgAnimation {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(2deg);
        opacity: 0.8;
    }
}

.geo-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    width: 100%;
}

.geo-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, #a7f3d0 50%, #6ee7b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.geo-title .title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: titleSlideUp 0.8s ease forwards;
}

.geo-title .title-line:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes titleSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.geo-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #94a3b8;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.geo-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.geo-tags .tag {
    padding: 10px 25px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 25px;
    color: #6ee7b7;
    font-size: 14px;
    transition: all 0.3s ease;
}

.geo-tags .tag:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.geo-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.geo-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* --- 通用区块样式 --- */
.geo-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    line-height: 1.3;
    padding: 0 10px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #06b6d4 100%);
    margin: 20px auto 0;
    border-radius: 2px;
    position: relative;
}

.section-desc {
    font-size: 18px;
    color: #64748b;
    letter-spacing: 3px;
}

/* --- GEO优势区域 --- */
.geo-advantage {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #06b6d4 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.adv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.adv-icon i {
    font-size: 36px;
    color: white;
}

.advantage-card:hover .adv-icon {
    transform: rotateY(360deg);
}

.advantage-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
}

/* --- GEO服务流程 --- */
.geo-process {
    background: white;
    position: relative;
}

.geo-process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(16, 185, 129, 0.1) 0%,
        rgba(16, 185, 129, 0.3) 20%,
        rgba(16, 185, 129, 0.3) 80%,
        rgba(16, 185, 129, 0.1) 100%);
}

.process-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-num {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transition: all 0.4s ease;
}

.process-item:hover .process-num {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.process-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.process-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* --- GEO服务项目 --- */
.geo-services {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.xiaoercms-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.xiaoercms-service-card {
    background: white;
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(16, 185, 129, 0.05);
    position: relative;
    overflow: hidden;
}

.xiaoercms-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(6, 182, 212, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.xiaoercms-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.15);
}

.xiaoercms-service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.xiaoercms-service-card:hover .service-icon {
    transform: rotate(-10deg) scale(1.05);
}

.xiaoercms-service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    position: relative;
}

.xiaoercms-service-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.service-features li i {
    color: #10b981;
    font-size: 12px;
}

/* --- 数据展示区域 --- */
.geo-data {
    background: linear-gradient(135deg, #0f2b1d 0%, #064e3b 100%);
    color: white;
    padding: 100px 0;
}

.data-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.data-item {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.data-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.2);
}

.data-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-icon i {
    font-size: 30px;
    color: white;
}

.data-number {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #6ee7b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.2;
    padding: 5px 0;
}

.data-label {
    font-size: 16px;
    color: #94a3b8;
    letter-spacing: 1px;
    line-height: 1.4;
    padding: 5px 0;
}

/* --- 常见问题区域 --- */
.geo-faq {
    background: #f8fafc;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-question i {
    font-size: 18px;
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

/* --- 咨询联系区域 --- */
.geo-contact {
    padding: 0;
    position: relative;
}

.geo-contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f2b1d 0%, #064e3b 100%);
}

.contact-content {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    text-align: center;
}

.contact-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-3px);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-text .label {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 5px;
}

.contact-text .value {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.contact-promise {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-promise p {
    font-size: 16px;
    color: #6ee7b7;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.contact-promise p i {
    font-size: 18px;
}

/* --- 响应式 --- */
@media (max-width: 768px) {
    .process-timeline::before {
        display: none;
    }
    .contact-info {
        flex-direction: column;
    }
    .advantage-grid,
    .xiaoercms-services-grid {
        grid-template-columns: 1fr;
    }
}
