@charset "UTF-8";
.main-new {
  padding-top: 20px;
  padding-bottom: 20px; }

.view span {
  color: #56BAFF; }

.msg-center {
  /*width: 25%;
  float: left;*/
  text-align: left; }
  .msg-center > ul > li:first-child {
    color: #FFF;
    padding: 5px 0;
    font-size: 20px;
    text-align: center;
    background-color: #56BAFF;
    border: 1px solid #DADADA; }
  .msg-center > ul > li {
    padding: 5px 0 5px 20px; }
  .msg-center > ul .msg-new {
    border-left: 1px solid #DADADA;
    border-right: 1px solid #DADADA;
    border-bottom: 1px solid #DADADA; }
    .msg-center > ul .msg-new a {
      color: #000;
      font-weight: bold; }
  .msg-center > ul .msg-skc {
    border-bottom: 1px solid #DADADA; }
    .msg-center > ul .msg-skc a {
      color: #686868;
      display: block;
      line-height: 25px; }
      .msg-center > ul .msg-skc a:hover {
        color: #56BAFF; }
    .msg-center > ul .msg-skc span:last-child {
      float: right;
      font-size: 12px; }
  .msg-center > ul .msg-rjk {
    border-bottom: 1px solid #DADADA; }
    .msg-center > ul .msg-rjk a {
      color: #686868;
      display: block; }
      .msg-center > ul .msg-rjk a:hover {
        color: #56BAFF; }
    .msg-center > ul .msg-rjk span:last-child {
      float: right;
      font-size: 12px; }

/*
  右侧内容-->三角形
*/
.msg-content {
  float: right;
  /*width: 70%;*/
  /*max-height: 500px;*/
  padding: 10px 10px;
  border: 1px solid #DADADA;
  overflow: auto; }
  .msg-content > div {
    position: relative; }
    .msg-content > div > div {
      position: relative;
      padding: 15px 0 15px 50px;
      float: right;
      width: 80%;
      border-left: 1px solid #DADADA; }
      .msg-content > div > div .time-stamp {
        position: absolute;
        top: 46px;
        left: -90px; }
        .msg-content > div > div .time-stamp span:first-child {
          color: #56BAFF;
          font-size: 20px; }
        .msg-content > div > div .time-stamp span:last-child {
          font-size: 12px; }
      .msg-content > div > div .triangle {
        position: absolute;
        top: 50px;
        left: 35px;
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-right: 15px solid #FAFAFA;
        border-bottom: 15px solid transparent; }
      .msg-content > div > div .round {
        position: absolute;
        top: 50px;
        left: -13px;
        width: 18px;
        height: 18px;
        border-radius: 18px;
        display: inline-block;
        border: 4px solid #dfdfdf;
        background-color: #56BAFF; }
      .msg-content > div > div ul {
        padding: 20px 20px;
        background-color: #FAFAFA;
        font-size: 14px; }
        .msg-content > div > div ul > li:first-child {
          padding-top: 0; }
        .msg-content > div > div ul li {
          padding-top: 15px;
          border-bottom: 1px solid #dfdfdf; }
          .msg-content > div > div ul li a {
            color: #686868; }
            .msg-content > div > div ul li a span:last-child {
              float: right;
              font-size: 12px; }
            .msg-content > div > div ul li a:hover {
              color: #56BAFF; }

/*# sourceMappingURL=article.css.map */


:root {
  --primary-color: #56BAFF;
  --primary-dark: #56BAFF;
  --primary-light: #56BAFF;
  --secondary-color: #2c3e50;
  --accent-color: #56BAFF;
  --light-bg: #f8f9fa;
  --light-orange: #F3F2F9;
  --dark-bg: #343a40;
}

body {
  background-color: #f5f7fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}
/* 菜单样式 */
.side-menu {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 15px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.side-menu:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.menu-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-color);
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  position: relative;
}

.menu-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.menu-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: var(--light-bg);
  border-radius: 6px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.menu-list li a:hover {
  background: var(--light-orange);
  color: var(--primary-dark);
  transform: translateX(5px);
  border-left: 3px solid var(--primary-color);
}

.menu-list li a:hover span:last-child {
  color: var(--primary-color);
}

.menu-list li a span:last-child {
  color: var(--primary-color);
  font-weight: bold;
}

/* 时间线样式 (PC端) */
.timeline-container {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 70px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: #e0e6ed;
  z-index: 1;
}

.timeline-items {
  position: relative;
  z-index: 2;
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-date {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  text-align: center;
  padding: 5px;
  background: var(--primary-color);
  color: white;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
}

.timeline-content {
  padding: 15px 20px;
  background: var(--light-bg);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #f1f1f1;
  position: relative;
}

.timeline-content a:hover {
  text-decoration: none;/* 去掉链接悬停时的文字下划线 */
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 15px;
  width: 20px;
  height: 2px;
  background: var(--primary-color);
}

.timeline-content::after {
  content: '';
  position: absolute;
  left: -20px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 4px #C7E7E5;
}

.timeline-content:hover {
  background: var(--light-orange);
  transform: translateY(-3px);
  border-color: #C7E7E5;
}

.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.timeline-content h4 a {
  color: var(--secondary-color);
  text-decoration: none;
}

.timeline-content h4 a:hover {
  color: var(--primary-color);
}

.timeline-content .news-date {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.timeline-content p {
  color: #666;
  margin-bottom: 0;
  padding-right: 80px;
}

/* 卡片样式 (平板/手机端) */
.card-container {
  display: none;
}

.news-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 25px;
  border-top: 3px solid var(--primary-color);
  background: white;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px #28437A;
}

.card-img-container {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.news-card:hover .card-img-container img {
  transform: scale(1.05);
}

.no-image {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 12px;
  min-height: 60px;
  overflow: hidden;
}

.card-title a {
  color: var(--secondary-color);
  text-decoration: none;
}

.card-title a:hover {
  color: var(--primary-color);
}

.card-date {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 500;
}

.card-text {
  color: #666;
  min-height: 80px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* 分页样式 */
.pagination-container {
  display: flex;
  justify-content: right;
  /*margin: 40px 0 30px;*/
}

.pagination .page-item .page-link {
  color: var(--secondary-color);
  border: none;
  margin: 0 5px;
  border-radius: 8px;
  transition: all 0.3s;
}

.pagination .page-item.active .page-link {
  background: var(--primary-color);
  color: white;
}

.pagination .page-item .page-link:hover {
  background: var(--light-orange);
  color: var(--primary-color);
}

/* 加载更多按钮 (移动端) */
.load-more-container {
  display: none;
  text-align: center;
  margin: 30px 0;
}

.load-more-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px #28437A;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.load-more-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px #28437A;
}

.load-more-btn:active {
  transform: translateY(0);
}

.load-more-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20px;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(25deg);
  transition: all 0.5s;
}

.load-more-btn:hover::after {
  left: 120%;
}

/* 响应式调整 */
@media (max-width: 991.98px) {
  .timeline-container {
    display: none;
  }

  .card-container {
    display: block;
  }

  .pagination-container {
    display: none;
  }

  .load-more-container {
    display: block;
  }

  .side-menu {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .card-img-container, .no-image {
    height: 150px;
  }

  .menu-title {
    font-size: 1.3rem;
  }
}
