    /* HERO SECTION - full screen with overlay */
    .hero-about {
      background: linear-gradient(rgba(0, 43, 126, 0.65), rgba(0, 0, 0, 0.5)), url('https://picsum.photos/id/104/1920/1080') center/cover no-repeat;
      min-height: 85vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }
    .hero-title {
      font-size: 3.8rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    }
    @media (max-width: 768px) {
      .hero-title { font-size: 2.2rem; }
    }
    /* section styling */
    .section-pad {
      padding: 5rem 0;
    }
    .section-bg-light {
      background: linear-gradient(145deg, #ffffff 0%, #f7f6f2 100%);
    }
    .section-bg-white {
      background: #ffffff;
    }
    .section-bg-mid {
      background: linear-gradient(135deg, #f7f6f2 0%, #ecebe5 100%);
    }
  
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 70px;
      height: 4px;
      background: var(--primary);
    }
    .text-center .section-title:after {
      left: 50%;
      transform: translateX(-50%);
    }
    /* team cards (no radius) */
    .team-card {
      background: white;
      border: 1px solid #efede7;
      transition: all 0.2s;
      overflow: hidden;
      height: 100%;
      text-align: center;
      padding: 1.8rem 1rem;
    }
    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0,43,126,0.08);
    }
    .team-img {
      width: 150px;
      height: 150px;
      object-fit: cover;
      margin-bottom: 1rem;
      border: 3px solid var(--primary);
    }
    .team-name {
      font-weight: 800;
      font-size: 1.25rem;
      margin-bottom: 0.25rem;
    }
    .team-title {
      color: var(--primary);
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    /* timeline / history */
    .timeline-item {
      border-left: 3px solid var(--primary);
      padding-left: 1.8rem;
      margin-bottom: 2rem;
      position: relative;
    }
    .timeline-year {
      font-weight: 800;
      font-size: 1.4rem;
      color: var(--primary);
      margin-bottom: 0.25rem;
    }
    /* organization chart simple grid */
    .org-card {
      background: white;
      border: 1px solid #efede7;
      padding: 1.5rem;
      text-align: center;
      transition: 0.2s;
      height: 100%;
    }
    .org-card i {
      font-size: 2.2rem;
      color: var(--primary);
      margin-bottom: 0.8rem;
    }
    .org-card h4 {
      font-weight: 700;
      font-size: 1.2rem;
    }
	
	
	 /* Hero */
    .hero-overview {
      background: linear-gradient(135deg, #f7f6f2 0%, #ffffff 100%);
      padding: 4rem 0;
      border-bottom: 1px solid rgba(0,43,126,0.1);
    }
 
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 70px;
      height: 4px;
      background: var(--primary);
    }
    /* Left-right image-text block */
    .overview-hero {
      background: white;
      border: 1px solid #efede7;
      padding: 2rem;
    }
    .overview-img {
      width: 100%;
      height: auto;
      object-fit: cover;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      border-left: 4px solid var(--primary);
    }
    /* three pillars */
    .pillar-card {
      background: white;
      border: 1px solid #efede7;
      padding: 1.8rem;
      transition: 0.2s;
      height: 100%;
    }
    .pillar-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,43,126,0.08);
    }
    .pillar-icon {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1.2rem;
    }
	
	
	
	 /* Hero */
    .hero-projects {
      background: linear-gradient(135deg, #f7f6f2 0%, #ffffff 100%);
      padding: 4rem 0;
      border-bottom: 1px solid rgba(0,43,126,0.1);
    }
    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 2rem;
      font-weight: 800;
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 70px;
      height: 4px;
      background: var(--primary);
    }
    /* project cards */
    .project-card {
      background: white;
      border: 1px solid #efede7;
      transition: 0.2s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .project-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,43,126,0.08);
    }
    .project-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #efede7;
    }
    .project-body {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .project-status {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 0.8rem;
      align-self: flex-start;
    }
    .status-ongoing {
      background: #002b7e;
      color: white;
    }
    .status-completed {
      background: #5a6874;
      color: white;
    }
    .project-title {
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
      color: #002b7e;
    }
    .project-partners {
      font-size: 0.85rem;
      color: #5a6874;
      margin-bottom: 0.75rem;
    }
    .project-desc {
      font-size: 0.9rem;
      margin-bottom: 1rem;
      flex-grow: 1;
    }
    .project-outputs {
      font-size: 0.85rem;
      border-top: 1px dashed #efede7;
      padding-top: 0.75rem;
      margin-top: 0.5rem;
    }
    .project-outputs i {
      color: var(--primary);
      width: 1.5rem;
    }
    /* partner logos */
    .partner-logo {
      background: white;
      border: 1px solid #efede7;
      padding: 1.2rem 0.5rem;
      text-align: center;
      transition: 0.2s;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .partner-logo img {
      max-width: 100%;
      max-height: 70px;
      filter: grayscale(0%);
      opacity: 0.8;
      transition: 0.2s;
    }
    .partner-logo:hover img {
      opacity: 1;
      filter: grayscale(0%);
    }
    /*成果卡片图文排版*/
    .outcome-card {
      background: white;
      border: 1px solid #efede7;
      transition: 0.2s;
      display: flex;
      flex-direction: row;
      height: 100%;
    }
    .outcome-img {
      width: 40%;
      object-fit: cover;
    }
    .outcome-content {
      width: 60%;
      padding: 1.2rem;
      display: flex;
      flex-direction: column;
    }
    .outcome-type {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 0.5rem;
    }
    .outcome-title {
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }
    .outcome-desc {
      font-size: 0.85rem;
      color: #4a5b6e;
      margin-bottom: 0.75rem;
    }
    .outcome-meta {
      font-size: 0.75rem;
      color: #7a8793;
    }
    @media (max-width: 768px) {
      .outcome-card {
        flex-direction: column;
      }
      .outcome-img, .outcome-content {
        width: 100%;
      }
      .outcome-img {
        height: 160px;
      }
    }
	
	
	/* Hero */
    .hero-publications {
      background: linear-gradient(135deg, #f7f6f2 0%, #ffffff 100%);
      padding: 4rem 0;
      border-bottom: 1px solid rgba(0,43,126,0.1);
    }
 
    /* Filter bar */
    .filter-bar {
      background: #f7f6f2;
      padding: 1.5rem;
      margin-bottom: 2rem;
      border-left: 4px solid var(--primary);
    }
    .category-tabs .btn-cat {
      background: transparent;
      border: none;
      font-weight: 700;
      padding: 0.5rem 1.2rem;
      color: #1e2a3e;
      transition: 0.2s;
    }
    .category-tabs .btn-cat.active {
      background: var(--primary);
      color: white;
    }
    /* publication card */
    .pub-card {
      background: white;
      border: 1px solid #efede7;
      transition: 0.2s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .pub-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,43,126,0.08);
    }
    .pub-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-bottom: 1px solid #efede7;
    }
    .pub-body {
      padding: 1.2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .pub-badge {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      background: var(--primary);
      color: white;
      align-self: flex-start;
      margin-bottom: 0.8rem;
    }
    .pub-title {
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }
    .pub-meta {
      font-size: 0.8rem;
      color: #5a6874;
      margin-bottom: 0.75rem;
    }
    .pub-desc {
      font-size: 0.85rem;
      margin-bottom: 1rem;
      flex-grow: 1;
    }
    .pub-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid #efede7;
      padding-top: 0.75rem;
      margin-top: 0.5rem;
    }
    .download-btn {
      font-size: 0.8rem;
      font-weight: 600;
      text-decoration: none;
    }
	
	
	
	/* Hero Section */
    .hero-directions {
      background: linear-gradient(135deg, #f7f6f2 0%, #ffffff 100%);
      padding: 4rem 0;
      border-bottom: 1px solid rgba(0,43,126,0.1);
    }
  
    .text-center .section-title:after {
      left: 50%;
      transform: translateX(-50%);
    }
    /* Direction Detail Block */
    .direction-block {
      padding: 4rem 0;
      border-bottom: 1px solid #efede7;
    }
    .direction-block:last-child {
      border-bottom: none;
    }
    .direction-img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      border-left: 4px solid var(--primary);
    }
    .direction-title-lg {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    .direction-desc {
      font-size: 1.05rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    .achievement-list {
      list-style: none;
      padding-left: 0;
    }
    .achievement-list li {
      margin-bottom: 0.8rem;
      display: flex;
      gap: 0.75rem;
      align-items: baseline;
    }
    .achievement-list li i {
      color: var(--primary);
      font-size: 1.1rem;
      width: 1.5rem;
      margin-top: 0.2rem;
    }
    .achievement-list li strong {
      font-weight: 700;
    }
    .btn-outline-small {
      border: 1px solid var(--primary);
      background: transparent;
      padding: 0.3rem 1rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--primary);
      text-decoration: none;
      display: inline-block;
      transition: 0.2s;
    }
    .btn-outline-small:hover {
      background: var(--primary);
      color: white;
    }
    @media (max-width: 768px) {
      .direction-block {
        padding: 2.5rem 0;
      }
      .direction-title-lg {
        font-size: 1.6rem;
        margin-top: 1rem;
      }
      .direction-img {
        height: 240px;
      }
    }
	
	
	 /* Hero */
    .hero-events {
      background: linear-gradient(135deg, #f7f6f2 0%, #ffffff 100%);
      padding: 4rem 0;
      border-bottom: 1px solid rgba(0,43,126,0.1);
    }
    /* Sidebar navigation */
    .events-sidebar {
      background: #f7f6f2;
      padding: 1.5rem 1rem;
      border-right: 1px solid #efede7;
      height: 100%;
    }
    .nav-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }
    .nav-item {
      border-bottom: 1px solid #e0dfd9;
    }
    .nav-link-custom {
      display: block;
      padding: 1rem 0.5rem;
      text-decoration: none;
      color: #1e2a3e;
      font-weight: 600;
      font-size: 1.1rem;
      transition: 0.2s;
    }
    .nav-link-custom:hover {
      background: rgba(0,43,126,0.05);
      padding-left: 1rem;
      color: var(--primary);
    }
    .nav-link-custom.active {
      background: rgba(0,43,126,0.1);
      border-left: 4px solid var(--primary);
      padding-left: 1rem;
      font-weight: 700;
      color: var(--primary);
    }
    /* Event List Item: left date, middle text, right image */
    .event-item {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      background-color: var(--card-bg);
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      transition: background-color 0.2s ease, transform 0.2s ease;
      border: 1px solid #efede7;
    }
    .event-item:hover {
      background-color: var(--card-hover-bg);
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.03);
    }
    .event-date-box {
      flex: 0 0 100px;
      text-align: center;
      background: white;
      padding: 0.8rem 0.5rem;
      border: 1px solid #e0dfd9;
      align-self: center;
    }
    .event-day {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
    }
    .event-month-year {
      font-size: 0.8rem;
      text-transform: uppercase;
      font-weight: 600;
      color: #5a6874;
    }
    .event-content {
      flex: 3;
    }
    .event-title {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 0.25rem;
    }
    .event-date-range {
      font-size: 0.85rem;
      color: #5a6874;
      margin-bottom: 0.75rem;
      display: inline-block;
    }
    .event-desc {
      font-size: 0.9rem;
      color: #2c3e4e;
      margin-bottom: 0;
      line-height: 1.5;
    }
    .event-image-wrapper {
      flex: 1;
      min-width: 150px;
    }
    .event-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-left: 4px solid var(--primary);
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    /* Pagination */
    .pagination-container {
      margin-top: 2rem;
      display: flex;
      justify-content: center;
    }
    .pagination {
      gap: 0.5rem;
    }
    .page-item .page-link {
      border: 1px solid #efede7;
      color: #1e2a3e;
      font-weight: 500;
      padding: 0.5rem 1rem;
      background: white;
    }
    .page-item.active .page-link {
      background-color: var(--primary);
      border-color: var(--primary);
      color: white;
    }
    .page-item .page-link:hover {
      background-color: rgba(0,43,126,0.05);
      color: var(--primary);
    }
	
	    /* Hero */
    .hero-detail {
      background: linear-gradient(135deg, #f7f6f2 0%, #ffffff 100%);
      padding: 2rem 0;
      border-bottom: 1px solid rgba(0,43,126,0.1);
    }
    /* Sidebar navigation */
    .news-sidebar {
      background: #f7f6f2;
      padding: 1.5rem 1rem;
      border-right: 1px solid #efede7;
      height: 100%;
    }
    .nav-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }
    .nav-item {
      border-bottom: 1px solid #e0dfd9;
    }
    .nav-link-custom {
      display: block;
      padding: 1rem 0.5rem;
      text-decoration: none;
      color: #1e2a3e;
      font-weight: 600;
      font-size: 1.1rem;
      transition: 0.2s;
    }
    .nav-link-custom:hover {
      background: rgba(0,43,126,0.05);
      padding-left: 1rem;
      color: var(--primary);
    }
    .nav-link-custom.active {
      background: rgba(0,43,126,0.1);
      border-left: 4px solid var(--primary);
      padding-left: 1rem;
      font-weight: 700;
      color: var(--primary);
    }
    /* News detail content */
    .detail-container {
      background: white;
      border: 1px solid #efede7;
      padding: 2rem;
    }
    .detail-title {
      font-size: 2rem;
      font-weight: 800;
	  border-bottom:1px solid #efede7;
      color: var(--primary);
	  line-height:6rem;
	  text-align:center;
      margin-bottom: 0.75rem;
    }
    .detail-meta {
      font-size: 0.85rem;
      color: #5a6874;
      margin-bottom: 1.5rem;
      border-bottom: 1px solid #efede7;
      padding-bottom: 0.75rem;
    }
    .detail-image {
      max-width: 100%;
      max-height: 450px;
      object-fit: cover;
      display:block;
	  margin:1.5rem auto;
      border-left: 4px solid var(--primary);
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    .detail-body {
      font-size: 1rem;
      line-height: 1.7;
      color: #2c3e4e;
    }
    .detail-body img{max-width:100%}
    .detail-body p {
      margin-bottom: 1.2rem;
    }
    .back-link {
      display: inline-block;
      margin-top: 1.5rem;
    }
    @media (max-width: 768px) {
      .news-sidebar {
        border-right: none;
        border-bottom: 1px solid #efede7;
        margin-bottom: 1.5rem;
      }
      .detail-title {
        font-size: 1.6rem;
      }
    }
	
	
	
    @media (max-width: 768px) {
      .event-item {
        flex-direction: column;
      }
      .event-date-box {
        align-self: flex-start;
        width: auto;
        display: inline-flex;
        gap: 0.5rem;
        align-items: baseline;
        padding: 0.5rem 1rem;
      }
      .event-day {
        font-size: 1.2rem;
      }
      .event-image-wrapper {
        margin-top: 1rem;
      }
      .events-sidebar {
        border-right: none;
        border-bottom: 1px solid #efede7;
        margin-bottom: 1.5rem;
      }
    }
	
	
	    /* Hero section */
    .hero-research {
      background: linear-gradient(135deg, #f7f6f2 0%, #ffffff 100%);
      padding: 5rem 0;
      border-bottom: 1px solid rgba(0,43,126,0.1);
    }
  
    .text-center .section-title:after {
      left: 50%;
      transform: translateX(-50%);
    }
    /* Research Directions Cards */
    .direction-card {
      background: white;
      border: 1px solid #efede7;
      transition: 0.2s;
      height: 100%;
      overflow: hidden;
    }
    .direction-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,43,126,0.08);
    }
    .direction-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .direction-body {
      padding: 1.5rem;
    }
    .direction-title {
      font-weight: 800;
      font-size: 1.35rem;
      margin-bottom: 0.75rem;
      color: #002b7e;
    }
    /* Projects Swiper */
    .project-swiper .swiper-slide {
      height: auto;
    }
    .project-card {
      background: white;
      border: 1px solid #efede7;
      display: flex;
      flex-direction: row;
      height: 100%;
      transition: 0.2s;
    }
    .project-img {
      width: 40%;
      object-fit: cover;
    }
    .project-content {
      width: 60%;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
    }
    .project-title {
      font-weight: 800;
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      color: #002b7e;
    }
    .project-meta {
      font-size: 0.85rem;
      margin-bottom: 0.5rem;
      color: #5a6874;
    }
    .project-desc {
      font-size: 0.9rem;
      margin-bottom: 1rem;
      flex-grow: 1;
    }
    .btn-view-more {
      align-self: flex-start;
      font-weight: 600;
    }
    @media (max-width: 768px) {
      .project-card {
        flex-direction: column;
      }
      .project-img, .project-content {
        width: 100%;
      }
      .project-img {
        height: 180px;
      }
    }
    /* Publications Section */
    .filter-bar {
      background: #f7f6f2;
      padding: 1.5rem;
      margin-bottom: 2rem;
      border-left: 4px solid #002b7e;
    }
    .pub-card {
      background: white;
      border: 1px solid #efede7;
      transition: 0.2s;
      height: 100%;
    }
    .pub-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    }
    .pub-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-bottom: 1px solid #efede7;
    }
    .pub-body {
      padding: 1rem;
    }
    .pub-date {
      font-size: 0.75rem;
      color: #002b7e;
      font-weight: 600;
      text-transform: uppercase;
    }
    .pub-title {
      font-weight: 700;
      font-size: 1rem;
      margin: 0.5rem 0;
    }
    .pub-desc {
      font-size: 0.85rem;
      color: #4a5b6e;
    }
    .category-tabs .btn-cat {
      background: transparent;
      border: none;
      font-weight: 600;
      padding: 0.5rem 1.2rem;
      color: #1e2a3e;
    }
    .category-tabs .btn-cat.active {
      background: #002b7e;
      color: white;
    }
	
	
	
	    /* Hero */
    .hero-publications {
      background: linear-gradient(135deg, #f7f6f2 0%, #ffffff 100%);
      padding: 4rem 0;
      border-bottom: 1px solid rgba(0,43,126,0.1);
    }
  
    /* Filter bar */
    .filter-bar {
      background: #f7f6f2;
      padding: 1.5rem;
      margin-bottom: 2rem;
      border-left: 4px solid var(--primary);
    }
    .category-tabs .btn-cat {
      background: transparent;
      border: none;
      font-weight: 700;
      padding: 0.5rem 1.2rem;
      color: #1e2a3e;
      transition: 0.2s;
    }
    .category-tabs .btn-cat.active {
      background: var(--primary);
      color: white;
    }
    /* publication card */
    .pub-card {
      background: white;
      border: 1px solid #efede7;
      transition: 0.2s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .pub-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,43,126,0.08);
    }
    .pub-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-bottom: 1px solid #efede7;
    }
    .pub-body {
      padding: 1.2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .pub-badge {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      background: var(--primary);
      color: white;
      align-self: flex-start;
      margin-bottom: 0.8rem;
    }
    .pub-title {
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }
    .pub-meta {
      font-size: 0.8rem;
      color: #5a6874;
      margin-bottom: 0.75rem;
    }
    .pub-desc {
      font-size: 0.85rem;
      margin-bottom: 1rem;
      flex-grow: 1;
    }
    .pub-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid #efede7;
      padding-top: 0.75rem;
      margin-top: 0.5rem;
    }
    .download-btn {
      font-size: 0.8rem;
      font-weight: 600;
      text-decoration: none;
    }
	
	
	 /* Hero */
    .hero-projects {
      background: linear-gradient(135deg, #f7f6f2 0%, #ffffff 100%);
      padding: 4rem 0;
      border-bottom: 1px solid rgba(0,43,126,0.1);
    }

    /* project cards */
    .project-card {
      background: white;
      border: 1px solid #efede7;
      transition: 0.2s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .project-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,43,126,0.08);
    }
    .project-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #efede7;
    }
    .project-body {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .project-status {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 0.8rem;
      align-self: flex-start;
    }
    .status-ongoing {
      background: #002b7e;
      color: white;
    }
    .status-completed {
      background: #5a6874;
      color: white;
    }
    .project-title {
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
      color: #002b7e;
    }
    .project-partners {
      font-size: 0.85rem;
      color: #5a6874;
      margin-bottom: 0.75rem;
    }
    .project-desc {
      font-size: 0.9rem;
      margin-bottom: 1rem;
      flex-grow: 1;
    }
    .project-outputs {
      font-size: 0.85rem;
      border-top: 1px dashed #efede7;
      padding-top: 0.75rem;
      margin-top: 0.5rem;
    }
    .project-outputs i {
      color: var(--primary);
      width: 1.5rem;
    }
    /* partner logos */
    .partner-logo {
      background: white;
      border: 1px solid #efede7;
      padding: 1.2rem 0.5rem;
      text-align: center;
      transition: 0.2s;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .partner-logo img {
      max-width: 100%;
      max-height: 70px;
      filter: grayscale(0%);
      opacity: 0.8;
      transition: 0.2s;
    }
    .partner-logo:hover img {
      opacity: 1;
      filter: grayscale(0%);
    }
    /*成果卡片图文排版*/
    .outcome-card {
      background: white;
      border: 1px solid #efede7;
      transition: 0.2s;
      display: flex;
      flex-direction: row;
      height: 100%;
    }
    .outcome-img {
      width: 40%;
      object-fit: cover;
    }
    .outcome-content {
      width: 60%;
      padding: 1.2rem;
      display: flex;
      flex-direction: column;
    }
    .outcome-type {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 0.5rem;
    }
    .outcome-title {
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }
    .outcome-desc {
      font-size: 0.85rem;
      color: #4a5b6e;
      margin-bottom: 0.75rem;
    }
    .outcome-meta {
      font-size: 0.75rem;
      color: #7a8793;
    }
    @media (max-width: 768px) {
      .outcome-card {
        flex-direction: column;
      }
      .outcome-img, .outcome-content {
        width: 100%;
      }
      .outcome-img {
        height: 160px;
      }
    }
	
	
	 /* Step cards */
    .step-card {
      background: white;
      border: 1px solid #efede7;
      padding: 1.5rem;
      text-align: center;
      transition: 0.2s;
      height: 100%;
    }
    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,43,126,0.08);
    }
    .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: var(--primary);
      color: white;
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }
    /* Requirements list */
    .req-list {
      list-style: none;
      padding-left: 0;
    }
    .req-list li {
      margin-bottom: 0.75rem;
      display: flex;
      gap: 0.75rem;
    }
    .req-list li i {
      color: var(--primary);
      width: 1.4rem;
      margin-top: 0.2rem;
    }
    /* Download box */
    .download-box {
      background: #f7f6f2;
      border-left: 4px solid var(--primary);
      padding: 1.5rem;
    }
	.hero-application {
    background: linear-gradient(135deg, #f7f6f2 0%, #ffffff 100%);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0,43,126,0.1);
}


 /* Filter bar */
    .filter-bar {
      background: #f7f6f2;
      padding: 1.2rem 1.5rem;
      margin-bottom: 2rem;
      border-left: 4px solid var(--primary);
    }
    /* Member card */
    .member-card {
      background: white;
      border: 1px solid #efede7;
      transition: 0.2s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .member-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,43,126,0.08);
    }
    .member-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-bottom: 1px solid #efede7;
    }
    .member-body {
      padding: 1.2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .member-name {
      font-size: 1.2rem;
      font-weight: 800;
      margin-bottom: 0.25rem;
      color: var(--primary);
    }
    .member-title {
      font-size: 0.85rem;
      font-weight: 600;
      color: #5a6874;
      margin-bottom: 0.5rem;
    }
    .member-meta {
      font-size: 0.8rem;
      color: #5a6874;
      margin-bottom: 0.5rem;
    }
    .member-meta i {
      width: 1.2rem;
      color: var(--primary);
    }
    .member-field {
      display: inline-block;
      background: rgba(0,43,126,0.1);
      color: var(--primary);
      font-size: 0.7rem;
      font-weight: 600;
      padding: 0.2rem 0.5rem;
      margin-top: 0.5rem;
      align-self: flex-start;
    }
	.member-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #efede7;
}

.hero-members {
    background: linear-gradient(135deg, #f7f6f2 0%, #ffffff 100%);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0,43,126,0.1);
}


 .hero-news {
      background: linear-gradient(135deg, #f7f6f2 0%, #ffffff 100%);
      padding: 4rem 0;
      border-bottom: 1px solid rgba(0,43,126,0.1);
    }
    /* Sidebar navigation - narrower width */
    .news-sidebar {
      background: #f7f6f2;
      padding: 1.5rem 1rem;
      border-right: 1px solid #efede7;
      height: 100%;
    }
    .nav-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }
    .nav-item {
      border-bottom: 1px solid #e0dfd9;
    }
    .nav-link-custom {
      display: block;
      padding: 1rem 0.5rem;
      text-decoration: none;
      color: #1e2a3e;
      font-weight: 600;
      font-size: 1.1rem;
      transition: 0.2s;
    }
    .nav-link-custom:hover {
      background: rgba(0,43,126,0.05);
      padding-left: 1rem;
      color: var(--primary);
    }
    .nav-link-custom.active {
      background: rgba(0,43,126,0.1);
      border-left: 4px solid var(--primary);
      padding-left: 1rem;
      font-weight: 700;
      color: var(--primary);
    }
    /* Right side: news list - each item with background color */
    .news-list-item {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      background-color: var(--card-bg);
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      transition: background-color 0.2s ease, transform 0.2s ease;
      border: 1px solid #efede7;
    }
    .news-list-item:hover {
      background-color: var(--card-hover-bg);
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.03);
    }
    .news-list-item:last-child {
      margin-bottom: 0;
    }
    .news-text-content {
      flex: 2;
    }
    .news-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }
    .news-meta {
      font-size: 0.8rem;
      color: #5a6874;
      margin-bottom: 0.75rem;
    }
    .news-summary {
      font-size: 0.9rem;
      line-height: 1.5;
      margin-bottom: 0.75rem;
      color: #2c3e4e;
    }
    .news-image-wrapper {
      flex: 1;
      min-width: 180px;
    }
    .news-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-left: 4px solid var(--primary);
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    @media (max-width: 768px) {
      .news-list-item {
        flex-direction: column;
      }
      .news-image-wrapper {
        margin-top: 1rem;
      }
      .news-sidebar {
        border-right: none;
        border-bottom: 1px solid #efede7;
        margin-bottom: 1.5rem;
      }
    }
	
	
	 .hero-partnerships {
      background: linear-gradient(135deg, #f7f6f2 0%, #ffffff 100%);
      padding: 4rem 0;
      border-bottom: 1px solid rgba(0,43,126,0.1);
    }
    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 2rem;
      font-weight: 800;
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 70px;
      height: 4px;
      background: var(--primary);
    }
    /* Partner logo grid */
    .partner-logo-item {
      background: white;
      border: 1px solid #efede7;
      padding: 1.5rem;
      text-align: center;
      transition: 0.2s;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .partner-logo-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 16px rgba(0,43,126,0.08);
    }
    .partner-logo-item img {
      max-width: 100%;
      max-height: 80px;
      filter: grayscale(0%);
      opacity: 0.9;
    }
    /* opportunity card */
    .opportunity-card {
      background: white;
      border: 1px solid #efede7;
      padding: 1.8rem;
      transition: 0.2s;
      height: 100%;
    }
    .opportunity-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,43,126,0.08);
    }
    .opp-icon {
      font-size: 2.2rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    /* contact box */
    .contact-box {
      background: #f7f6f2;
      border-left: 4px solid var(--primary);
      padding: 1.5rem;
    }
	
	
	    /* Hero */
    .hero-contact {
      background: linear-gradient(135deg, #f7f6f2 0%, #ffffff 100%);
      padding: 4rem 0;
      border-bottom: 1px solid rgba(0,43,126,0.1);
    }
    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 2rem;
      font-weight: 800;
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 70px;
      height: 4px;
      background: var(--primary);
    }
    /* Contact info cards */
    .info-card {
      background: white;
      border: 1px solid #efede7;
      padding: 1.8rem;
      text-align: center;
      transition: 0.2s;
      height: 100%;
    }
    .info-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,43,126,0.08);
    }
    .info-icon {
      font-size: 2.2rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    .map-container iframe {
      width: 100%;
      height: 300px;
      border: 1px solid #efede7;
    }
    .form-control, .form-select {
      border: 1px solid #efede7;
      padding: 0.6rem 1rem;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--primary);
      box-shadow: none;
    }
	
	
	 /* Hero */
    .hero-laureates {
      background: linear-gradient(135deg, #f7f6f2 0%, #ffffff 100%);
      padding: 4rem 0;
      border-bottom: 1px solid rgba(0,43,126,0.1);
    }
    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 2rem;
      font-weight: 800;
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 70px;
      height: 4px;
      background: var(--primary);
    }
    /* Filter bar */
    .filter-bar {
      background: #f7f6f2;
      padding: 1.2rem 1.5rem;
      margin-bottom: 2rem;
      border-left: 4px solid var(--primary);
    }
    /* Laureate Card */
    .laureate-card {
      background: white;
      border: 1px solid #efede7;
      transition: 0.2s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .laureate-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,43,126,0.08);
    }
    .card-img-wrapper {
      position: relative;
    }
    .laureate-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-bottom: 1px solid #efede7;
    }
    .year-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: #002b7e;
      color: white;
      font-weight: 700;
      padding: 0.3rem 0.8rem;
      font-size: 0.8rem;
      letter-spacing: 0.5px;
    }
    .laureate-body {
      padding: 1.2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .laureate-name {
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 0.25rem;
      color: var(--primary);
    }
    .laureate-affiliation {
      font-size: 0.85rem;
      color: #5a6874;
      margin-bottom: 0.75rem;
    }
    .achievement-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0.75rem;
    }
    .achievement-list li {
      font-size: 0.85rem;
      margin-bottom: 0.4rem;
      display: flex;
      gap: 0.5rem;
    }
    .achievement-list li i {
      color: var(--primary);
      width: 1.2rem;
      margin-top: 0.15rem;
    }
    .reason-text {
      font-size: 0.85rem;
      border-top: 1px dashed #efede7;
      padding-top: 0.75rem;
      margin-top: 0.25rem;
      font-style: italic;
      color: #2c3e4e;
    }