html {
  font-size: 19.2px;
  overflow: unset;
}

html body {
  all: initial;
}

html body .total-contain {
  all: initial;
}

.experiments-content {
  width: 100%;
  position: relative;
}

.experiments-content .contents-experiments {
  width: 90%;
  margin: 3rem auto;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  border-radius: 1vw;
  box-shadow: 2px -2px 10px #81ccbd;
}

.experiments-content .contents-experiments .content-left {
  user-select: none;
  background-color: #fff;
  box-shadow: 1px -1px 10px #F2A36C;
  box-sizing: border-box;
  display: block;
  width: 20%;
  max-height: 27vw;
  margin: 0 3% 0 3%;
  position: sticky;
  top: 30%;
  padding: 1rem;
  cursor: pointer;
  border-radius: 0.5vw;
}

.experiments-content .contents-experiments .content-left .content-left-container {
  height: 100%;
  box-sizing: border-box;
  transition: all 1s ease-in-out;
  position: relative;
}

.experiments-content .contents-experiments .content-left .content-left-container .click-title {
  padding-left: 10px;
  color: #fca75b;
  letter-spacing: -1px;
  font-size: 1.6vw;
  font-family: qiantuhou;
}

.experiments-content .contents-experiments .content-left .content-left-container .click-content {
  padding-left: 10px;
  color: #fca75b;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 2vw;
  font-family: qiantuhou;
}

.experiments-content .contents-experiments .content-left .content-left-container .content-list {
  height: 90%;
}

.experiments-content .contents-experiments .content-left .content-left-container .content-list .content-item {
  font-family: NavTitle;
  padding-left: 10px;
  color: #fca75b;
  display: block;
  height: 3vw;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 1vw 0;
  font-size: 1vw;
  font-weight: bolder;
  cursor: pointer;
}

.experiments-content .contents-experiments .content-left .content-left-container .content-list .active {
  background-color: #fca75b !important;
  border-radius: 0.625rem;
  color: #fff;
  border-left: none !important;
}

.experiments-content .contents-experiments .content-left .content-left-container .content-left-image {
  z-index: -1;
  display: none;
}

@media only screen and (max-width: 1000px) {
  .experiments-content .contents-experiments .content-left {
    display: none;
  }

  .experiments-content .contents-experiments .content-right {
    width: 80% !important;
    border-radius: 0.5vw;
  }
}

.experiments-content .contents-experiments .content-right {
  width: 60%;
  margin-bottom: 1.5rem;
}

.experiments-content .contents-experiments .content-right .right-title {
  text-align: center;
  font-size: 4.1vw;
  font-weight: bolder;
  font-family: hawk;
  color: #53DCBA;
  margin: 3% 0;
}

.experiments-content .contents-experiments .content-right .right-article {
  background-image: linear-gradient(to right, #fef2ec, #feeef1, #e7f6f6, #eef8f2);
  width: 100%;
  height: inherit;
  padding: 1rem;
}

.experiments-content .contents-experiments .content-right .right-article h2 {
  font-size: 3vw;
  color: #f9a10b;
  text-align: center;
  font-family: hawk;
  font-weight: bolder;
}

.experiments-content .contents-experiments .content-right .right-article p {
  font-size: 1.5vw;
  margin: 1rem;
  line-height: 3vw;
  font-family: NavTitle;
}

.experiments-content .contents-experiments .content-right .right-article p img {
  display: block;
  width: 70%;
  margin: 0.5rem auto;
  border-radius: 0.5vw;
}

.experiments-content .contents-experiments .content-right .right-article p .experiments-bold {
  font-weight: bolder;
}

.experiments-content .contents-experiments .content-right .right-article .sticky {
  z-index: 99;
  display: block;
  width: 18vw;
  height: 4vw;
  transform: rotateZ(45deg);
  opacity: 0.4;
  position: relative;
  margin-left: 70%;
  margin-bottom: -10%;
}

@media only screen and (max-width: 800px) {
  .experiments-content .contents-experiments .content-right .right-article .sticky {
    display: none;
  }
}

.experiments-content .contents-experiments .content-right .right-article table {
  position: relative;
  margin-top: 0rem;
  margin: 0 auto;
  border-collapse: collapse;
  font-family: NavTitle;
}

.experiments-content .contents-experiments .content-right .right-article table caption {
  font-size: 1.5vw;
  margin-bottom: 1rem;
}

.experiments-content .contents-experiments .content-right .right-article table th {
  font-size: 1.5vw;
  text-align: center;
  padding: 0.4rem 0;
  background-color: #8AEAC4;
}

.experiments-content .contents-experiments .content-right .right-article table td {
  font-size: 1.5vw;
  background-color: #fcfbf3;
  text-align: center;
  padding: 0.4rem 0;
}

.experiments-content .contents-experiments .overview {
  opacity: 0;
  transition: all .35s ease-in;
}

.run {
  animation: lonGanRun 2s forwards;
  -webkit-animation: lonGanRun 2s forwards;
  position: absolute;
  top: -20%;
  right: -20%;
  width: 10vw;
  height: 10vw;
  transition: all .35s ease-in-out;
}

.SubIndex {
  font-size: 1.1vw;
}

@keyframes lonGanRun {
  from {
    top: -100%;
    right: -100%;
  }

  to {
    top: -20%;
    right: -20%;
  }
}

@keyframes play {
  to {}

  from {}
}