@import url("https://fontsapi.zeoseven.com/57/main/result.css");
@import url("https://fontsapi.zeoseven.com/7/main/result.css");

/*窦文朔*/
* {
  margin: 0;
  padding: 0;
}

.w {
  margin: 0 auto;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  border: none;
}

.header {
  width: 100vw;
}

.first-header {
  position: relative;
  background-color: #c89c9d;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
}

.first-header li {
  display: inline-block;
}

.fir-left {
  float: left;
  position: absolute;
  left: 30px;
}

.fir-left li {
  margin-right: 20px;
}

.fir-right {
  float: right;
  position: absolute;
  right: 75px;
}

.fir-right li {
  margin-left: 50px;
}

.first-header a {
  color: white;
}

.first-header-icon {
  padding-right: 10px;
  vertical-align: middle;
}

/* 第二行开始 */
.wrap {
  height: 60px;
  background-color: #fff;
}

.wrap1 {
  height: 60%;
  width: 100%;
  margin: 0 auto;
}

.wrap2 {
  position: relative;

}

.second-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background-color: #fff;
  padding: 0;
}

.sec-mainNav {
  display: inline-block;
}

/* 左侧 logo 和导航区域 */
.logo {
  display: inline-block;
  width: 280px;
  height: 60px;
  line-height: 60px;
  position: relative;
}

.logo img {
  width: 150px;
}

.logo p {
  color: white;
  padding-left: 15px;
  display: inline-block;
  line-height: 60px;
  position: absolute;
}

.nav-left {
  display: flex;
  align-items: center;
}

/* 主导航样式修改 */
.main-nav {
  display: flex;
  list-style: none;

}

.main-nav>li {
  width: 176px;
  margin-right: 30px;

  position: relative;
  height: 60px;
}

.main-nav a {
  color: black;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 52px;
  padding-top: 18px;
  transition: all 0.2s;
}

.nav-en {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3px;
  font-family: Arial;
}

/* 子导航样式保持原样 */
.sub-nav {
  position: absolute;
  display: block;
  top: 60px;
  left: 0;
  width: 181px;
  min-width: 100px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(-10px);
  max-height: 0;
  overflow: hidden;
}

.sub-nav ul {
  background: rgba(255, 255, 255, 0.85);
  list-style: none;
  padding: 0;
  width: 100%;
}

.sub-nav li {
  width: 100%;
  height: 60px;
  /* 与主菜单同高 */
  line-height: 60px;
  /* 垂直居中 */
  padding: 0;
}

.sub-nav li:hover {
  background-color: #94060a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.sub-nav a {
  font-size: 16px;
  /* 与主菜单同字号 */
  display: block;
  text-align: center;
  padding-top: 0;
}

.main-nav li:hover .sub-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 2000px;
}

.main-nav li:hover .sub-nav li:nth-child(1) {
  transition-delay: 0.1s;
}

.main-nav li:hover .sub-nav li:nth-child(2) {
  transition-delay: 0.2s;
}

.main-nav li:hover .sub-nav li:nth-child(3) {
  transition-delay: 0.3s;
}

.main-nav li:hover .sub-nav li {
  transform: translateY(0);
  opacity: 1;
}

/* 右侧样式保持原样 */
.nav-right {
  display: flex;
  align-items: center;
  padding-right: 25px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.search-input {
  height: 30px;
  padding-left: 7px;
  border: none;
  border-radius: 5px;
  outline: none;
}

.search-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
}

.english-link {
  color: white;
  text-decoration: none;
  margin-left: 10px;
  font-size: 14px;
}

/*轮播开始*/
/*banner开始*/
.banner {
  width: 100%;
  height: 900px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.banner .w {
  width: 100%;
  height: 100%;
}

.banner .dws-box {
  width: 100%;
  height: 100%;
  position: relative;
}

.banner .imglist {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease;
}

.banner .imglist a {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.banner .imglist img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 增强箭头样式 */
.banner .leftbtn,
.banner .rightbtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px 10px;
  transition: all 0.3s ease;
  width: 50px;
}

.banner .leftbtn:hover,
.banner .rightbtn:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.banner .leftbtn {
  left: 0;
}

.banner .rightbtn {
  right: 0;
}

.banner .leftbtn img,
.banner .rightbtn img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.banner .btnlist {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.banner .btnlist span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.banner .btnlist span.che {
  background-color: white;
}

.che {
  background: #333 !important;
}

.show {
  display: block !important;
}

/*轮播图结束*/
/*页脚*/
.footer {
  background-color: #a53736;
  color: white;


  height: 250px;
  /* 确保布局空间 */
}

.footer-container {
  display: flex;
  justify-content: center;
  height: 70%;
}

.footer-left {
  height: 85%;
  width: 25%;

  border-right: 2px solid black;
  display: flex;

  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-left img {
  max-width: 245px;
  margin-bottom: 10px;
}

.footer-middle {
  font-size: 13px;
  width: 20%;
  height: 100%;
  padding-left: 30px;
  padding-top: 20px;
  line-height: 2.3;
  overflow: hidden;
}

.footer-right {
  position: relative;
  flex-direction: row;
  /* 水平排列 */
  gap: 30px;
  /* 水平间隔30px */
  justify-content: flex-end;
  /* 内容右对齐（底部水平排列） */
  padding-bottom: 36px;
  width: 25%;
  font-size: 13px;
}

.footer-right img {
  position: absolute;
  width: 100px;
  right: 60px;
  bottom: 30px;
}

.footer-right p {
  position: absolute;
  right: 50%;

  bottom: 70px;
}

.footer-right .footer-content {
  display: flex;
  align-items: center;
  /* 内部元素垂直居中对齐 */
}

.copyright {
  background-color: #91040a;
  height: 25%;
  text-align: center;
  line-height: 60px;
  position: relative;
  bottom: -15%;
}

.w2-top {
  position: absolute;
  top: 0;
  width: 100%;
  height: 200px;
  background-color: #a53736;
  z-index: -2;
}

.w2-bottom {
  bottom: 0;
  width: 100%;
  position: absolute;
  height: 80px;
  background-color: #91040a;
  z-index: -2;
}

/*-----------------赵天浩-----------------*/
:root {
  --main-color: #ccc;
  --link-color: #c70b10;
  --font-stack: "Arial", "宋体";
  --zth-main-color: #ccc;
  --zth-primary: #c70b10;
  --zth-font: "Arial", "Microsoft Yahei";
  --zth-accent: #f1c1c2;
  --zth-text: #1e1e1e;
}

ul {
  list-style: none;
}

/* 第一部分 聊大要闻 */
.zth-container {
  scroll-snap-type: y mandatory;
  position: relative;
  /* 设置滚动容器的高度 */
}

.zth-container .overlay {
  height: 555px;
}

.zth-main {
  width: 1500px;

  scroll-snap-align: start;
  /* 对齐方式 */
  margin: 0 auto;
  padding-top: 3px;
}

.zth-title {
  font-size: 24px;
  width: 1460px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  position: relative;
  top: 0;
  left: 0;
  padding-top: 3px;
  transition: all 0.3s ease-in-out;
}

/* 标题拆分 */
.aac {
  margin-left: 10px;
}

.zth-title a,
.zth-title2 a {
  text-decoration: none;
}

.zth-learnmore {
  font-size: 14px;
  text-decoration: none;
  color: #1e1e1e;
  margin-left: auto;
  position: relative;
  transition: 0.2s ease;
}

.zth-more-link:hover {
  color: var(--zth-primary);
}

.zth-LDNews {
  width: 1460px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

/* 学术交流 */
.zth-LDXs {
  width: 1460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 23px;
  margin-bottom: 40px;
  position: relative;
}

.zth-title2 {
  font-size: 24px;
  width: 1460px;

  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  height: 60px;
  align-items: center;
  scroll-snap-align: start;
}

.zth-title2 .zth-titleBox {
  display: flex;
  width: 100%;
  height: 40px;
  margin-top: 10px;
  align-items: center;

}

.zth-xs {
  padding: 10px;
  height: 423px;
  width: 419px;
  margin-right: auto;
  height: 100%;
  margin-bottom: 10px;
  /* 右对齐 */
  margin-top: -90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 140px;
  position: relative;
  perspective: 1000px;
}

.zth-learnmore:hover {
  color: var(--link-color);
  font-size: 20px;
}

.zlbt {

  border-radius: 5px;
  background-color: #dedede;
  color: #000000;
  width: 778px;
  height: 408px;
  display: flex;
  box-shadow: 2px 2px 5px rgb(202, 194, 194),
    4px 4px 10px rgba(183, 183, 183, 0.3), 6px 6px 15px rgba(183, 183, 183, 0.4);
  position: relative;
  margin-top: 15px;

}

.zlbt .ecard {
  height: 67px;
  width: 405px;
  position: absolute;
  bottom: 0;
  left: 0;

  background: #c70b10;
  -webkit-clip-path: polygon(90% 0, 100% 100%, 100% 100%, 0 99%, 0 0);
  clip-path: polygon(90% 0, 100% 100%, 100% 100%, 0 99%, 0 0);
  font-family: "Zhuque Fangsong (technical preview)";
  font-weight: normal;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.zth-lpt {
  position: relative;
  width: 776px;
  height: 405px;

  overflow: hidden;

  border: 1px solid #fff;
  border-radius: 10px;
}

.zth-lpt img {
  width: 776px;
  height: 405px;

  /* 居中 */
  object-fit: cover;
  /* 图片填充并裁剪 */
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.carousel {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
  position: relative;
  left: -5px;
  /* 内阴影 */
}

.zth-lpt img:hover {
  transform: scale(1.1);
}

.zth-title2 .zth-learnmore2 {
  font-size: 14px;
  text-decoration: none;
  color: #1e1e1e;
  position: relative;
  transition: 0.2s ease;
  white-space: nowrap;

}

.zth-learnmore2 .arrow {
  display: inline-block;
  font-weight: bolder;
  animation: arrow 2s infinite;
  transform-origin: center;
}

.zth-ll {
  width: 1460px;
  ;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 61px;


  /* 黑色背景 */
  color: white;
  height: 323px;
  position: relative;
  overflow: hidden;

}

.zth-lll {
  width: 1460px;
  ;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 61px;


  /* 黑色背景 */
  color: white;
  height: 323px;
  position: relative;
  overflow: hidden;

}

.zth-ll .zth-card {
  min-width: 424px;
  height: 305px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 2px 10px rgba(205, 205, 205, 1);
  position: relative;

  justify-content: center;
  transition: all 0.3s ease-in-out;
  align-items: center;

}




.zth-card .zimg {
  height: 135px;
  width: 100%;

  transition: opacity 0.3s ease, height 0.3s ease;
  /* 初始状态也添加过渡效果 */
  z-index: -1;
  transition: all 0.3s ease-in-out;


}

.zimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 图片填充并裁剪 */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  /* 图片圆角 */

}

.zth-learnmore2:hover {
  color: var(--link-color);
  font-size: 20px;
}

.zth-card .ztitle {
  font-size: 18px;
  height: 18px;
  line-height: 18px;
  word-wrap: break-word;
  padding: 0 8px;
  margin: 0 8px;
  margin-top: 8px;
  color: #141414;
  text-align: center;
  /* 文字居中 */
  text-overflow: ellipsis;
  /* 文字省略 */
  overflow: hidden;
  /* 文字溢出 */
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.3s ease;
}

.zth-card .zcontent {
  color: #666;
  width: 400px;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 8px auto 0;
  height: 75px;
  padding: 0 8px;
  /* 两行文本的高度 */
  line-height: 25px;
  text-indent: 1em;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}

.zth-card .ztime {
  content: '2025 // 2.14';
  background-color: #8b0000;
  height: 27px;
  width: 40%;
  color: #e0dfdf;
  font-size: 14px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 10px 0 0 0;
  /* 定位到底部 */
  transition: all 0.3s ease-in-out;
  z-index: 5;
  box-shadow: 5px 5px 10px #fecccc;
}

.zth-card::before {
  content: 'lcu.edu.cn';
  background-color: #f9d7d7;
  height: 27px;
  width: 100%;
  color: #fde6e6;
  font-size: 18px;
  text-align: inherit;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;

  /* 定位到底部 */
}

.zth-card::after {
  content: '聊城大学';
  z-index: 1;
  height: 20px;
  width: 40%;
  color: #fac8c8;
  font-size: 24px;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  position: absolute;
  bottom: 2px;
  right: -25px;
  border-radius: 0 10px 0 0;
  /* 定位到底部 */
  transition: all 0.3s ease-in-out;
  transform: rotateZ(-10deg);
}

.zth-card .icon {
  justify-content: centers;
  padding-right: 4px;
}



.zth-card:hover {
  transform: scale(1.05);
  box-shadow: 2px 2px 10px rgba(205, 1);


}

.zth-card:hover .zimg {
  filter: brightness(108%);
  transform: translateY(-5px);
}

.zth-card:hover .ztitle {
  color: #94060a;
  transform: translateY(-5px);
}

.ztitle::after {
  content: "";
  /* 伪元素内容为空 */
  position: absolute;
  bottom: 0;
  /* 定位到文本底部 */
  left: 0;
  width: 0%;
  /* 初始宽度为 0 */
  height: 2px;
  /* 下划线的高度 */
  background-color: #88304e;
  /* 下划线的颜色 */
  transition: width 0.3s ease;
  /* 动画效果 */
}

.zth-card:hover .ztitle::after {
  width: 100%;
  /* 悬停时宽度变为 100%，显示完整下划线 */
}

/* .zth-card:hover .ztime {
  transform: translateX(-210px);
  border-radius: 0 10px 0 0;
} */

.zth-card:hover .zcontent {
  transform: translateY(-5px);
  border-bottom: 1px solid #94060a;
  position: absolute;
  left: 4.992px;
  overflow: hidden;
  height: 75px;
}

.zlist {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;

  width: 588px;
  height: 450px;

  box-sizing: border-box;
}

.zli {
  display: flex;
  /* 纵向 */
  width: 100%;
  height: 98px;
  background-color: white;
  border-radius: 10px;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
  position: relative;
  left: -30px;
  transition: all 0.15s ease-in-out;
}

.zli:hover {
  transform: translateX(-10px);

}

.zli:hover .icon2 {
  transform: rotate(180deg);
}

.zli:hover .shang {
  transform: translateY(1px);
}

/* .zli:hover .xia {
  transform: translateY(-1px);
} */

.icon2 {
  position: absolute;
  top: 5px;
  width: 14px;
  height: 14px;
  left: 5px;
  transition: all 0.3s ease-in-out;
  display: none;
}



.zlit {
  width: 67px;
  height: 67px;
  border-radius: 15%;
  display: flex;
  background-color: #a53736;
  justify-content: center;
  background-image: url('data:image/svg+xml;utf8,<svg class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M512 960c-246.4 0-448-201.6-448-448s201.6-448 448-448 448 201.6 448 448-201.6 448-448 448z m0-64c211.2 0 384-172.8 384-384s-172.8-384-384-384-384 172.8-384 384 172.8 384 384 384z m32-576v211.2l3.2 3.2 156.8 156.8c12.8 12.8 12.8 32 0 44.8s-32 12.8-44.8 0l-156.8-156.8c-3.2-3.2-22.4-22.4-22.4-35.2v-224c0-19.2 12.8-32 32-32s32 12.8 32 32z" fill="#e6e6e6"></path></svg>');
  align-items: center;
  flex-direction: column;
  box-shadow: inset 10px 4px 4px #a53736;
  margin-left: 10px;
}

.shang {
  font-weight: bold;
  font-size: 20px;
  color: white;
  position: relative;
  font-family: "SoukouMincho";
  display: flex;
  transition: all 0.3s ease;
}

.shang span {
  position: absolute;
  bottom: -3px;
  left: 22px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: white;
  z-index: 100;


  transition: opacity 0.3s ease;

}

.xia {
  font-weight: lighter;
  font-size: 16px;
  border-top: 2px solid #e3e3e3;
  transition: all 0.3s ease;
  color: white;
  z-index: 50;
}

.zcom {

  /* 左侧紫色边框 */
  font-size: 18px;
  /* 字体大小 */
  display: flex;

  /* 使用 Webkit 盒模型 */
  -webkit-line-clamp: 2;
  /* 显示两行文本 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  width: 560px;
  height: 80%;
  /* 容器宽度 */
  overflow: hidden;
  /* 隐藏超出部分 */
  text-overflow: ellipsis;
  /* 显示省略号 */
  padding: 6px 0;
  padding-left: 8px;

  /* 添加一些内边距 */
  background-color: #fff;
  border-radius: 10px;
  box-shadow: inset 5px 2px 2px #fff;
  transition: all 0.3s ease-in-out;

  font-weight: normal;
  align-items: center;
}

.zli:hover .zcom {
  color: #a53736;

  font-weight: bolder;
  transition: all 0.3s ease-in-out;
}

.l-arrow {
  position: absolute;
  bottom: 50px;
  right: -40px;
}

.r-arrow {
  position: absolute;
  bottom: 20px;
  right: -40px;
}

.icon3 {
  height: 30px;
  width: 30px;
  transform: rotate(180deg);
  cursor: pointer;

}

.icon4 {
  height: 30px;
  width: 30px;
  cursor: pointer;
}

/*-----------------赵天浩-----------------*/
/*----------------李羽涵-----------------*/

.wrap3 {
  width: 1500px;
  margin: 30px auto;
  background-image: url('新建文件夹 (3)/images/日晷.jpg');
  /* 添加实践活动背景图 */
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.8);
}

.section {

  padding: 10px 3px;
  text-align: left;
  font-size: 24px;
  gap: 0;
  display: flex;
}

.ybody {

  margin: 20px;
  padding: 0;

}

.highlight {

  letter-spacing: 0px;
  margin-left: 10px;
  line-height: 48px;
}



.content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  /* 减少整体间距 */



}


.photo {
  flex: 0 0 303px;
  height: 315px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  left: 45px;
  margin-top: 0;
  /* 可以根据需要调整外边距 */
}

.academic-image-section {
  flex: 0 0 303px;
  height: 315px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  left: 45px;
  margin-top: 0;
  /* 可以根据需要调整外边距 */

}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  /* 减少网格间隙 */
  grid-auto-rows: minmax(80px, auto);
  padding: 20px 30px;
  /* 减少容器内边距 */
  padding-left: 5px;
  padding-top: 0;
}

.box {
  width: 530px;
  /* 调整宽度与通知公告一致 */
  min-height: 150px;
  /* 调整最小高度与通知公告一致 */
  background: white;
  padding: 10px;
  /* 调整内边距与通知公告一致 */
  padding-bottom: 0;
  border-radius: 8px;
  border: 1px solid #eee;
  /* 调整边框与通知公告一致 */
  transition: transform 0.3s ease;
  /* 调整过渡效果与通知公告一致 */
  font-size: 22px;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.box-title {
  font-size: 18px;
  font-weight: 600;
  color: #8b0000;
  padding-bottom: 6px;

  margin-bottom: 10px;
  line-height: 1.4;
}

.box-content {
  line-height: 1.3;
  color: #444;
  flex-grow: 1;
  max-width: 95%;
  /* 防止内容溢出 */
}

.box-time {
  font-size: 18px;
  color: #666;
  text-align: right;
  margin-top: 10px;
  padding-top: 6px;
  border-top: 1px dashed #ddd;
}

.box:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  background-color: #fff5f5;
}

.zth-1 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;

}

.zth-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: rgba(246, 239, 239, 0.80);
}

.zth-2 {
  padding-top: 30px;
}

/*谭守璞*/
.beijing-container {
  position: relative;
  height: 470px;
  width: 100%;
  overflow: hidden;
}

.beijing-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(240, 239, 246, 0.8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.academic-container {
  width: 1500px;
  min-height: 420px;
  margin: 40px auto;
  margin-top: 10px;
  padding: 30px;
  padding-top: 0;
  padding-left: 10px;
  border-radius: 12px;
}

.academic-main-layout {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

/* 图片区域 */
.academic-image-section {
  flex: 0 0 303px;
  height: 315px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  left: 45px;
  margin-top: 0;
  /* 可以根据需要调整外边距 */

}

.academic-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 图片文字样式 */
.academic-image-text {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  color: white;
  font-size: 1.8em;
  font-weight: bold;
  z-index: 10;
  padding: 0 20px;
}

.academic-image-text::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #2e7589;
}

/* 查看更多样式 */
.academic-view-more {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6em;
  color: white;
  font-weight: normal;
  z-index: 11;
}

/* 信息区域 */
.academic-content-section {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 530px);
  gap: 10px;
  position: relative;
  left: 45px;
}

/* 信息卡片优化 */
.academic-info-card {
  width: 530px;
  min-height: 150px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.academic-card-header {

  padding-bottom: 12px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.academic-card-title {
  color: #2c3e50;
  font-size: 18px;
  max-width: 80%;
  line-height: 1.4;
  white-space: nowrap;
  /* 禁止文本换行，强制在一行内显示 */
  overflow: hidden;
  /* 超出容器宽度的内容隐藏 */
  text-overflow: ellipsis;
}

.academic-card-title1 {
  color: #94060a;
  font-size: 18px;
  max-width: 80%;
  line-height: 1.4;
  white-space: nowrap;
  /* 禁止文本换行，强制在一行内显示 */
  overflow: hidden;
  /* 超出容器宽度的内容隐藏 */
  text-overflow: ellipsis;
}

.academic-time-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7f8c8d;
  font-size: 0.9em;
}

.academic-calendar-icon {
  color: #94060a;
  font-size: 1.1em;
}

/* 文本完全显示优化 */
.academic-card-content p {
  color: #34495e;
  line-height: 1.7;
  font-size: 16px !important;
  margin: 0;
  display: block;
  overflow: visible;
  white-space: normal;
}

.multi-line1 {
  width: 420px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 16px;
}

.multi-line2 {
  width: 476px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}



.tsp-wrap {
  height: 120px;
  background-color: #94060a;
}

.tsp-box {
  width: 1450px;
  margin: 0 auto;
}

.tsp-logo {
  margin-top: 10px;
  float: left;
  text-align: left;
}

.top_right_top {
  text-transform: uppercase;
  font-family: "Microsoft YaHei", serif;
  font-size: 12px;
  padding-top: 30px;
  margin-right: 10px;
}

.top_right_top li {
  float: left;
  background-position: right;
  padding: 0 10px;
  text-align: center;
}

.top_right_top li a {
  color: black;
}

.top_right_top li.active {
  background: none;
  padding: 0 0 0 10px
}

.mb30 {
  margin-bottom: 30px;
}

.tsp-fr {
  float: right;
}

.search_box {
  float: right;
  height: 36px;

}

.search_box_text {
  height: 34px;
  line-height: 34px;
  border-top: solid 1px #dcdcdc;
  border-left: solid 1px #dcdcdc;
  border-bottom: solid 1px #dcdcdc;
  border-right: solid 1px #ffffff;
  width: 260px;
  text-indent: 10px
}

.top_font {
  float: left;
  color: #fff;
  font-size: 50px;
  font-family: SimSun, '宋体', serif;
  padding-top: 35px;
  width: 550px;
  font-weight: bold;
}

.wrap4 {
  height: 10px;
  background-color: #94060a;
}

.top-image {
  float: right;
  padding-top: 0px;
  padding-right: 1px;
  width: 220px;
  height: 120px
}





.level2 {
  position: relative;
}

.third-sub-nav {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 140px;
  background-color: #f8f8f8;
  border-left: 1px solid #94060a;
  z-index: 9999;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.level2:hover>.third-sub-nav {
  display: block;
}

.third-sub-nav li {
  position: relative;
}

.fourth-sub-nav {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 120px;
  background-color: #fefefe;
  border-left: 1px solid #e4393c;
  z-index: 10000;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.third-sub-nav li:hover>.fourth-sub-nav {
  display: block;
}

.sub-nav {
  overflow: visible !important;
}

.main-nav {
  overflow: visible !important;
}