/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

/* @media screen and (max-width: 390px) {

    body {
        transform: scale(0.2);
        transform-origin: top left;
    }
}

@media screen and (min-width: 391) and (max-width: 840) {

    body {
        transform: scale(0.4);
        transform-origin: top left;
    }
}

@media screen and (min-width: 840px) and (max-width: 1919px) {

    body {
        transform: scale(0.6);
        transform-origin: top left;
    }
}

@media screen and (min-width: 1920px){

    body {
        width: 100%!important;
        transform: none;
    }
} */

/* body{
    width: 2560px;
    transform-origin: top left;
} */

#alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  /* color: white; */
  padding: 10px;
  border: 1px solid #81c1cb;
  height: 200px;
  width: 400px;
  /* box-shadow: 0px 0px 10px #e5cd8a; */
}

#alert .alertInfo {
  display: flex;
  align-items: center;
  height: 150px;
}

#alert .alertInfo > img {
  width: 40px;
}

#alert .alertInfo .innerTxt {
  color: #e3e3e3;
  margin-left: 30px;
  font-size: 14px;
  width: 330px;
}

#shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

#shadow #alert .alertBtn {
  width: 400px;
  justify-content: space-around;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 20px;
}

#shadow #alert .alertBtn > button {
  border: none;
  color: #e5cd8a;
  width: 100px;
  height: 30px;
  background: none;
  font-weight: bold;
  font-size: 13px;
  transition: all 0.3s;
  cursor: pointer;
}

#shadow #alert .alertBtn > button:hover {
  font-size: 15px;
}

.optionCard .showMode_chart {
  display: flex;
  align-items: center;
  position: absolute;
  right: 150px;
}

.optionCard {
  position: relative;
  width: 100%;
  margin: 20px 0;
  display: flex;
  align-items: center;
  height: 20px;
}

.optionCard .showMode_chart > a > svg {
  padding: 3px;
  transition: all 0.3s;
}

.optionCard .showMode_chart .aActive {
  cursor: pointer;
}

.chartsNail {
  width: 48% !important;
}

.chartsList {
  width: 95% !important;
}

.chartBox .chartBox_top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chartBox_top > text {
  color: #e5cd8a;
  font-weight: bold;
  font-size: 14px;
  margin-right: 10px;
}

.chartBox_top > select {
  background-color: black;
  color: white;
  width: 70px;
}

.chartBox_top > select option {
  color: white;
  border-radius: 0 !important;
}

.intervalMode_chart > select {
  background-color: black;
  color: white;
  width: 150px;
}

.intervalMode_chart > select option {
  color: white;
  border-radius: 0 !important;
}

.intervalMode_chart {
  position: absolute;
  right: 300px;
  color: #e5cd8a;
}

/* loading动画 */
@-webkit-keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px);
  }

  66% {
    -webkit-transform: translate(50px, 0px);
    transform: translate(50px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px);
  }

  66% {
    -webkit-transform: translate(50px, 0px);
    transform: translate(50px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@-webkit-keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px);
  }

  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px);
  }

  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@-webkit-keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px);
  }

  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px);
  }

  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

.ball-triangle-path {
  position: relative;
  -webkit-transform: translate(-25px, -25px);
  -ms-transform: translate(-25px, -25px);
  transform: translate(-25px, -25px);
}

.ball-triangle-path > div:nth-child(1) {
  -webkit-animation-name: ball-triangle-path-1;
  animation-name: ball-triangle-path-1;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.ball-triangle-path > div:nth-child(2) {
  -webkit-animation-name: ball-triangle-path-2;
  animation-name: ball-triangle-path-2;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.ball-triangle-path > div:nth-child(3) {
  -webkit-animation-name: ball-triangle-path-3;
  animation-name: ball-triangle-path-3;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.ball-triangle-path > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  border: 1px solid #fff;
  background-color: rgb(121, 202, 242);
}

.ball-triangle-path > div:nth-of-type(1) {
  top: 50px;
}

.ball-triangle-path > div:nth-of-type(2) {
  left: 25px;
}

.ball-triangle-path > div:nth-of-type(3) {
  top: 50px;
  left: 50px;
}

.loader > text {
  color: #e5cd8a;
  font-size: 20px;
  margin-left: 60px;
}

.loader {
  box-sizing: border-box;
  display: flex;
  transform: translateY(-50%);
  position: absolute;
  right: 50%;
  top: 50%;
}

.loaderParent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#shadowMask {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 990;
}

#maskContainer {
  position: absolute;
  width: 300px;
  height: 186px;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(121, 202, 242);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#maskContainer > .msgTitle {
  color: #e5cd8a;
  font-weight: bold;
  font-size: 14px;
  padding: 5px;
  border-bottom: 1px solid #7777;
}

#maskContainer text {
  color: #eeeeee;
  font-size: 12px;
  margin: 15px;
}

#maskContainer .confirmBtn {
  width: 50px;
  background: none;
  border: 1px solid #e5cd8a;
  color: #e5cd8a;
  border-radius: 3px;
  margin-right: 10%;
  cursor: pointer;
}

#maskContainer .alertBtn {
  position: absolute;
  bottom: 10%;
  width: 95%;
  right: 1%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav_iframe {
  border: none;
  width: 100%;
}

body {
  font-size: 10px;
  min-width: 1920px;
}

.mainContainer {
  height: calc(100vh - 80px) !important;
  padding-bottom: 0 !important;
}
