﻿.ying { position: absolute; left: 0px; top: 0px; width: 0px; height: 0px; overflow: hidden; border: 0px; filter: Alpha(Opacity=0); opacity: 0; -moz-opacity: 0; }
.tm { filter: Alpha(Opacity=0); opacity: 0; -moz-opacity: 0; }
.code_hui { border: 1px solid #ccc; color: #ccc; }

.loading {
  border: 2px solid #f3f3f3; /* 设置边框样式 */
  border-top: 2px solid #3498db; /* 设置顶部边框样式 */
  border-radius: 50%; /* 设置边框圆角 */
  width: 30px; /* 设置宽度 */
  height: 30px; /* 设置高度 */
  animation: spin 1s infinite linear; /* 设置动画效果 */
  margin: 0 auto; /* 设置居中 */
  position:fixed;
  top:50%;
  left:0px;
  right:0px;
  z-index:9999;
}

@keyframes spin {
  0% {
    transform: rotate(0deg); /* 设置起始角度为0度 */
  }
  100% {
    transform: rotate(360deg); /* 设置结束角度为360度 */
  }
}

.dis { display:none;}