html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
blockquote,
pre,
form,
fieldset,
table,
th,
td,
span,
input,
textarea {
  margin: 0;
  padding: 0;
  outline: none;
}

li, ol {
  list-style: none;
}

i, em {
  font-style: normal;
}

a {
  text-decoration: none;
}
a:link,a:visited{
    color: #0c1d3a;
}

input, textarea {
  -webkit-appearance: none;
}

img {
  overflow: hidden;
  display: block;
  border: 0;
}

@font-face {
  font-family: 'Nunito';
  src: url("./fonts/UniNeue-Regular.ttf");
  font-weight: 300;
  }
@font-face {
  font-family: 'Nunito';
  src: url("./fonts/UniNeue-Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: 'Nunito';
  src: url("./fonts/UniNeue-Heavy.ttf");
  font-weight: 900;
}

html {
  font-size: 50px;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  background: #fff;
  height: 100%;
}

::-webkit-input-placeholder { /* Edge */
    color: #ced3db;
  }
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ced3db;
  }
  
  ::placeholder {
    color: #ced3db;
  }

/*清除浮动*/
.clearfix {
  *zoom: 1;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

body {
  background: #fff;
  margin: 0;
  padding: 0;
  font-family: "Nunito","PingFang SC", "Hiragino Sans GB", arial,  sans-serif;
  color: #0c1d3a;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.dark{
    color: #ced3db;
    background-color: #1a222f;
}

/*toast*/
.jq-toast-single,.jq-has-icon{
    box-sizing: border-box;
    padding: .3rem !important;
    font-size: .28rem !important;
}
.jq-toast-wrap{
    width: auto !important;
}

.float-download-box{display: none;}


/*mobile*/
@media screen and (max-width: 1024px) {

  .loading-box{
    min-height: 200px;
    text-align: center;
    padding: 30px 0;
    color: #ccc;
    font-size: .24rem;
    margin: 0 auto;
    p{
      color: #ccc;
    }
  }
  .loading-box .icon{
    display: block;
    margin: 0 auto;
    width: 48px;
    height: 48px;
    background:url(../../static/icons/loading.gif) no-repeat center;
    background-size: 100%;
  }
  .loading-empty .icon{
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    background:url(../../static/icons/no-data.png) no-repeat center;
    background-size: 100%;
  }
  .loading-empty-dark .icon{
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    background:url(../../static/icons/no-data_dark.png) no-repeat center;
    background-size: 100%;
  }

  .load-icon{
      width: .5rem;
      height: .5rem;
      display: block;
      margin: .1rem auto;
      animation: loading 1s linear infinite;
      background: url('../../static/common/loading_dark.png') center /80% no-repeat;
  }
  @keyframes loading {
    0% {
      /*rotate(2D旋转) scale(放大或者缩小) translate(移动) skew(翻转)*/
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  /*下载box*/
  .float-download-box{
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: .28rem;
    padding: .2rem .3rem;
    background-color: rgba(0,0,0,.6);
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 2;
  }
  .float-download-box .logo{
    width: .8rem;
    height: .8rem;
    background:url(../../static/logo.png) no-repeat center;
    background-size: cover;
    border-radius: .2rem;
  }
  .float-download-box .info{
    flex: 3;
    margin: 0 .3rem;
    font-size: .24rem;
  }
  .float-download-box .info .title{
    font-size: .32rem;
    font-weight: bold;
  }
  .float-download-box .downloadBtn{
    flex: 1;
    text-align: center;
    width: auto;
    padding: .2rem .3rem;
    border-radius: .3rem;
    background-color: #26bf8c;
  }
    
}