/* ===== 以下为完整版 css1（已针对 css2 冲突做防护，可直接覆盖 css2 使用） ===== */

/* 1. 全局基础 */
body{
    background:#335bed;
    margin:0;
    font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
}
#app{
    min-height:100vh;
    padding-bottom:5vh;
}

/* 2. header1 区域 —— 关键防护 */
#app .header1{
    color:white;
    position:relative;
    height:auto !important;          /* 防 css2 覆盖 */
    background:transparent !important;
    border:none !important;
    margin:0 !important;
    padding:0 !important;
    z-index:auto !important;
}
#app .header1 .title{
    padding-top:15vw;
    padding-bottom:15vw;
    font-size:15vw;
    font-weight:800;
    text-align:center;
    background:linear-gradient(0deg,#CFE3FF,#FFFFFF);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    position:relative;
    z-index:10;
}
#app .header1 .miniTitle{
    font-size:6vw;
    text-align:center;
    font-weight:500;
}
#app .header1 .headerBg{
    position:absolute;
    top:0;
    right:0;
    left:0;
    z-index:0;
    height:20vw;
    opacity:.8;
}

/* 3. banner 区域 */
#app .banner{
    padding:3vw 0;
    position:relative;
    background:transparent !important;  /* 防 css2 覆盖 */
}
#app .banner .text{
    position:absolute;
    left:0;
    top:3vw;
    width:50vw;
    height:10vw;
}
#app .banner .text .t1{
    background-color:#FDB830;
    height:8vw;
    border-radius:0 10vw 10vw 0;
    color:white;
    text-align:center;
    line-height:8vw;
    font-weight:500;
    font-size:3.8vw;
}
#app .banner .text .t2{
    margin-top:2vw;
    padding-left:5vw;
    font-size:4.5vw;
    color:white;
    line-height:7vw;
    font-weight:500;
    letter-spacing:1vw;
}
#app .banner .phone_chao{
    position:absolute;
    bottom:8vw;
    right:6vw;
    left:6vw;
    height:10vw;
    border-radius:5vw;
    font-weight:bold;
    text-align:center;
    line-height:10vw;
    box-shadow:0 2px 4px rgba(0,0,0,0.12),0 0 6px rgba(0,0,0,0.04);
    color:#ff6300;
    background:white;
    animation:scaleAnimation 1.3s ease-in-out infinite;
}
#app .banner .phone_chao span,
#app .banner .phone_chao a{
    font-size:6vw;
    text-decoration:none;
    color:inherit;
}

/* 4. content 区域 */
#app .content{
    width:90%;
    margin:0 auto;
    background:white;
    border-radius:3vw;
    padding:3vw 5vw;
    padding-bottom:7vw;
    box-sizing:border-box;
    position:relative;
}
#app .content>div{padding-bottom:3vh;}
#app .content .headBox{
    width:40vw;
    height:10vw;
    background:#409EFF;
    border-radius:2vw;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:white;
    padding:0 2vw;
    margin:4vw auto;
    margin-top:3vw;
    font-size:4vw;
    font-weight:500;
}
#app .content .headBox .dot{
    width:8px;
    height:8px;
    background:white;
    border-radius:50%;
}
#app .content .titlesBox{
    min-width:40vw;
    min-height:10vw;
    height:auto;
    width:auto;
    border-radius:2vw;
}
#app .content .titles{
    flex:1;
    padding:2vw;
    text-align:center;
}
#app .content .titles h1{font-size:3.5vw;}
#app .content .bgBox{
    background:#E0EBFF;
    border-radius:3vw;
    padding:4vw;
    box-sizing:border-box;
    color:#333;
    font-size:4vw;
}
#app .content .steps{
    padding:5vw 0vw;
    display:flex;
    justify-content:space-between;
}
#app .content .steps .solid{
    flex:1;
    border-bottom:1px solid #DCDFE6;
    padding-top:2vw;
    height:4vw;
    font-size:2.5vw;
    color:#606266;
}
#app .content .steps .item{width:17vw;text-align:center;}
#app .content .steps .item .round{
    width:12vw;
    height:12vw;
    border-radius:50%;
    background-color:#53a8ff;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
}
#app .content .steps .item .round img{width:6vw;height:6vw;}
#app .content .steps .item .p1{
    margin:2vw 0;
    font-size:3.8vw;
    font-weight:500;
}
#app .content .steps .item .p2{
    font-size:2.5vw;
    color:#909399;
}
#app .content .QA{
    max-height:400px;
    overflow:hidden;
    transition:max-height .5s ease;
}
#app .content .QA.expanded{max-height:none;}
#app .content .createTime{
    color:#606266;
    text-align:center;
    font-size:3vw;
    padding:2vw 0;
}
#app .content .serveList{
    display:flex;
    align-items:center;
    justify-content:space-around;
    flex-wrap:wrap;
    padding-top:3vw;
}
#app .content .serveList .serveItem{
    width:22vw;
    height:8vw;
    background:#53a8ff;
    border-radius:10vw;
    margin-bottom:3vw;
    color:white;
    line-height:8vw;
    text-align:center;
    font-size:3vw;
    font-weight:bold;
}
#app .content .serveList .serveItem:active{opacity:.7;}
#app .content .moreBtn{
    width:20vw;
    font-size:3vw;
    text-align:center;
    padding:3vw 1vw;
    border:1px solid #909399;
    margin:2vw auto;
    color:#606266;
    font-weight:bold;
    border-radius:2vw;
}
#app .content .recommendList{
    color:#53a8ff;
    font-size:4vw;
    font-weight:500;
}
#app .content .recommendList .recommendItem{padding-bottom:2.5vw;}

/* 5. 固定按钮 */
.fixedBtn{
    position:fixed;
    z-index:1000;
    width:100%;
    bottom:0;
    right:0;
    left:0;
    background:white;
    padding:3vw;
    box-sizing:border-box;
    box-shadow:0 2px 4px rgba(0,0,0,0.12),0 0 6px rgba(0,0,0,0.04);
}
.fixedBtn .btn1{
    margin:0 auto;
    height:12vw;
    background:#335bed;
    color:white;
    line-height:12vw;
    text-align:center;
    border-radius:1vw;
}
.fixedBtn .btn1 a{
    text-decoration:none;
    color:inherit;
}

/* 6. 页脚 */
.footer{
    color:white;
    font-size:3vw;
    text-align:center;
    padding:1vh 0 13vh 0;
}
.footer a{color:inherit;text-decoration:none;}

/* 7. 桌面端适配 */
@media (min-width:780px){
    #app{width:780px;margin:0 auto;}
    #app .header1 .title{
        font-size:100px;
        padding-top:100px;
        padding-bottom:30px;
    }
    #app .header1 .miniTitle{font-size:30px;}
    #app .header1 .headerBg{height:200px;}
    #app .banner{padding:30px 0;}
    #app .banner .text{top:30px;width:50%;height:100px;}
    #app .banner .t1{
        font-size:30px !important;
        height:50px !important;
        line-height:50px !important;
    }
    #app .banner .t2{
        margin-top:20px !important;
        padding-left:50px !important;
        font-size:25px !important;
        color:white !important;
        line-height:30px !important;
        font-weight:500 !important;
    }
    #app .banner .phone_chao{
        position:absolute;
        bottom:100px !important;
        height:70px !important;
        line-height:70px !important;
        border-radius:50px !important;
        right:0;
        left:0;
        margin:0 auto;
        width:80% !important;
    }
    #app .banner .phone_chao span,
    #app .banner .phone_chao a{font-size:35px !important;}
    #app .content{
        width:90%;
        margin:0 auto;
        background:white;
        border-radius:30px !important;
        padding:20px 50px !important;
        padding-bottom:100px !important;
    }
    #app .content>div{padding-bottom:10px;}
    #app .content .headBox{
        width:300px !important;
        height:60px !important;
        background:#409EFF;
        border-radius:10px !important;
        padding:0 30px !important;
        margin:30px auto !important;
        margin-top:30px !important;
        font-size:26px !important;
        font-weight:500 !important;
    }
    #app .content .headBox .dot{width:14px;height:14px;}
    #app .content .titlesBox{
        width:500px !important;
        height:auto !important;
        border-radius:20px !important;
    }
    #app .content .titles{padding:15px;}
    #app .content .titles h1{font-size:24px;}
    #app .content .createTime{
        font-size:22px;
        padding:20px 0;
    }
    #app .content .bgBox{
        border-radius:30px;
        padding:18px;
        font-size:26px;
    }
    #app .content .steps{padding:30px 0 !important;}
    #app .content .steps .solid{
        padding-top:20px;
        height:30px;
        font-size:16px;
    }
    #app .content .steps .item{width:100px !important;}
    #app .content .steps .item .round{
        width:100px !important;
        height:100px !important;
    }
    #app .content .steps .item .round img{width:50px;height:50px;}
    #app .content .steps .item .p1{
        margin:20px 0;
        font-size:20px;
    }
    #app .content .steps .item .p2{font-size:18px;}
    #app .content .QA{font-size:20px !important;}
    #app .content .moreBtn{
        width:200px !important;
        font-size:22px !important;
        padding:10px;
        margin:20px auto;
        border-radius:20px;
    }
    #app .content .serveList{padding-top:30px;}
    #app .content .serveList .serveItem{
        width:150px;
        height:60px;
        border-radius:50px;
        margin-bottom:30px;
        line-height:60px;
        font-size:20px;
    }
    #app .content .recommendList{font-size:20px;}
    #app .content .recommendList .recommendItem{padding-bottom:30px;}
    .fixedBtn{display:none !important;}
    .footer{font-size:22px;padding:30px 0;}
}

/* 8. 其它统一处理 */
img{display:block;width:100%;}
a{color:inherit;text-decoration:none;}
@keyframes scaleAnimation{
    0%,100%{transform:scale(1);}
    50%{transform:scale(1.05);}
}

/* ===== 强制覆盖层叠冲突（保险层） ===== */
#app .header1{
    position:relative !important;
    height:auto !important;
    background:transparent !important;
    border:none !important;
    margin:0 !important;
    padding:0 !important;
    z-index:auto !important;
    color:#fff !important;
}
#app .banner{
    padding:3vw 0 !important;
    position:relative !important;
    background:transparent !important;
}
@media (max-width:780px){
    .fixedBtn{display:block !important;}
}