.mobile-contanct{display: none;}
@media screen and (max-width: 768px) {
    /* 动画关键帧定义 - 快速动画 */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.8);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    /* 初始状态 - 隐藏元素 */
    .introduce,
    .yunyoushi .bottom dl,
    .ad_pcbg .ad_pcbgl div,
    .ad_pcbg .ad_pcbgr div,
    .po_cont dl,
    .market_cont dl,
    .prospect_mian .qj-box,
    .profit_mian dl,
    .user_mian,
    .yun_mian,
    .partner .wy_box01 img {
        opacity: 1;
        transform: translateY(20px);
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }
    
    /* 动画触发类 */
    .introduce.animate {
        animation: fadeInUp 0.4s ease-out forwards;
    }
    
    .yunyoushi .bottom dl.animate {
        animation: scaleIn 0.4s ease-out forwards;
    }
    
    .ad_pcbg .ad_pcbgl div.animate {
        animation: slideInLeft 0.4s ease-out forwards;
    }
    
    .ad_pcbg .ad_pcbgr div.animate {
        animation: slideInRight 0.4s ease-out forwards;
    }
    
    .po_cont dl.animate {
        animation: fadeInUp 0.4s ease-out forwards;
    }
    
    .market_cont dl.animate {
        animation: scaleIn 0.4s ease-out forwards;
    }
    
    .prospect_mian .qj-box.animate {
        animation: fadeIn 0.4s ease-out forwards;
    }
    
    .profit_mian dl.animate {
        animation: fadeInUp 0.4s ease-out forwards;
    }
    
    .user_mian.animate {
        animation: slideInLeft 0.4s ease-out forwards;
    }
    
    .yun_mian.animate {
        animation: fadeIn 0.4s ease-out forwards;
    }
    
    .partner .wy_box01 img.animate {
        animation: fadeInUp 0.4s ease-out forwards;
    }
    
    /* 动画延迟 */
    .yunyoushi .bottom dl:nth-child(1).animate { animation-delay: 0.05s; }
    .yunyoushi .bottom dl:nth-child(2).animate { animation-delay: 0.1s; }
    .yunyoushi .bottom dl:nth-child(3).animate { animation-delay: 0.15s; }
    .yunyoushi .bottom dl:nth-child(4).animate { animation-delay: 0.2s; }
    
    .ad_pcbg .ad_pcbgl div:nth-child(1).animate { animation-delay: 0.05s; }
    .ad_pcbg .ad_pcbgl div:nth-child(2).animate { animation-delay: 0.1s; }
    .ad_pcbg .ad_pcbgl div:nth-child(3).animate { animation-delay: 0.15s; }
    .ad_pcbg .ad_pcbgr div:nth-child(1).animate { animation-delay: 0.05s; }
    .ad_pcbg .ad_pcbgr div:nth-child(2).animate { animation-delay: 0.1s; }
    .ad_pcbg .ad_pcbgr div:nth-child(3).animate { animation-delay: 0.15s; }
    
    .po_cont dl:nth-child(1).animate { animation-delay: 0.05s; }
    .po_cont dl:nth-child(2).animate { animation-delay: 0.1s; }
    .po_cont dl:nth-child(3).animate { animation-delay: 0.15s; }
    .po_cont dl:nth-child(4).animate { animation-delay: 0.2s; }
    .po_cont dl:nth-child(5).animate { animation-delay: 0.25s; }
    .po_cont dl:nth-child(6).animate { animation-delay: 0.3s; }
    .po_cont dl:nth-child(7).animate { animation-delay: 0.35s; }
    .po_cont dl:nth-child(8).animate { animation-delay: 0.4s; }
    .po_cont dl:nth-child(9).animate { animation-delay: 0.45s; }
    .po_cont dl:nth-child(10).animate { animation-delay: 0.5s; }
    
    .market_cont dl:nth-child(1).animate { animation-delay: 0.05s; }
    .market_cont dl:nth-child(2).animate { animation-delay: 0.1s; }
    .market_cont dl:nth-child(3).animate { animation-delay: 0.15s; }
    .market_cont dl:nth-child(4).animate { animation-delay: 0.2s; }
    .market_cont dl:nth-child(5).animate { animation-delay: 0.25s; }
    .market_cont dl:nth-child(6).animate { animation-delay: 0.3s; }
    .market_cont dl:nth-child(7).animate { animation-delay: 0.35s; }
    .market_cont dl:nth-child(8).animate { animation-delay: 0.4s; }
    .market_cont dl:nth-child(9).animate { animation-delay: 0.45s; }
    .market_cont dl:nth-child(10).animate { animation-delay: 0.5s; }
    
    .prospect_mian .qj-box:nth-child(1).animate { animation-delay: 0.05s; }
    .prospect_mian .qj-box:nth-child(2).animate { animation-delay: 0.1s; }
    .prospect_mian .qj-box:nth-child(3).animate { animation-delay: 0.15s; }
    .prospect_mian .qj-box:nth-child(4).animate { animation-delay: 0.2s; }
    
    .profit_mian dl:nth-child(1).animate { animation-delay: 0.05s; }
    .profit_mian dl:nth-child(2).animate { animation-delay: 0.1s; }
    .profit_mian dl:nth-child(3).animate { animation-delay: 0.15s; }
    .profit_mian dl:nth-child(4).animate { animation-delay: 0.2s; }
    
    .partner .wy_box01 img:nth-child(1).animate { animation-delay: 0.05s; }
    .partner .wy_box01 img:nth-child(2).animate { animation-delay: 0.1s; }
    .partner .wy_box01 img:nth-child(3).animate { animation-delay: 0.15s; }
    .partner .wy_box01 img:nth-child(4).animate { animation-delay: 0.2s; }
    .partner .wy_box01 img:nth-child(5).animate { animation-delay: 0.25s; }
    .partner .wy_box01 img:nth-child(6).animate { animation-delay: 0.3s; }
    .partner .wy_box01 img:nth-child(7).animate { animation-delay: 0.35s; }
    .partner .wy_box01 img:nth-child(8).animate { animation-delay: 0.4s; }
    .partner .wy_box01 img:nth-child(9).animate { animation-delay: 0.45s; }
    .partner .wy_box01 img:nth-child(10).animate { animation-delay: 0.5s; }
    .partner .wy_box01 img:nth-child(11).animate { animation-delay: 0.55s; }
    .partner .wy_box01 img:nth-child(12).animate { animation-delay: 0.6s; }
    .partner .wy_box01 img:nth-child(13).animate { animation-delay: 0.65s; }
    .partner .wy_box01 img:nth-child(14).animate { animation-delay: 0.7s; }
    .partner .wy_box01 img:nth-child(15).animate { animation-delay: 0.75s; }
    .partner .wy_box01 img:nth-child(16).animate { animation-delay: 0.8s; }
    .partner .wy_box01 img:nth-child(17).animate { animation-delay: 0.85s; }
    .partner .wy_box01 img:nth-child(18).animate { animation-delay: 0.9s; }
    .partner .wy_box01 img:nth-child(19).animate { animation-delay: 0.95s; }
    .partner .wy_box01 img:nth-child(20).animate { animation-delay: 1s; }
    .partner .wy_box01 img:nth-child(21).animate { animation-delay: 1.05s; }
    
    /* 原有样式 */
    .y_bannerw{
        width: 100%;
    }
    .y_banner .y_bannerw p{
        margin-left: 30px !important;
    }
    .y_bannerw .y_heng{
        margin-left: 30px !important;
    }
    .y_banner1{
        width: calc(100% - 60px);
    }
    .y_bannerw .bannerbtn{
        margin-left: 30px !important;
        margin-top: 30px !important;
    }
    .hbox{
        display: none;
    }
    .introduce{
        width: 100%;
        text-align: center;
    }
    .introduce>img{
        max-width: 100%;
        width: 80%;
        height: auto;
        float: none;
        margin: 0 auto;
    }
    .introduce div{
        width: 100%;
        padding: 20px;
        margin-top: 40px;
    }
    .introduce div p{
        text-align: left;
        text-indent: 2em;
    }
    .yunyoushi .bottom{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .yunyoushi .bottom dl{
        float: none;
        margin:0;
        margin-bottom: 30px;
        background: #fff;
        box-shadow: 0 3px 6px rgba(0,0,0,0.16);
        overflow: hidden;
    }
    .advantage{
        padding: 20px;
    }
    .ad_pcbg{
        width: 100%;
        height: auto;
        position: static;
        background: none;
    }
    .ad_pcbg .ad_pcbgl{
        border: 1px solid rgba(255,255,255,0.16);
        float: none;
        width: 100%;
        text-align: center;
        border-radius: 10px 10px 0 0;
    }
    .ad_pcbg .ad_pcbgr{
        border: 1px solid rgba(255,255,255,0.16);
        float: none;
        width: 100%;
        text-align: center;
        border-top: none;
        border-radius:0 0 10px 10px;
    }
    .ad_pcbg .ad_pcbgl div:nth-child(1){
        margin-top: 0;
        margin-left: 0;
        border-bottom: 1px solid rgba(255,255,255,0.16);
        padding: 20px;
    }
    .ad_pcbg .ad_pcbgl div:nth-child(2){
        margin-top: 0;
        margin-right: 0;
        padding: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.16);
    }
    .ad_pcbg .ad_pcbgl div:nth-child(3){
        margin-top: 0;
        margin-right: 0;
        padding: 20px;
    }
    .ad_pcbg .ad_pcbgl div h1, .ad_pcbg .ad_pcbgr div h1{
        font-size: 24px;
        margin-bottom: 15px;
    }
    .ad_pcbg .ad_pcbgl div p, .ad_pcbg .ad_pcbgr div p{
        font-size: 16px;
        line-height: 32px;
    }
    .ad_pcbg .ad_pcbgr div:nth-child(1){
        margin-top: 0;
        margin-right: 0;
        padding: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.16);
    }
    .ad_pcbg .ad_pcbgr div:nth-child(2){
        margin-top: 0;
        margin-left: 0;
        padding: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.16);
    }
    .ad_pcbg .ad_pcbgr div:nth-child(3){
        margin-top: 0;
        margin-left: 0;
        padding: 20px;
    }
    .powerful{
        padding: 85px 20px;
    }
    .po_cont{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .po_cont dl{
        float: none;
        margin-right: 0;
        margin-bottom: 20px;
        width: calc(50% - 10px);
        border: 1px solid #cfcfcf;
        padding: 20px 5px;
        border-radius: 5px;
    }
    .po_cont dl h1{
        font-size: 20px;
    }
    .po_cont dl p{
        font-size: 14px;
    }
    .market_cont{
        width: 100%;
        padding: 20px;
    }
    .market_cont dl{
        margin-right: 0;
        margin-bottom: 0;
        margin-bottom: 20px;
    }
    .market_cont dl, .market_cont dt{
        float: none;
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        
    }
    .market_cont dl dd{
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
    .market_cont dl:nth-child(n) dt{
        background-size: contain;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 40px;
    }
    .market_cont dl dd h1 {
        font-size: 40px;
        text-align: center;
        font-weight: bolder;
        margin: 70px 0 20px;
    }
    .market_cont dl dd p{
        width: 100%;
        font-size: 22px;
        padding: 20px;
    }
    .prospect .top p{
        width: 100%;
        padding: 0 20px;
    }
    .prospect_mian{
        width: 100%;
        height: auto;
        background: none;
    }
    .prospect_mian .qj-box{
        float: none;
        position: relative;
        transform: none;
        transition: none;
        margin-bottom: 40px;
    }
    .prospect_mian .qj-box:nth-child(n){
        left: calc(50% - (136px / 2));
    }
    .profit .top p{
        width: 100%;
        padding: 0 20px;
        line-height: 30px;
    }
    .profit_mian{
        width: 100%;
        padding: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .profit_mian dl{
        float: none;
        margin-right: 0;
        width: 100%;
        height: auto;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.055);
    }
    .profit_mian dl dd h1{
        font-size: 24px;
        margin-bottom: 10px;
    }
    .profit_mian dl dd p{
        width: 100%;
        font-size: 16px;
        line-height: 32px;
    }
    .user .top p{
        padding: 20px;
    }
    .user_mian{
        width: 100%;
        padding: 20px;
    }
    .user_mian img{
        float: none;
        width: 100%;
    }
    .user_box{
        float: none;
        margin-left: 0;
    }
    .user_mian .fl p{
        font-size: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .user_mian .fl div{
        font-size: 20px;
    }
    .user_mian .fl div span{
        font-size: 38px;
    }
    .user_mian .fl a{
        display: none;
    }
    .qr_code{
        display: block !important;
        position: static !important;
    }
    .mobile-contanct{
        display: block;
        text-align: center;
        margin-top: 40px;
    }
    .mobile-contanct img{
        width: 200px;
        height: 200px;
    }
    .mobile-contanct>p{
        font-size: 24px !important;
        margin-top: 20px !important;
        color: rgb(2, 170, 53) !important;
    }
    .yun_mian{
        width: 100%;
        padding: 20px;
    }
    .yun_mian img{
        max-width: 100%;
    }
    .yun1{
        left: 50%;
        transform: translateX(-50%) scale(0.5);;
        top: 50px;
    }
    .yun2{
        right:0;
        transform: translateX(20%) translateY(-50%) scale(0.5);
        top: 50%;
    }
    .yun3{
        left:0;
        transform: translateX(-20%) translateY(-50%) scale(0.5);
        top: 50%;
    }
    .partner .top p{
        padding: 20px;
    }
    .partner .wy_box01{
        width: 100%;
        padding: 20px 40px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .partner .wy_box01 img{
        border: 1px solid #cfcfcf;
        margin-right: 0 !important;
    }

}