.list-top-wrapper {
  position: relative;
  width: 100%;
  min-width: 1200px;
  height: 570px;
  background: url(../images/list_banner.png) no-repeat top center;
  margin-bottom: 25px;
}

.list-top-wrapper .list_nav {
  width: 100%;
  height: 52px;
  background: #004582;
  position: absolute;
  bottom: 0;
  left: 0;
}

.list-top-wrapper .list_nav .vanBar {
  width: 1295px;
  height: 124px;
  background: url(../images/list_nav.png) no-repeat left center;
  position: absolute;
  top: -62px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-evenly;
  padding: 0 100px 0 150px;
  box-sizing: border-box;
}

.list-top-wrapper .list_nav .vanBar li {
  line-height: 120px;
  flex: 1;
  text-align: center;
}

.list-top-wrapper .list_nav .vanBar li.active {
  line-height: 115px;
}

.list-top-wrapper .list_nav .vanBar li.active a {
  font-size: 30px;
  color: #004582;
}

.list-top-wrapper .list_nav .vanBar li.active a.has-underline {
  position: relative;
  display: inline-block;
}

.list-top-wrapper .list_nav .vanBar li.active a.has-underline::after {
  content: "";
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 4px;
  background: linear-gradient(to right, #f39800 35%, #004582 35%);
  border-radius: 2px;
}

.list-top-wrapper .list_nav .vanBar li a {
  font-weight: 500;
  font-size: 20px;
  color: #AAAAAA;
}

.list-content-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 100px;
  background-color: #FEFFFE;
}

.list-content-wrapper .container {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.list-content-wrapper .listlTitle {
  width: 1200px;
  margin: 0 auto 40px auto;
}

.list-content-wrapper .listlTitle .home-icon {
  width: 20px;
  height: 18px;
  float: left;
  margin: 2px 5px 0 0;
}

.leftCont {
  width: 820px;
  padding: 0;
  box-sizing: border-box;
}

.leftCont .news-list .news-item {
  padding: 20px;
  height: 180px;
  background: #FBFDFF;
  box-shadow: 0px 0px 10px 0px rgba(3, 29, 51, 0.1);
  margin-bottom: 30px;
}

.leftCont .news-list .news-item a {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}

.leftCont .news-list .news-item a .news-date {
  width: 100px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 20px;
  padding-top: 5px;
}

.leftCont .news-list .news-item a .news-date .day {
  font-size: 26px;
  font-weight: bold;
  color: #004582;
  line-height: 1;
}

.leftCont .news-list .news-item a .news-date .line {
  width: 30px;
  height: 3px;
  background: #004582;
  margin: 10px 0;
}

.leftCont .news-list .news-item a .news-date .year {
  font-size: 20px;
  color: #004582;
}

.leftCont .news-list .news-item a .news-body {
  flex: 1;
  width: 630px;
  transition: all 0.3s ease;
}

.leftCont .news-list .news-item a .news-body .news-header {
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.leftCont .news-list .news-item a .news-body .news-header .title {
  font-size: 20px;
  color: #000;
  margin: 0;
  border-left: 5px solid #004582;
  padding-left: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.leftCont .news-list .news-item a .news-body .news-divider {
  height: 3px;
  height: 21px;
}

.leftCont .news-list .news-item a .news-body .news-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.leftCont .news-list .news-item a .news-body .news-main .news-desc {
  width: 430px;
  min-width: 430px;
  font-size: 14px;
  color: #aaa;
  line-height: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease;
}

.leftCont .news-list .news-item a .news-body .news-main .news-desc p {
  margin: 0 0 15px;
}

.leftCont .news-list .news-item a .news-body .news-main .news-desc p:last-child {
  margin-bottom: 0;
}

.leftCont .news-list .news-item a .news-body .news-main .news-img {
  width: 162px;
  height: 110px;
  flex-shrink: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.leftCont .news-list .news-item a .news-body .news-main .news-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.leftCont .news-list .news-item a .news-body .news-main:not(:has(.news-img)) .news-desc {
  width: 100%;
  min-width: 600px;
  -webkit-line-clamp: 5;
}

.leftCont .news-list .news-item:hover {
  height: 320px;
  box-shadow: 0px 5px 20px 0px rgba(3, 29, 51, 0.2);
}

.leftCont .news-list .news-item:hover:not(:has(.news-img)) {
  height: 180px;
}

.leftCont .news-list .news-item:hover a .news-body .news-main .news-desc {
  width: 300px;
  min-width: 300px;
  -webkit-line-clamp: 11;
}

.leftCont .news-list .news-item:hover a .news-body .news-main:not(:has(.news-img)) .news-desc {
  width: 100%;
  -webkit-line-clamp: 5;
}

.leftCont .news-list .news-item:hover a .news-body .news-main .news-img {
  width: 320px;
  height: 215px;
}

.rightCont {
  width: 320px;
  border-left: 1px solid #004582;
  padding-left: 20px;
}

.rightCont .feature-card {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.rightCont .feature-card:last-child {
  margin-bottom: 0;
}

.rightCont .feature-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.rightCont .feature-card .card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.rightCont .feature-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rightCont .feature-card:hover .card-img img {
  transform: scale(1.05);
}

.rightCont .feature-card .card-body {
  padding: 25px 20px;
  border: 1px solid #f0f0f0;
  border-top: none;
}

.rightCont .feature-card .card-body .card-title {
  font-size: 16px;
  color: #333;
  margin: 0 0 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rightCont .feature-card .card-body .card-meta .meta-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #999;
  font-size: 14px;
}

.rightCont .feature-card .card-body .card-meta .meta-item:last-child {
  margin-bottom: 0;
}

.rightCont .feature-card .card-body .card-meta .meta-item .icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  display: block;
  object-fit: contain;
}

.rightCont .feature-card .card-body .card-meta .meta-item .icon-placeholder {
  display: none;
  margin-right: 8px;
  font-style: normal;
}


.timeline-nav {
  display: flex;
  max-width: 1200px;
  margin: 0 auto 30px;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.timeline-nav .nav-item {
  flex: 1;
  text-align: center;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s;
}

.timeline-nav .nav-item:first-child {
  text-align: left;
}

.timeline-nav .nav-item.active,
.timeline-nav .nav-item:hover {
  color: #0056b3;
}

.timeline-nav .nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background-color: #0056b3;
}

.timeline-nav .nav-item:first-child.active::after {
  left: 0;
  transform: none;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow-x: auto;
  padding-bottom: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.timeline-container::-webkit-scrollbar {
  display: none;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3200px;
  height: 2px;
  background-color: #e9ecef;
  transform: translateY(-50%);
}

.timeline-items {
  display: flex;
  position: relative;
  width: 3200px;
}

.timeline-item {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.timeline-content {
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-top {
  align-items: flex-end;
  padding-bottom: 40px;
}

.content-bottom {
  align-items: flex-start;
  padding-top: 40px;
}

.description {
  width: 300px;
  box-sizing: border-box;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  text-align: justify;
  padding: 55px 15px 55px;
}

.timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  font-weight: bold;
  color: #333;
  z-index: 3;
}

.year-top {
  bottom: 50%;
  margin-bottom: 25px;
}

.year-bottom {
  top: 50%;
  margin-top: 25px;
}

.timeline-node {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-color: #0056b3;
  border-radius: 50%;
  z-index: 2;
}

.timeline-card {
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background-color: #0056b3;
}

.talent-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: none;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: 90px;
  padding-bottom: 100px;
}

.talent-grid.active {
  display: grid;
}

.card-img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  display: block;
  transition: height 0.4s ease;
}

.timeline-card:hover .card-img {
  height: 225px;
}

.card-body {
  color: #fff;
  padding: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-meta-item {
  display: flex;
  align-items: center;
}

.card-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.card-time {
  font-size: 12px;
  opacity: 0.8;
}

.card-title {
  font-size: 14px;
  font-weight: 400;
}

.talent-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  gap: 60px;
  padding: 50px 0;
  font-size: 18px;
}

.talent-nav-item {
  color: #333;
  cursor: pointer;
  padding-bottom: 8px;
  position: relative;
  transition: color 0.3s, font-weight 0.3s;
}

.talent-nav-item.active {
  color: #0056b3;
  font-weight: 600;
}

.talent-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0056b3;
  border-radius: 1.5px;
}

.talent-card {
  text-align: center;
}

.talent-avatar-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.talent-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, #d4e5ff 0%, #eaf6ff 100%);
}

.talent-avatar-wrapper.placeholder {
  background-color: #f0f2f5;
  border: 1px dashed #ccc;
}

.talent-name {
  font-size: 20px;
  color: #333;
}

.gallery-grid {
  max-width: 1145px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 145px;
  padding: 50px 0;
  justify-items: start;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 500px;
  height: 322px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 40px;
  right: -10px;
  width: 163px;
  padding-left: 10px;
  height: 38px;
  font-size: 16px;
  line-height: 38px;
  background-repeat: no-repeat;
  background-size: contain;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.caption-style-1 {
  background-image: url('../images/list/caption-bg-white.png');
  color: #004582;
}

.gallery-card:hover .caption-style-1 {
  background-image: url('../images/list/caption-bg-blue.png');
  color: #fff;
}