*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .round img{
    width: 110px!important;
  }
  .pc-text{
    padding-top: 30px!important;
  }
  .dataH5{
    height: 30px!important;
  }
  .secs{
    width: 100px!important;
    margin-top: 10px!important;
  }
}
.loading{
  animation: rotate 1s linear infinite;
}
@keyframes rotate {
  0%{-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25%{-webkit-transform:rotate(90deg);transform:rotate(90deg);}
  50%{-webkit-transform:rotate(180deg);transform:rotate(180deg);}
  75%{-webkit-transform:rotate(270deg);transform:rotate(270deg);}
  100%{-webkit-transform:rotate(360deg);transform:rotate(360deg);}
}
.model-content{
  background: #FFFFFF;
  box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.2);
  border-radius: 20px;
  width: 420px;
  position: relative;
}
.pc-address{
  background: #FFFFFF;
  border-radius: 5px;
  border: 1px solid #FA4335;
  font-size: 20px;
  padding: 10px 0;
  color: #FA4335;
  margin: 15px 26px;
}
.relative{
  position: relative;
}

.flex-space-between {
  display: -webkit-flex; /* Safari */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@-webkit-keyframes scaledh{
  0%{ opacity: 0.8; -webkit-transform: scale(1);}
  50%{ opacity: 1; -webkit-transform: scale(1.05);}
  100%{ opacity: 0.8; -webkit-transform: scale(1);}
}
@keyframes scaledh{
  0%{ opacity: 0.8; transform: scale(1);}
  50%{ opacity: 1; transform: scale(1.05);}
  100%{ opacity: 0.8; transform: scale(1);}
}
.plr-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.flex-start {
  display: -webkit-flex; /* Safari */
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.flex-end {
  display: -webkit-flex; /* Safari */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.text-center{
  text-align: center;
}
.flex-1{
  flex: 1;
}
.flex-3{
  flex: 3;
}
body {
  margin: 0;
  padding: 0;
  background: #E6EAEB;
  font-family: Arial, 'Microsoft YaHei', 'PingFang SC', sans-serif;
}
.round{
  /*padding-top: 4px;*/
  text-align: center;
  background: #fff;
  border-radius: 50%;
  height: 120px;
  width: 120px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: absolute;
  top: -60px;
  left: calc(50% - 60px);
}
.alert-box {
  /*display: none;*/
  position: relative;
  height: 120px;
  width: 120px;
}
.alert-box p {
  margin: 0;
}
.alert-circle {
}
.alert-sec-circle {
  stroke-dashoffset: 0;
  stroke-dasharray: 735;
  transition: stroke-dashoffset 1s linear;
}
.alert-sec-text {
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  color: #3A6692;
  font-size: 68px;
  font-weight: 600;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
.btn{
  background: rgba(58, 102, 146, .5);
  border-radius: 5px;
  width: 300px;
  margin: 0px auto;
  text-align: center;
  font-size: 22px;
  color: #fff;
  padding: 12px 0;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.ellipsis{
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
a, a:hover, a:active, a:visited, a:focus {
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* 透明化点击高亮 */
}