
    .loading-container{display:flex;justify-content:center;align-items:center;text-align:center;flex-direction:column;padding:20px 0}
    .global_loading .circle{position:relative;width:120px;height:120px;border-radius:50%;border:3px solid #eee;box-sizing:border-box;animation:breathe 2s cubic-bezier(0.7,0,0.3,1) infinite}
    .global_loading .icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}
    .global_loading .icon img{width:40px;height:40px}
    .global_loading .loading-text{margin-top:15px;font-size:16px;color:#666}
    @keyframes rotate{0%{transform:rotate(0deg)}
        100%{transform:rotate(360deg)}
    }.global_loading .circle::before{content:'';position:absolute;top:-3px;left:-3px;width:100%;height:100%;border-radius:50%;border:3px solid transparent;border-top-color:#1b6aff;animation:spin 2s linear infinite}
    @keyframes spin{from{transform:rotate(0deg)}
        to{transform:rotate(360deg)}
    }@keyframes breathe{0%,100%{transform:scale(1)}
         50%{transform:scale(1.1)}
     }
