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

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

.list-top-wrapper .list_nav .vanBar {
  width: 1295px;
  height: 124px;
  background: url(../images/list/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;
}

.pagination {
  margin: 10px 0;
  text-align: center;
}

.pagination .pn {
  display: inline-block;
  border: 1px solid #a7a7a7;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  padding-left: 7px;
  padding-right: 7px;
  color: #434343;
  background-color: #fff;
  height: 28px;
  line-height: 28px;
  margin: 0 5px;
}

.pagination .btns a {
  display: inline-block;
  border: 1px solid #a7a7a7;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  color: #434343;
  background-color: #fff;
  padding: 0 12px;
  font-weight: 400;
  margin: 0 5px;
  height: 28px;
  line-height: 28px;
}

.pagination .btns a.active {
  border: 1px solid #004582;
}

.pagination a.dian {
  display: inline-block;
  margin: 0 5px;
  background-color: #f4f4f5;
  color: #606266;
  min-width: 30px;
  border-radius: 2px;
}

.pagination input {
  width: 50px;
  border: 1px solid #a7a7a7;
  border-radius: 4px;
  height: 28px;
  line-height: 28px;
  margin: 0 5px;
  text-align: center;
}

.pagination .first {
  margin-right: 10px;
}

.pagination .next {
  margin: 0 10px;
}

.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: 5100px;
  height: 2px;
  background-color: #e9ecef;
  transform: translateY(-50%);
}

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

.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: 180px;
  height: 180px;
  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;
}

.history .tree-content {
  position: relative;
  width: 1428px;
  height: 1590px;
  margin: 100px auto 0 auto;
  background: url('../images/list/tree.png') no-repeat center center;
}

.history .text-content {
  width: 1120px;
  height: 341px;
  background-color: #fff;
  padding: 30px;
  line-height: 36px;
  margin: -200px auto 0 auto;
  border: 1px dashed #666;
  border-left: 3px solid #005AAA;
}

.identification .identification-section {
  clear: both;
  width: 1200px;
  margin: 0 auto 230px auto;
}

.identification .identity-card {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  height: 600px;
}

.identification .identity-header {
  width: 769px;
  height: 472px;
  background: #005AAA;
  padding: 10px 20px;
  position: absolute;
  left: -230px;
  padding: 40px 0 0 135px;
  z-index: 1;
}

.identification .identity-header .line {
  float: left;
  margin: 30px 10px 0px 30px;
}

.identification .identity-header span {
  color: white;
  font-size: 46px;
}

.identification .identity-header-right {
  width: 769px;
  height: 472px;
  background: #005AAA;
  right: -230px;
  padding: 10px 20px;
  padding: 40px 0 0 135px;
  display: inline-block;
  position: absolute;
}

.identification .identity-header-right .line {
  float: right;
  margin: 30px 70px 0px 0;
}

.identification .identity-header-right span {
  color: white;
  margin: 0;
  font-size: 46px;
  font-weight: normal;
  margin-left: 190px;
}

.identification .identity-body {
  width: 1100px;
  background: #FFFFFF;
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px 80px 8px 80px;
  padding: 50px;
  align-items: center;
  overflow: hidden;
  position: absolute;
  top: 130px;
  left: 0;
  z-index: 999;
}

.identification .identity-text {
  width: 640px;
  line-height: 40px;
  font-size: 20px;
  float: left;
  text-align: justify;
}

.identification .identity-text-right {
  width: 100%;
  line-height: 40px;
  font-size: 20px;
  text-align: justify;
}

.identification .identity-logo {
  width: 410px;
  height: 410px;
  float: right;
}

.identification .identity-logo-right {
  width: 913px;
  height: 362px;
  margin: 0 auto;
}

.identification .file {
  width: 1200px;
  min-height: 111px;
  padding: 24px 32px;
  box-sizing: border-box;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  margin: 0 auto;
}

.identification .file .file-title {
  font-size: 16px;
  font-weight: bold;
  color: #1f2937;
  margin: 0 0 16px 0;
}

.identification .file .file-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  align-items: center;
}

.identification .file .file-link {
  color: #005AAA;
  text-decoration: underline;
  font-size: 14px;
}

.identification .file .file-link:hover {
  color: #004088;
}

.scientific.container {
  display: flex;
  align-items: stretch;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 1200px;
  height: 718px;
  background: url(../images/list/scientific-icon1.png) no-repeat center center;
}

.scientific-intro {
  position: relative;
}

.scientific-intro-text {
  position: absolute;
  width: 263px;
  height: 168px;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 24px;
  top: 142px;
  text-align: justify;
  left: 40px;
}

.scientific-panel {
  width: 592px;
  height: 420px;
  background-color: #fff;
  position: absolute;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
  padding: 40px;
  top: 86px;
  left: 502px;
}

.scientific-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
}

.scientific-card {
  width: 226px;
  height: 50px;
  padding: 20px;
  background: #F0F3F8;
  display: flex;
  align-items: center;
  gap: 20px;
}

.scientific-icon-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 4px;
  box-sizing: border-box;
}

.scientific-icon {
  width: 50px;
  height: 50px;
}

.scientific-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scientific-title {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
}

.scientific-subtitle {
  display: block;
  width: 13px;
  height: 4px;
  background: url(../images/list/scientific-icon3.png) no-repeat center center;
}

.departments-container {
  width: 1200px;
  margin: 0 auto;
  padding: 20px 50px;
  border-radius: 8px;
}

.department-section {
  display: flex;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid #F0F0F0;
}

.department-section:last-child {
  border-bottom: none;
}

.department-title {
  width: 140px;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  padding-right: 20px;
  position: relative;
}

.department-links {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px 30px;
}

.department-links a {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  transition: color 0.3s;
}

.department-links a:hover {
  color: #005AAA;
}

.showcase-container {
  width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  align-items: flex-start;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #9F9F9F transparent;
}

.showcase-container::-webkit-scrollbar {
  height: 8px;
}

.showcase-container::-webkit-scrollbar-track {
  background: transparent;
}

.showcase-container::-webkit-scrollbar-thumb {
  background-color: #9F9F9F;
  border-radius: 4px;
}

.showcase-container .showcase-item {
  flex-shrink: 0;
  width: 280px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-container .showcase-item:nth-child(odd) .showcase-text {
  order: 1;
}

.showcase-container .showcase-item:nth-child(odd) .showcase-image {
  order: 2;
}

.showcase-container .showcase-item:nth-child(even) .showcase-text {
  order: 2;
}

.showcase-container .showcase-item:nth-child(even) .showcase-image {
  order: 1;
}

.showcase-container .showcase-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase-container .showcase-image {
  flex-shrink: 0;
}

.showcase-container .showcase-image img {
  width: 280px;
  height: 420px;
  display: block;
}

.showcase-container .showcase-title {
  font-size: 18px;
  height: 25px;
  font-weight: 600;
  color: #333;
  margin: 0;
  text-align: center;
  border-bottom: 2px solid #005AAA;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.showcase-container .showcase-decorator {
  height: 30px;
  border-left: 1px dashed #005AAA;
  margin: 20px 0;
  position: relative;
}

.showcase-container .showcase-text p {
  font-size: 13px;
  color: #444;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-content {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 1200px;
  max-width: 90%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.search-main-area {
  background: url(../images/list/search-6.png) no-repeat center center;
  width: 730px;
  height: 78px;
  padding: 30px 50px;
}

.search-box-input {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.search-icon {
  width: 74px;
  height: 74px;
  background: url(../images/list/search-5.png) no-repeat center center;
  margin-right: 10px;
}

.search-main-area input[type="text"] {
  border: none;
  outline: none;
  height: 74px;
  line-height: 74px;
  background: transparent;
  font-size: 26px;
  color: #fff;
  padding-left: 28px;
  width: 420px;
  float: left;
  pointer-events: auto;
  position: relative;
  z-index: 101;
}

.search-main-area input[type="text"]::placeholder {
  color: #fff;
}

.query-button {
  width: 172px;
  height: 78px;
  background: #005AAA;
  box-shadow: inset 0px 4px 10px 0px rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 26px;
  color: #fff;
  line-height: 78px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  float: right;
  margin-top: -80px;
  border:none;
}

.search-action-buttons {
  display: flex;
  gap: 20px;
}

.action-button {
  width: 138px;
  height: 138px;
  background: url(../images/list/search-icon1.png) no-repeat center center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

.action-button img {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
}

.tableCont {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* Nav Items */
}

.tableCont .sidebar-left {
  width: 280px;
  flex-shrink: 0;
  background: #F9FAFB;
}

.tableCont .main-content-right {
  width: 890px;
  background: #fff;
  min-height: 800px;
  padding: 40px;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.tableCont .sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.tableCont .sidebar-nav-item {
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  height: 70px;
  box-sizing: border-box;
}

.tableCont .sidebar-nav-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tableCont .sidebar-nav-item.active {
  background: #EBF5FF;
  border: 1px solid #B3D7FF;
}

.tableCont .sidebar-nav-item .icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  border-radius: 50%;
  background: transparent;
}

.tableCont .sidebar-nav-item .icon img {
  max-width: 100%;
  max-height: 100%;
}

.tableCont .sidebar-nav-item .text {
  flex: 1;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.tableCont .sidebar-nav-item.active .text {
  color: #005AAA;
}

.tableCont .sidebar-nav-item .arrow {
  width: 8px;
  height: 8px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(45deg);
}

.tableCont .sidebar-nav-item.active .arrow {
  border-color: #005AAA;
}

.tableCont .sidebar-info-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 20px;
}

.tableCont .sidebar-info-box .box-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.tableCont .sidebar-info-box .link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tableCont .sidebar-info-box .link-list li {
  margin-bottom: 12px;
}

.tableCont .sidebar-info-box .link-list li:last-child {
  margin-bottom: 0;
}

.tableCont .sidebar-info-box .link-list li a {
  color: #005AAA;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  display: block;
}

.tableCont .sidebar-info-box .link-list li a:hover {
  text-decoration: underline;
}

.tableCont .main-content-right .page-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin: 0 0 30px;
  padding-bottom: 0;
}

.tableCont .tab-content-wrapper {
  margin-top: 20px;
}

.tableCont .tab-panel {
  display: none;
}

.tableCont .tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tableCont .panel-content h3 {
  font-size: 20px;
  color: #005AAA;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #005AAA;
}

.tableCont .panel-content p {
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

.tableCont .info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
}

.tableCont .info-table th {
  background: #005AAA;
  color: #fff;
  padding: 12px 15px;
  text-align: left;
  font-weight: 500;
}

.tableCont .info-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  color: #666;
}

.tableCont .info-table tr:hover {
  background: #f5f9ff;
}

.tableCont .info-table tr:nth-child(even) {
  background: #fafafa;
}

.tableCont .year-list {
  list-style: none;
  padding: 0;
}

.tableCont .year-list li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.tableCont .year-list li:hover {
  background: #f5f9ff;
}

.tableCont .year-list .year {
  background: #005AAA;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  margin-right: 15px;
  font-size: 14px;
}

.tableCont .year-list a {
  color: #333;
  text-decoration: none;
  flex: 1;
}

.tableCont .year-list a:hover {
  color: #005AAA;
}

.tableCont .apply-guide h4 {
  color: #005AAA;
  margin: 20px 0 10px;
  font-size: 16px;
}

.tableCont .apply-guide ol {
  padding-left: 20px;
  color: #666;
  line-height: 2;
}

.tableCont .apply-guide ol li {
  margin-bottom: 10px;
}

.tableCont .download-area {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tableCont .download-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.tableCont .download-item:hover {
  background: #f0f7ff;
  border-color: #005AAA;
}

.tableCont .download-item .file-icon {
  font-size: 32px;
  margin-right: 15px;
}

.tableCont .download-item .file-info {
  flex: 1;
}

.tableCont .download-item .download-link {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  display: block;
  margin-bottom: 5px;
}

.tableCont .download-item .download-link:hover {
  color: #005AAA;
}

.tableCont .download-item .file-size {
  color: #999;
  font-size: 13px;
}

.tableCont .download-item .download-btn {
  background: #005AAA;
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.tableCont .download-item .download-btn:hover {
  background: #004488;
}

.leader-page {
  width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  background-color: #fff;
  border-left: 4px solid #004582;
  box-sizing: border-box;
}

.leader-page .leader-section {
  margin-top: 8px;
}

.leader-page .leader-section:first-child {
  margin-top: 0;
}

.leader-page .leader-section__title {
  margin: 0;
  padding: 28px 0 20px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  line-height: 1.4;
  border-bottom: 1px solid #f0f0f0;
}

.leader-page .leader-section+.leader-section .leader-section__title {
  margin-top: 12px;
  padding-top: 36px;
}

.leader-page .leader-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #f0f0f0;
  box-sizing: border-box;
  min-height: 60px;
}

.leader-page .leader-row:last-child {
  border-bottom: none;
}

.leader-page .leader-name {
  font-size: 18px;
  font-weight: 500;
  color: #2b5b98;
  line-height: 36px;
  text-align: left;
}

.leader-page .leader-name--spaced {
  letter-spacing: 0.5em;
  margin-right: -0.5em;
}

.leader-page .leader-duty {
  font-size: 18px;
  line-height: 36px;
  padding-left: 150px;
  font-weight: 500;
  color: #000;
  text-align: left;
}