@charset "UTF-8";
.training .conts .content .list .imgs img {
  width: 1100px;
}

.page-student .conts .imgs, .page-student li .imgs {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-student .conts .imgs img, .page-student li .imgs img {
  opacity: 0;
}

/* 弹窗 */
.laybox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10;
  display: none;
}

.laybox .innerBox {
  position: absolute;
  left: 50%;
  top: 55%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 5px;
  text-align: center;
}

.laybox .innerBox .contbox {
  text-align: center;
}

.laybox .innerBox .contbox img {
  width: auto !important;
  max-height: 75vh;
}

.laybox .closeBtn {
  position: absolute;
  right: -40px;
  top: -40px;
  cursor: pointer;
  z-index: 22;
}

/* 分页样式 */
.page-student .conts .list ul li {
  width: 25% !important;
}

.page-student .pagination-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
  gap: 8px;
}

.page-student .pagination-wrapper .page-btn {
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  padding: 0 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.page-student .pagination-wrapper .page-btn:hover {
  border-color: #f88d35;
  color: #f88d35;
}

.page-student .pagination-wrapper .page-btn.active {
  background: #f88d35;
  border-color: #f88d35;
  color: #fff;
  font-weight: bold;
}

.page-student .pagination-wrapper .page-btn.disabled {
  color: #ccc;
  border-color: #eee;
  cursor: not-allowed;
}

.page-student .pagination-wrapper .page-btn.disabled:hover {
  border-color: #eee;
  color: #ccc;
}

.page-student .conts .list ul li.page-hidden {
  display: none !important;
}

/* 修复分类Tab中a标签的样式 */
.page-student .tabs ul li a {
  color: #c0392b;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

.page-student .tabs ul li.acti a {
  color: #fff;
  font-weight: bold;
}