*,
*::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*/
    font-size: calc(137.5% + 6 * (100vw - 1000px) / 1000);
    font-size: calc(22px + 6 * (100vw - 1000px) / 1000);
  }
}

body {
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  background-color: black;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, segoe ui, Roboto,
    Helvetica, Arial, sans-serif, apple color emoji, segoe ui emoji,
    segoe ui symbol;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(../images/backgroundImage/bgImg1.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  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;
}

.startExperimentBtn {
  height: calc(100% - 3rem);
  width: 2.5rem;
  position: absolute;
  right: 0;
  top: 3rem;
  z-index: 0;
  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: end;
  align-items: flex-end;
  cursor: pointer;
  z-index: 999999;
}

.startExperimentBtn:hover {
  opacity: 0.75;
}

.startExperimentIconArea {
  height: 16rem;
  width: 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: center;
  align-items: center;
  opacity: 1;
  /* background-color: aqua; */
  cursor: pointer;
}

.startExperimentIconArea p {
  height: 5rem;
  width: 1.1rem;
  position: relative;
  font-size: 0.8rem;
  letter-spacing: 0.5rem;
  line-height: 1.4rem;
  color: #fefffe;
  display: none;
  cursor: pointer;
}

.startExperimentIcon {
  height: 16rem;
  width: 3rem;
  top: 0;
  right: 0;
  position: absolute;
  display: none;
}

.startExperimentIcon:hover {
  opacity: 0.75;
  cursor: pointer;
}

.topArea {
  height: 3rem;
  width: 100%;
  position: fixed;
  top: 0;
  left: 3rem;
  background-color: #323f46;
  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;
  overflow: hidden;
  z-index: 997;
}

.titleArea {
  height: 3rem;
  width: auto;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(24, 24, 24, 1)),
    to(rgba(29, 29, 29, 0.85))
  );
  background: linear-gradient(
    180deg,
    rgba(24, 24, 24, 1) 0%,
    rgba(29, 29, 29, 0.85) 100%
  );
  box-shadow: 0.25rem 0 0.3rem rgba(21, 30, 32, 0.6);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  opacity: 1;
  z-index: 10;
  /* background-color: #50BCB0; */
}

.pageTitle {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  margin-left: 1rem;
  margin-right: 1rem;
  color: #ffffff;
}

.topArea_left {
  height: 3rem;
  width: auto;
  position: relative;
  opacity: 0.85;
  -webkit-box-align: stretch;
  align-items: stretch;
}

.topArea_right {
  height: 3rem;
  width: auto;
  right: 3rem;
  box-shadow: 0.25rem 0 0.3rem rgba(21, 30, 32, 0.6);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  opacity: 1;
  z-index: 10;
  /* background-color: #50BCB0; */
}

.navArea {
  height: 100%;
  width: 3rem;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(36, 36, 36, 1);
  box-shadow: 0.25rem 0 0.3rem 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: 996;
}

.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:active {
  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;
}

.navBtn_return {
  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;

  /* background: violet; */
}
.navIcon_return {
  line-height: 1.8rem;
  position: static;
  display: inline-block;
  font-size: 1.5rem;
  color: rgb(184, 181, 181);
  margin-bottom: 0.2rem;
}
.navBtn_return: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));
}
.navIcon {
  width: 1.8rem;
  height: 1.8rem;
  position: relative;
  margin-top: 0.2rem;
}

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

.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;
}

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

.userIcon {
  width: 2.5rem;
  height: auto;
}

.userArea: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));
}

.userArea:active {
  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));
}

.userInfoArea {
  width: 6rem;
  height: 9rem;
  position: absolute;
  top: 4rem;
  left: 4.5rem;
  /* background-color: tomato; */
  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%;
  /* margin: 0 4% 0 4%; */
  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%;
  /* margin: 0 4% 0 4%; */
  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;
  /* letter-spacing: 0.1rem; */
}

.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 - 3rem);
  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);
  /* background-color: violet; */
  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;
  /* background-color: rgb(130, 238, 171); */
}

.glDc {
  height: auto;
  width: calc(100% - 2rem);
  /* background-color: wheat; */
  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: 9999999999999999;
}

.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;
  /* background-color: crimson; */
  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;
  /* background-color: teal; */
}

.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;
}

.container {
  height: 100%;
  width: calc(100% - 3rem);
  position: relative;
  margin-top: 3rem;
  margin-left: 3rem;
  /* background-color: rgba(65, 236, 216, 0.4); */
  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;
  /* overflow-y: scroll; */
  overflow-y: auto;
  z-index: 99;
}

/* dom插入内容区域 */
.contentArea {
  /* background-color: rgba(235, 57, 57, 0.6); */
  /* height: 29.9rem; */
  height: 87vh;
  width: calc(100% - 5rem);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 1560px) {
  .contentArea {
    height: 85vh;
  }
}

@media screen and (max-width: 1280px) {
  .contentArea {
    height: 83vh;
  }
}

/* @media screen and (max-width: 1560px) and (max-height: 800px) {
  .contentArea {
    height: 28.5rem;
  }
}

@media screen and (max-width: 1366px) and (max-height: 700px) {
  .contentArea {
    height: 26rem;
  }
}

@media screen and (max-width: 1280px) and (max-height: 700px) {
  .contentArea {
    height: 23rem;
  }
}

@media screen and (max-width: 1024px) and (max-height: 550px) {
  .contentArea {
    height: 20rem;
  }
} */

@media screen and (max-width: 1000px) {
  .container {
    overflow-x: scroll;
  }

  .contentArea {
    width: 55rem;
  }
}

/* 实验分类页面 */
.contentArea_category {
  /* background-color: rgb(216, 172, 212); */
  height: 100vh;
  width: 35rem;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
  align-content: flex-start;
  overflow: auto;
}

.cardContainer {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(59, 59, 59, 0)),
    to(rgba(206, 206, 206, 1))
  );
  background: linear-gradient(
    180deg,
    rgba(59, 59, 59, 0) 0%,
    rgba(206, 206, 206, 1) 100%
  );
  opacity: 1;
  height: 9.2rem;
  width: 7.2rem;
  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;
  position: relative;
  margin-left: 1.5rem !important;
  margin-top: 0.5rem;
  align-content: space-around;
  /* background-color: red; */
}

.cardContainer_inner {
  background: rgba(32, 48, 59, 1);
  opacity: 1;
  height: 9rem;
  width: 7rem;
  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;
  position: relative;
}

.cardContainer_inner:hover {
  cursor: pointer;
  opacity: 0.9;
}

.cardIcon {
  height: auto;
  width: 5rem;
  position: relative;
}

.cardName {
  height: 1.16rem;
  width: 100%;
  background: rgba(84, 84, 84, 0.8);
  opacity: 0.45;
  bottom: 0;
  position: absolute;
  text-align: center;
  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.6rem;
  z-index: 2;
  color: rgba(255, 255, 255, 1);
}

/* 具体实验名称导航页面 */
.detailClassification {
  height: 100vh;
  width: 38rem;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  justify-content: flex-start;
  align-content: flex-start;
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none !important;
  /* Firefox 64 */
  overflow-y: auto;
  /* background-color: red; */
}

.detailClassification .scroll-X {
  display: none !important;
}

.cardContainer_btn {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(59, 59, 59, 0)),
    to(rgba(206, 206, 206, 1))
  );
  background: linear-gradient(
    180deg,
    rgba(59, 59, 59, 0) 0%,
    rgba(206, 206, 206, 1) 100%
  );
  opacity: 1;
  height: 1.6rem;
  width: 9.3rem;
  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;
  position: relative;
  margin-left: 2.5rem;
  margin-top: 1.5rem;
  cursor: pointer;
}

.cardContainer_btn_inner {
  background: rgba(40, 56, 66, 1);
  opacity: 1;
  height: 1.5rem;
  width: 9.2rem;
  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;
  position: relative;
}

.cardContainer_btn_inner:hover {
  opacity: 0.9;
}

.cardName_btn {
  height: 100%;
  width: 100%;
  position: relative;
  text-align: center;
  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.5rem;
  z-index: 99;
  color: #ffffff;
}

/* 进入实验选择页面样式 */
.selec_contentArea {
  height: 100%;
  width: 35rem;
  position: absolute;
  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;
}

.selec_cardContainerArea1 {
  opacity: 1;
  height: 100%;
  width: 9rem;
  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;
  position: relative;
  -webkit-transition: height 1.5s;
  transition: height 1.5s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  cursor: pointer;
}

.selec_cardContainerArea2 {
  opacity: 1;
  height: 100%;
  width: 9rem;
  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;
  position: relative;
  -webkit-transition: height 1.5s;
  transition: height 1.5s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  margin-left: 3.23rem;
  cursor: pointer;
}

.selec_cardContainerArea3 {
  opacity: 1;
  height: 100%;
  width: 9rem;
  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;
  position: relative;
  -webkit-transition: height 1.5s;
  transition: height 1.5s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  margin-left: 3.23rem;
  cursor: pointer;
}

.selec_cardContainerArea4 {
  opacity: 1;
  height: 100%;
  width: 9rem;
  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;
  position: relative;
  -webkit-transition: height 1.5s;
  transition: height 1.5s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  margin-left: 3.23rem;
  cursor: pointer;
}

.selec_cardContainer {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(59, 59, 59, 0)),
    to(rgba(206, 206, 206, 1))
  );
  background: linear-gradient(
    180deg,
    rgba(59, 59, 59, 0) 0%,
    rgba(206, 206, 206, 1) 100%
  );
  opacity: 1;
  height: 11rem;
  width: 9rem;
  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;
  position: relative;
}

.selec_cardContainer_inner {
  background: rgba(32, 48, 59, 1);
  opacity: 1;
  height: 10.8rem;
  width: 8.8rem;
  display: -webkit-box;
  display: flex;
  position: relative;
  -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;
  position: relative;
}

.selec_cardIcon {
  height: 7.7rem;
  width: 7.7rem;
}

.selec_cardName {
  height: 1.54rem;
  width: 100%;
  background: rgba(84, 84, 84, 0.8);
  opacity: 0.45;
  bottom: 0;
  position: absolute;
  text-align: center;
  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.77rem;
  z-index: 2;
  color: rgba(255, 255, 255, 1);
}

.selec_cardContainer_Animation1 {
  opacity: 1;
  height: 10rem;
  width: 100%;
  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;
  position: absolute;
  bottom: -10rem;
}

.selec_cardContainer_Animation2 {
  opacity: 1;
  height: 10rem;
  width: 100%;
  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;
  position: absolute;
  bottom: -10rem;
}

.selec_cardContainer_Animation3 {
  opacity: 1;
  height: 10rem;
  width: 100%;
  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;
  position: absolute;
  bottom: -10rem;
}

.selec_cardContainer_Animation4 {
  opacity: 1;
  height: 10rem;
  width: 100%;
  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;
  position: absolute;
  bottom: -10rem;
}

.upperIcon {
  height: 1.35rem;
  width: 1.27rem;
}

.Line {
  background-color: rgba(70, 160, 153, 1);
  width: 100%;
  border: 0.04rem solid rgba(70, 160, 153, 1);
  opacity: 1;
}

.selec_card1_introText {
  width: 80%;
  height: 26rem;
  font-size: 0.6rem;
  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;
  position: relative;
  margin-top: 0.5rem;
  text-indent: 1rem;
  color: rgba(255, 255, 255, 1);
}

/* 预习页面样式 */
.previewPageBtnArea_MOBILE {
  position: absolute;
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  justify-content: space-around;
  -webkit-box-align: start;
  align-items: flex-start;
  width: 19.505rem;
  height: 1.1111rem;
  top: 1.67rem;
  left: 1.67rem;
  background-color: coral;
  z-index: 9999999999999999;
}
.previewBtn {
  width: 5.5rem;
  height: 1rem;
  position: relative;
  background: rgba(35, 73, 95, 1);
  box-shadow: 0 0.167rem 0.333rem rgba(0, 0, 0, 0.16);
  opacity: 1;
  border-radius: 0 0 0.333rem 0.333rem;
  font-size: 0.56rem;
  font-weight: 400;
  line-height: 0.8rem;
  color: rgba(255, 255, 255, 1);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  flex-grow: 1;
}
.previewBtn:not(:last-child) {
  margin-right: 0.04rem;
}
.previewBtn_current {
  background-color: #387696;
  width: 6rem;
  height: 100%;
  box-shadow: 0 0.167rem 0.333rem rgba(0, 0, 0, 0.16);
  opacity: 1;
  border-radius: 0 0 0.333rem 0.333rem;
  -webkit-box-flex: 2;
  flex-grow: 2;
}
.contentArea_preview {
  height: 100%;
  width: 100%;
  position: absolute;
  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: start;
  align-items: flex-start;
  /* background-color: rgb(9, 83, 83); */
}

.chamferedRectangle_LeftArea {
  width: 45.6%;
  height: 100%;
  position: relative;
  margin-right: 4.22%;
  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: blue; */
}

.honeycombBG_LT {
  width: 20%;
  height: auto;
  position: absolute;
  top: 4%;
  left: 2%;
  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;
}

.honeycombBG_LT_Icon {
  width: 100%;
  height: auto;
}

.honeycombBG_RB_Icon {
  width: 100%;
  height: auto;
}

.honeycombBG_RB {
  width: 30%;
  height: auto;
  /* background-color: coral; */
  position: absolute;
  bottom: 8%;
  right: 5%;
  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; */
}

.chamferedRectangle_Left {
  width: 100%;
  height: 50%;
  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;
  /* align-content: stretch; */
  /* background-color: violet; */
  overflow: hidden;
  /* font-size: 0;
  margin: 0;
  padding: 0;
  border: 0; */
}

.cut-corner-inner {
  position: absolute;
  height: calc(70%);
  width: calc(100%);
  top: calc(15%);
  right: 0;
  left: 0;
  border-left: 0.1rem solid #50bcb0;
  border-right: 0.1rem solid #50bcb0;
  /* background: rgb(5, 235, 17); */
}

.cut-corner-inner:before,
.cut-corner-inner:after {
  position: absolute;
  content: "";
  width: 100%;
  /* background-color: yellow; */
}
.cut-corner-inner:before {
  height: calc(20% + 0px);
  width: 50%;
  top: -20%;
  left: -0.1333rem;
  border: 0.1rem solid #50bcb0;
  border-width: 0 0 0 0.1333rem;
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  /* background-color: violet; */
}

.cut-corner-inner:after {
  height: calc(20%);
  width: 50%;
  bottom: -20%;
  left: -0.1333rem;
  border: 0.1rem solid #50bcb0;
  border-width: 0 0 0 0.1333rem;
  -webkit-transform: skew(45deg);
  transform: skew(45deg);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /* background-color: rgb(90, 30, 8); */
}

.cut-corner-inner2 {
  position: absolute;
  height: calc(70%);
  width: calc(100%);
  top: calc(15%);
  right: 0;
  left: 0;
}

.cut-corner-inner2:before,
.cut-corner-inner2:after {
  position: absolute;
  content: "";
  width: calc(100%);
  right: -0.1rem;
  /* background-color: red; */
}

.cut-corner-inner2:before {
  height: calc(20%);
  width: 50%;
  top: -20%;
  border: 0.1333rem solid #50bcb0;
  border-width: 0 0.1333rem 0 0;
  -webkit-transform: skew(45deg);
  transform: skew(45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  /* background-color: yellowgreen; */
}

.cut-corner-inner2:after {
  height: calc(20%);
  width: 50%;
  bottom: -20%;
  border: 0.1333rem solid #50bcb0;
  border-width: 0 0.1333rem 0 0;
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /* background-color: violet; */
}

.cut-filled-bg {
  width: calc(100% - 0.2rem);
  height: calc(70%);
  position: absolute;
  left: 0.1rem;
  top: 15%;
  background-color: rgba(48, 102, 130, 0.4);
  /* background-color: lightcoral; */
}

.cut-filled-bg:before,
.cut-filled-bg:after {
  content: "";
  position: absolute;
  left: 0;
  right: -0.1rem;
  bottom: 100%;
  border-bottom: 3rem solid rgba(48, 102, 130, 0.4);
  border-left: 3rem solid transparent;
  border-right: 3rem solid transparent;
  /* border-top: 5.85vmin solid rgb(25, 0, 255); */
}

.cut-filled-bg:after {
  top: 100%;
  border-bottom: none;
  border-top: 3rem solid rgba(48, 102, 130, 0.4);
}

.textContentArea_LT {
  width: 90% !important;
  height: 80%;
  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;
  overflow: hidden;
  overflow-y: auto;
  color: rgba(213, 213, 213, 1);
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none !important;
  /* Firefox 64 */
  /* background-color: rgb(179, 131, 28); */
}

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

.text_Title {
  height: auto;
  width: auto;
  background: rgba(42, 100, 94, 0.7);
  opacity: 1;
  position: relative;
  display: block;
}
.text_Title:before {
  content: "";
  width: 0.18rem;
  height: 100%;
  background: rgba(80, 188, 176, 1);
  opacity: 1;
  position: absolute;
  display: inline-block;
}

.textContentArea_LT > .text_Title:not(:first-child) {
  margin-top: 0.6rem;
}

.text_Title_h6 {
  font-size: 0.6rem;
  height: 0.8rem;
  width: auto;
  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: center;
  align-items: center;
  margin: 0 0.3rem 0 0.3rem;
}

.text_Content {
  width: 95%;
  height: 100%;
  font-size: 0.5rem;
  line-height: 0.7rem;
  font-weight: 400;
  margin-top: 0.2rem;
  margin-left: 1%;
  position: relative;
  display: block;
  word-break: break-all;
  /* background-color: tomato; */
}

.text_Content_Big {
  font-size: 0.55rem;
}

.referencesInfo {
  font-size: 0.45rem;
  color: rgba(0, 136, 255, 1);
}

.video_Area {
  width: 100%;
  height: 13rem;
  background-color: rgba(48, 102, 130, 1);
  margin-top: 1rem;
  position: relative;
  display: block;
  overflow-y: auto;
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none !important;
  /* Firefox 64 */
}

@media screen and (max-width: 1000px) {
  .video_Area {
    height: 16rem;
  }
}

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

.video_Title_Area {
  width: calc(100% - 0.5rem);
  height: auto;
  background: #306682;
  position: absolute;
  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;
}

.video_Title {
  width: 3rem;
  font-size: 0.5rem;
  line-height: 1rem;
  margin-right: 0.1rem;
  color: rgba(255, 255, 255, 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;
  position: relative;
  text-align: left;
  text-indent: 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 0.2rem;
}

.video_Title:hover {
  opacity: 0.75;
  background: #4ea5d2;
}
.video_Title_current {
  opacity: 0.75;
  background: #4ea5d2;
  display: -webkit-box;
  display: flex;
}
/* .video_Title:active {
  opacity: 0.75;
  background: rgb(6, 105, 155);
} */
.video_container {
  width: 100%;
  height: calc(100% - 1.4rem);
  position: relative;
  display: block;
}
#videoVideo {
  max-width: calc(100% - 0.5rem);
  height: auto;
  margin-top: 1rem;
  margin-bottom: 0.1rem;
  position: relative;
  display: block;
}

.justAddSomeSpaceForFireFox {
  width: 100%;
  height: 1rem;
  position: relative;
}

.chamferedRectangle_RightArea {
  width: 50%;
  height: 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;
  overflow: hidden;
}

.cut-corner-inner_Right {
  position: absolute;
  height: calc(90%);
  width: calc(100%);
  top: calc(5%);
  right: 0;
  left: 0;
  border-left: 0.1154rem solid #50bcb0;
  border-right: 0.1154rem solid #50bcb0;
}

.cut-corner-inner_Right:before,
.cut-corner-inner_Right:after {
  position: absolute;
  content: "";
  width: 100%;
  /* background:rgba(48,102,130,0.4); */
  /* background-color: yellow; */
}

.cut-corner-inner_Right:before {
  height: calc(5%);
  width: 50%;
  top: calc(-5%);
  left: -0.11rem;
  border: 0.1154rem solid #50bcb0;
  border-width: 0.1154rem 0 0 0.1539rem;
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  /* background-color: rgb(7, 59, 7); */
}

.cut-corner-inner_Right:after {
  height: calc(5%);
  width: 50%;
  bottom: calc(-5%);
  left: -0.11rem;
  border: 0.1154rem solid #50bcb0;
  border-width: 0 0 0.1154rem 0.1539rem;
  -webkit-transform: skew(45deg);
  transform: skew(45deg);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /* background-color: rgb(225, 240, 15); */
}

.cut-corner-inner_Right2 {
  position: absolute;
  height: calc(90%);
  width: calc(100%);
  top: calc(5%);
  right: 0;
  left: 0;
  /* background-color: rgb(232, 248, 3); */
}

.cut-corner-inner_Right2:before,
.cut-corner-inner_Right2:after {
  position: absolute;
  content: "";
  width: calc(100% - 0.02rem);
  right: 0;
}

.cut-corner-inner_Right2:before {
  height: 5%;
  width: 50%;
  top: calc(-5%);
  right: -0.015rem;
  border: 0.1154rem solid #50bcb0;
  border-width: 0.1154rem 0.1539rem 0 0;
  -webkit-transform: skew(45deg);
  transform: skew(45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  /* background-color: rgb(10, 241, 10); */
}

.cut-corner-inner_Right2:after {
  height: calc(5%);
  width: 50%;
  bottom: calc(-5%);
  right: -0.0385rem;
  border: 0.1154rem solid #50bcb0;
  border-width: 0 0.1539rem 0.1154rem 0;
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /* background-color: rgb(255, 79, 4); */
}

.cut-filled-bg_Right {
  width: calc(100% - 0.2308rem);
  height: calc(90%);
  position: absolute;
  left: 0.1154rem;
  top: 5%;
  background-color: rgba(48, 102, 130, 0.4);
  /* background-color: darkturquoise; */
}

.cut-filled-bg_Right:before,
.cut-filled-bg_Right:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  border-bottom: 9rem solid rgba(48, 102, 130, 0.4);
  border-left: 9rem solid transparent;
  border-right: 9rem solid transparent;
  /* border-top:9rem solid rgb(255, 0, 119); */
}

.cut-filled-bg_Right:after {
  bottom: 0;
  top: 100%;
  border-bottom: none;
  border-top: 9rem solid rgba(48, 102, 130, 0.4);
}

.chamferedRectangle_Right_leftArea {
  /* background-color: rgb(235, 213, 17); */
  width: 25%;
  height: 85%;
  position: relative;
  margin-left: 0.143rem;
  margin-top: 8%;
  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;
  overflow: hidden;
}

.right_leftArea_btnArea {
  /* background-color: rgb(9, 231, 109); */
  width: 100%;
  height: 4.5rem;
  position: relative;
  margin-left: 0;
  margin-top: 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;
}

.btn0117 {
  width: 100%;
  height: 25%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(80, 188, 176, 0.2)),
    to(rgba(80, 188, 176, 0.6))
  );
  background: linear-gradient(
    180deg,
    rgba(80, 188, 176, 0.2) 0%,
    rgba(80, 188, 176, 0.6) 100%
  );
  opacity: 1;
  font-size: 0.55rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 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;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: auto 0;
  position: relative;
}

.btn0117:hover {
  opacity: 0.75;
}

.btn0117:active {
  opacity: 0.75;
}

.right_leftArea_textArea {
  width: 100%;
  max-height: 100%;
  position: relative;
  margin-left: 0;
  margin-top: 2rem;
  /* background-color: rgb(9, 50, 231); */
  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;
  overflow: hidden;
}

.text_Title_three {
  width: 100%;
  height: 1rem;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(42, 100, 94, 1)),
    color-stop(53%, rgba(29, 80, 74, 0.5)),
    to(rgba(29, 75, 71, 0))
  );
  background: linear-gradient(
    90deg,
    rgba(42, 100, 94, 1) 0%,
    rgba(29, 80, 74, 0.5) 53%,
    rgba(29, 75, 71, 0) 100%
  );
  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;
  font-size: 0.75rem;
  position: relative;
}

.text_contentArea_three {
  width: 100%;
  max-height: 100%;
  /* background: rgb(182, 23, 221); */
  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: start;
  align-items: flex-start;
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none !important;
  /* Firefox 64 */
  overflow-y: auto;
  margin-left: 0;
}

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

.text_contentArea_three > p {
  text-indent: 0.2rem;
  color: rgba(213, 213, 213, 1);
  font-size: 0.5rem;
  line-height: 0.75rem;
  padding: 0.5rem;
  padding-right: 1.2rem;
  width: 100%;
  position: relative;
}

.chamferedRectangle_Right_rightArea {
  width: 65%;
  height: 86%;
  margin-left: 5%;
  margin-top: 7%;
  position: relative;
 /* background-color: mediumpurple;*/
  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;
}

/* 弹出框样式 成功*/
.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%;
  /* background-color: cyan; */
  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-color: crimson; */
  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-color: crimson; */
  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;
  /* background-color: thistle; */
  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;
  /* background-color: darkred; */
}

.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;
}
