* {
			margin: 0px;
			padding: 0px;
		}

		#nav {
			width: 1200px;
			height: 40px;
			margin: 0 auto;
		}

		#nav ul {
			list-style: none;
		}

		#nav ul li {
			float: left;
			line-height: 40px;
			text-align: center;
			position: relative;
		}

		#nav ul li a {
			text-decoration: none;
			color: #000;
			display: block;
			padding: 0px 15px;
		}

		#nav ul li a:hover {
			color: #FFF;
			background: #12EAE1
		}

		#nav ul li ul {
			position: absolute;
			display: none;
		}

		#nav ul li ul li {
			float: none;
			line-height: 30px;
			text-align: left;
		}

		#nav ul li ul li a {
			width: 360%;
		}

		#nav ul li ul li a:hover {
			background-color: #06f;
		}

		#nav ul li:hover ul {
			display: block
		}



    .container { width:90%; max-width:1200px; margin:0 auto;  }
    h2.section-title { font-size:24px; margin-bottom:15px; border-bottom:2px solid #007bff; padding-bottom:5px; }
    .section { margin-bottom:20px; }
    .flex { display:flex; gap:20px; }
    .slider { flex:1; position:relative; overflow:hidden; }
    .slider img { width:100%; display:block; }
    .list { flex:2; }
    .list ul { list-style:none; margin:0; padding:0; }
    .list li { margin-bottom:20px; }
    .list li span.date { float:right; color:#888; }
    .grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:20px; }
    .grid-item { background:#fff; border:1px solid #ddd; border-radius:8px; overflow:hidden; text-align:center; }
    .grid-item img { width:90%; height:auto; display:block;margin: 0 auto; }
    .grid-item .title { padding:10px; font-size:16px; }
.list li {
    padding: 0 0 0px;
}
.list ul li a {
  color: gray;
  text-decoration: none;
}
.list ul li a:hover {
  text-decoration: underline;
  color: #333; /* 悬停时深灰色 */
}
.slider {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      border-radius: 8px;
    }

    /* 轮播轨道（包含所有图片） */
    .slider-track {
      display: flex;
      transition: transform 0.5s ease;
      height: 400px; /* 固定高度，可根据图片调整 */
    }

    /* 单张轮播图片样式 */
    .slider-slide {
      min-width: 100%;
      height: 100%;
    }
    .slider-slide img {
      width: 100%;
		margin: 0 auto;
      height: 100%;
      object-fit: cover; /* 保持图片比例填充 */
    }
.slider-slide1 img {
      width: 100%;
		margin: 0 auto;
      height: 100%;
      object-fit: cover; /* 保持图片比例填充 */
    }
    /* 导航按钮 */
    .slider-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      z-index: 1;
    }
    .slider-button {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.7);
      border: none;
      border-radius: 50%;
      font-size: 20px;
      cursor: pointer;
      transition: all 0.3s;
      margin: 0 15px;
    }
    .slider-button:hover {
      background: rgba(255,255,255,0.9);
    }

    /* 指示器（小圆点） */
    .slider-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }
    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(123,124,125,0.5);
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }
    .slider-dot.active {
      background: black;
      transform: scale(1.2);
    }

    /* 移动端优化 */
    @media (max-width: 768px) {
      .slider-track {
        height: 300px;
      }
      .slider-button {
        width: 30px;
        height: 30px;
        font-size: 16px;
      }
    }


   #contents {

  margin: 0;
  /*padding: 0;      !* 根据需要再加内边距 *!*/
     padding: 0 0 20px;
  height: auto;    /* 或直接删除 height 属性 */
}


        /* #contents 内强制导航横排 */
#contents .navbar-collapse {
  display: flex !important;
}
#contents .navbar-nav {
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
}

/* 文本白色 */
#contents .navbar-brand,
#contents .navbar-nav .nav-link {
  color: #fff !important;
}
/* 防止文字换行 */
#contents .navbar-nav .nav-link {
  white-space: nowrap;
}
.navbar.bg-primary,
.btn.btn-primary {
  background-color: var(--wac-blue) !important;
}
/* 让 nav 足够“瘦”而不是自身撑大父容器 */
#contents nav {
  flex: 1;               /* 占满横向空间 */
  display: flex;         /* nav 也设为 flex，方便内部布局 */
  align-items: center;   /* 让 Logo + 菜单项在 nav 内垂直居中 */
  justify-content: space-between;
}
#contents {
  display: flex;
  align-items: center;  /* 把 <nav> 垂直居中 */
  padding: 0 0;
  /*background: #0d6efd;*/
}

#contents nav {
  display: flex;
  justify-content: space-between;
  align-items: center;  /* 把 Logo 和菜单项垂直居中 */
  width: 100%;
}

/*#contents .logo {*/
/*  color: #fff;*/
/*  text-decoration: none;*/
/*  font-size: 1.2rem;*/
/*}*/

#contents .menu {
  display: flex;
  gap: 1rem;
  list-style: none;
}

#contents .menu a {
  color: #fff;
  text-decoration: none;
}
#contents .nav-item:not(:last-child) {
  margin-right: 10px; /* 或者你想要的间距，比如 16px、32px */

}
#contents .nav-link {
  font-weight: 600;     /* 或者 bold, 700 */
}



 header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        h1 {
            color: #fff;
            font-size: 3.2rem;
            margin-bottom: 15px;
            background: linear-gradient(to right, #4facfe, #00f2fe);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            letter-spacing: 1px;
        }

        .scroll-container {
            position: relative;
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            /*box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);*/
            animation: fadeIn 1s ease-out 0.6s both;
            /*background: rgba(10, 20, 40, 0.4);*/
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            /*padding: 20px 0;*/
        }

        .cards-wrapper {
            display: flex;
            padding: 20px 15px;
            gap: 30px;
            width: max-content;
            animation: scroll 40s linear infinite;
        }

        .scroll-container:hover .cards-wrapper {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-100% + 100vw - 60px));
            }
        }

        .org-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            width: 250px;
            height: 200px;
            padding: 15px 15px;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .org-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .org-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            /*background: linear-gradient(to right, #4facfe, #00f2fe);*/
        }

        .org-icon {
            font-size: 1.8rem;
            /*margin-bottom: 5px;*/
            background: linear-gradient(135deg, #4facfe, #00f2fe);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s ease;
        }

        .org-card:hover .org-icon {
            transform: scale(1.1);
        }

        .org-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: grey;
            margin-bottom: 5px;
            /*min-height: 30px;*/
            border-bottom: 2px solid rgba(79, 172, 254, 0.5);
            padding-bottom: 15px;
        }
        .org-desc {
            color: gray;
            margin-bottom: 25px;
            font-size: 0.8rem;
            line-height: 1.7;
            flex-grow: 1;
        }

        @keyframes pulse {
            0% { opacity: 0.3; transform: scale(0.8); }
            50% { opacity: 1; transform: scale(1.2); }
            100% { opacity: 0.3; transform: scale(0.8); }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.2rem;
            }

            .org-card {
                width: 200px;
                height: 200px;
                padding: 15px;
            }

            .org-name {
                font-size: 1.1rem;
            }


        }






        .award-column {
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.1);
            transition: transform 0.3s ease;
            border: 1px solid rgba(52, 152, 219, 0.2);
        }

        .award-column:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(52, 152, 219, 0.2);
        }

        .award-header {
            text-align: center;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(52, 152, 219, 0.2);
        }

        .award-title {
            font-size: 1rem;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }



        .recipient-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .recipient-card {
            background: #fff;
            border-radius: 15px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 25px;
            transition: all 0.3s ease;
            border: 1px solid rgba(52, 152, 219, 0.15);
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.08);
            position: relative;
            overflow: hidden;
        }

        .recipient-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #3498db, #2c3e50);
            border-radius: 0 3px 3px 0;
        }

        .recipient-card:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(52, 152, 219, 0.15);
        }

        .recipient-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #ecf0f1;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
        }

        .recipient-details {
            flex: 1;
        }


        .recipient-title {
            font-size: 1.1rem;
            color: #7f8c8d;
            margin-bottom: 10px;
        }

        .recipient-bio {
            font-size: 0.95rem;
            color: #95a5a6;
            line-height: 1.5;
        }

        .medal-badge {
            position: absolute;
            top: 8px;
            right: 12px;
            color: #f1c40f;
            font-size: 1.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 768px) {
            .flex {
                flex-direction: column;
                gap: 30px;
            }

            .header h1 {
                font-size: 2.5rem;
            }

            .header p {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .award-title {
                font-size: 0.8rem;
            }

            .recipient-card {
                flex-direction: column;
                text-align: center;
                padding: 25px 20px;
            }

            .recipient-image {
                width: 120px;
                height: 120px;
            }

            .recipient-card:before {
                width: 100%;
                height: 5px;
                top: 0;
                border-radius: 0 0 3px 3px;
            }
        }

        .diagonal-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(52, 152, 219, 0.03),
                rgba(52, 152, 219, 0.03) 10px,
                rgba(255, 255, 255, 0.05) 10px,
                rgba(255, 255, 255, 0.05) 20px
            );
            z-index: -1;
        }
        .recipient-name {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: #2c3e50;
            font-weight: 600;
        }
.row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }


        .recipient-card1 {
            background: #fff;
            border-radius: 15px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(52, 152, 219, 0.1);
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.05);
            position: relative;
            overflow: hidden;
            width: 160px;
            text-align: center;
        }

        .recipient-card1:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
        }

        .recipient-image1 {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #f0f8ff;
            box-shadow: 0 6px 15px rgba(52, 152, 219, 0.15);
            margin-bottom: 10px;
            transition: all 0.4s ease;
        }

        .recipient-card1:hover .recipient-image1 {
            transform: scale(1.05);
            border-color: #3498db;
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.25);
        }

        .recipient-details1 {
            width: 100%;
        }

        .recipient-name1 {
            font-size: 0.7rem;
            margin-bottom: 8px;
            color: #2c3e50;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }

        .recipient-name1:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #3498db, #2c3e50);
            border-radius: 2px;
        }




        .flex-container {
            display: flex;
            flex-wrap: wrap;
            padding-bottom: 20px;
        }

        .profile-section {
            flex: 1;
            min-width: 300px;
            padding: 5px;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-left:25px;
        }

        .photo-container {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid #f0f7ff;
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
            margin-bottom: 25px;
            position: relative;
        }

        .photo-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .photo-container:hover img {
            transform: scale(1.05);
        }

        .name {
            font-size: 1.8rem;
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .position {
            font-size: 1.2rem;
            color: #3498db;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .bio {
            background: #f8fafd;
            padding: 10px;
            border-radius: 12px;
            border-left: 4px solid #3498db;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            font-size: 1.05rem;
            color: #444;
            line-height: 1.8;
        }

        .bio p {
            margin-bottom: 15px;
        }

        .contact-section {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }

        .contact-title {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaeff5;
            display: flex;
            align-items: center;
        }

        .contact-title i {
            margin-right: 10px;
            color: #3498db;
        }

        .contact-info {
            list-style: none;
            margin-bottom: 10px;
        }

        .contact-info li {
            display: flex;
            margin-bottom: 20px;
            align-items: flex-start;
            padding-left:40px;
        }

        .contact-info i {
            font-size: 1.3rem;
            color: #3498db;
            min-width: 40px;
            padding-top: 5px;
        }

        .contact-details {
            flex: 1;
        }

        .contact-details h3 {
            font-size: 1.1rem;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .contact-details p {
            color: #555;
            font-size: 1.05rem;
        }

        .contact-details a {
            color: #3498db;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-details a:hover {
            color: #2980b9;
            text-decoration: underline;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: white;
            background: #3498db;
            transition: transform 0.3s, background 0.3s;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
        }

        .social-icon:hover {
            transform: translateY(-5px);
            background: #2980b9;
        }

        .wechat-icon { background: #2ecc71; }
        .linkedin-icon { background: #0077b5; }
        .email-icon { background: #e74c3c; }

        .achievements {
            background: #f8fafd;
            padding: 25px;
            border-radius: 12px;
            margin-top: 25px;
            border-left: 4px solid #2ecc71;
        }

        .achievements h3 {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .achievements h3 i {
            margin-right: 10px;
            color: #2ecc71;
        }

        .achievements ul {
            padding-left: 20px;
        }

        .achievements li {
            margin-bottom: 10px;
            color: #555;
        }

        .achievements li:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .flex-container {
                flex-direction: column;
            }

            .profile-section, .contact-section {
                min-width: 100%;
            }

            .section-title {
                font-size: 1.3rem;
                padding: 15px 20px;
            }

            h1 {
                font-size: 2rem;
            }
        }
/* 二维码区域样式 */
        .qr-container {
            margin-top: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .qr-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .qr-code {
            width: 110px;
            height: 110px;
            background: #f0f7ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            border: 1px solid #e0edff;
        }

        .qr-code img {
            width: 85%;
            height: 85%;
            object-fit: contain;
        }

        .qr-label {
            font-size: 0.9rem;
            color: #4a6fa5;
            text-align: center;
            max-width: 140px;
        }





        /* 右侧快速链接区域 */
        .right-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .quick-links {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 10px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }

        .quick-links h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #00f2fe;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .links-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .link-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px 10px;
            background: rgba(0, 0, 0,0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }

        .link-card:hover {
            transform: translateY(-5px);
            background: rgba(0, 0, 0, 0.3);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .link-card i {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #4facfe;
        }

        .link-card h3 {
            font-size: 0.8rem;
            font-weight: 600;
            color: #fff;
        }

        .link-card p {
            margin-top: 8px;
            font-size: 0.9rem;
            color: #e6f7ff;
            opacity: 0.8;
        }



        .news-section h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #00f2fe;
            display: flex;
            align-items: center;
            gap: 10px;
        }



        .news-item h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: #4facfe;
        }

        .news-item p {
            font-size: 0.9rem;
            color: #e6f7ff;
            opacity: 0.8;
        }

        .news-item .date {
            display: block;
            margin-top: 5px;
            font-size: 0.8rem;
            color: #00f2fe;
        }

        footer {
            text-align: center;
            padding: 20px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            margin-top: 30px;
        }

        @media (max-width: 1100px) {
            .main-content {
                flex-direction: column;
            }

            .slider {
                height: 250px;
            }

            .links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .links-grid {
                grid-template-columns: 1fr;
            }


        }