#declare_container {
  position: fixed;
  z-index: 99999;
  top: 50%;
  left: 50%;
  /* width: 480px; */
  transform: translate(-50%, -50%);
  word-break: break-all;
}

#declare_container .declare-message {
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 18px;
  opacity: 0;
}

#declare_container .declare-message span {
  display: inline-block;
  word-break: keep-all;
  background: rgba(18, 26, 44, 0.9);
  border-radius: 3px;
  font-size: 18px;
  font-family: SourceHanSansCN-Normal;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  line-height: 27px;
  text-align: center;
  padding: 28px 40px;
}

#wait_container.wait-container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#wait_container.wait-container .waiting {
  width: 256px;
  height: 130px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
}
#wait_container.wait-container .waiting .waiting-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#wait_container.wait-container .waiting .waiting-content .txt {
  height: 40px;
  font-size: 28px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  line-height: 40px;
  margin-bottom: 20px;
}
#wait_container.wait-container .waiting .waiting-content .circle span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(216, 216, 216, 0.5);
  transition: all .2s;
  margin: 0 8px;
}
#wait_container.wait-container .waiting .waiting-content .circle span:nth-child(1) {
  animation: dot1 3s infinite;
  -webkit-animation: dot1 3s infinite; /* Safari 和 Chrome */
}
#wait_container.wait-container .waiting .waiting-content .circle span:nth-child(2) {
  animation: dot2 3s infinite;
  -webkit-animation: dot2 3s infinite; /* Safari 和 Chrome */
}
#wait_container.wait-container .waiting .waiting-content .circle span:nth-child(3) {
  animation: dot3 3s infinite;
  -webkit-animation: dot3 3s infinite; /* Safari 和 Chrome */
}
@keyframes dot1 
{
  0% { background:rgba(255,255,255,1); }
  33% { background: rgba(216, 216, 216, 0.5); }
  66% { background: rgba(216, 216, 216, 0.5); }
  100% { background:rgba(255,255,255,1); }
}
@-moz-keyframes dot1 /* Firefox */
{
  0% { background:rgba(255,255,255,1); }
  33% { background: rgba(216, 216, 216, 0.5); }
  66% { background: rgba(216, 216, 216, 0.5); }
  100% { background:rgba(255,255,255,1); }
}

@-webkit-keyframes dot1 /* Safari 和 Chrome */
{
  0% { background:rgba(255,255,255,1); }
  33% { background: rgba(216, 216, 216, 0.5); }
  66% { background: rgba(216, 216, 216, 0.5); }
  100% { background:rgba(255,255,255,1); }
}

@-o-keyframes dot1 /* Opera */
{
  0% { background:rgba(255,255,255,1); }
  33% { background: rgba(216, 216, 216, 0.5); }
  66% { background: rgba(216, 216, 216, 0.5); }
  100% { background:rgba(255,255,255,1); }
}


@keyframes dot2 
{
  0% { background:rgba(216, 216, 216, 0.5); }
  33% { background: rgba(255,255,255,1); }
  66% { background: rgba(216, 216, 216, 0.5); }
  100% { background:rgba(216, 216, 216, 0.5); }
}
@-moz-keyframes dot2 /* Firefox */
{
  0% { background:rgba(216, 216, 216, 0.5); }
  33% { background: rgba(255,255,255,1); }
  66% { background: rgba(216, 216, 216, 0.5); }
  100% { background:rgba(216, 216, 216, 0.5); }
}
@-webkit-keyframes dot2 /* Safari 和 Chrome */
{
  0% { background:rgba(216, 216, 216, 0.5); }
  33% { background: rgba(255,255,255,1); }
  66% { background: rgba(216, 216, 216, 0.5); }
  100% { background:rgba(216, 216, 216, 0.5); }
}
@-o-keyframes dot2 /* Opera */
{
  0% { background:rgba(216, 216, 216, 0.5); }
  33% { background: rgba(255,255,255,1); }
  66% { background: rgba(216, 216, 216, 0.5); }
  100% { background:rgba(216, 216, 216, 0.5); }
}

@keyframes dot3 
{
  0% { background:rgba(216, 216, 216, 0.5); }
  33% { background: rgba(216, 216, 216, 0.5); }
  66% { background: rgba(255,255,255,1); }
  100% { background:rgba(216, 216, 216, 0.5); }
}
@-moz-keyframes dot3 /* Firefox */
{
  0% { background:rgba(216, 216, 216, 0.5); }
  33% { background: rgba(216, 216, 216, 0.5); }
  66% { background: rgba(255,255,255,1); }
  100% { background:rgba(216, 216, 216, 0.5); }
}
@-webkit-keyframes dot3 /* Safari 和 Chrome */
{
  0% { background:rgba(216, 216, 216, 0.5); }
  33% { background: rgba(216, 216, 216, 0.5); }
  66% { background: rgba(255,255,255,1); }
  100% { background:rgba(216, 216, 216, 0.5); }
}
@-o-keyframes dot3 /* Opera */
{
  0% { background:rgba(216, 216, 216, 0.5); }
  33% { background: rgba(216, 216, 216, 0.5); }
  66% { background: rgba(255,255,255,1); }
  100% { background:rgba(216, 216, 216, 0.5); }
}