*{
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}
html{
  font-size: calc(100vw / 1920);
  margin: 0;
  padding: 0;
}
 body, h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.wait {
  font-weight: bold;
  margin-top: 100px;
  text-align: center;
  font-size: 18px;
  color: #cccccc;
}

.error {
  font-weight: normal;
  text-align: left;
  padding: 10px;
  font-size: 14px;
  color: red;
}

/*******设置页样式********/
.set-wrap {
  padding: 20px;
}

.set-wrap .row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.set-wrap .row .tip {
  color: red;
  font-size: 14px;
}

.set-wrap .row label {
  float: left;
  border: 1px solid #ffffff;
  height: 25px;
  line-height: 25px;
  font-size: 14px;
  padding: 0;
  margin: 0;
}

.set-wrap .row input {
  float: left;
  border: 1px solid #dddddd;
  width: 400px;
  height: 25px;
  text-indent: 5px;
  line-height: 25px;
  font-size: 14px;
  padding: 0;
  margin: 0;
}

.set-wrap .row button {
  cursor: pointer;
  border: none;
  float: left;
  width: 80px;
  height: 27px;
  line-height: 27px;
  font-size: 14px;
  background: #00a0e9;
  color: #ffffff;
  padding: 0;
  margin-left: 10px;
  font-size: 14px;
}
/*******错误页样式********/
.error-wrap{
  width: 600px;
  margin: 100px auto;
  border: 1px solid #dddddd;
  box-shadow: 5px 5px 10px #cccccc;
  overflow: hidden;
}
.error-wrap img{
  margin: 40px;
  float: left;
}
.error-wrap .msg-wrap{
  width: 300px;
  color: red;
  float: left;
}
.error-wrap .msg-wrap h1{
  margin-top: 60px;
  font-size: 18px;
}
.error-wrap .content{
  float: left;
  width: 100%;
  font-size: 12px;
  margin-top: 10px;
  line-height: 18px;
}
.error-wrap .msg-wrap .h2{
  display: block;
  font-size: 12px;
}


/*******正在加载动画样式*********/
#loading-mask {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  user-select: none;
  z-index: 9999;
  overflow: hidden
}

.loading-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%)
}

.loading-dot {
  animation: antRotate 1.2s infinite linear;
  transform: rotate(45deg);
  position: relative;
  display: inline-block;
  font-size: 64px;
  width: 64px;
  height: 64px;
  box-sizing: border-box
}

.loading-dot i {
  width: 22px;
  height: 22px;
  position: absolute;
  display: block;
  background-color: #1890ff;
  border-radius: 100%;
  transform: scale(.75);
  transform-origin: 50% 50%;
  opacity: .3;
  animation: antSpinMove 1s infinite linear alternate
}

.loading-dot i:nth-child(1) {
  top: 0;
  left: 0
}

.loading-dot i:nth-child(2) {
  top: 0;
  right: 0;
  -webkit-animation-delay: .4s;
  animation-delay: .4s
}

.loading-dot i:nth-child(3) {
  right: 0;
  bottom: 0;
  -webkit-animation-delay: .8s;
  animation-delay: .8s
}

.loading-dot i:nth-child(4) {
  bottom: 0;
  left: 0;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s
}

@keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg)
  }
}

@-webkit-keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg)
  }
}

@keyframes antSpinMove {
  to {
    opacity: 1
  }
}

@-webkit-keyframes antSpinMove {
  to {
    opacity: 1
  }
}