/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 2.66667rem;
  height: 100%;
  box-shadow: 0 0 0.26667rem #29d, 0 0 0.13333rem #29d;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -0.10667rem);
      -ms-transform: rotate(3deg) translate(0px, -0.10667rem);
          transform: rotate(3deg) translate(0px, -0.10667rem);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 0.4rem;
  right: 0.4rem;
}

#nprogress .spinner-icon {
  width: 0.48rem;
  height: 0.48rem;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


html,body,ul,li,ol,dl,dd,dt,p,h1,h2,h3,h4,h5,h6,form,fieldset,legend,img {
    padding: 0;
    margin: 0;
    list-style: none;
}
a:link, a:hover {
    text-decoration: none;
}
a {
    color: #666;
}
img, input {
    border: 0 none;
    outline-style: none;
    padding: 0;
    vertical-align: middle;
}
.cleafix::after {
    content: "";
    height: 0;
    line-height: 0;
    display: block;
    clear: both;
    visibility: hidden;
}
.cleafix {
    zoom: 1;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.w {
    width: 32rem;
    margin: 0 auto;
}
.display-flex {
    display: flex;
}
.display-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
* {
    box-sizing: border-box;
}
.h{
    cursor: pointer;
}
html,body {
    height: 100%;
}

#app {
    width: 100%;
    height: 100%;
}

