.section {
  width: 100%;
  height: auto;
  display: flex;
  background-color: #f2f2f2;
  box-sizing: border-box;
  flex-direction: column;
  background-image: url(../img/background_img.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  align-items: center;
  transition: all 0s;
}
@media (max-width: 768px) {
  .section {
    margin-top: 0;
    padding-top: 0;
  }
}
.section > .searchbox {
  max-width: 1200px;
  display: flex;
  top: 60px;
  padding: 30px 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
  z-index: 200;
}
.section > .searchbox > input {
  border: none;
  box-sizing: border-box;
  padding: 0 20px;
  border-radius: 5px 0 0 5px;
  width: 25%;
  outline: none;
  height: 40px;
}
.section > .searchbox > div {
  width: 40px;
  height: 40px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  background-color: #3b9aaf;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
}
.section > .searchbox > div > img {
  width: 30px;
  height: 30px;
}
.section .section_topcontent {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .section .section_topcontent {
    flex-direction: column;
    position: relative;
  }
}
.section .section_topcontent .paper {
  position: relative;
}
@media (max-width: 768px) {
  .section .section_topcontent .paper {
    position: inherit;
  }
}
.section .section_topcontent .paper .paperlist {
  position: absolute;
  left: 0;
  font-size: 16px;
  width: 100%;
  top: 40px;
}
@media (max-width: 768px) {
  .section .section_topcontent .paper .paperlist {
    display: flex;
    width: 100%;
    position: absolute;
    left: 0;
    height: 30px;
    top: 55px;
    justify-content: space-evenly;
    z-index: 1111;
  }
}
.section .section_topcontent .paper .paperlist li {
  margin: 10px 0;
  padding-left: 30px;
  height: 20px;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
  color: #999;
}
@media (max-width: 768px) {
  .section .section_topcontent .paper .paperlist li {
    margin: 0;
    height: 30px;
    padding-left: 0px;
    font-size: 12px;
  }
}
.section .section_topcontent .paper .paperlist .chosed_list {
  color: #3b9aaf;
}
.section .section_topcontent > .section_topleft {
  width: 210px;
  height: 100%;
  display: flex;
  top: 160px;
  flex-direction: column;
}
@media (max-width: 768px) {
  .section .section_topcontent > .section_topleft {
    display: block;
    width: 100%;
    height: 100px;
    overflow-x: scroll;
    white-space: nowrap;
    text-align: center;
    box-sizing: border-box;
  }
}
.section .section_topcontent > .section_topleft > li {
  color: #fff;
  width: 100%;
  height: 30px;
  font-size: 22px;
  display: flex;
  margin: 15px 0;
  border-left: 5px solid transparent;
  padding-left: 20px;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
  white-space: nowrap;
}
.section .section_topcontent > .section_topleft > li > a {
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .section .section_topcontent > .section_topleft > li > a {
    font-size: 14px;
    display: inline-block;
    width: 100px;
    text-align: center;
    height: 40px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  .section .section_topcontent > .section_topleft > li {
    font-size: 14px;
    display: inline-block;
    width: 100px;
    text-align: center;
    height: 40px;
    line-height: 40px;
  }
}
@media (max-width: 992px) {
  .section .section_topcontent > .section_topleft > li {
    padding-left: 0px;
    justify-content: center;
  }
}
.section .section_topcontent > .section_topleft > li:nth-child(4) {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .section .section_topcontent > .section_topleft > li:nth-child(4) {
    margin: auto;
  }
}
.section .section_topcontent > .section_topleft > li:hover,
.section .section_topcontent > .section_topleft .chosed {
  color: #fff;
  border-left: 5px solid #3b9aaf;
}
.section .section_topcontent > .section_topleft > li:hover a,
.section .section_topcontent > .section_topleft .chosed a {
  color: #fff;
}
@media (max-width: 992px) {
  .section .section_topcontent > .section_topleft > li:hover,
  .section .section_topcontent > .section_topleft .chosed {
    border-left: none;
    background-color: #3b9aaf;
    border-radius: 20px 0 20px 0;
  }
}
.section_topright {
  width: calc(100% - 220px);
  border-radius: 3px;
  background-color: #F2F2F2;
  box-sizing: border-box;
  padding: 25px 40px;
  min-height: calc(100vh - 170px);
  display: none;
  transition: all 0s;
}
@media (max-width: 768px) {
  .section_topright {
    width: 95% !important;
    margin: auto;
    padding: 10px;
  }
}
.section_topright > h2:nth-child(1) {
  font-size: 16px;
  border-left: 5px solid #3b9aaf;
  padding-left: 10px;
  margin-bottom: 15px;
}
.show_box {
  display: block;
}
.Question_bank > .question_list > .ques_search,
.Question_bank .ach_list > .ques_search,
.Question_bank .cuoti_list > .ques_search,
.Question_bank .stutimi_list > .ques_search {
  width: 100%;
  height: 70px;
  display: flex;
  position: relative;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  .Question_bank > .question_list > .ques_search,
  .Question_bank .ach_list > .ques_search,
  .Question_bank .cuoti_list > .ques_search,
  .Question_bank .stutimi_list > .ques_search {
    display: flex;
    flex-direction: column;
    height: 100px;
    margin-bottom: 10px;
  }
}
.Question_bank > .question_list > .ques_search > .timubtn,
.Question_bank .ach_list > .ques_search > .timubtn,
.Question_bank .cuoti_list > .ques_search > .timubtn,
.Question_bank .stutimi_list > .ques_search > .timubtn {
  display: flex;
  justify-self: flex-start;
  position: absolute;
  left: 0;
}
@media (max-width: 768px) {
  .Question_bank > .question_list > .ques_search > .timubtn,
  .Question_bank .ach_list > .ques_search > .timubtn,
  .Question_bank .cuoti_list > .ques_search > .timubtn,
  .Question_bank .stutimi_list > .ques_search > .timubtn {
    position: relative;
    margin-bottom: 5px;
  }
}
.Question_bank > .question_list > .ques_search > .timubtn > li,
.Question_bank .ach_list > .ques_search > .timubtn > li,
.Question_bank .cuoti_list > .ques_search > .timubtn > li,
.Question_bank .stutimi_list > .ques_search > .timubtn > li {
  margin: 0 20px;
  border-left: 3px solid transparent;
  padding-left: 10px;
  cursor: pointer;
}
.Question_bank > .question_list > .ques_search > .timubtn > .chosedtype,
.Question_bank .ach_list > .ques_search > .timubtn > .chosedtype,
.Question_bank .cuoti_list > .ques_search > .timubtn > .chosedtype,
.Question_bank .stutimi_list > .ques_search > .timubtn > .chosedtype,
.Question_bank > .question_list > .ques_search > .timubtn li:hover,
.Question_bank .ach_list > .ques_search > .timubtn li:hover,
.Question_bank .cuoti_list > .ques_search > .timubtn li:hover,
.Question_bank .stutimi_list > .ques_search > .timubtn li:hover {
  border-left: 3px solid #3b9aaf;
}
.Question_bank > .question_list > .ques_search > .Question_bankadd,
.Question_bank .ach_list > .ques_search > .Question_bankadd,
.Question_bank .cuoti_list > .ques_search > .Question_bankadd,
.Question_bank .stutimi_list > .ques_search > .Question_bankadd,
.Question_bank > .question_list > .ques_search .question_listadd,
.Question_bank .ach_list > .ques_search .question_listadd,
.Question_bank .cuoti_list > .ques_search .question_listadd,
.Question_bank .stutimi_list > .ques_search .question_listadd {
  background-color: transparent;
  color: #3b9aaf;
  border: none;
  white-space: nowrap;
}
.Question_bank > .question_list > .ques_search > .searchsmallbox,
.Question_bank .ach_list > .ques_search > .searchsmallbox,
.Question_bank .cuoti_list > .ques_search > .searchsmallbox,
.Question_bank .stutimi_list > .ques_search > .searchsmallbox {
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  height: 35px;
}
@media (max-width: 768px) {
  .Question_bank > .question_list > .ques_search > .searchsmallbox,
  .Question_bank .ach_list > .ques_search > .searchsmallbox,
  .Question_bank .cuoti_list > .ques_search > .searchsmallbox,
  .Question_bank .stutimi_list > .ques_search > .searchsmallbox {
    margin-top: 5px;
  }
}
.Question_bank > .question_list > .ques_search > .searchsmallbox > div,
.Question_bank .ach_list > .ques_search > .searchsmallbox > div,
.Question_bank .cuoti_list > .ques_search > .searchsmallbox > div,
.Question_bank .stutimi_list > .ques_search > .searchsmallbox > div {
  background-color: #3b9aaf;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Question_bank > .question_list > .ques_search > .searchsmallbox > div img,
.Question_bank .ach_list > .ques_search > .searchsmallbox > div img,
.Question_bank .cuoti_list > .ques_search > .searchsmallbox > div img,
.Question_bank .stutimi_list > .ques_search > .searchsmallbox > div img {
  width: 30px;
  height: 30px;
}
.Question_bank > .question_list > .ques_search > .searchsmallbox > input,
.Question_bank .ach_list > .ques_search > .searchsmallbox > input,
.Question_bank .cuoti_list > .ques_search > .searchsmallbox > input,
.Question_bank .stutimi_list > .ques_search > .searchsmallbox > input {
  border-radius: 3px 0 0 3px;
  width: 170px;
  height: 35px;
  box-sizing: border-box;
  padding: 0 10px;
  outline: none;
  border: 1px solid #dadada;
}
.Question_bank > .question_list > .ques_search input,
.Question_bank .ach_list > .ques_search input,
.Question_bank .cuoti_list > .ques_search input,
.Question_bank .stutimi_list > .ques_search input {
  width: 230px;
  box-sizing: border-box;
  padding: 0 10px;
  border: 1px solid #727272;
}
.Question_bank > .question_list > .ques_search > div,
.Question_bank .ach_list > .ques_search > div,
.Question_bank .cuoti_list > .ques_search > div,
.Question_bank .stutimi_list > .ques_search > div {
  margin: 0 10px;
}
.Question_bank > .question_list > .ques_search > .select,
.Question_bank .ach_list > .ques_search > .select,
.Question_bank .cuoti_list > .ques_search > .select,
.Question_bank .stutimi_list > .ques_search > .select {
  height: 100%;
}
.Question_bank > .question_list > .ques_search > .select input,
.Question_bank .ach_list > .ques_search > .select input,
.Question_bank .cuoti_list > .ques_search > .select input,
.Question_bank .stutimi_list > .ques_search > .select input {
  height: 100%;
  box-sizing: border-box;
}
.Question_bank > .question_list > .ques_search > input,
.Question_bank .ach_list > .ques_search > input,
.Question_bank .cuoti_list > .ques_search > input,
.Question_bank .stutimi_list > .ques_search > input {
  margin: 0 10px;
}
.Question_bank > .question_list > .ques_search > button,
.Question_bank .ach_list > .ques_search > button,
.Question_bank .cuoti_list > .ques_search > button,
.Question_bank .stutimi_list > .ques_search > button {
  width: 60px;
  margin: 0 10px;
  border: 1px solid #3b9aaf;
  background-color: #3b9aaf;
  color: #fff;
  border-radius: 5px;
}
.Question_bank > .question_list > .ques_search > button:last-child,
.Question_bank .ach_list > .ques_search > button:last-child,
.Question_bank .cuoti_list > .ques_search > button:last-child,
.Question_bank .stutimi_list > .ques_search > button:last-child {
  position: absolute;
  right: 0;
  height: 100%;
}
.Question_bank > .question_list > .ques_list,
.Question_bank .ach_list > .ques_list,
.Question_bank .cuoti_list > .ques_list,
.Question_bank .stutimi_list > .ques_list {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 5px;
  transition: all 0s;
}
.Question_bank > .question_list > .ques_list > li:first-child,
.Question_bank .ach_list > .ques_list > li:first-child,
.Question_bank .cuoti_list > .ques_list > li:first-child,
.Question_bank .stutimi_list > .ques_list > li:first-child {
  border-bottom: 2px solid #D7D7D7;
  font-size: 16px;
}
.Question_bank > .question_list > .ques_list > li,
.Question_bank .ach_list > .ques_list > li,
.Question_bank .cuoti_list > .ques_list > li,
.Question_bank .stutimi_list > .ques_list > li {
  height: 40px;
  font-size: 14px;
  width: 100%;
  border-bottom: 1px solid #D7D7D7;
  display: flex;
  align-items: center;
  text-align: center;
}
.Question_bank > .question_list > .ques_list > li > span:nth-child(1),
.Question_bank .ach_list > .ques_list > li > span:nth-child(1),
.Question_bank .cuoti_list > .ques_list > li > span:nth-child(1),
.Question_bank .stutimi_list > .ques_list > li > span:nth-child(1) {
  width: 10%;
  box-sizing: border-box;
  padding-right: 10px;
}
.Question_bank > .question_list > .ques_list > li > span:nth-child(2),
.Question_bank .ach_list > .ques_list > li > span:nth-child(2),
.Question_bank .cuoti_list > .ques_list > li > span:nth-child(2),
.Question_bank .stutimi_list > .ques_list > li > span:nth-child(2) {
  width: 25%;
}
.Question_bank > .question_list > .ques_list > li > span:nth-child(3),
.Question_bank .ach_list > .ques_list > li > span:nth-child(3),
.Question_bank .cuoti_list > .ques_list > li > span:nth-child(3),
.Question_bank .stutimi_list > .ques_list > li > span:nth-child(3) {
  width: 10%;
}
.Question_bank > .question_list > .ques_list > li > span:nth-child(4),
.Question_bank .ach_list > .ques_list > li > span:nth-child(4),
.Question_bank .cuoti_list > .ques_list > li > span:nth-child(4),
.Question_bank .stutimi_list > .ques_list > li > span:nth-child(4) {
  width: 5%;
}
.Question_bank > .question_list > .ques_list > li > span:nth-child(5),
.Question_bank .ach_list > .ques_list > li > span:nth-child(5),
.Question_bank .cuoti_list > .ques_list > li > span:nth-child(5),
.Question_bank .stutimi_list > .ques_list > li > span:nth-child(5) {
  width: 15%;
}
.Question_bank > .question_list > .ques_list > li > span:nth-child(6),
.Question_bank .ach_list > .ques_list > li > span:nth-child(6),
.Question_bank .cuoti_list > .ques_list > li > span:nth-child(6),
.Question_bank .stutimi_list > .ques_list > li > span:nth-child(6) {
  width: 15%;
}
.Question_bank > .question_list > .ques_list > li > span:nth-child(7),
.Question_bank .ach_list > .ques_list > li > span:nth-child(7),
.Question_bank .cuoti_list > .ques_list > li > span:nth-child(7),
.Question_bank .stutimi_list > .ques_list > li > span:nth-child(7) {
  width: 20%;
}
.Question_bank > .question_list > .ques_list > li > span:nth-child(7) span,
.Question_bank .ach_list > .ques_list > li > span:nth-child(7) span,
.Question_bank .cuoti_list > .ques_list > li > span:nth-child(7) span,
.Question_bank .stutimi_list > .ques_list > li > span:nth-child(7) span {
  margin: 0 10px;
  cursor: pointer;
}
.Question_bank > .question_list > .ques_list > li > span:nth-child(7) > span:first-child,
.Question_bank .ach_list > .ques_list > li > span:nth-child(7) > span:first-child,
.Question_bank .cuoti_list > .ques_list > li > span:nth-child(7) > span:first-child,
.Question_bank .stutimi_list > .ques_list > li > span:nth-child(7) > span:first-child {
  color: #3b9aaf;
}
.Question_bank > .question_list > .ques_list > li > span:nth-child(7) > span:last-child,
.Question_bank .ach_list > .ques_list > li > span:nth-child(7) > span:last-child,
.Question_bank .cuoti_list > .ques_list > li > span:nth-child(7) > span:last-child,
.Question_bank .stutimi_list > .ques_list > li > span:nth-child(7) > span:last-child {
  color: #F14A6C;
}
.Question_bank > .question_list > .ques_list > li:nth-child(1),
.Question_bank .ach_list > .ques_list > li:nth-child(1),
.Question_bank .cuoti_list > .ques_list > li:nth-child(1),
.Question_bank .stutimi_list > .ques_list > li:nth-child(1) {
  font-size: 16px;
}
.Question_bank > .question_add {
  display: flex;
  display: none;
  flex-direction: column;
}
.Question_bank > .question_add > h2 {
  padding-left: 10px;
  border-left: 5px solid #3b9aaf;
  font-size: 16px;
  margin-bottom: 20px;
}
.Question_bank > .question_add > ul {
  width: 100%;
  box-sizing: border-box;
  padding-left: 15px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.Question_bank > .question_add > ul li {
  display: flex;
  flex-direction: column;
  margin-right: 80px;
}
.Question_bank > .question_add > ul li > h2 {
  font-size: 16px;
  margin-bottom: 10px;
}
.Question_bank > .question_add > ul li .select {
  width: 240px;
  height: 40px;
  position: relative;
}
.Question_bank > .question_add > ul li .select > input {
  border-radius: 2px;
  width: 240px;
  height: 35px;
  padding: 0 10px;
  box-sizing: border-box;
}
.Question_bank > .question_add > ul li .select > ul {
  width: 100%;
  height: auto;
  position: absolute;
  background-color: #fff;
  box-sizing: border-box;
  margin-top: 3px;
  border-radius: 2px;
}
.Question_bank > .question_add > ul li .select > ul > li {
  height: 30px;
  box-sizing: border-box;
  height: 0;
  font-size: 18px;
  cursor: pointer;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.Question_bank > .question_add > ul li .select > ul > li:hover {
  background-color: #f2f2f2;
}
.Question_bank > .question_add > ul li .select > img {
  width: 15px;
  position: absolute;
  right: 10px;
  top: 50%;
  transition: all 0.5s;
  transform: translateY(-50%);
}
.Question_bank > .question_add > ul li .rightTM {
  display: none;
}
.Question_bank > .question_add > ul li .rightTM > span {
  display: flex;
  margin-right: 10px;
  align-items: center;
}
.Question_bank > .question_add > ul li .rightTM > span img {
  width: 10px;
  height: 10px;
  margin-left: 5px;
  cursor: pointer;
}
.Question_bank > .question_add > ul li > textarea {
  resize: none;
  box-sizing: border-box;
  padding: 10px;
}
.Question_bank > .question_add > ul li > .ques_text {
  width: 500px;
}
.Question_bank > .question_add > ul > div {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.Question_bank > .question_add > ul > div > button {
  width: 100px;
  height: 40px;
  background-color: #fff;
  border-radius: 3px;
  outline: none;
  color: #3b9aaf;
  margin-right: 20px;
}
.Question_bank > .question_add > ul > div > a {
  color: #3b9aaf;
  margin-right: 20px;
}
.Question_bank > .question_add > ul > .submit_btn button {
  width: 80px;
  height: 30px;
  border-radius: 3px;
  border: 1px solid #3b9aaf;
  color: #3b9aaf;
  background-color: #fff;
}
.Question_bank > .question_add > ul > .submit_btn > button:first-child {
  color: #fff;
  background-color: #3b9aaf;
}
.test_paper > .question_list > .ques_search,
.test_paper .ach_list > .ques_search,
.test_paper .cuoti_list > .ques_search,
.test_paper .stutimi_list > .ques_search {
  width: 100%;
  height: 70px;
  align-items: center;
  display: flex;
  position: relative;
  justify-content: flex-end;
}
.test_paper > .question_list > .ques_search > .Question_bankadd,
.test_paper .ach_list > .ques_search > .Question_bankadd,
.test_paper .cuoti_list > .ques_search > .Question_bankadd,
.test_paper .stutimi_list > .ques_search > .Question_bankadd,
.test_paper > .question_list > .ques_search .question_listadd,
.test_paper .ach_list > .ques_search .question_listadd,
.test_paper .cuoti_list > .ques_search .question_listadd,
.test_paper .stutimi_list > .ques_search .question_listadd {
  background-color: transparent;
  color: #3b9aaf;
  height: 30px;
  border: none;
  white-space: nowrap;
}
.test_paper > .question_list > .ques_search > .searchsmallbox,
.test_paper .ach_list > .ques_search > .searchsmallbox,
.test_paper .cuoti_list > .ques_search > .searchsmallbox,
.test_paper .stutimi_list > .ques_search > .searchsmallbox {
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  height: 35px;
}
.test_paper > .question_list > .ques_search > .searchsmallbox > div,
.test_paper .ach_list > .ques_search > .searchsmallbox > div,
.test_paper .cuoti_list > .ques_search > .searchsmallbox > div,
.test_paper .stutimi_list > .ques_search > .searchsmallbox > div {
  background-color: #3b9aaf;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.test_paper > .question_list > .ques_search > .searchsmallbox > div img,
.test_paper .ach_list > .ques_search > .searchsmallbox > div img,
.test_paper .cuoti_list > .ques_search > .searchsmallbox > div img,
.test_paper .stutimi_list > .ques_search > .searchsmallbox > div img {
  width: 30px;
  height: 30px;
}
.test_paper > .question_list > .ques_search > .searchsmallbox > input,
.test_paper .ach_list > .ques_search > .searchsmallbox > input,
.test_paper .cuoti_list > .ques_search > .searchsmallbox > input,
.test_paper .stutimi_list > .ques_search > .searchsmallbox > input {
  width: 170px;
  border-radius: 3px 0 0 3px;
  height: 35px;
  box-sizing: border-box;
  padding: 0 10px;
  outline: none;
  border: 1px solid #dadada;
}
.test_paper > .question_list > .ques_search input,
.test_paper .ach_list > .ques_search input,
.test_paper .cuoti_list > .ques_search input,
.test_paper .stutimi_list > .ques_search input {
  width: 230px;
  box-sizing: border-box;
  padding: 0 10px;
  border: 1px solid #727272;
}
.test_paper > .question_list > .ques_search > div,
.test_paper .ach_list > .ques_search > div,
.test_paper .cuoti_list > .ques_search > div,
.test_paper .stutimi_list > .ques_search > div {
  margin: 0 10px;
}
.test_paper > .question_list > .ques_search > .select,
.test_paper .ach_list > .ques_search > .select,
.test_paper .cuoti_list > .ques_search > .select,
.test_paper .stutimi_list > .ques_search > .select {
  height: 100%;
}
.test_paper > .question_list > .ques_search > .select input,
.test_paper .ach_list > .ques_search > .select input,
.test_paper .cuoti_list > .ques_search > .select input,
.test_paper .stutimi_list > .ques_search > .select input {
  height: 100%;
  box-sizing: border-box;
}
.test_paper > .question_list > .ques_search > input,
.test_paper .ach_list > .ques_search > input,
.test_paper .cuoti_list > .ques_search > input,
.test_paper .stutimi_list > .ques_search > input {
  margin: 0 10px;
}
.test_paper > .question_list > .ques_search > button,
.test_paper .ach_list > .ques_search > button,
.test_paper .cuoti_list > .ques_search > button,
.test_paper .stutimi_list > .ques_search > button {
  width: 60px;
  margin: 0 10px;
  border: 1px solid #3b9aaf;
  background-color: #3b9aaf;
  color: #fff;
  border-radius: 5px;
}
.test_paper > .question_list > .ques_search > button:last-child,
.test_paper .ach_list > .ques_search > button:last-child,
.test_paper .cuoti_list > .ques_search > button:last-child,
.test_paper .stutimi_list > .ques_search > button:last-child {
  position: absolute;
  right: 0;
  height: 100%;
}
.test_paper > .question_list > .ques_list,
.test_paper .ach_list > .ques_list,
.test_paper .cuoti_list > .ques_list,
.test_paper .stutimi_list > .ques_list {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #F2F2F2;
  padding: 5px;
}
.test_paper > .question_list > .ques_list > li,
.test_paper .ach_list > .ques_list > li,
.test_paper .cuoti_list > .ques_list > li,
.test_paper .stutimi_list > .ques_list > li {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #fff;
  text-align: center;
  justify-content: center;
}
.test_paper > .question_list > .ques_list > li > span,
.test_paper .ach_list > .ques_list > li > span,
.test_paper .cuoti_list > .ques_list > li > span,
.test_paper .stutimi_list > .ques_list > li > span {
  border: 1px solid #999;
  font-weight: 400;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.test_paper > .question_list > .ques_list > li > span:nth-child(1),
.test_paper .ach_list > .ques_list > li > span:nth-child(1),
.test_paper .cuoti_list > .ques_list > li > span:nth-child(1),
.test_paper .stutimi_list > .ques_list > li > span:nth-child(1) {
  width: 15%;
}
.test_paper > .question_list > .ques_list > li > span:nth-child(2),
.test_paper .ach_list > .ques_list > li > span:nth-child(2),
.test_paper .cuoti_list > .ques_list > li > span:nth-child(2),
.test_paper .stutimi_list > .ques_list > li > span:nth-child(2) {
  width: 35%;
}
.test_paper > .question_list > .ques_list > li > span:nth-child(3),
.test_paper .ach_list > .ques_list > li > span:nth-child(3),
.test_paper .cuoti_list > .ques_list > li > span:nth-child(3),
.test_paper .stutimi_list > .ques_list > li > span:nth-child(3) {
  width: 20%;
}
.test_paper > .question_list > .ques_list > li > span:nth-child(4),
.test_paper .ach_list > .ques_list > li > span:nth-child(4),
.test_paper .cuoti_list > .ques_list > li > span:nth-child(4),
.test_paper .stutimi_list > .ques_list > li > span:nth-child(4) {
  width: 30%;
}
.test_paper > .question_list > .ques_list > li > span:nth-child(4) span,
.test_paper .ach_list > .ques_list > li > span:nth-child(4) span,
.test_paper .cuoti_list > .ques_list > li > span:nth-child(4) span,
.test_paper .stutimi_list > .ques_list > li > span:nth-child(4) span {
  margin: 0 10px;
  color: #3b9aaf;
  cursor: pointer;
}
.test_paper > .question_list > .ques_list > li > span:nth-child(4) > span:nth-child(3),
.test_paper .ach_list > .ques_list > li > span:nth-child(4) > span:nth-child(3),
.test_paper .cuoti_list > .ques_list > li > span:nth-child(4) > span:nth-child(3),
.test_paper .stutimi_list > .ques_list > li > span:nth-child(4) > span:nth-child(3) {
  color: #F14A6C;
}
.test_paper > .question_list > .ques_list > li:nth-child(1),
.test_paper .ach_list > .ques_list > li:nth-child(1),
.test_paper .cuoti_list > .ques_list > li:nth-child(1),
.test_paper .stutimi_list > .ques_list > li:nth-child(1) {
  font-size: 16px;
  background-color: #F2F2F2;
}
.test_paper > .test_add {
  display: flex;
  flex-direction: column;
  display: none;
}
.test_paper > .test_add .add_test {
  font-size: 16px;
  border-left: 5px solid #3b9aaf;
  padding-left: 10px;
  margin-bottom: 20px;
}
.test_paper > .test_add input {
  box-sizing: border-box;
  padding: 0 10px;
}
.test_paper > .test_add > div {
  box-sizing: border-box;
  padding-left: 14px;
  display: flex;
  margin: 10px 0;
  flex-direction: column;
}
.test_paper > .test_add > div input::placeholder {
  font-size: 14px;
}
.test_paper > .test_add > div > h2 {
  margin-bottom: 10px;
  font-size: 16px;
}
.test_paper > .test_add > div > input {
  width: 240px;
  height: 35px;
  box-sizing: border-box;
  border-radius: 3px;
}
.test_paper > .test_add > div .select {
  width: 240px;
  height: 40px;
  position: relative;
}
.test_paper > .test_add > div .select > input {
  border-radius: 2px;
  width: 240px;
  height: 35px;
  padding: 0 10px;
  box-sizing: border-box;
}
.test_paper > .test_add > div .select > ul {
  width: 100%;
  height: auto;
  position: absolute;
  background-color: #fff;
  box-sizing: border-box;
  margin-top: 3px;
  border-radius: 2px;
}
.test_paper > .test_add > div .select > ul > li {
  height: 30px;
  height: 0;
  font-size: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.test_paper > .test_add > div .select > ul > li:hover {
  background-color: #f2f2f2;
  cursor: pointer;
}
.test_paper > .test_add > div .select > img {
  width: 15px;
  position: absolute;
  right: 10px;
  top: 50%;
  transition: all 0.5s;
  transform: translateY(-50%);
}
.test_paper > .test_add > .havechosed_timu {
  display: none;
}
.test_paper > .test_add .havechosed {
  background-color: #fff;
  box-sizing: border-box;
  max-height: 200px;
  overflow-y: scroll;
  border: 1px solid #d2d2d2;
  border-radius: 3px;
  padding: 10px;
}
.test_paper > .test_add .havechosed > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #c0e1e8;
  box-sizing: border-box;
  padding: 5px 0;
}
.test_paper > .test_add .havechosed > li img {
  width: 15px;
  cursor: pointer;
  height: 15px;
}
.test_paper > .test_add .havechosed::-webkit-scrollbar {
  width: 5px;
  background-color: #b9cace;
  border-radius: 2.5px;
}
.test_paper > .test_add .havechosed::-webkit-scrollbar-thumb {
  width: 5px;
  border-radius: 2.5px;
  background-color: #318193;
}
.test_paper > .test_add > .morechose {
  display: flex;
  flex-direction: row;
}
.test_paper > .test_add > .morechose span {
  margin-right: 10px;
}
.test_paper > .test_add > .morechose > span:last-child {
  cursor: pointer;
}
.test_paper > .test_add > .chosetimu {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  display: none;
}
.test_paper > .test_add > .chosetimu > div {
  width: 800px;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  height: 500px;
  box-sizing: border-box;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.test_paper > .test_add > .chosetimu > div > h2 {
  width: 100%;
  text-align: center;
  color: #333;
  font-size: 24px;
  border-bottom: 1px solid #999;
  padding-bottom: 20px;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) > .searchtimu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) > .searchtimu > .chosetimulist {
  display: flex;
  align-items: center;
  margin-right: 25%;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) > .searchtimu > .chosetimulist li {
  margin: 0 10px;
  cursor: pointer;
  padding-left: 8px;
  border-left: 3px solid transparent;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) > .searchtimu > .chosetimulist .chosdlis,
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) > .searchtimu > .chosetimulist li:hover {
  border-left: 3px solid #3b9aaf;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) > .searchtimu > h2 {
  white-space: nowrap;
  font-size: 16px;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) > .searchtimu > div {
  display: flex;
  width: 205px;
  height: 35px;
  box-sizing: border-box;
  border-radius: 3px;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) > .searchtimu > div > input {
  box-sizing: border-box;
  padding-left: 20px;
  width: 175px;
  border-radius: 3px 0 0 3px;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) > .searchtimu > div > div {
  width: 35px;
  height: 35px;
  background-color: #318193;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  border-radius: 0 3px 3px 0;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) > .searchtimu > div > div img {
  width: 30px;
  height: 30px;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) > .chosedtm {
  flex-wrap: wrap;
  position: relative;
  margin-top: 20px;
  height: 260px;
  width: 100%;
  overflow-y: scroll;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) > .chosedtm > div {
  display: flex;
  align-content: center;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid #e2e2e2;
  box-sizing: border-box;
  padding: 10px;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) > .chosedtm > div > i {
  cursor: pointer;
  font-size: 24px;
  color: #3b9aaf;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) > .chosedtm > div span {
  width: 80%;
  white-space: nowrap;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) > .chosedtm > div img {
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) .chosedtm::-webkit-scrollbar {
  width: 5px;
  background-color: #b9cace;
  border-radius: 2.5px;
}
.test_paper > .test_add > .chosetimu > div > div:nth-child(2) .chosedtm::-webkit-scrollbar-thumb {
  width: 5px;
  border-radius: 2.5px;
  background-color: #318193;
}
.test_paper > .test_add > .chosetimu > div > .chose_btn {
  position: absolute;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: calc(100% - 60px);
}
.test_paper > .test_add > .chosetimu > div > .chose_btn button {
  margin: 0 10px;
  cursor: pointer;
  width: 80px;
  border-radius: 3px;
  height: 30px;
}
.test_paper > .test_add > .chosetimu > div > .chose_btn > button:first-child {
  background-color: #3b9aaf;
  color: #fff;
}
.test_paper > .test_add > .chosetimu > div > .chose_btn > button:last-child {
  background-color: #fff;
  border: 1px solid #3b9aaf;
  color: #3b9aaf;
}
.test_paper > .test_add > div:nth-child(7),
.test_paper > .test_add div:nth-child(8) {
  flex-direction: row;
}
.test_paper > .test_add > div:nth-child(7) > span,
.test_paper > .test_add div:nth-child(8) > span {
  margin-right: 15px;
  cursor: pointer;
}
.test_paper > .test_add > div:nth-child(7) > div,
.test_paper > .test_add div:nth-child(8) > div {
  display: flex;
  align-items: center;
}
.test_paper > .test_add > div:nth-child(7) > div > input,
.test_paper > .test_add div:nth-child(8) > div > input {
  width: 100px;
  height: 35px;
  margin: 0 15px 0 8px;
  box-sizing: border-box;
  padding: 0 5px;
  border-radius: 3px;
}
.test_paper > .test_add > .submit_btn {
  flex-direction: row;
  margin-top: 30px;
}
.test_paper > .test_add > .submit_btn button {
  margin-right: 20px;
  width: 80px;
  height: 30px;
  border-radius: 3px;
  border: 1px solid #3b9aaf;
  color: #3b9aaf;
  background-color: #fff;
}
.test_paper > .test_add > .submit_btn > button:first-child {
  color: #fff;
  background-color: #3b9aaf;
}
.test_paper > .test_show {
  display: flex;
  flex-direction: column;
  display: none;
}
.test_paper > .test_show > .goback_btn {
  margin-bottom: 15px;
}
.test_paper > .test_show > .goback_btn button {
  width: 80px;
  height: 30px;
  border-radius: 3px;
  border: 1px solid #3b9aaf;
  color: #3b9aaf;
  background-color: #fff;
  cursor: pointer;
}
.test_paper > .test_show > .test_int {
  width: 100%;
  border-bottom: 1px solid #c2c2c2;
  display: flex;
  align-items: center;
  height: 50px;
  margin-bottom: 10px;
}
.test_paper > .test_show > .test_int > span {
  margin-right: 100px;
  font-weight: 600;
  font-size: 16px;
  font-weight: 400;
}
.test_paper > .test_show > ul {
  margin-top: 10px;
}
.test_paper > .test_show > ul li {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 10px 20px 20px;
  border-bottom: 1px dashed #999;
}
.test_paper > .test_show > ul li .ques {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.test_paper > .test_show > ul li .ques > span {
  margin-right: 30px;
}
.test_paper > .test_show > ul li > .test_ques {
  margin-top: 10px;
  margin-bottom: 10px;
}
.test_paper > .test_show > ul li > span {
  margin: 5px 0;
}
.test_paper > .test_show > ul li > .right_answer {
  display: flex;
  margin-top: 20px;
  align-items: center;
}
.test_paper > .test_show > ul li > .right_answer > span {
  color: #3b9aaf;
}
.test_paper > .test_show > ul li > .right_answer > div {
  margin: 0 10px;
  padding: 5px 10px;
  border: 1px solid #999;
  border-radius: 5px;
}
.test_paper > .test_show > ul li > .right_answer > .rightanswer {
  background-color: #3b9aaf;
  color: #fff;
  border: 1px solid #3b9aaf;
}
.examination > .question_list > .ques_search,
.examination .ach_list > .ques_search,
.examination .cuoti_list > .ques_search,
.examination .stutimi_list > .ques_search {
  width: 100%;
  height: 70px;
  align-items: center;
  display: flex;
  position: relative;
  justify-content: flex-end;
}
.examination > .question_list > .ques_search input::placeholder,
.examination .ach_list > .ques_search input::placeholder,
.examination .cuoti_list > .ques_search input::placeholder,
.examination .stutimi_list > .ques_search input::placeholder {
  font-size: 14px;
}
.examination > .question_list > .ques_search > .exa_addbtn,
.examination .ach_list > .ques_search > .exa_addbtn,
.examination .cuoti_list > .ques_search > .exa_addbtn,
.examination .stutimi_list > .ques_search > .exa_addbtn {
  background-color: transparent;
  color: #3b9aaf;
  border: none;
  white-space: nowrap;
}
.examination > .question_list > .ques_search > .searchsmallbox,
.examination .ach_list > .ques_search > .searchsmallbox,
.examination .cuoti_list > .ques_search > .searchsmallbox,
.examination .stutimi_list > .ques_search > .searchsmallbox {
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  height: 35px;
}
.examination > .question_list > .ques_search > .searchsmallbox > div,
.examination .ach_list > .ques_search > .searchsmallbox > div,
.examination .cuoti_list > .ques_search > .searchsmallbox > div,
.examination .stutimi_list > .ques_search > .searchsmallbox > div {
  background-color: #3b9aaf;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.examination > .question_list > .ques_search > .searchsmallbox > div img,
.examination .ach_list > .ques_search > .searchsmallbox > div img,
.examination .cuoti_list > .ques_search > .searchsmallbox > div img,
.examination .stutimi_list > .ques_search > .searchsmallbox > div img {
  width: 30px;
  height: 30px;
}
.examination > .question_list > .ques_search > .searchsmallbox > input,
.examination .ach_list > .ques_search > .searchsmallbox > input,
.examination .cuoti_list > .ques_search > .searchsmallbox > input,
.examination .stutimi_list > .ques_search > .searchsmallbox > input {
  width: 170px;
  border-radius: 3px 0 0 3px;
  height: 35px;
  box-sizing: border-box;
  padding: 0 10px;
  outline: none;
  border: 1px solid #dadada;
}
.examination > .question_list > .ques_search input,
.examination .ach_list > .ques_search input,
.examination .cuoti_list > .ques_search input,
.examination .stutimi_list > .ques_search input {
  width: 230px;
  box-sizing: border-box;
  padding: 0 10px;
  border: 1px solid #727272;
}
.examination > .question_list > .ques_search > div,
.examination .ach_list > .ques_search > div,
.examination .cuoti_list > .ques_search > div,
.examination .stutimi_list > .ques_search > div {
  margin: 0 10px;
}
.examination > .question_list > .ques_search > .select,
.examination .ach_list > .ques_search > .select,
.examination .cuoti_list > .ques_search > .select,
.examination .stutimi_list > .ques_search > .select {
  height: 100%;
}
.examination > .question_list > .ques_search > .select input,
.examination .ach_list > .ques_search > .select input,
.examination .cuoti_list > .ques_search > .select input,
.examination .stutimi_list > .ques_search > .select input {
  height: 100%;
  box-sizing: border-box;
}
.examination > .question_list > .ques_search > input,
.examination .ach_list > .ques_search > input,
.examination .cuoti_list > .ques_search > input,
.examination .stutimi_list > .ques_search > input {
  margin: 0 10px;
}
.examination > .question_list > .ques_search > button,
.examination .ach_list > .ques_search > button,
.examination .cuoti_list > .ques_search > button,
.examination .stutimi_list > .ques_search > button {
  width: 60px;
  margin: 0 10px;
  border: 1px solid #3b9aaf;
  background-color: #3b9aaf;
  color: #fff;
  border-radius: 5px;
}
.examination > .question_list > .ques_search > button:last-child,
.examination .ach_list > .ques_search > button:last-child,
.examination .cuoti_list > .ques_search > button:last-child,
.examination .stutimi_list > .ques_search > button:last-child {
  position: absolute;
  right: 0;
  height: 100%;
}
.examination > .question_list > .ques_list,
.examination .ach_list > .ques_list,
.examination .cuoti_list > .ques_list,
.examination .stutimi_list > .ques_list {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #F2F2F2;
  padding: 5px;
}
.examination > .question_list > .ques_list > li,
.examination .ach_list > .ques_list > li,
.examination .cuoti_list > .ques_list > li,
.examination .stutimi_list > .ques_list > li {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #fff;
  text-align: center;
  justify-content: center;
}
.examination > .question_list > .ques_list > li > span,
.examination .ach_list > .ques_list > li > span,
.examination .cuoti_list > .ques_list > li > span,
.examination .stutimi_list > .ques_list > li > span {
  border: 1px solid #999;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
}
.examination > .question_list > .ques_list > li > span:nth-child(1),
.examination .ach_list > .ques_list > li > span:nth-child(1),
.examination .cuoti_list > .ques_list > li > span:nth-child(1),
.examination .stutimi_list > .ques_list > li > span:nth-child(1) {
  width: 15%;
}
.examination > .question_list > .ques_list > li > span:nth-child(2),
.examination .ach_list > .ques_list > li > span:nth-child(2),
.examination .cuoti_list > .ques_list > li > span:nth-child(2),
.examination .stutimi_list > .ques_list > li > span:nth-child(2) {
  width: 15%;
}
.examination > .question_list > .ques_list > li > span:nth-child(3),
.examination .ach_list > .ques_list > li > span:nth-child(3),
.examination .cuoti_list > .ques_list > li > span:nth-child(3),
.examination .stutimi_list > .ques_list > li > span:nth-child(3) {
  width: 15%;
}
.examination > .question_list > .ques_list > li > span:nth-child(4),
.examination .ach_list > .ques_list > li > span:nth-child(4),
.examination .cuoti_list > .ques_list > li > span:nth-child(4),
.examination .stutimi_list > .ques_list > li > span:nth-child(4) {
  width: 15%;
}
.examination > .question_list > .ques_list > li > span:nth-child(5),
.examination .ach_list > .ques_list > li > span:nth-child(5),
.examination .cuoti_list > .ques_list > li > span:nth-child(5),
.examination .stutimi_list > .ques_list > li > span:nth-child(5) {
  width: 15%;
}
.examination > .question_list > .ques_list > li > span:nth-child(6),
.examination .ach_list > .ques_list > li > span:nth-child(6),
.examination .cuoti_list > .ques_list > li > span:nth-child(6),
.examination .stutimi_list > .ques_list > li > span:nth-child(6) {
  width: 15%;
}
.examination > .question_list > .ques_list > li > span:nth-child(7),
.examination .ach_list > .ques_list > li > span:nth-child(7),
.examination .cuoti_list > .ques_list > li > span:nth-child(7),
.examination .stutimi_list > .ques_list > li > span:nth-child(7) {
  width: 20%;
}
.examination > .question_list > .ques_list > li > span:nth-child(7) span,
.examination .ach_list > .ques_list > li > span:nth-child(7) span,
.examination .cuoti_list > .ques_list > li > span:nth-child(7) span,
.examination .stutimi_list > .ques_list > li > span:nth-child(7) span {
  margin: 0 10px;
  color: #3b9aaf;
  cursor: pointer;
}
.examination > .question_list > .ques_list > li > span:nth-child(7) > span:nth-child(3),
.examination .ach_list > .ques_list > li > span:nth-child(7) > span:nth-child(3),
.examination .cuoti_list > .ques_list > li > span:nth-child(7) > span:nth-child(3),
.examination .stutimi_list > .ques_list > li > span:nth-child(7) > span:nth-child(3) {
  color: #F14A6C;
}
.examination > .question_list > .ques_list > li:nth-child(1),
.examination .ach_list > .ques_list > li:nth-child(1),
.examination .cuoti_list > .ques_list > li:nth-child(1),
.examination .stutimi_list > .ques_list > li:nth-child(1) {
  font-size: 16px;
  background-color: #f2f2f2;
}
.examination > .exa_add {
  display: flex;
  display: none;
  flex-direction: column;
}
.examination > .exa_add > .add_exa {
  font-size: 16px;
  border-left: 5px solid #3b9aaf;
  padding-left: 10px;
  margin-bottom: 20px;
}
.examination > .exa_add > ul {
  box-sizing: border-box;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
}
.examination > .exa_add > ul > li {
  margin-bottom: 30px;
}
.examination > .exa_add > ul > li > .submit_btn button {
  width: 80px;
  height: 30px;
  border-radius: 3px;
  border: 1px solid #3b9aaf;
  color: #3b9aaf;
  background-color: #fff;
  margin-right: 20px;
}
.examination > .exa_add > ul > li > .submit_btn > button:first-child {
  color: #fff;
  background-color: #3b9aaf;
}
.examination > .exa_add > ul > .test_time {
  display: flex;
  align-items: center;
}
.examination > .exa_add > ul > .test_time > div {
  margin-right: 80px;
}
.examination > .exa_add > ul h2 {
  font-size: 16px;
  margin-bottom: 10px;
}
.examination > .exa_add > ul input {
  border-radius: 2px;
  width: 240px;
  height: 35px;
  padding: 0 10px;
  box-sizing: border-box;
  border: 1px solid #999;
}
.examination > .exa_add > ul .select {
  width: 240px;
  height: 40px;
  position: relative;
}
.examination > .exa_add > ul .select > input {
  border-radius: 2px;
  width: 240px;
  height: 35px;
  padding: 0 10px;
  box-sizing: border-box;
}
.examination > .exa_add > ul .select > ul {
  width: 100%;
  height: auto;
  position: absolute;
  background-color: #fff;
  box-sizing: border-box;
  margin-top: 3px;
  border-radius: 2px;
}
.examination > .exa_add > ul .select > ul > li {
  height: 30px;
  height: 0;
  font-size: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.examination > .exa_add > ul .select > img {
  width: 15px;
  position: absolute;
  right: 10px;
  top: 50%;
  transition: all 0.5s;
  transform: translateY(-50%);
}
.achievement .achievement_box > .ques_search {
  width: 100%;
  height: 70px;
  align-items: center;
  display: flex;
  position: relative;
  justify-content: flex-end;
}
.achievement .achievement_box > .ques_search > .Question_bankadd,
.achievement .achievement_box > .ques_search .question_listadd {
  background-color: transparent;
  color: #3b9aaf;
  border: none;
  white-space: nowrap;
}
.achievement .achievement_box > .ques_search > .searchsmallbox {
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  height: 35px;
}
.achievement .achievement_box > .ques_search > .searchsmallbox > div {
  background-color: #3b9aaf;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.achievement .achievement_box > .ques_search > .searchsmallbox > div img {
  width: 30px;
  height: 30px;
}
.achievement .achievement_box > .ques_search > .searchsmallbox > input {
  border-radius: 3px 0 0 3px;
  width: 170px;
  height: 35px;
  box-sizing: border-box;
  padding: 0 10px;
  outline: none;
  border: 1px solid #dadada;
}
.achievement .achievement_box > .ques_search input {
  width: 230px;
  box-sizing: border-box;
  padding: 0 10px;
  border: 1px solid #727272;
}
.achievement .achievement_box > .ques_search > div {
  margin: 0 10px;
}
.achievement .achievement_box > .ques_search > .select {
  height: 100%;
}
.achievement .achievement_box > .ques_search > .select input {
  height: 100%;
  box-sizing: border-box;
}
.achievement .achievement_box > .ques_search > input {
  margin: 0 10px;
}
.achievement .achievement_box > .ques_search > button {
  width: 60px;
  margin: 0 10px;
  border: 1px solid #3b9aaf;
  background-color: #3b9aaf;
  color: #fff;
  border-radius: 5px;
}
.achievement .achievement_box > .ques_search > button:last-child {
  position: absolute;
  right: 0;
  height: 100%;
}
.achievement .achievement_box > .achievement_search {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.achievement .achievement_box > .achievement_search > input {
  margin-right: 10px;
  width: 170px;
  height: 35px;
  box-sizing: border-box;
  padding: 0 10px;
  outline: none;
}
.achievement .achievement_box > .achievement_search > button {
  width: 60px;
  height: 40px;
  border: none;
  outline: none;
  background-color: #3b9aaf;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
}
.achievement .achievement_box > .achievement_search > .addclassroom,
.achievement .achievement_box > .achievement_search .addstudents {
  width: 120px;
  position: absolute;
  right: 20px;
}
.achievement .achievement_box > .achievement_list {
  width: 100%;
}
.achievement .achievement_box > .achievement_list tr:first-child {
  background-color: #F3F3F3;
}
.achievement .achievement_box > .achievement_list tr {
  height: 45px;
  background-color: #fff;
}
.achievement .achievement_box > .achievement_list tr {
  height: 60px;
}
.achievement .achievement_box > .achievement_list tr td {
  text-align: center;
  color: #4E4E4E;
  font-weight: bold;
}
.achievement .achievement_box > .achievement_list tr td button {
  width: 70px;
  height: 30px;
  background-color: #3b9aaf;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 400;
}
.achievement .achievement_box > .achievement_list tr td > button:first-child {
  color: #F14A6C;
  background-color: transparent;
}
.achievement .achievement_box > .achievement_list tr td > button:last-child {
  color: #3b9aaf;
  background-color: transparent;
}
.achievement > .question_list,
.achievement .ach_list,
.achievement .cuoti_list,
.achievement .stutimi_list {
  display: none;
}
.achievement > .question_list > .ques_search,
.achievement .ach_list > .ques_search,
.achievement .cuoti_list > .ques_search,
.achievement .stutimi_list > .ques_search {
  width: 100%;
  height: 70px;
  align-items: center;
  display: flex;
  position: relative;
  justify-content: flex-end;
}
.achievement > .question_list > .ques_search > .Question_bankadd,
.achievement .ach_list > .ques_search > .Question_bankadd,
.achievement .cuoti_list > .ques_search > .Question_bankadd,
.achievement .stutimi_list > .ques_search > .Question_bankadd,
.achievement > .question_list > .ques_search .question_listadd,
.achievement .ach_list > .ques_search .question_listadd,
.achievement .cuoti_list > .ques_search .question_listadd,
.achievement .stutimi_list > .ques_search .question_listadd {
  background-color: transparent;
  color: #3b9aaf;
  border: none;
  white-space: nowrap;
}
.achievement > .question_list > .ques_search > .searchsmallbox,
.achievement .ach_list > .ques_search > .searchsmallbox,
.achievement .cuoti_list > .ques_search > .searchsmallbox,
.achievement .stutimi_list > .ques_search > .searchsmallbox {
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  height: 35px;
}
.achievement > .question_list > .ques_search > .searchsmallbox > div,
.achievement .ach_list > .ques_search > .searchsmallbox > div,
.achievement .cuoti_list > .ques_search > .searchsmallbox > div,
.achievement .stutimi_list > .ques_search > .searchsmallbox > div {
  background-color: #3b9aaf;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.achievement > .question_list > .ques_search > .searchsmallbox > div img,
.achievement .ach_list > .ques_search > .searchsmallbox > div img,
.achievement .cuoti_list > .ques_search > .searchsmallbox > div img,
.achievement .stutimi_list > .ques_search > .searchsmallbox > div img {
  width: 30px;
  height: 30px;
}
.achievement > .question_list > .ques_search > .searchsmallbox > input,
.achievement .ach_list > .ques_search > .searchsmallbox > input,
.achievement .cuoti_list > .ques_search > .searchsmallbox > input,
.achievement .stutimi_list > .ques_search > .searchsmallbox > input {
  border-radius: 3px 0 0 3px;
  width: 170px;
  height: 35px;
  box-sizing: border-box;
  padding: 0 10px;
  outline: none;
  border: 1px solid #dadada;
}
.achievement > .question_list > .ques_search input,
.achievement .ach_list > .ques_search input,
.achievement .cuoti_list > .ques_search input,
.achievement .stutimi_list > .ques_search input {
  width: 230px;
  box-sizing: border-box;
  padding: 0 10px;
  border: 1px solid #727272;
}
.achievement > .question_list > .ques_search > div,
.achievement .ach_list > .ques_search > div,
.achievement .cuoti_list > .ques_search > div,
.achievement .stutimi_list > .ques_search > div {
  margin: 0 10px;
}
.achievement > .question_list > .ques_search > .select,
.achievement .ach_list > .ques_search > .select,
.achievement .cuoti_list > .ques_search > .select,
.achievement .stutimi_list > .ques_search > .select {
  height: 100%;
}
.achievement > .question_list > .ques_search > .select input,
.achievement .ach_list > .ques_search > .select input,
.achievement .cuoti_list > .ques_search > .select input,
.achievement .stutimi_list > .ques_search > .select input {
  height: 100%;
  box-sizing: border-box;
}
.achievement > .question_list > .ques_search > input,
.achievement .ach_list > .ques_search > input,
.achievement .cuoti_list > .ques_search > input,
.achievement .stutimi_list > .ques_search > input {
  margin: 0 10px;
}
.achievement > .question_list > .ques_search > button,
.achievement .ach_list > .ques_search > button,
.achievement .cuoti_list > .ques_search > button,
.achievement .stutimi_list > .ques_search > button {
  width: 60px;
  margin: 0 10px;
  border: 1px solid #3b9aaf;
  background-color: #3b9aaf;
  color: #fff;
  border-radius: 5px;
}
.achievement > .question_list > .ques_search > button:last-child,
.achievement .ach_list > .ques_search > button:last-child,
.achievement .cuoti_list > .ques_search > button:last-child,
.achievement .stutimi_list > .ques_search > button:last-child {
  position: absolute;
  right: 0;
  height: 100%;
}
.achievement > .question_list > .ques_list,
.achievement .ach_list > .ques_list,
.achievement .cuoti_list > .ques_list,
.achievement .stutimi_list > .ques_list {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 5px 5px;
}
.achievement > .question_list > .ques_list > li,
.achievement .ach_list > .ques_list > li,
.achievement .cuoti_list > .ques_list > li,
.achievement .stutimi_list > .ques_list > li {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #fff;
  text-align: center;
  justify-content: center;
}
.achievement > .question_list > .ques_list > li > span,
.achievement .ach_list > .ques_list > li > span,
.achievement .cuoti_list > .ques_list > li > span,
.achievement .stutimi_list > .ques_list > li > span {
  border: 1px solid #999;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.achievement > .question_list > .ques_list > li > span:nth-child(1),
.achievement .ach_list > .ques_list > li > span:nth-child(1),
.achievement .cuoti_list > .ques_list > li > span:nth-child(1),
.achievement .stutimi_list > .ques_list > li > span:nth-child(1) {
  width: 15%;
}
.achievement > .question_list > .ques_list > li > span:nth-child(2),
.achievement .ach_list > .ques_list > li > span:nth-child(2),
.achievement .cuoti_list > .ques_list > li > span:nth-child(2),
.achievement .stutimi_list > .ques_list > li > span:nth-child(2) {
  width: 15%;
}
.achievement > .question_list > .ques_list > li > span:nth-child(3),
.achievement .ach_list > .ques_list > li > span:nth-child(3),
.achievement .cuoti_list > .ques_list > li > span:nth-child(3),
.achievement .stutimi_list > .ques_list > li > span:nth-child(3) {
  width: 25%;
}
.achievement > .question_list > .ques_list > li > span:nth-child(4),
.achievement .ach_list > .ques_list > li > span:nth-child(4),
.achievement .cuoti_list > .ques_list > li > span:nth-child(4),
.achievement .stutimi_list > .ques_list > li > span:nth-child(4) {
  width: 25%;
}
.achievement > .question_list > .ques_list > li > span:nth-child(5),
.achievement .ach_list > .ques_list > li > span:nth-child(5),
.achievement .cuoti_list > .ques_list > li > span:nth-child(5),
.achievement .stutimi_list > .ques_list > li > span:nth-child(5) {
  width: 10%;
}
.achievement > .question_list > .ques_list > li > span:nth-child(6),
.achievement .ach_list > .ques_list > li > span:nth-child(6),
.achievement .cuoti_list > .ques_list > li > span:nth-child(6),
.achievement .stutimi_list > .ques_list > li > span:nth-child(6) {
  width: 10%;
}
.achievement > .question_list > .ques_list > li:nth-child(1),
.achievement .ach_list > .ques_list > li:nth-child(1),
.achievement .cuoti_list > .ques_list > li:nth-child(1),
.achievement .stutimi_list > .ques_list > li:nth-child(1) {
  background-color: #f2f2f2;
  font-size: 16px;
}
.section input,
.section textarea,
.section button {
  border: 1px solid #d8d8d8;
}
.content_text {
  white-space: nowrap;
  overflow: hidden;
  width: 80%;
  text-align: left;
  display: inline-block;
  text-overflow: ellipsis;
}
.shijuanid,
.class_tokaoshi {
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: column;
}
.shijuanid li,
.class_tokaoshi li {
  font-size: 14px !important;
  padding: 0 10px;
  box-sizing: border-box;
  background-color: #f7f7f7;
}
.blackbox {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.blackbox div {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.selectbox {
  display: flex;
  flex-direction: column;
}
.selectbox > div {
  display: flex;
  margin: 5px 0;
}
.selectbox > div input {
  height: 30px;
  box-sizing: border-box;
  padding: 5px 10px;
}
.layui-btn {
  width: 80px !important;
  height: 30px !important;
  border-radius: 3px !important;
  border: 1px solid #3b9aaf;
  color: #3b9aaf;
  background-color: #fff !important;
  line-height: 30px !important;
  text-align: center;
  padding: 0 !important;
}
input::placeholder {
  font-size: 14px !important;
}
.del_boxtimu,
.del_paper,
.del_kaoshi {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
  top: 0;
  left: 0;
  display: none;
}
.del_boxtimu > div,
.del_paper > div,
.del_kaoshi > div {
  width: 400px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 10px;
  position: absolute;
  left: 0;
  padding-bottom: 15px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}
.del_boxtimu > div span,
.del_paper > div span,
.del_kaoshi > div span {
  font-size: 14px;
}
.del_boxtimu > div > div:nth-child(1),
.del_paper > div > div:nth-child(1),
.del_kaoshi > div > div:nth-child(1) {
  display: flex;
  align-items: center;
}
.del_boxtimu > div > div:nth-child(1) img,
.del_paper > div > div:nth-child(1) img,
.del_kaoshi > div > div:nth-child(1) img {
  margin-left: 10px;
  width: 30px;
  display: inline-block;
  margin-right: 10px;
}
.del_boxtimu > div > h2,
.del_paper > div > h2,
.del_kaoshi > div > h2 {
  display: inline-block;
  width: 100px;
  font-size: 20px;
  color: #666;
}
.del_boxtimu > div > div:nth-child(2),
.del_paper > div > div:nth-child(2),
.del_kaoshi > div > div:nth-child(2) {
  display: flex;
  align-items: center;
  height: 30px;
}
.del_boxtimu > div > div:nth-child(2) > span,
.del_paper > div > div:nth-child(2) > span,
.del_kaoshi > div > div:nth-child(2) > span {
  font-size: 18px;
  width: 100%;
  margin-top: 30px;
  display: block;
  text-align: center;
}
.del_boxtimu > div > div:nth-child(2) > img,
.del_paper > div > div:nth-child(2) > img,
.del_kaoshi > div > div:nth-child(2) > img {
  width: 20px;
  height: 20px;
  margin: 0 15px;
}
.del_boxtimu > div > .btnclass,
.del_paper > div > .btnclass,
.del_kaoshi > div > .btnclass,
.del_boxtimu > div .btnpaper,
.del_paper > div .btnpaper,
.del_kaoshi > div .btnpaper,
.del_boxtimu > div .btnkaoshi,
.del_paper > div .btnkaoshi,
.del_kaoshi > div .btnkaoshi {
  width: 100%;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.del_boxtimu > div > .btnclass > button,
.del_paper > div > .btnclass > button,
.del_kaoshi > div > .btnclass > button,
.del_boxtimu > div .btnpaper > button,
.del_paper > div .btnpaper > button,
.del_kaoshi > div .btnpaper > button,
.del_boxtimu > div .btnkaoshi > button,
.del_paper > div .btnkaoshi > button,
.del_kaoshi > div .btnkaoshi > button {
  height: 30px;
  font-size: 14px;
  width: 80px;
  border: 1px solid #318193;
  color: #318193;
  margin: 0 10px;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
}
.del_boxtimu > div > .btnclass > button:first-child,
.del_paper > div > .btnclass > button:first-child,
.del_kaoshi > div > .btnclass > button:first-child,
.del_boxtimu > div .btnpaper > button:first-child,
.del_paper > div .btnpaper > button:first-child,
.del_kaoshi > div .btnpaper > button:first-child,
.del_boxtimu > div .btnkaoshi > button:first-child,
.del_paper > div .btnkaoshi > button:first-child,
.del_kaoshi > div .btnkaoshi > button:first-child {
  background-color: #fff;
}
.del_boxtimu > div > .btnclass > button:last-child,
.del_paper > div > .btnclass > button:last-child,
.del_kaoshi > div > .btnclass > button:last-child,
.del_boxtimu > div .btnpaper > button:last-child,
.del_paper > div .btnpaper > button:last-child,
.del_kaoshi > div .btnpaper > button:last-child,
.del_boxtimu > div .btnkaoshi > button:last-child,
.del_paper > div .btnkaoshi > button:last-child,
.del_kaoshi > div .btnkaoshi > button:last-child {
  background-color: #318193;
  color: #fff;
}
.del_boxtimu > div,
.del_paper > div,
.del_kaoshi > div {
  display: flex;
}
.goback_achievement,
.goback_stu {
  width: 80px;
  height: 30px;
  background-color: #fff;
  border-radius: 3px;
  color: #3b9aaf;
  border: 1px solid #3b9aaf;
}
.cuoti_list .ctlist {
  margin-top: 50px;
}
.cuoti_list .ctlist li > span:nth-child(1) {
  width: 5% !important;
}
.cuoti_list .ctlist li > span:nth-child(2) {
  width: 45% !important;
  display: flex;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  align-items: center;
  line-height: 50px;
}
.cuoti_list .ctlist li > span:nth-child(3) {
  width: 8% !important;
}
.cuoti_list .ctlist li > span:nth-child(4) {
  width: 8% !important;
}
.cuoti_list .ctlist li > span:nth-child(5) {
  width: 8% !important;
}
.cuoti_list .ctlist li > span:nth-child(6) {
  width: 8% !important;
}
.cuoti_list .ctlist li > span:nth-child(7) {
  width: 8% !important;
}
.cuoti_list .ctlist li > span:nth-child(8) {
  width: 10% !important;
}
.stutimi_list {
  display: flex;
  flex-direction: column;
}
.stutimi_list > .title_paper {
  border-bottom: 1px solid #999;
  box-sizing: border-box;
  padding: 15px 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .stutimi_list > .title_paper {
    display: flex;
    flex-direction: column;
  }
}
.stutimi_list > .title_paper > span {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .stutimi_list > .title_paper > span {
    margin: 5px;
  }
}
.stutimi_list > ul {
  display: flex;
  flex-direction: column;
}
.stutimi_list > ul > li {
  display: flex;
  flex-direction: column;
  border-bottom: 1px dashed #3b9aaf;
  padding-bottom: 20px;
  padding-top: 20px;
  height: auto !important;
  align-items: flex-start !important;
  background-color: transparent !important;
}
.stutimi_list > ul > li > .test_header {
  margin-bottom: 5px;
}
.stutimi_list > ul > li > .test_header span {
  margin-right: 30px;
}
.stutimi_list > ul > li > span {
  width: 100% !important;
  text-align: left;
  justify-content: start !important;
  border: none !important;
  margin-bottom: 10px;
}
.stutimi_list > ul > li > ul {
  display: flex;
  flex-direction: column;
}
.stutimi_list > ul > li > ul > li {
  margin: 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.stutimi_list > ul > li > ul > li span {
  display: flex;
  justify-content: start;
}
#demo-laypage-normal-2,
#demo-laypage-normal-3,
#demo-laypage-normal-4,
#demo-laypage-normal-5 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 80px;
}
