.background {
  background-color: #f9e237;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.background .top {
  width: 100%;
  height: 800px;
  max-height: 80vh;
}
.background .wave {
  width: 100%;
  height: 100px;
  background-image: url('/imgs/white-wave.png');
  background-repeat: repeat;
}
.quiz-page {
  width: 100%;
  display: flex;
  max-width: var(--subMaxWidth);
}
.quiz-page .ad-wrap {
  width: 100%;
}
.quiz-page .top-ad {
  margin-bottom: 20px;
}
.quiz-page .main {
  display: flex;
  border-radius: 20px;
  margin-top: 10px;
}
.quiz-page .content {
  margin: 0 auto;
  margin-bottom: 30px;
  max-width: 640px;
  padding: 20px;
  flex: 1;
  background-color: #fff;
  border-radius: 10px;
}
.quiz-page .content .intro h1 {
  font-size: 32px;
  margin: 30px 0 15px 0;
  line-height: 1.5;
  color: var(--fontColor);
}
.quiz-page .content .intro .img-wrap {
  width: 100%;
  margin: 0 auto;
}
.quiz-page .content .intro .img-wrap img {
  width: 100%;
}
.quiz-page .content .intro .abstract {
  font-size: 16px;
  margin: 20px 0;
  line-height: 1.5;
}
.quiz-page .content .intro .common-btn2 {
  font-weight: bold;
  font-size: 36px;
  width: 90%;
  margin: 0 auto;
}
.quiz-page .content .question-list .item-wrap {
  margin-bottom: 30px;
}
.quiz-page .content .question-list .question-wrap {
  display: flex;
}
.quiz-page .content .question-list .question-wrap .question {
  width: 100%;
}
.quiz-page .content .question-list .item-wrap .item {
  background-color: #fff;
  position: relative;
  /* scroll-margin-top: 55px; */
  margin-bottom: 20px;
}
.quiz-page .content .question-list .item-wrap .item img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.quiz-page .content .question-list .item-wrap .item .media-wrap {
  margin: 12px 0 25px 0;
}
.quiz-page .content .question-list .item-wrap .item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(96, 96, 96, 0.3);
  border-radius: 5px;
  z-index: 100;
}
.quiz-page .content .question-list .item-wrap .item h2 {
  margin: 0 0 15px 0;
  padding: 20px 15px;
  font-size: 20px;
  font-weight: 500;
  background-color: var(--fontColor);
  color: #fff;
}
.quiz-page .content .question-list .item-wrap .item h2.has-source {
  margin-bottom: 0;
}
.quiz-page .content .question-list .item-wrap .item .option-list {
  display: flex;
  flex-flow: row wrap;
  margin: -5px;
}
.quiz-page .content .question-list .item-wrap .item .option-list .option-item-wrap {
  padding: 5px;
}
.quiz-page .content .question-list .item-wrap .item .option-list .option-item-wrap .option-item {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  box-shadow: 3px 3px 0 var(--fontColor);
  border: 1px rgba(4, 3, 9, 0.7) solid;
}
.quiz-page .content .question-list .item-wrap .item .option-list .option-item-wrap .option-item span {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 15px 30px;
  font-weight: bold;
  color: var(--fontColor);
  font-size: 18px;
}
.quiz-page .content .question-list .item-wrap .item .option-list .option-item-wrap .option-item .img-wrap {
  aspect-ratio: 16 / 9;
}
.quiz-page .content .question-list .item-wrap .item .option-list .option-item-wrap .option-item img {
  width: 100%;
  display: block;
}
.quiz-page .content .question-list .item-wrap .item .option-list .option-item-wrap .option-item:hover,
.quiz-page .content .question-list .item-wrap .item .option-list .option-item-wrap .option-item.info {
  background-color: var(--infoColor);
  box-shadow: 3px 3px 0 #293c77;
}
.quiz-page .content .question-list .item-wrap .item .option-list .option-item-wrap .option-item.right {
  background-color: #e3fdf7;
  box-shadow: 3px 3px 0 #1de9b6;
  position: relative;
}
.quiz-page .content .question-list .item-wrap .item .option-list .option-item-wrap .option-item.right span::after {
  position: absolute;
  content: '✅';
  left: 15px;
}
.quiz-page .content .question-list .item-wrap .item .option-list .option-item-wrap .option-item.wrong {
  background-color: #ffdde9;
  box-shadow: 3px 3px 0 #ff4081;
  color: #fff;
  position: relative;
}
.quiz-page .content .question-list .item-wrap .item .option-list .option-item-wrap .option-item.wrong span::after {
  position: absolute;
  content: '❌';
  left: 15px;
}
.quiz-page .content .question-list .item-wrap .item .option-list .option-item-wrap .option-item.disabled {
  pointer-events: none;
}
.quiz-page .content .submit {
  text-align: center;
  margin-bottom: 30px;
}
.quiz-page .content .submit {
  font-weight: bold;
  max-width: 600px;
  text-align: center;
}
.quiz-page .content .submit a {
  font-size: 26px;
  padding: 10px 80px;
}
.quiz-page .you-may-like h2 {
  color: var(--subColor);
  font-size: 18px;
  margin: 10px 0;
}
.quiz-page .you-may-like h2::after {
  content: '';
  display: block;
  margin-top: 5px;
  height: 3px;
  width: 100%;
  background-color: var(--subColor);
}
.quiz-page .you-may-like .detail-list {
  display: flex;
  flex-flow: row wrap;
  margin: 10px -5px 0 -5px;
}
.quiz-page .you-may-like .detail-list .col {
  padding: 5px;
}
.quiz-page .main > .right {
  width: 336px;
  flex-shrink: 0;
  margin-left: 15px;
}
.quiz-page .main > .right.content-item-list {
  position: sticky;
  top: 10px;
}

.intro .img-wrap {
  border-radius: 10px;
  overflow: hidden;
}
.question-desc {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.question-desc img {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 640px) {
  .quiz-page {
    flex-flow: column nowrap;
    padding-top: 10px;
  }
  .quiz-page .content-wrap {
    width: 100%;
  }
  .quiz-page .ad-wrap {
    width: 100%;
    margin-left: 0;
    /* scroll-margin-top: 50px; */
  }
  .quiz-page .content {
    width: 100%;
    padding: 0;
  }
  .quiz-page .content .intro {
    padding: 15px;
    background-color: #fff;
    margin-bottom: 10px;
  }
  .quiz-page .content .intro h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
  }
  .quiz-page .content .intro .img-wrap {
    width: 80%;
  }
  .quiz-page .content .intro .abstract {
    font-size: 14px;
  }
  .quiz-page .content .question-list .item-wrap {
    margin-bottom: 10px;
  }
  .quiz-page .content .question-list .item-wrap .item {
    margin-top: 20px;
    padding: 10px;
    margin-bottom: 10px;
    /* scroll-margin-top: 50px; */
  }
  .quiz-page .content .question-list .item-wrap .item .media-wrap {
    margin: 10px 0;
  }
  .quiz-page .content .question-list .item-wrap .item h2 {
    margin: 0 0 10px 0;
    padding: 10px;
    font-size: 20px;
  }
  .quiz-page .content .question-list .item-wrap .item .option-list {
    margin: -3px;
  }
  .quiz-page .content .question-list .item-wrap .item .option-list .option-item-wrap {
    padding: 3px;
  }
  .quiz-page .content .question-list .item-wrap .item .option-list .option-item-wrap .option-item span {
    padding: 15px 10px;
    font-size: 14px;
  }
  .quiz-page .you-may-like {
    width: 100%;
  }
  .quiz-page .you-may-like h3 {
    margin-bottom: -5px;
    padding: 15px;
    background-color: #fff;
  }
  .quiz-page .you-may-like h3::after {
    width: 95%;
  }
  .quiz-page .you-may-like .detail-list .col {
    width: 100%;
  }
  .quiz-page .main > .right {
    width: 100%;
  }
  .quiz-page .abstract {
    padding: 0 10px;
  }
  .quiz-page .desc {
    padding: 0 10px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1084px) {
  .main > .right {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .quiz-page .ad-wrap {
    width: 100%;
    margin-left: 0;
  }
  .quiz-page .content .question-list {
    margin-bottom: 10px;
  }
  .quiz-page .content .submit a {
    padding: 10px 40px;
    font-size: 20px;
  }
  .quiz-page .content .intro .common-btn2 {
    font-size: 20px;
  }
  .main > .right {
    display: none;
  }
}

.desc img {
  width: 100% !important;
  height: auto;
}
