.p1 {
  width: 100%;
  position: fixed;
  top: 0px; /* 距离屏幕顶部50像素 */
  z-index: 99999;
}
.p1-out {
  width: 100%;
  position: relative;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 10px;
}
/* 顶部-右 */
.search-home {
  line-height: 20px;
  height: 20px;
  font-size: 14px;
  color: white;
}
.search-home:hover {
  color: white;
}
/* 顶部-左 */
.p1-lalel {
  font-size: 24px;
  height: 32px;
  line-height: 32px;
  letter-spacing: 3px;
}
/* 顶部-菜单 */
.p1-menu {
  position: absolute;
  width: 100%;
  right: 0px;
  bottom: -30px;

  background-color: #f2f5f8;

  color: #333333;
}
/* 顶部-左三角样式 */
.p1-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: -30px;
  border-style: solid;
  border-width: 0.6rem 0.3rem 0 0;
  border-color: transparent #f2f5f8 transparent transparent;
}
/* 顶部-右矩 */
.p1-menu::after {
  content: '';
  height: 60px;
  position: absolute;
  right: calc(650px - 50vw);
  top: 50%;
  transform: translateY(-50%);
  border-right: solid #f2f5f8 calc(50vw - 650px);
  /* border-right-width: calc(50vw - 650px); */
}

.search-input {
  width: 100px;
  height: 20px;
  border: 1px solid #bbbbbb;
  margin: 0 5px;
}
.search-icon {
  width: 18px;
  height: 18px;
}
.p1-btn {
  position: relative;
}
.p1-btn-first {
  color: #333333;
  font-size: 18px;
  font-weight: bold;

  background-color: transparent;
  margin: 1px 6px;
  border: none; /* 取消元素的边框设置 */
  letter-spacing: 2px; /* 设置文字之间的间距为 2 像素 */
}
.p1-btn .select-list {
  opacity: 0;
  visibility: hidden;
  position: absolute; /* 绝对定位，脱离文档流 */
  top: 100%; /* 相对于父元素的底部 */
  left: -15px;
  background-color: rgba(31, 73, 158, 0.6);
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1; /* 确保下拉框在顶层 */
  transition: opacity 0.3s ease, visibility 0.3s ease; /* 添加过渡效果 */

  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  border-radius: 0.03rem;
  text-align: center;
  transition: all 0.5s ease;
}
/* 当鼠标悬停在按钮上时显示下拉框内容 */
.p1-btn:hover .select-list {
  opacity: 1;
  visibility: visible;
}
.select-item {
  color: white;
  width: 100%;
  height: 42px;
  line-height: 42px;
  font-size: 16px;
  font-weight: normal;
}
.select-list .select-item:hover {
  background-color: #01488e;
  height: 42px;
  line-height: 42px;
  color: white;
  font-weight: bold;
}

/* 内容-标题一类 */
.title {
  display: flex;
  align-items: center; /* 垂直居中 */
  color: #01488e;
  font-size: 0.24rem;
  height: 0.4rem;
  line-height: 0.4rem;
  margin-bottom: 15px;

  border-bottom: 0.03rem solid #dbdbdb; /* 下划线样式 */
  position: relative;
}
.titleIcon {
  display: inline-block;
  width: 0.3rem; /* 根据需要调整图标的宽度 */
  height: 0.3rem; /* 根据需要调整图标的高度 */
  margin-right: 5px; /* 可根据需要调整图标与标题的间距 */
  background-size: cover;
}
.titleName {
  position: relative;
  letter-spacing: 2px; /* 设置字符间距为1像素 */
}
.titleName::before {
  content: '';
  position: absolute;
  left: -0.38rem;
  bottom: -0.02rem;
  width: 1.41rem;
  height: 0.03rem;
  background-color: #01488e;
}
.moreInfo {
  width: 50px;
  text-align: center;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  letter-spacing: 1px;

  position: absolute;
  right: 5px;
  bottom: 50%;
  transform: translateY(60%);
  border: 1px solid #01488e;
  border-radius: 5px;

  color: #01488e;
}

/* 内容-标题二类 */
.title-2 {
  display: flex;
  align-items: center; /* 垂直居中 */
  color: white;
  font-size: 0.24rem;
  height: 0.5rem;
  line-height: 0.5rem;
  margin-bottom: 15px;

  position: absolute;
  top: -10px;
  left: 20px;
}
.title-2-left {
  width: 200px;
}
.titleIcon-2 {
  display: inline-block;
  width: 0.3rem; /* 根据需要调整图标的宽度 */
  height: 0.3rem; /* 根据需要调整图标的高度 */
  margin-right: 5px; /* 可根据需要调整图标与标题的间距 */
  background-size: cover;
}
.titleName-2 {
  position: relative;
  letter-spacing: 2px; /* 设置字符间距为1像素 */
}
.moreInfo-2 {
  width: 50px;
  text-align: center;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  letter-spacing: 1px;

  position: absolute;
  right: 5px;
  bottom: 50%;
  transform: translateY(70%);
  border: 1px solid #01488e;
  border-radius: 5px;

  color: #01488e;
}

/* 内容-新闻动态 */
.xwdt {
  height: calc(100% - 58px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.xwdt-item {
  width: 48.5%;
  height: 100%;
}
.xwdt-list-li {
  font-size: 16px;
  height: 45px;
  vertical-align: top;

  display: flex;
  justify-content: space-between;
}
.xwdt-list-li:hover {
  color: #01488e;
}
.xwdt-list-label {
  width: 480px;
  overflow: hidden; /* 隐藏溢出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  white-space: nowrap; /* 禁止换行 */
}
.xwdt-list-time {
  width: 100px;
  text-align: center;
}
.flex-c-c {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.p3-2 {
    height: 180px;
    width: 100%;
   position: relative;
   background-color: #ececec;
  display: flex;
  align-items: center;
}
.p3-2-content {
    height: 150px;
    width: 1300px;
margin:0 auto;
  color: #01488e;
  background-color: #ececec;

  position: relative;
 
  display: flex;
  align-items: center;
}

.p3-2-content-item {
  width: 2rem;
  height: 2rem;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  transition: transform 0.3s ease;
  cursor: pointer;
}
.p3-2-content-item-icon:hover, .p3-2-content-item-icon:focus, .p3-2-content-item-icon:active {
  box-shadow: 2px 2px 2px rgba(33,78, 120, 0.6);
}


.p3-2-content-item-icon {
  width: 150px;
  height: 150px;
  border: white 5px solid;
  border-radius: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.linkT-content-item-icon {
  width: 150px;
  height: 150px;
  border: white 5px solid;
  border-radius: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.linkT-content-item-icon:hover,.linkT-content-item-icon.on {
    color: #ff4500;
    transform: scale(1.1);
}
.p3-2-content-item-label {
  width: 100%;
  height: 40px;
  line-height: 40px;

  text-align: center;
  color: white;
  font-size: 22px;
  font-weight: bold;
}
.p3-2-bg {
  width: 170px !important;
  display: flex;
  align-items: center;

  padding-left: 15px;

  background-image: url(../static/label_bg_1.png);
  background-size: cover;
  background-repeat: no-repeat;
}


.p3-2-item {
  width: 160px;
  height: 90px;
  background-color: white;
  border-radius: 12px;
  border: 3px solid #b7271f;
  margin-bottom: 10px;
  position: relative;
}


.p3-2-item::before,
.p3-2-item::after {
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
  transition: all 0.3s ease; /* 添加过渡效果 */
}
/* 添加鼠标悬停时的动画 */
.p3-2-item:hover::before {
  top: -5px;
  left: -5px;
  border-top: 5px solid #b7271f;
  border-left: 5px solid #b7271f;
  animation: borderAnimation 1.5s infinite alternate; /* 将关键帧动画应用到动画属性中 */
}
.p3-2-item:hover::after {
  right: -5px;
  bottom: -5px;
  border-bottom: 5px solid #b7271f;
  border-right: 5px solid #b7271f;
  animation: borderAnimation 1.5s infinite alternate; /* 将关键帧动画应用到动画属性中 */
}
@keyframes borderAnimation {
  0% {
    width: 0px;
    height: 0px;
  }
  50% {
    width: calc(100%);
    height: calc(100%);
  }
  100% {
    width: 0px;
    height: 0px;
  }
}
.p3-2-item-icon {
  width: 40px;
  height: 40px;
  object-fit: fill;
}
.p3-2-item-label {
  line-height: 33px;
margin-bottom:2px;
  letter-spacing: 2px; /* 设置字符间距为1像素 */
  color: #0c2448;
  font-weight:bold;
}

.p4 {
  background-image: url(../static/bg-1.jpg), none;
  /* background-size: contain; */
  /* background-repeat: no-repeat; */
  /* background-position: center; */

  background-size: 100% 100%; /* 确保背景图片完整展示在父元素中 */

  background-color: rgba(1, 72, 142, 0.3);
  background-blend-mode: overlay; /* 设置混合模式为叠加，让颜色覆盖在图片上 */
}
.p4-nothome {
  background-image: url(../static/bg-2.jpg), none;
  /* background-size: contain; */
  /* background-repeat: no-repeat; */
  /* background-position: center; */

  background-size: 100% 100%; /* 确保背景图片完整展示在父元素中 */

  background-color: rgba(1, 72, 142, 0.3);
  background-blend-mode: overlay; /* 设置混合模式为叠加，让颜色覆盖在图片上 */
}
.p4-top {
  margin-top: 10px;
}
.p4-top-interval {
  background-color: white;
  width: 5px;
  height: 20px;
  margin: 0 10px;
}
.p4-middle {
  border-top: 1px dashed white;
}
.p4-bottom span {
  height: 25px;
  line-height: 25px;
}

/* url */
.iconUrl-1 {
  background-image: url('../static/titleIcon-1.svg');
}
.iconUrl-2 {
  background-image: url('../static/titleIcon-2.svg');
}
.iconUrl-3-1 {
  background-image: url('../static/titleIcon-3.svg');
}
.iconUrl-3-2 {
  background-image: url('../static/titleIcon-3.5.svg');
}
.iconUrl-4 {
  background-image: url('../static/titleIcon-4.svg');
}
.iconUrl-5 {
  background-image: url('../static/titleIcon-5.svg');
}
.iconUrl-6 {
  background-image: url('../static/titleIcon-6.svg');
}
.iconUrl-7 {
  background-image: url('../static/titleIcon-7.svg');
}
.iconUrl-8 {
  background-image: url('../static/titleIcon-8.svg');
}
.iconUrl-9 {
  background-image: url('../static/titleIcon-9.svg');
}

/* 
      二级栏目 
    */

/* 顶部 */
.content-top {
  width: 100%;
  position: fixed;
  top: 0px; /* 距离屏幕顶部50像素 */
  z-index: 99999;

  background-image: url(../static/bg-1.jpg), none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; /* 图片在容器中居中显示 */

  background-color: rgba(1, 72, 142, 0.4);
  background-blend-mode: overlay; /* 设置混合模式为叠加，让颜色覆盖在图片上 */
}

/* 内容 */
.detail-middle-element2 {
  color: #333333;
  margin: 0.3rem 0;
  padding: 0.25rem 0 0.15rem;
  display: flex;
  justify-content: space-around;
}
/* 左侧边栏 */
.body-left2-col {
  width: 2.5rem;

  position: relative;
  font-weight: bold;
}
.body-left2-title {
  font-size: 0.24rem;
  text-align: center;

  background-color: #01488e;
  color: white;
  padding: 0.2rem 0;
  letter-spacing: 4px; /* 设置字符间距为1像素 */

  width: 2.5rem;
}
.body-left2-ul {
  font-size: 0.2rem;
  list-style: none;
  font-weight: 400;
  /* padding: 0 20px 15px; */
  padding-bottom: 15px;

  background-image: url(../static/list_box_02_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; /* 图片在容器中居中显示 */

  width: 2.5rem;
}
.body-left2-li {
  text-align: center;
  height: 0.3rem;
  line-height: 0.3rem;
  padding: 0.2rem 0;
  border-bottom: 2px solid rgb(232, 232, 232);
}

.body-left2-li a {
  color: #333333;
  font-weight: bold;
}
.body-left2-li a:hover {
  color: #01488e;
}
.body-left2-li-active {
  color: white;
  text-align: center;
  height: 0.2rem;
  line-height: 0.2rem;
  padding: 0.2rem 0;
  margin: 5px 0;
  border-bottom: 2px solid rgb(232, 232, 232);
  background-color: rgba(31, 73, 158, 0.6);
  border-radius: 6px;
}

.body-left2-li-active a {
  color: white;
  font-weight: bold;
}
.body-left2-li-active a:hover {
  color: white;
}

/* 右正文 */
.body2 {
  margin: 0 auto;
  padding-left: 0.3rem;
  width: 11rem;
  display: inline-block;
}
.title2 {
  display: flex;
  align-items: center; /* 垂直居中 */
  justify-content: space-between;
  font-size: 0.22rem;
  height: 0.5rem;
  line-height: 0.5rem;
  font-weight: bold;

  position: relative;

  border-bottom: 0.05rem solid #01488e; /* 下划线样式 */
}
.current-router {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #333333;
  font-size: 14px;
}
.current-router-omit {
  margin: 0 0.05rem;
}
.current-router a {
  color: #333333;
  font-size: 14px;
}
.current-router a:hover {
  color: #01488e;
  font-weight: bold;
}

.titleName2 {
  position: relative;
}

/* 列表 */
.second-page-list {
  width: 100%;
  margin: 1% 0;
}
.second-page-list-li {
  font-size: 16px;
  height: 51px;
  line-height: 51px;
  border-bottom: 1px solid rgb(232, 232, 232);

  display: flex;
  justify-content: space-between;

  position: relative;
}
.second-page-list-li:hover {
  color: #01488e;
}
.second-page-list-li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; /* 初始时渐变宽度为0 */
  height: 2px; /* 边框的高度 */
  background: linear-gradient(to right, #01488e, transparent); /* 从左到右渐变 */
  transition: width 0.3s ease; /* 渐变过渡效果 */
}

.second-page-list-li:hover::after {
  width: 100%; /* 鼠标悬停时宽度变为100%，从而达到渐变的效果 */
}
.second-page-list-label {
  width: 900px;
  overflow: hidden; /* 隐藏溢出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  white-space: nowrap; /* 禁止换行 */
}
.second-page-list-time {
  width: 100px;
  text-align: center;
  color: #01488e;
}

/* 分页相关 */
.page-number {
  font-size: 14px;

  height: 20px;
  line-height: 20px;
}
.page-number-total {
  margin-right: 10px;
}
.page-number-last {
  margin: 5px;
  padding: 5px;
  border: 1px solid rgb(232, 232, 232);
}
.page-number-page {
  margin: 5px;
  padding: 5px;
  border: 1px solid rgb(232, 232, 232);
}
.page-number-omit {
  margin: 5px;
  padding: 5px;
  border: 1px solid rgb(232, 232, 232);
}
.page-number-next {
  margin: 5px;
  padding: 5px;
  border: 1px solid rgb(232, 232, 232);
}

/* 
      内容页 
    */
.body3 {
  width: 10rem;
  display: inline-block;
  margin: 0 auto;
  margin-left: 0.3rem;
  /* font-size: 0.2rem;*/
  font-size: 0.15rem;
  padding: 0.3rem;
  box-shadow: 0 0 0.05rem #dedede;
  border: #ccc 0.01rem solid;
}
.title3 {
  text-align: center;
  font-size: 0.22rem;
  height: 0.5rem;
  line-height: 0.5rem;
  font-weight: bold;
  padding: 10px 0;
}
.article-info {
  text-align: center;
  height: 45px;
  line-height: 45px;
  /*font-size: 0.2rem;*/
  font-size: 14px;
  border-bottom: 1px solid #dedede;
}

.body3-content {
  display: inline;
  font-size: 16px;
  height: auto;
  line-height: 40px;
  text-indent: 40px;
  width: auto;
}

/* .body3-content table {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.v_news_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
} */
.body3-content table {
  margin: auto !important;
}

.table-sty {
  .v_news_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
/* .v_news_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
} */

.WordSection1 {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.body3-content-next {
  font-size: 18px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-indent: 0px;
}
.body3-content-next a {
  padding: 0;
  margin: 0;
  text-indent: 5px;
}

.hvr-box-shadow-outset {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-box-shadow-outset:hover, .hvr-box-shadow-outset:focus, .hvr-box-shadow-outset:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

/*blow from xgb */
*{
	padding:0;
	margin:0;
	box-sizing: border-box;
}
body{
	font-family: "微软雅黑","宋体";
	color:#222;
}

a{
	text-decoration: none;
	color:#222;
	cursor: pointer;
	transition:all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease;
	-webkit-transition:  all 0.4s ease;
}
a:hover{
	color: #b7271f;
	
	/*text-decoration: underline;*/
}
ul li{
	list-style: none;
}

img{
	border: 0;
}

.fl{
	float:left;
}
.fr{
	float:right;
}
.clear{
	clear:both;	
}
/*字体*/
@font-face {
    font-family:"MogulGeorgia";
    src: url("../fronts/Mogul_Georgia_Bold.ttf") format("truetype");

}
/*头部logo*/
header {
    /*background: #2355a1;*/
    width: 100%;
    min-width: 1300px;
background-image: url(../images/topbg.jpg);
}

header .zq-head {

    height: 115px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 1300px;
    margin: 0 auto;
    min-width: 1300px;
    justify-content: space-between;
}

header .logo-show {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}


.search {
 
    position: relative;
    display: flex;
    justify-content: right;
    align-items: center;
    margin-right:40px;
}

.search-icon {
    width: 17px;
    height: 17px;
    position: absolute;
    left: 10px;
    top: 4px;
    }

.search-input {
    width: 140px;
    height: 25px;
    border: 1px solid #bbbbbb;
    padding-left: 30px;
    border-radius: 15px;
    }

/*导航栏*/
header .nav {
    height: 50px;
    display: block;
  
 background-color:#b7271f;
}

header .navbar_nav li.shouye {
    float: left;
    position: relative;
    display: block;
    /*width: 9.09%;*/
    text-align: center;
    /*border-right: 1px solid white;*/
}
header .navbar_nav li.shouye:last-child {
    border-right: none; 
}
header .navbar_nav .dropdown {
    float: left;
    position: relative;
    display: block;
}

header .navbar_nav li .top-title {
    text-decoration: none;
    display: block;
    width: 100%;
    line-height: 50px;
    font-size: 15px;
    color: white;
    font-weight: bold;
    padding: 0 4px;
    letter-spacing: 2px
}

header .navbar_nav li .top-title:hover {
   
 background: #b7271f;
    color: #FFFFFF;
}

header .navbar_nav li.dropdown {
    display: inherit;
    position: relative;
    height: 100%;
}

header .navbar_nav li.dropdown .dropdown_menu {
    display: none;
    position: absolute;
    z-index: 999;

 background-color: rgba(183,39,31,0.9);
　  top: 50px;

    text-align: center;
 
    white-space: nowrap;
    min-width: 100%;
}

header .navbar_nav li.dropdown .dropdown_menu a {
    font-size: 14px;
    display: block;
    padding: 0 20px;
    line-height: 46px;
    text-align: center;
    color: #FFFFFF;
    padding-left: 25px;
    width: auto;
}

header .navbar_nav li.dropdown:hover .dropdown_menu {
    display: block;
}

header .navbar_nav li.dropdown:hover .top-title {
    /*background: #0a47a7;*/
    color: #FFFFFF;
}

header .navbar_nav li.dropdown:hover .dropdown_menu a:hover {
    /*background-color: #0a47a7;*/
 background-color: #a93529;
    color: #FFFFFF;
}

header .nav .container {
    max-width: 1300px;
    height: auto;
    margin: 0 auto;
    position: relative;
}



/*首页图*/
.sy-banner {
     height: 300px;
    /*background: url(../images/sybanner.jpg) no-repeat;*/
    /*background-size: cover;*/
    min-width: 1300px;
}
.sy-banner img {
    height: 300px;
    width: 100%;
    min-width: 1300px;
}
.slideBox {
	overflow: hidden;
	position: relative;
	top:0px;
	margin: 0 auto;
}

.slideBox .bd {
	position: relative;
	height: 100%;
	z-index: 0;
}

.slideBox .bd li {
	zoom: 1;
	vertical-align: middle;
}

.slideBox .bd img {
	width:100%;
	height:100%;
	display: block;
}

.slideBox .prev,
.slideBox .next {
	position: absolute;
	left: 3%;
	top: 50%;
	margin-top: -25px;
	display: block;
	width: 32px;
	height: 40px;
	background: url(../images/slider-arrow.png) -110px 5px no-repeat;
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.slideBox .next {
	left: auto;
	right: 3%;
	background-position: 8px 5px;
}

.slideBox .prev:hover,
.slideBox .next:hover {
	filter: alpha(opacity=100);
	opacity: 1;
}

.slideBox .prevStop {
	display: none;
}

.slideBox .nextStop {
	display: none;
}
.slideBox .prev{
	height:80px;
	width:80px;
	position: absolute;
	left: 100px;
	top:45%;
	background: url(../images/preImg.png) no-repeat ;
}
.slideBox .next{
	height:80px;
	width:80px;
	right: 100px;
	top:45%;
	top:45%;
	background: url(../images/nexImg.png) no-repeat 20% 45%;
}

/*学工动态和通知公告*/
.main {
    width: 1300px;
    min-width: 1300px;
    margin: 0 auto;
}

.main .news-wrap {
    height: 395px;
    background: url(../images/5986898.png) no-repeat left center;
    padding-top: 17px;
}

.main h3 {
   font-size: 18px;
  /*font-size: 16px;*/
    font-weight: bold;
   /* border-bottom: #2355a1 solid 1px;*/
border-bottom: #AB3724 solid 1px;
    line-height: 30px;
    cursor: pointer;
   /* color:#2355a1;*/
color:#AB3724;
}

.main h3:hover {}

.main .more {
    display: inline-block;
    text-align: center;
    position: absolute;
    right: 0px;
    top: 6px;
    line-height: 22px;
    width: 58px;
    height: 20px;
    font-size: 20px;
    border-radius: 5px;
    background-image: url(../images/more2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    color: transparent;
}

.main .more:hover {}

/* 学工动态 */
.main .news-wrap .left-part {
    width: 842px;
    height: auto;
    position: relative;
}



/* 学工动态文章列表 */
.main .news-detail-right {
    height: 200px;
   /* padding-left: 10px;*/
 padding-left: 20px;
    margin-top: 15px;
}

.main .news-detail-right ul li {
    border-bottom: #C6C6C6 1px dashed;
    height: 59px;
    line-height: 38px;
    /*width: 440px;*/
    width: 430px;
    padding-top: 4px;
    display: flex;
    align-items: center;
}

.main .news-detail-right ul li a {
    word-break: break-word;
    line-height: 23px;
    font-size: 14px;
}

.line-date {
    width: 51px;
    height: 40px;
    /* border: #dedede 1px solid; */
    float: left;
    margin-right: 15px;
    /* border-radius: 7px 7px 7px 7px; */
    /* background: #2355a1; */
}

.line-date p {
    
    height: 40px;
    line-height: 40px;
    /*color: #2355a1;
    border: 1px solid #2355a1;*/
    color: #b7271f;
    border: 1px solid #c87070;
    text-align: center;
    font-size: 15px;
    width: 51px;
    border-radius: 7px 7px 7px 7px;
    font-family: "MogulGeorgia";
}
/* 通知公告 */
.main .news-wrap .right-part {
    height: auto;
    width: 415px;
    position: relative;
}

.news-wrap .right-part .notice-detail {
    margin-top: 15px;
}

.news-wrap .right-part .notice-detail .tab-abs {
    display: none;
}
.tzgg-date {
    font-size: 10px;
    width: 51px;
    height: 40px;
    text-align: center;

    margin-right: 15px;
}
.tzgg-date .day {
    font-size: 15px;
    /* font-weight: bold; */
    color: #FFFFFF;
    width: 51px;
    background: #b7271f;
    height: 20px;
    line-height: 20px;
    font-family: "MogulGeorgia";
    }
.tzgg-date .date {
    background: #F6F4F5;
    height: 20px;
    line-height: 20px;
    /* color: #FFFFFF; */
    font-family: "MogulGeorgia";
}

.news-wrap .right-part .notice-detail ul li {
    border-bottom: #C6C6C6 1px dashed;
    height: 59px;
    line-height: 38px;
    padding-top: 4px;
    display: flex;
    align-items: center;

}

.news-wrap .right-part .notice-detail ul li a {
    word-break: break-word;
    line-height: 23px;
    font-size: 14px;
}
/*榜样力量*/
.xgb-byll {
    height: 255px;
    width: 100%;
   /* background: url(../images/byllback.png) no-repeat;*/
background: url(../images/middleby.png) no-repeat;
    background-size: cover;
}
.xgb-byll .container {
    margin: 0 auto;
    width: 1300px;
    height: 100%;
}
.xgb-byll .xgb-byll-wrap {
    background-image: url(../images/byllbg2.png);
    background-size:100% 100%;
    height: 225px;
    position: relative;
    top: 13px;
    display: flex;
    width: 100%;
}
.xgb-byll-wrap .titlecell{
    color:#ffffff;
    width: 20px;
   /* font-size: 20px;    
    margin: 40px auto;*/
 font-size: 18px;    
    margin: 50px auto;
font-weight: bold;
    padding-left: 10.5px;
    position: relative;
   /* margin-right: 10px;*/
    /* padding-right: 10px; */
}
.xgb-byll-wrap .titlecell::after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/more2write.png) no-repeat;
    background-size: 22px 22px;
    position: absolute;
   /* top: 120px;*/
top: 105px;
}

.xgb-byll .xgb-byll-wrap .showImg {
}

.xgb-byll .xgb-byll-wrap .byll-content {
    margin-top: 10px;
    margin-left: 30px;
}

.xgb-byll .xgb-byll-wrap .byll-content ul li {
    float: left;
    width: 19.5%;
    height: 220px;
    overflow: hidden;
    padding: 10px;
}

.xgb-byll .xgb-byll-wrap .showImg img {
    width: 100%;
    height: 150px;
}

.xgb-byll .xgb-byll-wrap .byll-content p{
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    text-align: center;
}
.xgb-byll .xgb-byll-wrap .byll-content .zhaiyao{
    font-size: 13px;
    line-height: 17px;
    color: #bbbbbb;
 font-weight:inherit;
}
/*学院动态*/
.xydt-list {
    height: 59px;
    line-height: 28px;
    padding-top: 0px;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-bottom: 1px dashed #ccc;
    }     

.xydt-calendar {
    font-size: 12px;
    /*width: 60px;*/
    height: 38px;
    text-align: center;
    padding: 2px 0;
   /* border-right: 1px solid #2355a1;*/
 border-right: 1px solid #b48585;
}

.xydt-calendar .day {
    font-size: 16px;
    font-weight: bold;
   /* color: #2355a1;*/
 color: #a4827d;
    width: 60px;
    /* background: #2355a1; */
    height: 20px;
    line-height: 20px;
    }

.xydt-calendar .date {
    /* background: #dbefff; */
    height: 18px;
    line-height: 18px;
    /*color: #2355a1;*/
color: #a4827d;
}
.xydt-title {
    padding-right: 10px;
    padding-left: 10px;
}

/*特别关注*/
.xghb-list {
    height: 52px;
    line-height: 28px;
    padding-top: 0px;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-bottom: 1px dashed #ccc;}     

.xghb-calendar {
    font-size: 12px;
    width: 60px;
    height: 38px;
    text-align: center;
    padding: 2px 0;
    border-right: 1px solid #2355a1;
}

.xghb-calendar .day {
    font-size: 16px;
    font-weight: bold;
    color: #2355a1;
    width: 60px;
    /* background: #2355a1; */
    height: 20px;
    line-height: 20px;
    }
.xghb-calendar .date {
    /* background: #dbefff; */
    height: 18px;
    line-height: 18px;
    color: #2355a1;
}
.xghb-title {
    padding-right: 10px;
    padding-left: 5px;
}

/*用户导航*/
.yhdh img {
    margin-top: 10px;
    width: 100%;
    height: 120px;
}
.yhdh ul {
   padding-top:15px;
   padding-left: 0%;
}
.yhdh ul li {
    width: 40%;
    float: left;
    font-size: 15px;
    height: 40px;
    margin-left: 10px;
}
/* 选择偶数索引的li元素 */
.yhdh ul li:nth-child(even) {
    float: right;
    margin-left: 0; 
    margin-right: 10px; 
}
.yhdh i.dhtb::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/yhdhlogo2.png) no-repeat;
    background-size: 16px 16px;
    position: relative;
    top: 7px;
    right:8px;
}

.yhdh  ul li a {
    line-height: 40px;
}
/*版权*/
.banquan{
    /*background-color: #02488e;*/
background-color: #BA2A17;
    width: 100%;
    height: 55px;
   min-width: 1300px;
}
.banquan p{
    font-size: 15px;
    color: white;
    line-height: 55px;
   text-align: center;
}

/*正文内容页面*/
.ejym-content-backgroud{
    background-image: url('../images/bg1.png'); 
    background-size: cover; 
 
}
.ejym-content {
    min-width: 1000px;
/*    width: 1300px;*/
    width: 1230px;
    height: auto;
    margin: 0 auto;
    display: flex;

}
.ejym-content .right {
/*    width: 1300px;*/
    width: 1230px;
    margin-bottom: 30px;
    position: relative;
    min-height: 550px;
}

.ejym-content .right .content-zw {
    height: 50px;
    font-size: 26px;
    font-weight: 500;
   /*border-bottom: #2355a1 4px solid;*/
border-bottom:#b7271f 2px solid;
    line-height: 50px;
    color: #ffffff;
    padding-bottom: 50px;
    padding-top: 15px;
    padding-left: 70px;
}

.local {
    position: relative;
 width:100%;

    left: 20px;
   
}
.local::before {
    content: "";
    display: inline-block;
    background: url(../images/local.png) no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    position: absolute;
    left: -22px;
    /* right: 14px; */
    /* top: 19px; */
    bottom: 0.5px;
}


#xgbgf_content .img_vsb_content {
    text-align: center
}

#xgbgf_content p,
#xgbgf_content span {
    font-family: "微软雅黑", "宋体";
    font-size: 16px;
    line-height: 200%;
    text-indent: 2em;
}
.ejym-content .vsbcontent_img{
    text-align: center;
}
/*正文页带推荐关注页面*/
.ejym-content .tjym{
    width: 940px !important;
}
.tjgz-side{
    float: right;
    width: 280px;
    min-height: 580px;
    margin-left: 10px;
    margin-top: 25px;
    /* padding-left: 30px; */
    /* position: absolute; */
    /* right: 0; */
}
.tjgz-header{
    font-size: 18px;
    color: #c2090f;
    height: 38px;
    border: 1px solid #ccc;
    /* padding: 8px 0 0 0; */
    text-indent: 20px;
    border-top: 4px solid #b7271f;
    line-height: 38px;
}
.tjgz-content{
    width: 280px;
    padding: 20px;
    margin-top: 8px;
    background-color: #fff;
    border: 1px solid #ccc;
}
.tjgz-content li {
   height:60px;
    line-height: 25px;
    border-bottom: 1px dotted #363636;
}

/*二级列表页*/
.ejym-list-backgroud{
    background-image: url('../images/bg1.png'); 
    background-size: cover; 
    min-height: 650px;
 
}
.ejym-list {
    margin-top: 30px;
    /*min-width: 1300px;*/
   /* width: 1300px;*/
    min-width: 1230px;
    width: 1230px;
    height: auto;
    margin: 0 auto;
    padding-top: 35px;
}

.ejym-list .left {
    width: 220px;
    margin-right: -245px;
    /* border-top: #175AA6 2px solid; */
    /* box-shadow: 0 10px 10px #b5b5b5; */
}

.ejym-list .left .colum {
    /*height: 64px;*/
   background: #b7271f;
   /* background-image: url(../images/logo_center.png);
    background-repeat: no-repeat;*/
   height:47px;
  background-image: url(../images/list-title.png);
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    /* margin-top: -20px; */
}


.ejym-list .left .colum h3 {
    color: #fff;
    /*font-size: 26px;*/
    text-align: center;
   /* font-size: 24px;   
    font-weight: 500;
    line-height: 52px;*/
   font-size: 20px;
    line-height: 47px;
    font-weight: bold;
}

.ejym-list .left-nav {
   /* background: #e5e8ed;*/
background:#f9f0e1
    width: 220px;
border-right: 1px solid #d9d9d9;
}
.left-nav-bjtp {
    padding-bottom: 278px;
    background: #f2f2f2 url(../images/listbg.png) no-repeat bottom !important;
}

.ejym-list .left-nav ul li {
    height: 50px;
    transition: all .3s ease-in-out;
    border-bottom: #d9d9d9 1px solid;
    text-align: center;
   /* border-left: 4px solid #2355a1;*/
   border-left: 4px solid #b7271f;
}

.ejym-list .left-nav ul li a {
    font-size: 15px;
    padding: 10px 10px;
    line-height: 50px;
    /*color: #333*/
}

.ejym-list .left-nav ul li.active {
    /*background: #b2dfff;*/
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 12px 12px;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    border-left: 4px solid #ffa500;
    background-color: #f9f0e1;
}

.ejym-list .left-nav ul li.active a {
   /* color: #015fb9;*/
color: #b7271f;
    font-size: 17px;
}

.ejym-list .left-nav ul .active::before {
    content: "";
    display: inline-block;
    background: url(../images/cebianxianshi.png) no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 14px;
    top: 19px
}

.ejym-list .right {
    margin-left: 270px;
    /* width: 970px; */
    margin-bottom: 30px;
    position: relative;
    /*min-height: 600px;*/
    box-shadow: 0 0 5px #b5b5b5;
}

.ejym-list .right h3 {
    height: 50px;
    font-size: 26px;
    font-weight: 500;
    border-bottom: #c6c6c6 4px solid;
    line-height: 50px;
    color: #015fb9;
}



.ejym-list .right .text {
    padding-top: 10px;
    line-height: 36px;
    text-align: justify;
    text-indent: 2em
}

.ejym-list .right .news-text {
    margin-top: 20px;
   float:left;
 border-top:#b7271f 2px solid;
    background: #ffffff;
width:100%;
     background-color: white;


}
.ejym-list .right .news-text .list-ul  {
    margin: 0px;
}
.ejym-list .right .news-text .list-ul li {
    height: 50px;
    line-height: 50px;
    margin-top: 0;
    border-bottom: #dedede 1px dashed;
    margin-left: 10px;
    margin-right: 50px;
    position: relative;
}
.ejym-list .right .news-text .list-ul li::before {
    content: "";
    display: inline-block;
    background: url(../images/listLogo.png) no-repeat;
    background-size: 15px;
    width: 15px;
    height: 15px;
    position: absolute;
    left: -25px;
    top: 18px;
}
.ejym-list .right .news-text .list-ul li:hover::before {
    content: "";
    display: inline-block;
    background: url(../images/listLogoActive.png) no-repeat;
    background-size: 15px;
    width: 15px;
    height: 15px;
    position: absolute;
    left: -25px;
    top: 18px;
}
.ejym-list .right .news-text .list-ul li:hover {
    color:#015fb9;
}

/*列表正文页 */
.ejym-lbzw {
    margin-top: 30px;
    min-width: 1230px;
    width: 1230px;
    height: auto;
    margin: 0 auto;
    padding-top: 35px;
    min-height: 950px;
}

.ejym-lbzw .left {
    width: 220px;
    margin-right: -245px;
    /* border-top: #175AA6 2px solid; */
    /* box-shadow: 0 10px 10px #b5b5b5; */
}

.ejym-lbzw .left .colum {
  
    background: #2355a1;
   /* height: 64px;
    background-image: url(../images/logo_center.png);
    background-repeat: no-repeat;*/
   height:47px;
   background-image: url(../images/list-title.png);
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    /* margin-top: -20px; */
}


.ejym-lbzw .left .colum h3 {
    color: #fff;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    line-height: 52px;
}

.ejym-lbzw .left-nav {
    background: #e5e8ed;
    width: 220px;

}


.ejym-lbzw .left-nav ul li {
    height: 50px;
    transition: all .3s ease-in-out;
    border-bottom: #d9d9d9 1px solid;
    text-align: center;
   /* border-left: 4px solid #2355a1;*/
    border-left: 4px solid #b7271f;
}

.ejym-lbzw .left-nav ul li a {
    font-size: 15px;
    padding: 10px 10px;
    line-height: 50px;
    /*color: #333*/
}

.ejym-lbzw .left-nav ul li.active {
    /*background: #b2dfff;*/
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 12px 12px;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    border-left: 4px solid #ffa500;
}

.ejym-lbzw .left-nav ul li.active a {
   /* color: #015fb9;*/
color: #b7271f;
    font-size: 17px;
}

.ejym-lbzw .left-nav ul .active::before {
    content: "";
    display: inline-block;
    background: url(../images/cebianxianshi.png) no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 14px;
    top: 19px
}

.ejym-lbzw .right {
    margin-left: 270px;
    /* width: 970px; */
    /*margin-bottom: 30px;*/
    position: relative;
    min-height: 600px;
    box-shadow: 0 0 5px #b5b5b5;
}

.ejym-lbzw .right h3 {
    height: 50px;
    font-size: 26px;
    font-weight: 500;
    border-bottom: #c6c6c6 4px solid;
    line-height: 50px;
    color: #015fb9;
}


.ejym-lbzw .right .text {
    padding-top: 10px;
    line-height: 36px;
    text-align: justify;
    text-indent: 2em
}

.ejym-lbzw .right .news-text {
    margin-top: 42px;
   /* border-top: #015fb9 3px solid;  */ 
 border-top:#b7271f 2px solid;
    background: #ffffff;
    padding:40px 50px;
}

.ejym-lbzw .right .news-text table{
    margin:auto;
}
.ejym-lbzw .right .news-text table tbody p{
    text-align: center;
}

.news-detail-left {
    height: 295px;
    margin-top: 25px;
    margin-right: 15px;
margin-left:10px;
}



.news-detail-left table a:hover{
    color: #aa2222; 
}

.news-detail-left img:hover {
    transform: scale(1.05);
}
.news-detail-right {
    height: auto;
    padding-left:35px;
    margin-top: 15px;
}

.news-detail-right ul li {
    border-bottom: #C6C6C6 1px dashed;
    height: 61px;
    line-height: 38px;
    width: 680px;
    padding-top: 4px;
    display: flex;
    align-items: center;
}

.news-detail-right ul li a {
    word-break: break-word;
    line-height: 25px;
    font-size: 16px;
}