/** 提示层**/
.top_tipss_bigbox{
    height:50px;
    width: 100%;
     
     display:none;
     position: fixed;
     top:0;
     left:0;
     z-index: 99999999;
      top:7vh;
      text-align: center;
}
.top_tipss{
      background-color:#ff5555;
    display: inline-block;
     padding-left: 15px;
     padding-right: 15px; 
     color: #fff;
     height: 38px;
     line-height: 38px;
     text-align: center;
     font-size:15px;
     border-radius: 5px;
    /* margin: 0 auto;*/
    
}
.top_tipss_zoomIn{
             
            -webkit-animation-name: zoomIn;
            animation-name: zoomIn;
            -webkit-animation-duration: 0.3s;
            animation-duration: 0.3s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;

}
@-webkit-keyframes zoomIn {
            from {
                opacity: 0;
                -webkit-transform: scale3d(0.3, 0.3, 0.3);
                transform: scale3d(0.3, 0.3, 0.3);
            }

            50% {
                opacity: 1;
            }
}
@keyframes zoomIn {
            from {
                opacity: 0;
                -webkit-transform: scale3d(0.3, 0.3, 0.3);
                transform: scale3d(0.3, 0.3, 0.3);
            }

            50% {
                opacity: 1;
            }
}
/** 提示层 end**/