/* 新闻公告样式 - 严肃风格 */
.news_list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news_list .news_item {
  margin-bottom: 0px;
  padding: 10px 0; /* 移除左右内边距，取消卡片效果 */
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: transparent; /* 改为透明背景 */
  min-height: 75px;
  border-bottom: 0px solid #f0f0f0; /* 细分割线 */
}

.news_list .news_item:hover {
  background: transparent; /* 移除悬停背景色 */
  transform: none; /* 移除悬停位移 */
  box-shadow: none; /* 移除阴影 */
}

.news_list .news_item:hover .news_title a {
  color: #1a3658;
}

.news_list .news_item:hover .news_summary {
  color: #555555;
}

.news_list .news_item.active {
  background: #113a7e;
  border-bottom-color: #113a7e;
}

.news_list .news_item.active .news_title a {
  color: #ffffff;
  text-shadow: none;
}

.news_list .news_item.active .news_summary {
  color: rgba(255, 255, 255, 0.9);
}

/* 日历卡片样式 - 保持不变 */
.news_list .news_date {
  float: left;
  width: 80px;
  margin-right: 18px;
  text-align: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.news_list .date_calendar {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
}

.news_list .date_month_days {
  font-size: 16px;
  font-weight: 700;
  color: #113a7e;
  padding: 6px 4px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.2;
  font-family: "Microsoft Yahei", Arial, sans-serif;
  border-radius: 0;
}

.news_list .date_year {
  font-size: 16px;
  color: #666666;
  padding: 4px 4px;
  background: #ffffff;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Microsoft Yahei", Arial, sans-serif;
  border-radius: 0;
}

.news_list .news_item:hover .date_calendar {
  transform: scale(1.02);
  box-shadow: 0 2px 6px rgba(44, 62, 80, 0.15);
}

.news_list .news_item:hover .date_month_days {
  background: #113a7e;
  color: #ffffff;
}

.news_list .news_item:hover .date_year {
  color: #113a7e;
  font-weight: 600;
}

.news_list .news_item.active .date_calendar {
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.3);
}

.news_list .news_item.active .date_month_days {
  background: #ffffff;
  color: #113a7e;
  font-weight: 700;
  border-bottom-color: #e0e0e0;
}

.news_list .news_item.active .date_year {
  background: #ffffff;
  color: #113a7e;
  font-weight: 600;
}

.news_list .news_content {
  overflow: hidden;
  padding: 1px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news_list .news_title {
  margin-bottom: 4px;
  line-height: 1.3;
  display: flex;
  align-items: center;
}

.news_list .news_title a {
  font-size: 16px;
  font-weight: 600;
  color: #113a7e;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: "Microsoft Yahei", "微软雅黑", sans-serif;
  line-height: 1.3;
}

.news_list .news_summary {
  font-size: 14px;
  color: #666666;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Microsoft Yahei", "宋体", sans-serif;
}

/* 响应式设计 - 严肃风格 */
@media (max-width: 1200px) {
  .news_list .news_item {
    padding: 10px 0;
    margin-bottom: 0px;
  }
  
  .news_list .news_date {
    width: 85px;
    margin-right: 16px;
  }
}

@media (max-width: 768px) {
  .news_list .news_item {
    padding: 8px 0;
    margin-bottom: 0px;
    min-height: 55px;
  }
  
  .news_list .news_date {
    width: 75px;
    margin-right: 14px;
  }
  
  .news_list .date_month_days {
    font-size: 15px;
    padding: 5px 3px;
  }
  
  .news_list .date_year {
    font-size: 12px;
    padding: 3px 3px;
  }
  
  .news_list .news_title a {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  
  .news_list .news_summary {
    font-size: 12px;
    -webkit-line-clamp: 2;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .news_list .news_item {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    margin-bottom: 0px;
    align-items: flex-start;
  }
  
  .news_list .news_date {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
    text-align: left;
  }
  
  .news_list .date_calendar {
    display: inline-flex;
    flex-direction: row;
    width: auto;
    border-radius: 0;
  }
  
  .news_list .date_month_days {
    padding: 5px 8px;
    border-bottom: none;
    border-right: 1px solid #e0e0e0;
    border-radius: 0;
  }
  
  .news_list .date_year {
    padding: 5px 8px;
    border-radius: 0;
  }
  
  .news_list .news_content {
    justify-content: flex-start;
  }
  
  .news_list .news_title {
    margin-bottom: 4px;
  }
  
  .news_list .news_title a {
    font-size: 14px;
    -webkit-line-clamp: 2;
    line-height: 1.3;
  }
  
  .news_list .news_summary {
    -webkit-line-clamp:2;
    line-height: 1.4;
  }
}

/* 小屏幕手机优化 */
@media (max-width: 375px) {
  .news_list .news_item {
    padding: 8px 0;
  }
  
  .news_list .news_title a {
    font-size: 13px;
  }
  
  .news_list .news_summary {
    font-size: 11px;
    -webkit-line-clamp: 3;
  }
}

/* 文章列表样式 - 极简风格，缩小间隔 */
.article_list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article_list .article_item {
  margin-bottom: 0px;
  padding: 6px 0; /* 缩小上下内边距 */
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  min-height: 38px; /* 缩小最小高度 */
}

.article_list .article_item:hover .article_index,
.article_list .article_item:hover .article_title a,
.article_list .article_item:hover .article_date {
  color: #113a7e;
}

.article_list .article_item.active .article_index,
.article_list .article_item.active .article_title a,
.article_list .article_item.active .article_date {
  color: #113a7e;
  font-weight: 600;
}

.article_list .article_content {
  display: flex;
  align-items: center;
  flex-grow: 1;
  overflow: hidden;
}

.article_list .article_index {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  margin-right: 10px; /* 缩小右边距 */
  min-width: 22px; /* 缩小最小宽度 */
  transition: all 0.3s ease;
  font-family: "Microsoft Yahei", Arial, sans-serif;
}

.article_list .article_title {
  flex-grow: 1;
  overflow: hidden;
}

.article_list .article_title a {
  font-size: 14px; /* 稍微缩小字体 */
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: "Microsoft Yahei", "微软雅黑", sans-serif;
  line-height: 1.3; /* 调整行高 */
}

.article_list .article_date {
  font-size: 12px; /* 缩小字体 */
  color: #999999;
  transition: all 0.3s ease;
  font-family: "Microsoft Yahei", Arial, sans-serif;
  margin-left: 12px; /* 缩小左边距 */
  flex-shrink: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .article_list .article_item {
    padding: 5px 0; /* 进一步缩小间隔 */
    min-height: 35px;
  }
  
  .article_list .article_index {
    font-size: 13px;
    margin-right: 8px;
    min-width: 20px;
  }
  
  .article_list .article_title a {
    font-size: 13px;
  }
  
  .article_list .article_date {
    font-size: 11px;
    margin-left: 10px;
  }
}

@media (max-width: 480px) {
  .article_list .article_item {
    padding: 4px 0;
    min-height: 32px;
    flex-wrap: wrap;
  }
  
  .article_list .article_content {
    width: 100%;
    margin-bottom: 1px; /* 缩小间距 */
  }
  
  .article_list .article_date {
    margin-left: auto;
    margin-bottom: 0;
  }
  
  .article_list .article_title a {
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 375px) {
  .article_list .article_item {
    padding: 3px 0;
  }
  
  .article_list .article_index {
    font-size: 12px;
    margin-right: 6px;
    min-width: 18px;
  }
  
  .article_list .article_title a {
    font-size: 12px;
  }
  
  .article_list .article_date {
    font-size: 10px;
    margin-left: 8px;
  }
}

/* 清除浮动 */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* 点击效果优化 */
.news_list .news_item,
.article_list .article_item {
  -webkit-tap-highlight-color: transparent;
}

.news_list .news_item:focus,
.article_list .article_item:focus {
  outline: none;
}

/* 学术报告列表样式 - 统一深蓝色主题 */
.seminar_list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seminar_list .seminar_item {
  margin-bottom: 0px;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid #f0f0f0;
  min-height: 90px;
}

.seminar_list .seminar_item:last-child {
  border-bottom: none;
}

.seminar_list .seminar_item:hover {
  background: #f8f9fa;
}

.seminar_list .seminar_item.active {
  background: #113a7e; /* 深蓝色主题 */
}

.seminar_list .seminar_item.active .seminar_topic a,
.seminar_list .seminar_item.active .seminar_speaker,
.seminar_list .seminar_item.active .seminar_location {
  color: #ffffff;
}

/* 学术报告日历卡片样式 - 统一深蓝色主题（保持原有类名） */
.seminar_list .seminar_date {
  float: left;
  width: 70px;
  margin-right: 20px;
  text-align: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seminar_list .date_calendar {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
  width: 100%;
}

.seminar_list .date_month_day {
  font-size: 16px;
  font-weight: 700;
  color: #113a7e; /* 深蓝色 */
  padding: 8px 4px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.2;
  font-family: "Microsoft Yahei", Arial, sans-serif;
  border-radius: 0;
}

.seminar_list .date_time {
  font-size: 14px;
  color: #666666;
  padding: 6px 4px;
  background: #ffffff;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Microsoft Yahei", Arial, sans-serif;
  border-radius: 0;
}

.seminar_list .seminar_item:hover .date_calendar {
  transform: scale(1.02);
  box-shadow: 0 2px 6px rgba(17, 58, 126, 0.15);
}

.seminar_list .seminar_item:hover .date_month_day {
  background: #113a7e;
  color: #ffffff;
}

.seminar_list .seminar_item:hover .date_time {
  color: #113a7e;
  font-weight: 600;
}

.seminar_list .seminar_item.active .date_calendar {
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.3);
}

.seminar_list .seminar_item.active .date_month_day {
  background: #ffffff;
  color: #113a7e;
  font-weight: 700;
  border-bottom-color: #e0e0e0;
}

.seminar_list .seminar_item.active .date_time {
  background: #ffffff;
  color: #113a7e;
  font-weight: 600;
}

/* 学术报告内容区域 */
.seminar_list .seminar_content {
  overflow: hidden;
  padding: 2px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.seminar_list .seminar_topic {
  margin-bottom: 8px;
  line-height: 1.4;
}

.seminar_list .seminar_topic a {
  font-size: 16px;
  font-weight: 600;
  color: #113a7e; /* 深蓝色 */
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: "Microsoft Yahei", "微软雅黑", sans-serif;
  line-height: 1.4;
}

.seminar_list .seminar_item:hover .seminar_topic a {
  color: #1a3658; /* 深蓝色悬停 */
}

.seminar_list .seminar_details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.seminar_list .seminar_speaker {
  font-size: 14px;
  color: #666666;
  line-height: 1.4;
  font-family: "Microsoft Yahei", "宋体", sans-serif;
  display: flex;
  align-items: center;
}

.seminar_list .seminar_speaker:before {
  content: "主讲人：";
  font-weight: 500;
  color: #333333;
  margin-right: 4px;
}

.seminar_list .seminar_location {
  font-size: 14px;
  color: #666666;
  line-height: 1.4;
  font-family: "Microsoft Yahei", "宋体", sans-serif;
  display: flex;
  align-items: center;
}

.seminar_list .seminar_location:before {
  content: "地点：";
  font-weight: 500;
  color: #333333;
  margin-right: 4px;
}

.seminar_list .seminar_item:hover .seminar_speaker,
.seminar_list .seminar_item:hover .seminar_location {
  color: #555555;
}

/* 响应式设计 - 与党建区域保持一致 */
@media (max-width: 1200px) {
  .seminar_list .seminar_item {
    padding: 14px 0;
  }
  
  .seminar_list .seminar_date {
    width: 65px;
    margin-right: 18px;
  }
}

@media (max-width: 768px) {
  .seminar_list .seminar_item {
    padding: 12px 0;
    min-height: 80px;
  }
  
  .seminar_list .seminar_date {
    width: 60px;
    margin-right: 15px;
  }
  
  .seminar_list .date_month_day {
    font-size: 15px;
    padding: 6px 3px;
  }
  
  .seminar_list .date_time {
    font-size: 12px;
    padding: 4px 3px;
  }
  
  .seminar_list .seminar_topic a {
    font-size: 15px;
  }
  
  .seminar_list .seminar_speaker,
  .seminar_list .seminar_location {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .seminar_list .seminar_item {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    align-items: flex-start;
    min-height: auto;
  }
  
  .seminar_list .seminar_date {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    text-align: left;
    justify-content: flex-start;
  }
  
  .seminar_list .date_calendar {
    display: inline-flex;
    flex-direction: row;
    width: auto;
  }
  
  .seminar_list .date_month_day {
    padding: 6px 10px;
    border-bottom: none;
    border-right: 1px solid #e0e0e0;
  }
  
  .seminar_list .date_time {
    padding: 6px 10px;
  }
  
  .seminar_list .seminar_content {
    justify-content: flex-start;
  }
  
  .seminar_list .seminar_topic {
    margin-bottom: 6px;
  }
  
  .seminar_list .seminar_topic a {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  
  .seminar_list .seminar_speaker,
  .seminar_list .seminar_location {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .seminar_list .seminar_item {
    padding: 10px 0;
  }
  
  .seminar_list .seminar_topic a {
    font-size: 13px;
  }
  
  .seminar_list .seminar_speaker,
  .seminar_list .seminar_location {
    font-size: 11px;
  }
}

/*浮动图标样式*/
.shares{
    position: fixed;
    bottom: 50px;
    right: 10px;
    z-index: 100;
}
.toshow img{
    width: 53px;
    height: 53px;
}
.show{
    display: none;
    position: absolute;
    bottom: -20px;
    right: 60px;
    background:#fff;
}
.flotImgTipInfo{

    font-size: 12px;
    text-align: center;

}
.show2{
    display: none;
    position: absolute;
    bottom: -20px;
    right: 155px;
    background:#fff;

}
.show2 img{
    height: 90px;
    width: 90px;
}
.show img{
    height: 90px;
    width: 90px;
}
.totop img{
    height: 53px;
    width: 53px;
}
.toshow{
    position: relative;
}
div .toshow:hover .show{
    display: block;
}
div .toshow:hover .show2{
    display: block;
}
.toshow span{
    text-align: center;
    font-size: 12px;
    display: block;
}

/* 科研成果列表样式 - 修正版 */
.achievement_list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.achievement_list .achievement_item {
  margin-bottom: 0px;
  padding: 10px 0; /* 保持适当的间距 */
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center; /* 居中对齐，确保高度一致 */
  background: transparent;
  border-bottom: 1px solid #f0f0f0;
  min-height: 70px; /* 确保最小高度一致 */
  box-sizing: border-box; /* 确保内边距包含在高度内 */
}

.achievement_list .achievement_item:last-child {
  border-bottom: none;
}

.achievement_list .achievement_item:hover {
  background: #f8f9fa;
}

.achievement_list .achievement_item.active {
  background: #113a7e;
}

.achievement_list .achievement_item.active .achievement_title a,
.achievement_list .achievement_item.active .achievement_summary {
  color: #ffffff;
}

/* 日历卡片样式 */
.achievement_list .achievement_date {
  float: left;
  width: 70px; /* 恢复原始宽度 */
  margin-right: 18px; /* 恢复原始右边距 */
  text-align: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievement_list .date_calendar {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
  width: 100%;
}

.achievement_list .date_month_days {
  font-size: 16px;
  font-weight: 700;
  color: #113a7e;
  padding: 8px 4px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.2;
  font-family: "Microsoft Yahei", Arial, sans-serif;
  border-radius: 0;
}

.achievement_list .date_year {
  font-size: 14px;
  color: #666666;
  padding: 6px 4px;
  background: #ffffff;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Microsoft Yahei", Arial, sans-serif;
  border-radius: 0;
}

.achievement_list .achievement_item:hover .date_calendar {
  transform: scale(1.02);
  box-shadow: 0 2px 6px rgba(17, 58, 126, 0.15);
}

.achievement_list .achievement_item:hover .date_month_days {
  background: #113a7e;
  color: #ffffff;
}

.achievement_list .achievement_item:hover .date_year {
  color: #113a7e;
  font-weight: 600;
}

.achievement_list .achievement_item.active .date_calendar {
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.3);
}

.achievement_list .achievement_item.active .date_month_days {
  background: #ffffff;
  color: #113a7e;
  font-weight: 700;
  border-bottom-color: #e0e0e0;
}

.achievement_list .achievement_item.active .date_year {
  background: #ffffff;
  color: #113a7e;
  font-weight: 600;
}

/* 科研成果内容区域 - 修正标题样式 */
.achievement_list .achievement_content {
  overflow: hidden;
  padding: 2px 0; /* 恢复少量内边距 */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 垂直居中 */
  min-height: 70px; /* 确保内容区域高度一致 */
  box-sizing: border-box;
}

.achievement_list .achievement_title {
  margin-bottom: 6px;
  line-height: 1.4;
}

/* 修正：确保所有标题样式一致 */
.achievement_list .achievement_title a {
  font-size: 16px;
  font-weight: 600 !important; /* 强制使用600字体粗细 */
  color: #113a7e !important; /* 强制使用深蓝色 */
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: "Microsoft Yahei", "微软雅黑", sans-serif !important; /* 强制使用字体 */
  line-height: 1.4;
}

/* 移除所有可能继承的样式影响 */
.achievement_list .achievement_title a:link,
.achievement_list .achievement_title a:visited,
.achievement_list .achievement_title a:hover,
.achievement_list .achievement_title a:active {
  font-weight: 600 !important;
  color: #113a7e !important;
  text-decoration: none !important;
}

.achievement_list .achievement_item:hover .achievement_title a {
  color: #1a3658 !important;
}

.achievement_list .achievement_item.active .achievement_title a {
  color: #ffffff !important;
}

.achievement_list .achievement_summary {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Microsoft Yahei", "宋体", sans-serif;
}

.achievement_list .achievement_item:hover .achievement_summary {
  color: #555555;
}

/* 学科竞赛列表样式 - 修正版 */
.competition_list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.competition_list .competition_item {
  margin-bottom: 0px;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid #f0f0f0;
  min-height: 70px;
  box-sizing: border-box;
}

.competition_list .competition_item:last-child {
  border-bottom: none;
}

.competition_list .competition_item:hover {
  background: #f8f9fa;
}

.competition_list .competition_item.active {
  background: #113a7e;
}

.competition_list .competition_item.active .competition_title a,
.competition_list .competition_item.active .competition_summary {
  color: #ffffff;
}

/* 日历卡片样式 */
.competition_list .competition_date {
  float: left;
  width: 70px;
  margin-right: 18px;
  text-align: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.competition_list .date_calendar {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
  width: 100%;
}

.competition_list .date_month_days {
  font-size: 16px;
  font-weight: 700;
  color: #113a7e;
  padding: 8px 4px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.2;
  font-family: "Microsoft Yahei", Arial, sans-serif;
  border-radius: 0;
}

.competition_list .date_year {
  font-size: 14px;
  color: #666666;
  padding: 6px 4px;
  background: #ffffff;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Microsoft Yahei", Arial, sans-serif;
  border-radius: 0;
}

.competition_list .competition_item:hover .date_calendar {
  transform: scale(1.02);
  box-shadow: 0 2px 6px rgba(17, 58, 126, 0.15);
}

.competition_list .competition_item:hover .date_month_days {
  background: #113a7e;
  color: #ffffff;
}

.competition_list .competition_item:hover .date_year {
  color: #113a7e;
  font-weight: 600;
}

.competition_list .competition_item.active .date_calendar {
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.3);
}

.competition_list .competition_item.active .date_month_days {
  background: #ffffff;
  color: #113a7e;
  font-weight: 700;
  border-bottom-color: #e0e0e0;
}

.competition_list .competition_item.active .date_year {
  background: #ffffff;
  color: #113a7e;
  font-weight: 600;
}

/* 学科竞赛内容区域 - 修正标题样式 */
.competition_list .competition_content {
  overflow: hidden;
  padding: 2px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70px;
  box-sizing: border-box;
}

.competition_list .competition_title {
  margin-bottom: 6px;
  line-height: 1.4;
}

/* 修正：确保所有标题样式一致 */
.competition_list .competition_title a {
  font-size: 16px;
  font-weight: 600 !important; /* 强制使用600字体粗细 */
  color: #113a7e !important; /* 强制使用深蓝色 */
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: "Microsoft Yahei", "微软雅黑", sans-serif !important;
  line-height: 1.4;
}

/* 移除所有可能继承的样式影响 */
.competition_list .competition_title a:link,
.competition_list .competition_title a:visited,
.competition_list .competition_title a:hover,
.competition_list .competition_title a:active {
  font-weight: 600 !important;
  color: #113a7e !important;
  text-decoration: none !important;
}

.competition_list .competition_item:hover .competition_title a {
  color: #1a3658 !important;
}

.competition_list .competition_item.active .competition_title a {
  color: #ffffff !important;
}

.competition_list .competition_summary {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Microsoft Yahei", "宋体", sans-serif;
}

.competition_list .competition_item:hover .competition_summary {
  color: #555555;
}

/* 响应式设计 - 保持一致性 */
@media (max-width: 1200px) {
  .achievement_list .achievement_item,
  .competition_list .competition_item {
    padding: 8px 0;
    min-height: 65px;
  }
  
  .achievement_list .achievement_date,
  .competition_list .competition_date {
    width: 65px;
    margin-right: 16px;
  }
}

@media (max-width: 768px) {
  .achievement_list .achievement_item,
  .competition_list .competition_item {
    padding: 6px 0;
    min-height: 60px;
  }
  
  .achievement_list .achievement_date,
  .competition_list .competition_date {
    width: 60px;
    margin-right: 14px;
  }
}

/* 党建思政卡片布局样式 */
/* 党建思政卡片布局样式 - 强制两行三列 */
.party_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 15px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.party_card {
  background: #f8f9fa;
  border: 1px solid #e8ecef;
  padding: 12px 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 90px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  /* 强制每个卡片占据网格单元格 */
  min-height: 90px;
  height: auto;
}

.party_card:hover,
.party_card.active {
  background: #2453a9;
  border-color: #2453a9;
  transform: none;
  box-shadow: 0 2px 8px rgba(17, 58, 126, 0.2);
}

.party_card.active .party_card_title a {
  color: #ffffff;
}

/* 党徽图标 - 固定圆形显示，不受响应式影响 */
.party_icon {
    position: absolute !important;
    top: -13px !important; /* 向上调整位置 */
    right: 25px !important; /* 向右调整位置 */
    width: 28px !important; /* 稍微增大图标 */
    height: 28px !important; /* 稍微增大图标 */
    background: transparent url('images/dh.png') no-repeat center !important;
    background-size: cover !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
    z-index: 2;
    /* 添加阴影效果 */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
    /* 可选：添加边框让图标更突出 */
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.party_card:hover .party_icon,
.party_card.active .party_icon {
    background-image: url('images/dh.png') !important;
    background-size: cover !important;
    border-radius: 50% !important;
    /* 悬停时阴影更明显 */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3) !important;
}

/* 日历卡片样式 - 更小的正方形 */
.party_card_date {
  flex-shrink: 0;
  margin-right: 12px; /* 减少右边距，让内容更靠近 */
}

.party_card .date_calendar {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  width: 60px; /* 更小的正方形 */
  height: 60px; /* 更小的正方形 */
}

.party_card .date_month_days {
  font-size: 14px; /* 缩小字体 */
  font-weight: 700;
  color: #666666;
  padding: 8px 4px; /* 减少内边距 */
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.2;
  font-family: "Microsoft Yahei", Arial, sans-serif;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.party_card .date_year {
  font-size: 12px; /* 缩小字体 */
  color: #666666;
  padding: 6px 4px; /* 减少内边距 */
  background: #ffffff;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Microsoft Yahei", Arial, sans-serif;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 悬停和激活状态下的日历卡片 */
.party_card:hover .date_calendar,
.party_card.active .date_calendar {
  background: #3a6fd8;
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.3);
  transform: none;
}

.party_card:hover .date_month_days,
.party_card.active .date_month_days {
  background: #1b4d9d;
  color: #ffffff;
  border-bottom-color: #3d6cd9;
}

.party_card:hover .date_year,
.party_card.active .date_year {
  background: #1b4d9d;
  color: #ffffff;
  font-weight: 600;
}

/* 卡片内容区域 - 紧凑布局 */
.party_card_content {
  flex-grow: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 60px; /* 与日历卡片高度一致 */
  margin-left: 0; /* 确保没有额外左边距 */
}

.party_card_title {
  margin: 0;
  line-height: 1.4;
  width: 100%;
}

.party_card_title a {
  font-size: 14px; /* 缩小字体 */
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 最多显示三行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: "Microsoft Yahei", "微软雅黑", sans-serif;
  line-height: 1.4;
  /* 使用自然高度，不设置固定高度 */
}

.party_card:hover .party_card_title a,
.party_card.active .party_card_title a {
  color: #ffffff;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .party_grid {
    gap: 12px;
  }
  
  .party_card {
    padding: 10px 12px;
    min-height: 75px;
  }
  
  .party_card_date {
    margin-right: 10px;
  }
  
  .party_card .date_calendar {
    width: 55px;
    height: 55px;
  }
  
  .party_card .date_month_days {
    font-size: 13px;
    padding: 7px 3px;
  }
  
  .party_card .date_year {
    font-size: 11px;
    padding: 5px 3px;
  }
  
  .party_card_content {
    height: 55px;
  }
  
  .party_card_title a {
    font-size: 13px;
  }
 
}

@media (max-width: 768px) {
  .party_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .party_card {
    padding: 8px 10px;
    min-height: 70px;
  }
  
  .party_card_date {
    margin-right: 8px;
  }
  
  .party_card .date_calendar {
    width: 50px;
    height: 50px;
  }
  
  .party_card .date_month_days {
    font-size: 12px;
    padding: 6px 3px;
  }
  
  .party_card .date_year {
    font-size: 10px;
    padding: 4px 3px;
  }
  
  .party_card_content {
    height: 50px;
  }
  
  .party_card_title a {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .party_grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .party_card {
    padding: 6px 8px;
    min-height: 65px;
  }
  
  .party_card_date {
    margin-right: 6px;
  }
  
  .party_card .date_calendar {
    width: 45px;
    height: 45px;
  }
  
  .party_card .date_month_days {
    font-size: 11px;
    padding: 5px 2px;
  }
  
  .party_card .date_year {
    font-size: 9px;
    padding: 3px 2px;
  }
  
  .party_card_content {
    height: 45px;
  }
  
  .party_card_title a {
    font-size: 11px;
    -webkit-line-clamp: 2; /* 在小屏幕上只显示两行 */
  }
}