/* 学校简介-规章制度 */
.schoolProfile {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.schoolProfileCenter {
  flex: 1;
  width: 100%;
  background: #f3f3f3;
}
/* 顶部 */
.schoolProfileCenter .tabPageTitle {
  overflow: hidden;
  width: 100%;
  height: 195px;
  background-image: url("/img/sideBg.png");
}
.schoolProfileCenter .tabPageTitle .titleCenter {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
.schoolProfileCenter .tabPageTitle .titleCenter .pageNavigate {
  margin: 20px 0 0 40px;
  font-size: 14px;
  color: #ddd;
}

/* 主心 */
.schoolProfileCenter .schoolProfileMain {
  position: relative;
  top: -61px;
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

/* 主心 - 侧导航 */
.schoolProfileCenter .schoolProfileMain .teacherGardenBox .mainTitle {
  width: 180px;
  height: 61px;
  background: #a30014;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 61px;
  padding-left: 38px;
}

.schoolProfileCenter .schoolProfileMain .teacherGardenBox .everyTitleWrap {
  background-color: #fff;
  width: 100%;
  padding: 13px 0;
}
.schoolProfileCenter
  .schoolProfileMain
  .teacherGardenBox
  .everyTitleWrap
  .gardenItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
  line-height: 42px;
  font-size: 14px;
  color: #999;
  cursor: pointer;
  padding: 0 12px 0 34px;
  border-left: 3px solid transparent;
}
.schoolProfileCenter
  .schoolProfileMain
  .teacherGardenBox
  .everyTitleWrap
  .gardenItem
  img {
  display: none;
}
.schoolProfileCenter
  .schoolProfileMain
  .teacherGardenBox
  .everyTitleWrap
  .gardenItem:hover {
  background: rgba(163, 0, 20, 0.05);
  font-weight: 600;
  color: #a30014;
  border-left: 3px solid #a30014;
}
.schoolProfileCenter
  .schoolProfileMain
  .teacherGardenBox
  .everyTitleWrap
  .gardenItem:hover
  img {
  display: block;
}
.schoolProfileCenter
  .schoolProfileMain
  .teacherGardenBox
  .everyTitleWrap
  .active {
  background: rgba(163, 0, 20, 0.05);
  font-weight: 600;
  color: #a30014;
  border-left: 3px solid #a30014;
}
.schoolProfileCenter
  .schoolProfileMain
  .teacherGardenBox
  .everyTitleWrap
  .active
  img {
  display: block;
}
.schoolProfileCenter
  .schoolProfileMain
  .teacherGardenBox
  .everyTitleWrap
  .gardenItem:not(:last-child) {
  margin-bottom: 13px;
}

.schoolProfileMain .listWrap {
  margin-left: 30px;
  width: 990px;
  padding: 30px 60px 50px;
  background-color: #fff;
}
.schoolProfileMain .detailsListWrap {
  margin-left: 0;
  width: 100%;
}
.schoolProfileMain .listWrap .listWrapAll .regulationItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  border-bottom: 1px dotted #989898;
  color: #333;
  cursor: pointer;
}
.schoolProfileMain .listWrap .listWrapAll .regulationItem .textOverFlow {
  width: 700px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* 分页 */
.paganation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.paganation .allTotal .count {
  margin: 0 5px;
}
.paganation .prevPage,
.paganation .nextPage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 36px;
  border-radius: 3px;
  border: 1px solid #d7dbe0;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  margin: 0 9px;
}
.paganation .prevPage img,
.paganation .nextPage img {
  width: 7px;
  height: 12px;
}
.paganation .prevPage img {
  margin-right: 8px;
}
.paganation .nextPage img {
  margin-left: 8px;
}
.paganation .curPageNum {
  display: flex;
}
.paganation .curPageNum .pageEveryNum {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  text-align: center;
  line-height: 36px;
  border: 1px solid #d7dbe0;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.paganation .curPageNum .pageEveryNum:not(:nth-last-child(1)) {
  margin-right: 10px;
}
.paganation .curPageNum .active {
  background: #ab2c3c;
  color: #fff;
}

.paganation .pageSelect {
  height: 36px;
  border-color: #d7dbe0;
  border-radius: 3px;
  padding: 0 7px;
}

/* 详情 */

.listWrap .detailTitle {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  line-height: 40px;
  text-align: center;
}
.listWrap .detailteacherintro {
  padding: 30px 0;
  font-size: 16px;
  color: #555;
  text-align: center;
  border-bottom: 1px solid #f3f3f3;
}
.listWrap .detailteacherContent {
  padding-top: 30px;
  line-height: 26px;
}
.listWrap .detailteacherContent img {
  max-width: 100%;
}
.listWrap .attachments .attachmentsTitle {
  margin-top: 10px;
  margin-bottom: 20px;
}
.listWrap .attachments ul li {
  cursor: pointer;
}
.listWrap .attachments ul li :hover {
  color: red;
}

