*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
}

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

@media screen and (min-width: 375px) {
  html {
    /* iPhone6的375px尺寸作为16px基准，414px正好18px大小, 600 20px */
    font-size: calc(100% + 2 * (100vw - 375px) / 39);
    font-size: calc(16px + 2 * (100vw - 375px) / 39);
  }
}

@media screen and (min-width: 414px) {
  html {
    /* 414px-1000px每100像素宽字体增加1px(18px-22px) */
    font-size: calc(112.5% + 4 * (100vw - 414px) / 586);
    font-size: calc(18px + 4 * (100vw - 414px) / 586);
  }
}

@media screen and (min-width: 600px) {
  html {
    /* 600px-1000px每100像素宽字体增加1px(20px-24px) */
    font-size: calc(125% + 4 * (100vw - 600px) / 400);
    font-size: calc(20px + 4 * (100vw - 600px) / 400);
  }
}

@media screen and (min-width: 1000px) {
  html {
    /* 1000px往后是每100像素0.5px增加,最小字体时100vw对应1000px,1920--27.52*/
    font-size: calc(137.5% + 6 * (100vw - 1000px) / 1000);
    font-size: calc(22px + 6 * (100vw - 1000px) / 1000);
  }
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serifHelvetica, Arial, sans-serif, apple color emoji, segoe ui emoji,
    segoe ui symbol;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
}
.container {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.topArea {
  height: 3rem;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  z-index: 9;
  overflow: hidden;
  background-color: #333333;
}

.userArea {
  height: 3rem;
  width: 3rem;
  background-color: #242424;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.userIcon {
  width: 2rem;
  height: auto;
  position: relative;
  display: block;
}
.userIcon:hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(42, 42, 42, 1)),
    to(rgba(70, 70, 70, 1))
  );
  background: linear-gradient(180deg, rgba(42, 42, 42, 1), rgba(70, 70, 70, 1));
}
.userIcon:active {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgb(83, 83, 83)),
    to(rgb(116, 113, 113))
  );
  background: linear-gradient(180deg, rgb(83, 83, 83), rgb(116, 113, 113));
}
.chartBtnArea {
  height: 100%;
  width: 12.5rem;
  background-color: #333333;
  display: block;
  position: absolute;
  left: 3rem;
  top: 0;
}

.chartBtnArea_top {
  width: 100%;
  height: 1.1rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.15rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  opacity: 1;
  background: linear-gradient(
    86deg,
    rgba(105, 105, 105, 0.7) 0%,
    rgba(53, 53, 53, 1) 100%
  );
  position: absolute;
  top: 0;
}

.chartBtnArea_top > p {
  position: relative;
}

.showChartIcon {
  position: absolute;
  left: 0.5rem;
  bottom: 0.2rem;
  width: 0.7rem;
  height: 0.7rem;
  cursor: pointer;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(42, 42, 42, 1)),
    to(rgba(70, 70, 70, 1))
  );
  background: linear-gradient(
    180deg,
    rgba(42, 42, 42, 1) 0%,
    rgba(70, 70, 70, 1) 100%
  );
  opacity: 1;
}

.showChartIcon:hover {
  opacity: 0.8;
}

.chartBtnArea_bottom {
  width: 100%;
  height: calc(100% - 1.1rem);
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.chartBtnArea_bottom_ {
  height: 1.2rem;
  width: 3rem;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(42, 42, 42, 1)),
    to(rgba(70, 70, 70, 1))
  );
  background: linear-gradient(
    180deg,
    rgba(42, 42, 42, 1) 0%,
    rgba(70, 70, 70, 1) 100%
  );
  opacity: 1;
  border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.chartBtnArea_bottom_right {
  margin-left: 0.5rem;
}
.chartBtnArea_bottom_write {
  margin-left: 0.5rem;
}

.chartBtnArea_bottom_ .Icon {
  height: 0.7rem;
  width: 0.7rem;
  position: relative;
  margin-top: 0.2rem;
}

.chartBtnArea_bottom_ p {
  font-size: 0.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  position: relative;
  margin: 0 0 0 0.2rem;
}

.chartBtnArea_bottom_right:hover,
.chartBtnArea_bottom_left:hover,
.chartBtnArea_bottom_write:hover {
  opacity: 0.85;
  cursor: pointer;
}
.chartBtnArea_bottom_right:active,
.chartBtnArea_bottom_left:active,
.chartBtnArea_bottom_write:active {
  opacity: 1;
  cursor: pointer;
}

.slideableIconArea {
  background: #333333;
  height: 3rem;
  width: calc(100% - 28rem);
  position: absolute;
  left: 4rem;
  top: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
  cursor: pointer;
  overflow-x: auto;
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none !important;
  /* Firefox 64 */
}

.slideableIconArea .scroll-y {
  display: none !important;
}

.cardContainer {
  height: 2.1rem;
  width: 2rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  margin-left: 0.5rem;
  margin-top: 0.4rem;
  position: relative;
  flex-shrink: 0;
}

.cardContainer p {
  font-size: 0.45rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  opacity: 1;
  position: relative;
  margin-top: 1.6rem;
  min-width: 1rem;
}

.iconContainer {
  height: 1.45rem;
  width: 1.45rem;
  border: 1px solid rgba(17, 109, 171, 1);
  position: absolute;
  display: inline-block;
  background: #001620;
  opacity: 1;
  border-radius: 6px;
}

.slideIcon {
  height: 0.9rem;
  width: 0.9rem;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
/* .slideIcon {
  height: 0.9rem;
  width: 0.9rem;
  margin: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
} */

.searchArea {
  background: #333333;
  height: 100%;
  width: 12rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 5px 0px 6px rgba(21, 30, 32, 0.6);
  position: absolute;
  right: 0;
  z-index: 999;
}

input[type="search"] {
  width: 7rem;
  padding: 0.2rem;
  position: relative;
  margin: 0.5rem 1rem 0.5rem 0;
  border: none;
  background-color: transparent;
  border-bottom: 1.5px solid #888888;
  font-size: 0, 75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
}

.searchIconContainer {
  position: relative;
  height: 100%;
  width: auto;
}

.searchIcon {
  width: 1.5rem;
  height: 1.5rem;
}

.navArea {
  height: calc(100% - 3rem);
  width: 3rem;
  position: fixed;
  top: 3rem;
  left: 0;
  background: rgba(36, 36, 36, 1);
  box-shadow: 5px 0px 6px rgba(0, 0, 0, 0.16);
  opacity: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  z-index: 9;
}

.navBtn {
  width: 1.8rem;
  height: 1.8rem;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(42, 42, 42, 1)),
    to(rgba(70, 70, 70, 1))
  );
  background: linear-gradient(180deg, rgba(42, 42, 42, 1), rgba(70, 70, 70, 1));
  position: relative;
  margin-top: 1rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.navBtn:hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgb(82, 81, 81)),
    to(rgb(126, 125, 125))
  );
  background: linear-gradient(180deg, rgb(82, 81, 81), rgb(126, 125, 125));
}

.navBtn .tooltiptext {
  visibility: hidden;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  color: #000;
  text-align: center;
  border-radius: 6px;
  font-size: 12px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 110%;
}

.navBtn .tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent rgba(255, 255, 255, 1) transparent transparent;
}

.navBtn:hover .tooltiptext {
  visibility: visible;
}

.userArea .tooltiptext {
  visibility: hidden;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  color: #000;
  text-align: center;
  border-radius: 6px;
  font-size: 12px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 110%;
}

.userArea .tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent rgba(255, 255, 255, 1) transparent transparent;
}

.userArea:hover .tooltiptext {
  visibility: visible;
}

.navIcon {
  width: 1.8rem;
  height: 1.8rem;
}

.globalDoc {
  width: 1rem;
  height: 1rem;
  position: relative;
}

.fullScreen {
  width: 1rem;
  height: 1rem;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.help {
  width: 1.8rem;
  height: 1.8rem;
  font-size: 1.5rem;
  color: rgb(184, 181, 181);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 0;
}
.help:hover {
  color: white;
}

.help:active {
  color: white;
}

.userInfoArea {
  width: 6rem;
  height: 9rem;
  position: absolute;
  top: 4rem;
  left: 4.5rem;
  background: rgba(36, 36, 36, 0.8);
  z-index: 999;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15rem;
  color: whitesmoke;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.userInfo {
  height: 20%;
  width: 100%;
  position: relative;
  background-color: #242424;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  border-bottom: 0.05rem solid rgb(167, 164, 164);
  opacity: 0.9;
}

.userInfo:last-child {
  border: none;
  letter-spacing: 0.1rem;
}

.userInfo:hover {
  opacity: 1;
  font-size: 0.65rem;
  color: white;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgb(82, 81, 81)),
    to(rgb(126, 125, 125))
  );
  background: linear-gradient(180deg, rgb(82, 81, 81), rgb(126, 125, 125));
}

.userInfo:active {
  opacity: 1;
  font-size: 0.65rem;
  color: white;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgb(82, 81, 81)),
    to(rgb(126, 125, 125))
  );
  background: linear-gradient(180deg, rgb(82, 81, 81), rgb(126, 125, 125));
}

.helpInfoArea {
  width: 8rem;
  height: 9rem;
  position: absolute;
  top: 4rem;
  left: 10.6rem;
  background: rgba(36, 36, 36, 0.8);
  z-index: 999;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: whitesmoke;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  z-index: 999;
}

.helpInfo {
  height: 20%;
  width: 100%;
  position: relative;
  background-color: #242424;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  border-bottom: 0.05rem solid rgb(167, 164, 164);
  opacity: 0.9;
}

.helpInfo:last-child {
  border: none;
}

.helpInfo:hover {
  opacity: 1;
  font-size: 0.65rem;
  color: white;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgb(82, 81, 81)),
    to(rgb(126, 125, 125))
  );
  background: linear-gradient(180deg, rgb(82, 81, 81), rgb(126, 125, 125));
}

.helpInfo:active {
  opacity: 1;
  font-size: 0.65rem;
  color: white;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgb(82, 81, 81)),
    to(rgb(126, 125, 125))
  );
  background: linear-gradient(180deg, rgb(82, 81, 81), rgb(126, 125, 125));
}

.globalDocArea {
  height: calc(100vh - 5rem);
  width: 23rem;
  box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.15);
  z-index: 995;
  position: absolute;
  left: 3rem;
  top: 3rem;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
}

.glDc_topTitleArea {
  height: 1.923rem;
  width: 100%;
  background: rgba(238, 238, 238, 1);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  opacity: 1;
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.15rem;
  color: rgba(0, 0, 0, 1);
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
  text-indent: 1rem;
  z-index: 996;
}

.glDc_mainArea {
  height: calc(100% - 1.923rem);
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
  background: rgba(254, 255, 254, 1);
  overflow-y: auto;
}

.glDc_main_left_contentArea {
  height: auto;
  width: calc(100% - 5rem);
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.glDc {
  height: auto;
  width: calc(100% - 2rem);
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
  margin-left: 1rem;
  padding-right: 0.2rem;
  word-break: break-all;
  letter-spacing: 0.15rem;
  z-index: 9999;
}

.glDc_h1 {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 0.8rem;
  letter-spacing: 0.1rem;
  color: rgba(0, 0, 0, 1);
  opacity: 1;
  position: relative;
  margin-top: 1.15rem;
  margin-bottom: 0.6rem;
}

.glDc_h2 {
  font-size: 0.65rem;
  font-weight: 400;
  line-height: 0.7rem;
  letter-spacing: 0.1rem;
  color: rgba(0, 0, 0, 1);
  opacity: 1;
  position: relative;
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;
}

.glDc_c1 {
  font-size: 0.55rem;
  font-weight: 400;
  line-height: 0.7rem;
  letter-spacing: 0.07rem;
  color: rgba(0, 0, 0, 1);
  opacity: 1;
  position: relative;
  margin-top: 0.05rem;
}

.glDc_right_bookMarkArea {
  height: 100%;
  width: 5rem;
  border-left: 0.04rem solid rgba(232, 232, 232, 1);
  position: fixed;
  margin-left: 17.4rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  background-color: #fefffe;
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

.glDc_right_bookMarkArea::-webkit-scrollbar {
  width: 0;
}

.glDc_right_bookMarkArea ul {
  height: auto;
  width: 3.2rem;
  position: relative;
}

.glDc_right_bookMarkArea li {
  font-size: 0.55rem;
  font-weight: 400;
  line-height: 0.7rem;
  letter-spacing: 0.07rem;
  color: rgba(0, 0, 0, 1);
  opacity: 1;
  position: relative;
  margin-top: 0.7rem;
}

.glDc_right_bookMarkArea li a {
  text-decoration: none;
  color: rgba(0, 0, 0, 1);
}

.glDc_right_bookMarkArea li:hover {
  cursor: pointer;
  color: #50bcb0;
}

.glDc_right_bookMarkArea li:active {
  font-size: 0.58rem;
  font-weight: 400;
  color: #50bcb0;
}

.glDc_right_bookMarkArea li a:hover {
  font-weight: 400;
  color: #50bcb0;
}

.glDc_right_bookMarkArea li a:active {
  font-weight: 400;
  color: #50bcb0;
}

.contentArea {
  /*background-color: rgb(93, 95, 212);*/
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0rem;
  left: 0rem;
  display: block;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  z-index: -1;
}

.left_popUpArea {
  max-height: calc(100% - 5rem);
  width: 12.5rem;
  display: -webkit-box;
  display: flex;
  background-color: #333333;
  position: absolute;
  left: 3rem;
  top: 3rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
  cursor: pointer;
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none !important;
  /* Firefox 64 */
}

.left_popUpArea .scroll-x {
  display: none !important;
}

.addTableContainer {
  min-height: 8rem;
  width: 12rem;
  position: relative;
  display: inline-block;
  margin-left: 0.1rem;
  z-index:999;
}

.addTableContainer:not(:first-child) {
  margin-top: 0.05rem;
}

.addTableContainer:first-child {
  margin-top: 0.2rem;
}

.addTableContainer:last-child {
  margin-bottom: 0.2rem;
}

.addTableContainer_topArea {
  height: 1rem;
  width: 12rem;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(105, 105, 105, 1);
  opacity: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  z-index:999;
}

.showTableIcon {
  height: 0.8rem;
  width: 0.8rem;
  position: relative;
  margin-left: 0.1rem;
  margin-top: 0.1rem;
  cursor: pointer;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(42, 42, 42, 1)),
    to(rgba(70, 70, 70, 1))
  );
  background: linear-gradient(
    180deg,
    rgba(42, 42, 42, 1) 0%,
    rgba(70, 70, 70, 1) 100%
  );
  opacity: 1;
}

.addTableContainer_topArea p {
  margin-left: 0.5rem;
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  opacity: 1;
}

.amplificationIcon {
  height: 0.8rem;
  width: 0.8rem;
  position: absolute;
  right: 0.1rem;
  top: 0.1rem;
  cursor: pointer;
}

.amplificationIcon:hover,
.showTableIcon:hover {
  opacity: 0.75;
}

.addTableContainer_contentArea {
  width: 100%;
  height: 7rem;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  position: relative;
  display: inline-block;
  margin-top: 1rem;
}

textarea {
  font-size: 0.8rem;
  letter-spacing: 1px;
}
textarea {
  padding: 10px;
  line-height: 1.5;
  border: 1px solid #ccc;
  box-shadow: 1px 1px 1px #999;
}

#myImg {
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: absolute;
  /* Stay in place */
  left: 5%;
  top: 2%;
  width: 100%;
  /* Full width */
  height: 90%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  /* Fallback color */
  /* background-color: rgb(0,0,0); */
  /* Black w/ opacity */
  z-index: 998;
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 40%;
  max-width: 50%;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }

  to {
    -webkit-transform: scale(1);
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.close {
  display: none;
  position: absolute;
  height: auto;
  width: 1.6rem;
  top: -0.2rem;
  right: -0.8rem;
  color: #f1f1f1;
  font-size: 1rem;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.right_popUpArea {
  height: calc(100% - 5rem);
  width: 11.5rem;
  opacity: 1;
  position: absolute;
  right: 1rem;
  top: 3rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.right_popUpArea_item {
  height: 33.3333%;
  width: 11.5rem;
  background: #333333;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  z-index:999;
}

.right_popUpArea_item1 {
  position: absolute;
  top: 0;
}

.right_popUpArea_item2 {
  position: absolute;
  top: 33.3333%;
}

.right_popUpArea_item3 {
  position: absolute;
  top: 66.6666%;
}

.right_popUpArea_item_titleArea {
  height: 1rem;
  width: 11.5rem;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgb(155, 154, 154)),
    to(rgb(46, 45, 45))
  );
  background: linear-gradient(
    270deg,
    rgb(155, 154, 154) 0%,
    rgb(46, 45, 45) 100%
  );
  opacity: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
  z-index:999;
}

.right_popUpArea_item_titleArea p {
  font-size: 0.55rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  opacity: 1;
  margin-left: 0.5rem;
}

.right_popUpArea_item_contentArea {
  height: calc(100% - 1rem);
  width: 11.5rem;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

#prop_apt{
width: 100%;
height: 1.3rem;
font-size: 1rem;
border: 1px solid grey;
text-align: center;
position: relative;
}

table, th, td {
  border: 1px solid black;
}

#prop_para{
 background-color: orange;
}

.data_tableArea{
  height: 100%;
  width: 11.5rem;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.property_tableArea{
  height: 100%;
  width: 11.5rem;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.rightArea {
  width: 1rem;
  height: calc(100% - 5rem);
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(51, 51, 51, 1)),
    to(rgba(144, 144, 144, 1))
  );
  background: linear-gradient(
    270deg,
    rgba(51, 51, 51, 1) 0%,
    rgba(144, 144, 144, 1) 100%
  );
  opacity: 1;
  position: absolute;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  bottom: 2rem;
  right: 0;
  z-index:999;
}

.rightArea_item {
  width: 1rem;
  height: 33.3333%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  z-index:999;
}

.rightArea_item_textArea {
  cursor: pointer;
  width: 1rem;
  height: auto;
  font-size: 0.55rem;
  color: white;
  display: block;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
  z-index:999;
}

.returnArrowIcon {
  width: 0.5rem;
  height: auto;
  cursor: pointer;
  display: none;
  z-index:999;
}

.returnArrowIcon:hover {
  opacity: 0.65;
}

.bottomArea {
  height: 2rem;
  width: calc(100% - 3rem);
  background: rgba(51, 51, 51, 1);
  box-shadow: 5px 0px 30px rgba(39, 39, 39, 1);
  opacity: 1;
  position: absolute;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  bottom: 0;
  left: 3rem;
  z-index: 999;
}

.bottomArea_left {
  height: 2rem;
  width: 18.5rem;
  background: rgba(51, 51, 51, 1);
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  justify-content: space-around;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  left: 0;
}

.bottomArea_left_item {
  height: 2rem;
  width: 3.4rem;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
}

.tempData_name {
  width: 2rem;
  height: 2rem;
  font-size: 0.55rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  opacity: 1;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.tempData_value {
  width: 1rem;
  height: 2rem;
  font-size: 0.55rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  opacity: 1;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.gradualSeparateLine {
  width: 0.07rem;
  height: 0.7rem;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(51, 51, 51, 1)),
    color-stop(50%, rgba(112, 112, 112, 1)),
    to(rgba(51, 51, 51, 1))
  );
  background: linear-gradient(
    180deg,
    rgba(51, 51, 51, 1) 0%,
    rgba(112, 112, 112, 1) 50%,
    rgba(51, 51, 51, 1) 100%
  );
  opacity: 1;
  position: relative;
  margin-left: 0.3rem;
}

.bottomArea_mid {
  height: 100%;
  width: 3rem;
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(226, 22, 22, 1);
  opacity: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

@media (max-width: 1000px) {
  .bottomArea_mid {
    position: absolute;
    right: 2.8rem;
  }
}

.bottomArea_right {
  height: 2rem;
  width: 2rem;
  position: absolute;
  right: 1rem;
  top: 0;
  display: inline-block;
}

.showWindowIconContainer {
  height: 2rem;
  width: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.showWindowIconContainer:hover {
  opacity: 0.75;
}

.showWindowIcon {
  height: 1.45rem;
  width: 1.45rem;
  position: relative;
  display: block;
}

.bottomPopoutWindow {
  height: 7rem;
  width: 4rem;
  display: none;
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  background: rgba(69, 69, 69, 1);
  box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.43);
  z-index: 999;
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

.bottomPopoutWindow_leftTitle {
  height: 7rem;
  width: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(36, 36, 36, 1);
  font-size: 0.55rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  opacity: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.bottomPopoutWindow_rightBtnContainer {
  height: 7rem;
  width: 3rem;
  position: relative;
  margin-left: 1rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.popWinBtn {
  height: 1.4rem;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  font-size: 0.55rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  opacity: 1;
}

.popWinBtn:hover {
  background: rgba(118, 118, 118, 1) !important;
}

.gradualSeparateLine_h {
  width: 100%;
  height: 1px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(69, 69, 69, 1)),
    color-stop(50%, rgba(124, 124, 124, 1)),
    to(rgba(69, 69, 69, 1))
  );
  background: linear-gradient(
    270deg,
    rgba(69, 69, 69, 1) 0%,
    rgba(124, 124, 124, 1) 50%,
    rgba(69, 69, 69, 1) 100%
  );
  opacity: 1;
  position: relative;
  margin-top: -1px;
}

.seachPage_returnIcon {
  display: none;
}
/* 弹出框样式 成功*/
.logoutAlertArea {
  height: 100%;
  width: 100%;
  position: absolute;
  color: #ffffff;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  z-index: 99999;
  display: none;
}

.logoutAlertBox {
  height: 6rem;
  width: 18rem;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  box-shadow: 0 1rem 5rem rgba(8, 31, 36, 1);
  border-radius: 0.6rem;
  background-color: rgba(255, 255, 255, 1);
  z-index: 0;
}

.logoutAlertBoxForFlex {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.logoutAlertBG_LT {
  height: 3rem;
  width: 6rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: url("../images/backgroundImage/decorateLT.png")
    no-repeat center;
  background-size: cover;
}

.logoutAlertBG_RB {
  height: 3rem;
  width: 6rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: url("../images/backgroundImage/decorateRB.png")
    no-repeat center;
  background-size: cover;
}

.logoutAlertTitle {
  color: #50bcb0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15rem;
  font-weight: 600;
  height: 60%;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.logoutAlertBtnArea {
  height: 40%;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.logoutAlertBtn {
  height: 1.2rem;
  width: 3.4rem;
  font-size: 0.6rem;
  background-color: #50bcb0;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  margin: 1.2rem;
  z-index: 3;
}

.logoutAlertBtn:hover {
  background-color: #c8c8c8;
}
