.page_change_aniamtion_container{width: 100%;height:100%;display: none;}
.page_change_aniamtion_box{
    width: 2.5rem;height:100%;margin: 2rem auto;position: relative;
    display: flex;flex-direction: row;justify-content: center;
}
.page_change_animation_dot{
    width: 0.3rem;height: 0.3rem;border-radius: 50%;background-color:#3ca5ea;z-index: 9;
}
.page_change_animation_wave{
    background-color: transparent;height: 100%;width: 100%;border-radius: 50%;border:0.03rem solid #66A8CC;
    transform-origin: center;
    animation: page_change_wave 1.2s cubic-bezier(0,.69,.39,1) 0.3s infinite;;
    -webkit-animation: page_change_wave 1.2s cubic-bezier(0,.69,.39,1) 0.3s infinite;
}
@keyframes page_change_wave {
    0%{transform: scale(0);opacity: 1;}
    100%{transform: scale(6);opacity: 0;}
}
.page_chage_no_result{display: none;width:100%;margin-top: 0.4rem;}
.page_chage_no_result > h6{font-size: 0.34rem;font-weight: normal;text-align: center;height: 2rem;line-height: 2rem;}