
/* 重置样式 - 只作用于移动端 */
.m-container,
.m-container * {
    /* margin: 0; */
    /* padding: 0; */
    box-sizing: border-box;
}

.m-container {
    max-width: 100%;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.5;
}

/* 容器 */
.m-container .m-container {
    max-width: 100%;
    overflow-x: hidden;
}

/* 通用区块样式 */
.m-container .m-section {
    padding: 35px 35px;
}

.m-container .m-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.m-container .m-section-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

/* 第一屏：首页Banner */
.m-container .m-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: white;
    position: relative;
}

/* 顶部手机号 */
.m-container .m-hero-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: white;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 10;
}

.m-container .m-hero-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: red;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.m-container .m-phone-icon {
    font-size: 24px;
    color: red;
}

.m-container .m-phone-number {
    letter-spacing: 1px;
}

.m-container .m-phone-tip {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.8;
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 20px;
}

.m-container .m-hero-content {
    max-width: 400px;
    margin-top: 80px;
    margin-bottom: 10px;
    width: 100%;
}

.m-container .m-hero-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.m-container .m-hero h1 {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.m-container .m-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* 4个图片板块 */
.m-container .m-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 15px 0;
}

.m-container .m-stat-item {
    background: rgba(255,255,255,1);
    padding: 10px 10px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.m-container .m-stat-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 8px;
    background-color: white;
    border-radius: 10%;
}

.m-container .m-stat-icon-color {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
}

.m-container .m-stat-number {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #666262;
    margin-bottom: 5px;
    margin-top: 5px;
}

.m-container .m-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* 立即咨询按钮 */
.m-container .m-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: #764ba2;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.m-container .m-hero-btn:hover {
    transform: scale(1.05);
    background: #f8f8f8;
}

/* 响应式调整 */
@media (max-width: 380px) {
    .m-container .m-hero h1 {
        font-size: 28px;
    }
    
    .m-container .m-hero p {
        font-size: 16px;
    }
    
    .m-container .m-stat-icon {
        width: 70px;
        height: 70px;
    }
    
    .m-container .m-stat-number {
        font-size: 16px;
    }
    
    .m-container .m-hero-btn {
        font-size: 18px;
        padding: 14px 30px;
    }
}

/* 第二屏：服务介绍 */
.m-container .m-services {
    background-color: #f8f9ff;
}

.m-container .m-service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.m-container .m-service-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.m-container .m-service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.m-container .m-service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.m-container .m-service-card p {
    color: #666;
    font-size: 15px;
}

.m-container .m-platform-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.m-container .m-platform-tag {
    padding: 4px 12px;
    background: #f0eaff;
    border-radius: 20px;
    font-size: 13px;
    color: #764ba2;
    font-weight: 500;
}



/* 第四屏：GEO流程 */
.m-container .m-process {
    background: linear-gradient(135deg, #f5f0ff 0%, #f0eaff 100%);
    margin-top: -100px;
}

.m-container .m-process-steps {
    max-width: 400px;
    margin: 0 auto;
}

.m-container .m-step {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 60px;
}

.m-container .m-step-number {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.m-container .m-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.m-container .m-step-list {
    list-style: none;
}

.m-container .m-step-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
}

.m-container .m-step-list li::before {
    content: "•";
    color: #764ba2;
    position: absolute;
    left: 4px;
}

.m-container .m-step-list li.m-red {
    color: #e53e3e;
    font-weight: 500;
}


/* 底部 */
.m-container .m-footer {
    background: #1a1a1a;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.m-container .m-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.m-container .m-footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.m-container .m-footer-phone {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: block;
    margin: 15px 0;
}

.m-container .m-copyright {
    color: #666;
    font-size: 12px;
    margin-top: 20px;
}


.bottom-fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 12px 20px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.bottom-fixed-bar .btn-phone {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #0066ff;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 12px 0;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 200px;
}

.bottom-fixed-bar .btn-wechat {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #ffffff;
    color: #0066ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 12px 0;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid #0066ff;
    text-align: center;
    max-width: 200px;
}

.bottom-fixed-bar svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}


#copyToast {
    position: fixed;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff4444;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 16px;
    z-index: 1001;
    display: none;
    white-space: nowrap;
}
</style>