
.centerBg {
  width: 100%;
  height: 445px;
}
.main {
  background: #f3f3f3;
  padding-bottom: 80px;
}
.listPicItem {
  width: 100%;
  margin-top: 60px;
}
.listPicItemDetail {
  width: 100%;
  position: relative;
}
.listPicItemText {
  width: 100%;
  height: 175px;
  background-color: #ffffff;
  padding: 40px 0px 40px 40px;
}
.listPicItemText>h3 {
  display: block;
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 30px;
  width: 70%;
  height: 30px;
  overflow: hidden;
  white-space: nowrap;  
  text-overflow: ellipsis; 
}
.listPicItemText>span {
  display: block;
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  margin-top: 10px;
}
.listPicItemText>i {
  display: block;
  width: 48px;
  height: 8px;
  background: #AE0C2A;
  margin-bottom: 10px;
}
.listPicItemImg {
  width: 134px;
  height: 185px;
  overflow: hidden;
  position: absolute;
  top: -20px;
  right: 25px;
  z-index: 2;
}
.listPicItemImg>img {
  transition: all .3s ease-out .1s;
  -webkit-transition: all .3s ease-out .1s;
  -moz-transition: all .3s ease-out .1s;
  -ms-transition: all .3s ease-out .1s;
  -o-transition: all .3s ease-out .1s;
}
.listPicItemDetail:hover .listPicItemImg>img {
  transform: scale(1.1,1.1);
  -webkit-transform: scale(1.1,1.1);
  -moz-transform: scale(1.1,1.1);
  -ms-transform: scale(1.1,1.1);
}
.listPicItemDetail:hover .listPicItemText {
  background-color: #AE0C2A;
}
.listPicItemDetail:hover h3,
.listPicItemDetail:hover span {
  color: #ffffff;
}
.listPicItemDetail:hover i {
  background-color: #ffffff;
}
.listPicItemDetail+.listPicItemDetail {
  margin-top: 60px;
}

/* page */

.page {
  width: 100%;
  margin-top: 50px;
}
.page_nav {
  height: 32px;
  width: 100%;
  text-align: center;
}
.page_nav li {
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
  color: #222222;
  border-radius: 5px;
  margin: 0px 3px;
}
.page_nav li a {
  display: block;
  background-color: #ffffff;
  color: #222222;
}
.page_nav li>a.active {
  border: 1px solid #AE0C2A;
  background-color: #AE0C2A;
  color: #ffffff;
}
.page_nav li.active>span {
  border: 1px solid #AE0C2A;
  background-color: #AE0C2A;
  color: #ffffff;
}
.pagination {
  margin: 0 !important;
}
.page_nav li:last-child {
  width: auto;
}
.total {
  width: auto !important;
}
.total span {
  width: auto !important;
  font-size: 14px;
  padding: 0px 5px;
}
.pagination span,
.pagination a {
  box-sizing: border-box;
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px !important;
  border: 1px solid #ffffff;
  border-radius: 4px;
}
.pagination a:hover {
  color: #ffffff;
  background-color: #AE0C2A;
  border: 1px solid #AE0C2A;
}
.pagination div {
  display: inline-block;
  height: 40px;
  font-size: 16px;
  color: #333333;
  line-height: 40px;
}
.pagination div input {
  width: 40px;
  height: 40px;
  border: 1px solid #e6e6e6;
  margin: 0px 5px;
  font-size: 16px;
  text-align: center;
}
.pagination div input[type="button"] {
  width: 60px;
  background-color: #990000;
  border: 1px solid #990000;
  color: #ffffff;
  margin-left: 10px;
  cursor: pointer;
}

/* notice */

.noticeListItem {
  width: 100%;
  margin-top: 30px;
}
.noticeListDetail {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #E1E1E1;
  position: relative;
}
.noticeListDetail+.noticeListDetail {
  padding-top: 20px;
}
.noticeListDetail {
  display: flex;
  justify-content: space-between;
}
.noticeListDetail>a {
  display: inline-block;
  width: 85%;
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 50px;
  height: 50px;
  overflow: hidden;
  white-space: nowrap;  
  text-overflow: ellipsis; 
}
.noticeListDetail>span {
  display: inline-block;
  font-size: 16px;
  color: #666666;
  line-height: 50px;
}
.noticeListDetail:after {
  display: block;
  content: '';
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: #AE0C2A;
  transition: width .3s ease-out .1s;
  -webkit-transition: width .3s ease-out .1s;
  -moz-transition: width .3s ease-out .1s;
  -ms-transition: width .3s ease-out .1s;
  -o-transition: width .3s ease-out .1s;
}
.noticeListDetail:hover:after {
  width: 100%;
}
.noticeListDetail:hover a {
  color: #AE0C2A;
}

/* article */

.articleCont {
  width: 100%;
  background-color: #ffffff;
  padding: 40px 60px;
  margin-top: 30px;
}
.articleTitle {
  width: 100%;
  border-bottom: 1px solid #FFCDD6;
  padding-bottom: 30px;
}
.articleTitle>h3 {
  display: block;
  font-weight: bold;
  font-size: 20px;
  color: #333333;
  line-height: 35px;
  text-align: center;
}
.articleTitle>span {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  margin-top: 10px;
}
.articleDetail {
  width: 100%;
  padding: 0px 15px 30px 15px;
  margin-top: 30px;
}
.articleDetail p {
  font-size: 14px;
  color: #333333;
  line-height: 25px;
  margin-bottom: 5px;
}
.articleDetail img {
  display: block;
  max-width: 80%;
  margin: 10px auto;
}
.articleDetail table {
  width: 80%;
  border-collapse: collapse;
}
.articleDetail table p {
  text-indent: 0em !important;
}
.articlePage {
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid #FFCDD6;
}
.articlePage>a {
  display: block;
  font-size: 14px;
  color: #333333;
  line-height: 40px;
  height: 40px;
  overflow: hidden;
  white-space: nowrap;  
  text-overflow: ellipsis;
  padding-left: 20px;
}

/* teacher_list */

.teacherList {
  width: 100%;
  margin-top: 30px;
}
.teacher_list_nav {
  width: 100%;
}
.teacher_list_nav>h3 {
  display: block;
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 27px;
  padding-left: 20px;
  border-left: 5px solid #AE0C2A;
}
.teacher_list_nav_detail {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.teacher_list_nav_detail>a {
  display: block;
  width: calc(100% - 81%);
  height: 66px;
  border-radius: 6px;
  background-color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  text-align: center;
  line-height: 66px;
  border-bottom: 1px solid #AE0C2A;
}
.teacher_list_nav_detail>a:hover {
  background-color: #AE0C2A;
  color: #ffffff;
}
.teacher_list_nav_detail_act {
  background-color: #AE0C2A !important;
  color: #ffffff !important;
}
.teacher_list_item_box {
  width: 100%;
  margin-top: 80px;
}
.teacher_list_item_box>h3 {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 25px;
}
.teacher_item_cont {
  width: 100%;
  margin-top: 20px;
}
.teacher_list_item_detail {
  width: calc(100% - 76%);
  height: 350px;
  overflow: hidden;
  float: left;
  position: relative;
  margin-bottom: 20px;
}
.teacher_list_pic {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.teacher_list_text {
  width: 100%;
  height: 106px;
  background: url(../images/teacher_bg.png) no-repeat center center / cover;
  position: absolute;
  z-index: 2;
  bottom: 0px;
  padding: 20px;
}
.teacher_list_text>h3 {
  font-weight: bold;
  font-size: 22px;
  color: #333333;
  line-height: 30px;
}
.teacher_list_text>span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 25px;
  margin-top: 5px;
}
.teacher_list_item_detail:hover .teacher_list_text {
  background: url(../images/teacher_bg_h.png) no-repeat center center / cover;
}
.teacher_list_item_detail:hover .teacher_list_text h3, 
.teacher_list_item_detail:hover .teacher_list_text span {
  color: #ffffff;
}
.teacher_list_item_detail+.teacher_list_item_detail {
  margin-left: 14px;
}
.teacher_list_item_detail:nth-child(4n+1) {
  margin-left: 0px;
}

/* teacherArticle */

.teacherArticle {
  width: 100%;
  margin-top: 20px;
  background-color: #ffffff;
  padding: 45px;
}
.teacher_article_header {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.teacher_article_pic {
  width: 260px;
  height: 300px;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
  border-radius: 4px 4px 4px 4px;
  border: 2px solid #E7E7E7;
}
.teahcer_article_text {
  width: calc(100% - 260px);
}
.teahcer_article_text>h3 {
  display: block;
  margin-top: 50px;
  font-weight: bold;
  font-size: 28px;
  color: #AE0C2A;
  line-height: 38px;
  text-indent: 45px;
}
.teahcer_article_text>h3>span {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  color: #AE0C2A;
  text-indent: 0px;
  margin-left: 30px;
  padding: 0px 20px;
  background-color: #FFE9ED;
}
.teacher_article_detail {
  width: 100%;
  height: 187px;
  background-color: #F6F6F6;
  padding: 20px 30px;
  margin-top: 20px;
}
.teacher_article_detail>div>span {
  display: inline-block;
  width: 15%;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  line-height: 25px;
}
.teacher_article_detail>div>span+span {
  width: auto;
}
.teacher_article_detail>div+div {
  margin-top: 10px;
}
.teacher_article_cont {
  width: 100%;
  margin-top: 50px;
}
.teacher_article_cont_detail + .teacher_article_cont_detail {
  margin-top: 30px;
}
.teacher_article_cont_detail_title {
  width: 100%;
  margin-bottom: 20px;
  border-bottom: 1px solid #FFD9D9;
}
.teacher_article_cont_detail_title>h3 {
  display: inline-block;
  padding: 12px 38px;
  font-weight: bold;
  font-size: 20px;
  color: #AE0C2A;
  border-radius: 5px;
  background: url(../images/icon_teacher_title.png) no-repeat 15px 0px #FFD9D9;
}
.teacher_article_cont_detail p {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 26px;
  margin-bottom: 10px;
}

/* leader */

.leader_list {
  width: 100%;
  margin-top: 30px;
}
.leader_list_cont {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-radius: 15px;
  border-left: 11px solid #AE0C2A;
  background: url(../images/leader_bg.png) no-repeat right bottom #ffffff;
  padding: 20px 30px;
}
.leader_list_cont+.leader_list_cont {
  margin-top: 30px;
}
.leader_list_pic {
  width: 220px;
  height: 300px;
  overflow: hidden;
}
.leader_list_text {
  width: calc(100% - 280px);
  padding-top: 100px;
}
.leader_list_text>h3 {
  font-weight: bold;
  font-size: 24px;
  color: #AE0C2A;
  line-height: 38px;
}
.leader_list_text>span {
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  line-height: 32px;
  margin-top: 20px;
  display: block;
}