body {
  padding: 0;
  margin: 0;
  background: #f6f6f6;
}

.cantainer {
  width: 90%;
  margin: 0 auto;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}
.foothref{
  line-height: 30px;
}

.foothref title{
  font-size:17px;
}
.foothref a{ text-decoration:none; color:#fff;font-size:14px;}
.foothref a:hover{ text-decoration:none; color:#fff;font-size:14px;}
.foothref a:visited{ text-decoration:none; color:#fff;font-size:14px;}

li {
  list-style: none;
}

ul {
  padding: 0;
  margin: 0;
}

.platebg {
  background: #fff;
}

.nav-app {
  display: none;
}

.nav-top-show {
  /*background: url(../images/topbg.jpg) no-repeat center center/cover;*/
}

.nav-location {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

p img{
  width:50%;
  height:50%;
}

.logo-line {
  display: block;
  width: 40%;
}

.logo-nav {
  width: 100%;
}

.top-line {
  height: 50px;
  background: #0b3950;

}

#top-line.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

.page-redirect {
  height: 100%;
}

.nav-menu {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.menu-item {
  list-style: none;
  margin: 0 25px;
  position: relative;
}

.menu-item-link {
  color: #fff;
  font-size: 17px;
  font-weight:bold;
}

.menu-item-link::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  /* 下划线的高度 */
  background-color: #fff;
  /* 下划线的颜色 */
  transition: width 0.3s ease;
  /* 过渡效果 */
}

.menu-item-link:hover::after {
  width: 100%;
  /* 鼠标悬浮时，下划线扩展到100%宽度 */
}

.submenu {
  position: absolute;
  top: 35px;
  left: -25px;
  background-color: #fff;
  min-width: 102px;
  z-index: 20;
  padding: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out, visibility 0.5s ease-out;
  text-align:center;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu .iconfont {
  font-size: 14px;
}

.submenu span {
  width: 50px;
  font-size: 17px;
}

.mouseover-show {
  padding: 5px 0;
  border-bottom: 1px solid #ccc; 
  position: relative;
}

.mouseover-show::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: #0b3950;
  transition: width 0.2s ease;
}

.mouseover-show a {
  color: #0b3950;
}

.mouseover-show:hover::after {
  width: 100%;
}

.submenu li a::before {
 /* content: '→';*/
  color: var(--global--color-primary);
  font-family: energia;
  position: absolute;
  top: 56%;
/*  left: -50px;*/
  /* 初始位置在链接的左侧之外 */
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
  /* 垂直居中 */
  transition: transform 0.2s ease-out, opacity 0.3s ease-out, visibility 0.2s ease-out;
}

/* 注意这里的选择器变化 */
.submenu .mouseover-show:hover>a::before {
  opacity: 1;
  visibility: visible;
  /* 如果保留visibility，这里需要设置为visible */
  transform: translateX(21px) translateY(-50%);
}

.sousuo-logo {
  position: relative;
}

.sousuo-logo input {
  width: 200px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 15px;
  box-sizing: border-box;
  padding: 0 10px;
}

.sousuo-logo input:focus {
  outline: none;
  box-shadow: none;
}

.sousuo-btn {
  position: absolute;
  top: 1px;
  right: 1px;
  background: #0b3950;
  width: 39px;
  height: 28px;
  border-radius: 0 15px 15px 0px;
  border: 0;
  text-align: center;
  line-height: 28px;
  cursor: pointer;
}

.sousuo-btn .icon-sousuo {
  color: #fff;
  font-size: 20px;
}

.photo-show .swiper {
  width: 100%;
  height: 500px;
}

.photo-show .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 300px;
}

.photo-show .swiper-slide img {
  display: block;
  width: 100%;
 /* height: 100%; */
}

.section-plate {
  height: 658px;
  /* background: #ffd0d0; */
  margin-top: 20px;

}

.section-all-style {
  box-sizing: border-box;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
}

.news-updates {
  width: 64%;
  /* background: #a185f0; */
}

.all-updates-header {
  height: 40px;
  /* background: #ceeb9e; */
  border-bottom: 2px solid #0b3950;
  color: #0b3950;
  line-height: 40px;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.notice-bulletin {
  width: 33%;
  /* background: #8c1572; */
}

.all-updates-header a {
  text-decoration: none;
  color: #0b3950;
  font-size: 17px;
}

.all-updates-header span {
  font-weight: 700;
}

.new-label .swiper-slide {
  display: flex;
  justify-content: flex-start;
}

.new-label {
  width: 102%;
  margin-top:31px;
}

.new-item {
  width: 93%;
  height: 575px;
  background: #fff;

}

.new-item img {
  width: 100%;
  height: 207px;
}

.new-detail {
  padding: 15px;
}

.new-date {
  font-size: 15px;
  color: #0b3950;
  display: inline;
}

.new-date:hover {
  border-bottom: 1px solid #0b3950;
}

.new-title {
  font-size: 16px;
  font-family: "microsoft yahei";
  margin-top: 10px;
  line-height: 26px;
  color: #000;
  height: 35px;
  text-transform: capitalize;
}

.new-essay {
  font-size: 14px;
  margin-top: 20px;
  color: #8f8f8f;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 25px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;

}

.xiangqing {
  margin-top: 35px;
  box-sizing: border-box;
  border: 1px solid #777;
  padding: 3px 3px;
  text-decoration: none;
  color: #0b3950;
  display: inline-block;
}

.new-item:hover .xiangqing {
  background: #0b3950;
  color: #fff;
}



.xiangqing .iconfont {
  margin-left: 15px;
}

.notice-label {
  height: 445px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.notice-item {
  width: 100%;
  height: 65px;
  background: #fff;
  display: flex;
  margin-top:14px;
  margin-bottom:6px;
}

.notice-date {
  background: #0b3950;
  width: 16%;
  min-width:65px;
  height:65px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.telred{
font-size: 1.4rem;
color: #fff;
text-align:center;
}

.tdate{
  margin: 0;
  color: #fff;
}

.notice-title {
  font-size: 17px;
  width: 88%;
  display: flex;
  align-items: center;
}

.notice-title a {
  padding: 0 15px;
  text-decoration: none;
  color: #333;
}

.notice-title a:hover {
  color: #0b3950;
}

.camaraderie-link {
  position: relative;
  height: 282px;
  margin-top: 20px;
  overflow: hidden;
}

.camaraderie-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/R-G.jpg) no-repeat center center/cover;
  filter: blur(5px);
  /* 对伪元素应用模糊效果 */
  z-index: -1;
  /* 确保伪元素位于内容之下 */
}

.camaraderie-detail {
  height: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 30px 0;
}

.camaraderie-title {
  text-align: center;
  color: #0b3950;
  font-size: 20px;
  font-weight: 700;
}

.camaraderie-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.camaraderie-item {
  display: inline-block;
  width: 20%;
  height: 70px;
  border: 1px solid #3e3e3e;
  background: rgba(0, 0, 0, 0.5);
  margin: 20px 26px;
  box-sizing: border-box;
  flex: 0 0 calc(30% - 52px);
  padding: 20px;
  text-align: left;
  color: #fff;
  white-space: normal;
  line-height: normal;
  word-wrap: break-word;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.camaraderie-item span {
  font-family: "微软雅黑";
  font-size: 20px;
}

.camaraderie-item:hover {
  background: rgba(0, 0, 0, 0.3);
  color: #0b3950;
}

.good-case {
  margin-top: 30px;
}

.good-case-detial {
  box-sizing: border-box;
  padding: 10px 0;
}

.good-case-title {
  text-align: center;
  font-size: 20px;
  color: #0b3950;
  font-weight: 700;
}

.good-case-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: space-between;
}

.good-case-item {
  display: inline-block;
  width: 45%;
  height: 175px;
  /* background: #f4baba; */
  margin: 18px 26px;
  border: 2px solid #ccc;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  width: calc(46% - 26px);
}

.good-case-item:hover .good-case-item-title,
.good-case-item-essay:hover {
  color: #0b3950;
}

.good-case-item img {
  width:200px;
  height:130px; 
  margin-right: 30px;
}

.good-case-item-info {
  width: 70%;
  box-sizing: border-box;
  padding: 10px 0;
}

.good-case-item-title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  color: #333;
}

.good-case-item-essay {
  font-size: 14px;
  color: #999;
  line-height: 25px;
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.good-case-more {
  text-align: center;
}

.good-case-morebtn {
  display: inline-block;
  box-sizing: border-box;
  padding: 5px 10px;
  background: #0b3950;
  border-radius: 3px;
  color: #fff;
}

.good-case-morebtn:hover {
  background: #154069;
}

.footer-nav {
  height: 230px;
/*  background: #154069; */
  background: #0b3950;
}

.footer-show {
  width: 85%;
  height: 160px;
  margin: 0 auto;
  /* background: #f9b8b8; */
  display: flex;
  justify-content: space-between;
}

.footer-left {
  box-sizing: border-box;
  padding-top: 35px;
}

.dianhua {
  font-size: 34px;
  color: #fff;
}

.dizhi {
  margin: 15px 0;
  font-size: 17px;
  color: #fff;
}

.youxiang {
  font-size: 17px;
  color: #fff;
}

.footer-middle {
  box-sizing: border-box;
  padding-top: 15px;
  color: #fff;
}

.school-or {
  display: flex;
}

.footer-right {
  box-sizing: border-box;
  padding-top: 18px;
}

.or-img img {
  width: 110px;
  margin-right: 10px;
}

.or-img p {
  margin: 0;
  text-align: center;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #858585;
  padding: 0 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom img {
  height: 65px;
}

.footer-text {
  color: #fff;
}

.detailed-section {
  margin-bottom: 20px;

}

.detailed-section-bg img {
  width: 100%;
  height: 500px;
}

.detailed-section-all {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.detailed-section-left {
  width: 27%;

}

.detailed-left-content {
  background: rgb(229, 229, 229);
  box-sizing: border-box;
  padding: 20px 35px;
  border-radius: 6px;
  z-index: -1;
}

.detailed-title h5 {
  margin: 0;
  font-size: 19px;
  color: #0b3950;
  margin-bottom: 15px;
}

.detailed-item {
  position: relative;
  height: 60px;
  background-color: #fff;
  line-height: 60px;
  margin-bottom: 5px;
  border-radius: 5px;
  overflow: hidden;
  transition: color 0.3s ease;
}

.detailed-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #0b3950;
  transition: left 0.3s ease;
  z-index: 0;
}

.detailed-item:hover::before {
  left: 0;
}

.detailed-item a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
  color: #0b3950;
  font-weight: 700;
  z-index: 1;
}

.detailed-item:hover a {
  color: #fff;
}

.detailed-section-right {
  width: 69%;
  box-sizing: border-box;
  padding: 20px 35px;
  border-radius: 6px;
}

.detailed-location {
  font-size: 19px;
  color: #0b3950;
}

.detailed-location h5 {
  margin: 0;
  font-size: 19px;
}

.current-location {
  color: #0b3950;
  font-weight: 700;
}

.detailed-location a {
  font-weight: 400;
  color: #0b3950;
}

.detailed-borderbottom {
  height: 2px;
  width: 100%;
  background: #ccc;
  margin-top: 18px;
}

.detailed-section-essay {
  color: #666;
}
.detailed-section-essay p{
  margin: 10px 0;
}
.section-tuwen-item a {
  margin: 10px 0;
  display: flex;
}

.section-tuwen-item img {
  width: 200px;
  height: 200px;
  margin-right: 20px;
}

.section-tuwen-mingzi {
  color: #154069;
  font-size: 18px;
}

.section-tuwen-item {
  border-bottom: 1px solid #ccc;
}

.section-pagination {
  text-align: center;
  margin-top: 20px;
}

.section-pagination-center {
  width: 56%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.first,
.last {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #97ccff;
  text-align: center;
  line-height: 40px;
  color: #154069;
}

.up,
.down {
  box-sizing: border-box;
  padding: 8px 15px;
  background: #c8e5ff;
  color: #154069;
  border: 1px solid #93cbff;
}
.detailed-section-list li{
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  box-sizing: border-box;
  
}
.section-list-item a{
  font-size: 18px;
  color: #0b3950;
  padding: 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 40px;
}
.section-list-item:hover a{
  color: #154069;
}