@charset "UTF-8";

html {
  font-size: 13.86667px;
  height: 100%;
}

body {
  margin: 0;
  height: 100%;
  /* -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); */
}

#app {
  width: 100%;
  /* height:500px; */
  height: 100%;
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {
  html {
    font-size: 17.33333px;
  }
}

@media screen and (min-width: 1281px) and (max-width: 1366px) {
  html {
    font-size: 18.49792px;
  }
}

@media screen and (min-width: 1367px) and (max-width: 1440px) {
  html {
    font-size: 19.5px;
  }
}

@media screen and (min-width: 1441px) and (max-width: 1600px) {
  html {
    font-size: 21.66667px;
  }
}

@media screen and (min-width: 1601px) and (max-width: 1680px) {
  html {
    font-size: 22.75px;
  }
}

@media screen and (min-width: 1681px) {
  html {
    font-size: 26px;
  }
}

.csg-header {
  width: 100%;
  box-sizing: border-box;
  height: 3.07692rem;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  margin-bottom: 10px;
}

.csg-header .csg-header-logo {
  width: 9.69231rem;
  height: 1.46154rem;
  position: absolute;
  left: 0px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  margin-left: 4.07692rem;
  cursor: pointer;
}

.cont {
  width: 100%;
  /* height:500px; */
  height: calc(100% - 90px);
  background-color: hsla(0, 0%, 100%, .9);
  transition: opacity .3s;
  /* background:#fff; */
  position: relative;
}
.csg-loading-spinner{
  top: 50%;
/* margin-top: -21px; */
width: 100%;
text-align: center;
position: absolute;
}
.circular {
  height: 42px;
  width: 42px;
  position: absolute;
  left: 0px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  animation: loading-rotate 2s linear infinite;
}

.path {
  animation: loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #409eff;
  stroke-linecap: round;
}

@keyframes loading-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}
