[v-cloak] {
  display: none !important;
}

html,
body {
  height: 100%;
  min-width: 1200px;
  min-height: 350px;
  overflow: auto;
  background-color: #f0f0f7;
}

body {
  padding-bottom: 10px;
}

.page-root {
  margin: auto;
  height: 100%;
  width: 1200px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 90px;
}

.page-main {
  flex: 1;
  display: flex;
  display: -webkit-flex; /* Safari */
  flex-direction: column;
  justify-content: space-between;
  height: 800px;
  background-color: #ffffff;
  border-radius: 10px;
}



/* 高频练习标题框收起*/
.page-root .top_table {
  height: 200px;
  position: relative;
  transition: all 0.6s;
}

.page-root .title_table {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 97%;
  background-image: linear-gradient(225deg,
      #04c5e6 0%,
      #83f1f8 100%),
    linear-gradient(#ffffff,
      #ffffff);
  background-blend-mode: normal,
    normal;
  box-shadow: 0px 8px 12px 0px rgba(4, 197, 230, 0.12);
  border-radius: 10px;
}

.fold_btn {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transform: translateY(50%);
  background-color: #ffffff;
  box-shadow: 0px 4px 6px 0px rgba(4, 197, 230, 0.24);
  opacity: 0;
  transition: all 1s;
}

.fold_btn img {
  position: absolute;
  top: 18px;
  left: 11px;
}

.page-root .title_table .table_info.fold {
  background-image: linear-gradient(-90deg,
      #04c5e6 0%,
      #83f1f8 100%),
    linear-gradient(#ffffff,
      #ffffff);
  background-blend-mode: normal,
    normal;
  box-shadow: 0px 8px 12px 0px rgba(4, 197, 230, 0.12);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: all 0.6s;
}

.title_table .left_box {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  box-shadow: 0px 8px 12px 0px rgba(4, 197, 230, 0.12);
  border-radius: 8px;
  font-weight: Bold;
  font-size: 28px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: skyblue;
  text-shadow: 0px 8px 12px 0px rgba(4, 197, 230, 0.12);
  line-height: 100px;
  text-align: center;
}

.title_table .left_box span {
  background-image: linear-gradient(-90deg,
      #04c5e6 0%,
      #83f1f8 100%);
  font-weight: bold;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;

}

.title_table .right_box {
  flex: 1;
  height: 100%;
}

.right_box .list_title {
  font-weight: Bold;
  font-size: 18px;
  letter-spacing: 0px;
  color: #ffffff;
  margin-bottom: 0px;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.42);
  padding-left: 15px;


}

.right_box .list_title img {
  width: 24px;
  vertical-align: middle;
  padding-top: 5px;
}

.right_box .list_text {
  font-weight: Bold;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  text-shadow: 0px 2px 4px rgb(0 0 80 / 42%);
  padding-left: 45px;
}

/* 高频练习标题框收起 end */
/* 高频练习标题框展开  */
.title_table .table_info.unfold {
  height: 280px;
  background-image: linear-gradient(225deg,
      #04c5e6 0%,
      #83f1f8 100%),
    linear-gradient(#ffffff,
      #ffffff);
  background-blend-mode: normal,
    normal;
  box-shadow: 0px 8px 12px 0px rgba(4, 197, 230, 0.12);
  border-radius: 10px;
  padding: 10px;
  display: block;
  overflow: hidden;
  transition: all 0.6s;
}

.title_table .table_info.unfold.vanish {
  height: 0;
  padding: 0;
  opacity: 0;
}

.title_table .table_info.fold.vanish {
  height: 0;
  padding: 0;
  opacity: 0;
}

.unfold .table_top {
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
}

.unfold .icon_data {
  display: flex;
  align-items: center;
  flex: 1;
}

.icon_data .icon_forecast {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  padding-top: 5px;
}

.icon_data .top_text {
  font-weight: Bold;
  white-space: nowrap;
  font-size: 20px;
  letter-spacing: 0px;
  color: #ffffff;
  text-shadow: 0px 4px 4px 0px rgba(4, 197, 230, 0.24);
}

/* 进度条 */
.unfold .progress_bar_box {
  display: flex;
  flex: 4;
}

.unfold .progress_bar_title {
  width: 80px;
  text-align: right;
  font-size: 16px;
  letter-spacing: 0px;
  color: #ffffff;
  font-weight: bold;
  white-space: nowrap;
}

.unfold .indicator {
  display: flex;
  align-items: center;
  margin-left: 30px;
  flex: 1;
}

.unfold .progress_bar__outer {
  position: relative;
  flex: 1;
  height: 6px;
  border-radius: 3px;
  border: solid 1px #ffffff;
  margin: 0 10px;
}

.unfold .progress-bar__inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: all .8s;
}

.progress_bar_value {
  font-size: 16px;
  letter-spacing: 0px;
  white-space: nowrap;
}

.hit_rate .progress-bar__inner {
  background-color: #f6d2db;
}

.hit_rate .progress_bar_value {
  color: #ffd2da;
}

.stabilization .progress-bar__inner {
  background-color: #b4ff86;
}

.stabilization .progress_bar_value {
  color: #b4ff86;
}

.super_high .progress-bar__inner {
  background-color: #ffe463;
}

.super_high .progress_bar_value {
  color: #ffe463;
}

/* 进度条 end*/


.unfold .table_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 左侧 */
.table_content .left_question_type {
  flex: 1;
  height: 200px;
  background-color: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(4, 197, 230, 0.24);
  border-radius: 8px;
  margin-right: 5px;
  padding: 15px 0 20px 0;
}

.question_title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 10px;
}

.question_title .icon_topic {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.question_title span {
  font-size: 18px;
  letter-spacing: 0px;
  color: #333333;
}

.question_type_list {
  width: 540px;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  padding: 0 20px;
}

.question_type_list .item_text {
  width: 18.5%;
  height: 40px;
  font-size: 20px;
  letter-spacing: 0px;
  color: #333333;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  margin-right: 10px;

}

.question_type_list .item_text.activate {
  background-image: linear-gradient(18deg,
      #f97f46 0%,
      #ffb570 100%),
    linear-gradient(#04c5e6,
      #04c5e6);
  color: #ffffff;
  border-radius: 20px;
  font-weight: bold;
}

.practice_type_list {
  position: relative;
  width: 540px;
  display: inline-flex;
  justify-content: start;
  margin: 0 20px;
  margin-top: 10px;
  overflow: hidden;
  transform: translateX(0);
}

.question_types {
  position: relative;
}

.question_types .left_next {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 24px;
  height: 24px;
  transform: translate(0, -50%);
  background-color: #00ccff;
  border-radius: 50%;
  cursor: pointer;
}

.question_types .right_next {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 24px;
  height: 24px;
  transform: translate(0, -50%);
  background-color: #00ccff;
  border-radius: 50%;
  cursor: pointer;
}

.practice_type_list .item {
  min-width: 18.5%;
  width: 18.5%;
  height: 80px;
  background-color: #ffffff;
  color: #00ccff;
  border-radius: 6px;
  border: solid 2px #04c4e62c;
  margin-right: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: Bold;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.5s;
}

.practice_type_list .item.hide {
  padding: 0;
  border: none;
  margin: 0;
  width: 0;
  min-width: 0;
  opacity: 0;
}

.practice_type_list .item.activate {
  background-color: #04c5e6;
  color: #ffffff;
}

.practice_type_list .item.disabled {
  background-color: #ffffff;
  border-radius: 6px;
  border: solid 2px #e6e6e6;
  color: #e6e6e6;
}

/* 左侧end */

/* 右侧 */
.right_proposal {
  padding: 20px;
}

.right_proposal .proposal_title {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #edeff2;
  padding-bottom: 20px;
}

.right_proposal .icon_proposal {
  height: 20px;
  margin-right: 5px;

}

.right_proposal .proposal_text {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0px;
  background-image: -webkit-linear-gradient(18deg,
      #f97f46 0%,
      #ffb570 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.right_proposal .describe {
  padding-top: 10px;
  font-size: 16px;
  letter-spacing: 0px;
  color: #333333;
}

/* 右侧end */









.table_content .right_proposal {
  flex: 1;
  margin-left: 5px;
  height: 200px;
  background-color: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(4, 197, 230, 0.24);
  border-radius: 8px;
}

/* 高频练习标题框展开  end*/
.page-main .exercises_list {
  flex: 1;
  /* min-height: 80vh; */
}


@media only screen and (max-width:1790px) {
  .page-root {
    width: 1150px;
  }
}

@media only screen and (max-width:1750px) {
  .page-root {
    width: 1100px;
  }
}

@media only screen and (max-width:1700px) {
  .page-root {
    width: 1050px;
  }
}

@media only screen and (max-width:1650px) {
  .page-root {
    width: 1000px;
  }

  .question_type_list {
    width: 500px;
  }

  .practice_type_list {
    width: 460px;
  }

  .question_type_list .item_text {
    min-width: 18%;
    width: 18%;
  }

  .practice_type_list .item {
    min-width: 18%;
  }

  .question_types .right_next {
    right: 15px
  }
}

.page-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 28px;
  color: #cccccc;
}


/* -------------------- 新手引导 --------------------------- */
.novice_guide {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
}

.novice_guide_img {
  display: block;
  width: 285px;
  height: auto;
  position: fixed;
}