/* 当前位置 */
.position_container {
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  background: #90caf8;
}
.position_container span a,.position_container span {
  font-size: 14px;
  line-height: 14px;
  color: #000;

}
.position_text {
  font-size: 14px;
  line-height: 14px;
  color: #000;
}
.position_container i {
  font-size: 12px;
  line-height: 12px;
  margin: 0 4px;
}
/* 布局左侧导航 */
.layout_nav {
  width: 100%;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* 布局左侧新闻动态列表 */
.layout_news_list {
  width: 100%;
  overflow: hidden;
}
.layout_news_item {
  width: 100%;
  padding: 15px 10px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  border-bottom: 1px dashed #ddd;
}
.layout_news_item:hover {
  color: #1e50ae;
}
.layout_news_item:last-child {
  border-bottom: 0;
}
.layout_news_item p {
  width: 70%;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.layout_news_item span {
  font-size: 12px;
  font-family: SimSun;
}
/* 布局右侧带图片动态 */
.layout_img_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.layout_img_list_item {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #ddd;
}
.layout_img_list_item:first-child {
  padding-top: 10px;
}
.layout_img_list_item:last-child {
  border: 0;
}
.layout_img_list_item:hover .layout_img_list_item_text h4 {
  color: #1e50ae;
}
.layout_img_list_item img {
  width: 80px;
  height: 80px;
  margin-right: 10px;
}
.layout_img_list_item_text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.layout_img_list_item_text div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.layout_img_list_item_text div h4 {
  width: 75%;
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.layout_img_list_item_text div span {
  font-size: 14px;
  line-height: 14px;
  color: #666;
}
.layout_img_list_item_text p {
  font-size: 12px;
  line-height: 18px;
  color: #797979;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.layout_img_list_item_date {
  /* padding: 0 20px; */
  font-size: 14px;
  line-height: 14px;
  color: #666;
}
/* 分页 */
.layout_page {
  width: 100%;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout_page_left {
  justify-content: flex-start !important;
}
.layout_page_item {
  font-size: 14px;
  line-height: 14px;
  color: #666;
  padding: 5px 7px;
  margin: 0 10px;
}

/* 布局tab切换 */
.layout_tab {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #1e50ae;
}
.layout_tab_item {
  font-size: 16px;
  line-height: 16px;
  color: #666;
  padding: 10px 36px 20px 36px;
  cursor: pointer;
  position: relative;
}
.layout_tab_item_active {
  position: relative;
  color: #1e50ae;
}
.layout_tab_item_active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-bottom: 8px solid #1e50ae;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
/* tab切换内容 */
.layout_tab_content {
  width: 100%;
  display: flex;
}
.layout_tab_content_item {
  flex: 1;
  height: 700px;
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s;
  box-sizing: border-box;
  border: 2px solid #fff;
}
.layout_tab_content_item img {
  height: 100%;
}
/* 获奖学生 */
.layout_student {
  width: 100%;
  padding-top: 20px;
}
.layout_student_img {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.layout_student_img_item {
  width: 50%;
  text-align: center;
  margin-bottom: 20px;
  font-size: 0;
}
.layout_student_img_item:nth-child(3n) {
  margin-right: 0;
}
.layout_student_img_item a {
  display: block;
  width: 280px;
  height: 175px;
  margin:0 auto;
  overflow: hidden;
}
.layout_student_img_item a:hover img {
  transform: scale(1.3);
}
.layout_student_img_item a img {
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.layout_student_img_item p {
  font-size: 14px;
  line-height: 14px;
  color: #999;
  margin-top: 10px;
}