
     

        body {
            font-family: 'Inter_24pt-Regular', "PingFang SC", "Microsoft Yahei";
            line-height: 1.6;
            color: #2d3748;
            background: #f1f6f9;
            overflow-x: hidden;
        }

        /* Animated background particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(139, 92, 246, 0.4);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Glassmorphism container */
        .container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0px;
        }

        /* Hero section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .hero-content {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 24px;
            padding: 60px 40px;
            box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
            transform: translateY(30px);
            opacity: 0;
            animation: slideUp 1s ease-out 0.5s forwards;
        }

        @keyframes slideUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .hero h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 500;
            background: linear-gradient(135deg, #8b5cf6, #06b6d4, #10b981);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero p {
            font-size: 1.3rem;
            color: #4a5568;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Content sections */
        .section {
            padding: 50px 0;
            position: relative;
        }

        .section-content {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 50px;
            margin-bottom: 40px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(20px);
            opacity: 0;
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.08);
        }

        .section-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(139, 92, 246, 0.15);
            border-color: rgba(139, 92, 246, 0.4);
            background: rgba(255, 255, 255, 0.85);
        }

        .section-content.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .section h2 {
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 30px;
            color: #6b46c1;
            position: relative;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #8b5cf6, #06b6d4);
            border-radius: 2px;
        }

        .section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #4a5568;
            margin-bottom: 20px;
        }

        /* Team grid */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .team-member {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.08);
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.05), transparent);
            transition: left 0.5s ease;
        }

        .team-member:hover::before {
            left: 100%;
        }

        .team-member:hover {
            transform: translateY(-5px);
            border-color: rgba(139, 92, 246, 0.4);
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 15px 35px rgba(139, 92, 246, 0.12);
        }

        .member-avatar {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden;
    width: 150px;  /* 调整宽度 */
    height: 200px;  /* 调整高度 */
    border-radius: 8px;  /* 改为圆角矩形 */
   
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    position: relative;
    z-index: 1;
   
}
.member-avatar img {
    width: 100%; 
    height: auto; /* 高度自适应 */
    object-fit: contain; /* 改为contain保持比例 */
    border-radius: 4px;
   
} 
        .member-name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2d3748;
        }

        .member-role {
            font-size: 1rem;
            font-weight: 400;
            color: #718096;
            margin-bottom: 15px;
        }

        .member-bio {
            font-size: 0.95rem;
            color: #4a5568;
            line-height: 1.6;
        }

        /* Bio popup modal */
        .bio-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .bio-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .bio-content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 40px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.8) translateY(50px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .bio-modal.active .bio-content {
            transform: scale(1) translateY(0);
        }

        .bio-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: #4a5568;
            font-size: 2rem;
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bio-close:hover {
            background: rgba(139, 92, 246, 0.1);
            transform: rotate(90deg);
            color: #6b46c1;
        }

        .bio-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .bio-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b5cf6, #06b6d4);
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 600;
            color: white;
        }

        .bio-name {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #8b5cf6, #06b6d4);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .bio-role {
            font-size: 1.2rem;
            font-weight: 400;
            color: #718096;
            margin-bottom: 30px;
        }

        .bio-text {
            font-size: 1.1rem;
            font-weight: 400;
            line-height: 1.7;
            color: #4a5568;
            margin-bottom: 20px;
        }

        .bio-section {
            margin-bottom: 25px;
        }

        .bio-section h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #6b46c1;
        }

        .bio-section ul {
            list-style: none;
            padding-left: 0;
        }

        .bio-section li {
            padding: 5px 0;
            position: relative;
            padding-left: 20px;
            color: #4a5568;
        }

        .bio-section li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #06b6d4;
            font-weight: bold;
        }

        .team-member {
            cursor: pointer;
        }

        .team-member:hover .member-name {
            color: #06b6d4;
        }

        /* Values section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .value-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.06);
        }

        .value-card:hover {
            transform: translateY(-3px);
            border-color: rgba(139, 92, 246, 0.4);
            box-shadow: 0 15px 30px rgba(139, 92, 246, 0.12);
            background: rgba(255, 255, 255, 0.8);
        }

        .value-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b5cf6, #06b6d4);
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .value-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #6b46c1;
        }

        .value-description {
            font-size: 0.95rem;
            color: #4a5568;
            line-height: 1.5;
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            z-index: 1000;
        }

        .scroll-progress {
            height: 100%;
            background: linear-gradient(90deg, #8b5cf6, #06b6d4, #10b981);
            width: 0%;
            transition: width 0.1s ease;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .hero-content {
                padding: 40px 20px;
            }

            .section-content {
                padding: 30px 20px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section h2 {
                font-size: 2rem;
            }
        }











        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
           
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container-bio {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }

        .header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .header h1 {
      font-size: 48px;
      font-weight: 500;
      color: #f8a056;
      margin-bottom: 30px;
      letter-spacing: -1px;
      line-height: 1.2;
      opacity: 0;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
    }

  

        .main-content-strategy {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .strategy-section {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 2.5rem;
            border: 1px solid rgba(203, 213, 224, 0.5);
            animation: slideInLeft 0.8s ease-out;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(45, 55, 72, 0.1);
        }

        .strategy-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(45, 55, 72, 0.15);
        }

        .vision-section {
            background: linear-gradient(135deg,  #1a48a3 , #cfe0fa);
            border-radius: 24px;
            padding: 2.5rem;
            color: white;
            animation: slideInRight 0.8s ease-out;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(45, 55, 72, 0.2);
        }

        .vision-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            animation: shimmer 3s infinite;
        }

        .vision-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(45, 55, 72, 0.3);
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #2d3748;
        }

        .vision-section .section-title {
            color: #f5a72b;
        }

        .strategy-items {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .strategy-item {
            background: rgba(237, 242, 247, 0.6);
            border-radius: 16px;
            padding: 1.5rem;
            border-left: 4px solid #f59e0b;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(203, 213, 224, 0.3);
        }

        .strategy-item:hover {
            background: rgba(237, 242, 247, 0.9);
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(45, 55, 72, 0.1);
        }

        .strategy-item h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }
        



        .strategy-item p {
            color: #4a5568;
            line-height: 1.5;
        }

        .focus-strategy {
            background: linear-gradient(135deg, #f8a056, #dc2626);
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            color: white;
            animation: pulse 2s infinite;
        }

        .focus-strategy h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .focus-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
        }

        .focus-point {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 12px;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .vision-content h2 {
            font-size: 1.8rem;
            font-weight: 500;
            color: #f5a72b;
            margin-bottom: 1rem;
        }

        .vision-content p {
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
        }

        .highlight {
            color: #f5a72b;
            font-weight: 600;
        }

        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(45, 55, 72, 0.05);
            animation: float 6s ease-in-out infinite;
        }

        .circle-1 {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .circle-3 {
            width: 60px;
            height: 60px;
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
            50% { box-shadow: 0 0 0 20px rgba(220, 38, 38, 0); }
        }

        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .header h1 {
                font-size: 2.5rem;
            }

            .container {
                padding: 1rem;
            }

            .focus-points {
                grid-template-columns: 1fr;
            }

             /* 隐藏插件自动生成的标题容器 */
  .ws-title {
    display: none !important;
  }

  /* 移除图片元素的备用隐藏方式 */
  .slider-title[title] {
    all: unset;
  }
}
        }

/* 新增响应式布局 */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
}

.hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    margin: 5px 0; /* 调整文字容器边距 */
    
}

.hero-image {
    flex: 1 1 45%;
}

.hero-image img {
    width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero-content,
    .hero-image {
        flex: 1 1 100%;
    }
}
        /* ... existing code ... */

/* Aboutus区块调整 */
#Aboutus .hero-section {
    align-items: stretch;
}

#Aboutus .hero-content {
    flex: 1;
    max-width: 55%;
    padding-right: 2rem;
    align-items: center;
    
}

#Aboutus .hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: right;
    gap: 10px; /* 新增间距控制 */
    flex:1   1 40%;
    max-width: 40%;
    height: auto;
    overflow: hidden;
    position: relative;
}

#Aboutus .hero-image img {
    width: 60%;
    height: auto;
    object-fit: cover;
    object-position: right;
}
#Aboutus .hero-content-eng {
    flex: 1;
     max-width: 100%; /* 从60%减小到50% */
   
     overflow: auto; /* 添加overflow控制 */
    padding-right: 2rem;
    align-items: center;
    
}
#Aboutus .hero-image-eng {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: right;
    gap: 10px; /* 新增间距控制 */
    flex:1   1 40%;
    max-width: 60%;
    height: auto;
    overflow: hidden;
    position: relative;
}
#Aboutus .hero-image-eng img {
    width: 60%;
    height: auto;
    object-fit: cover;
    object-position: right;
}
/* ... 现有代码 ... */

/* Aboutus区块调整 */
#Aboutus .container {
    padding-top: 4rem;  /* 新增：增加整个区块的上间距 */
}

#Aboutus .header {
    margin-bottom: 2rem;  /* 新增：增加标题与内容之间的间距 */
    padding-top: 3rem;    /* 新增：标题上方留白 */
}

/* 保持之前建议的图片对齐样式 */
#Aboutus .hero-section {
    align-items: stretch;
}
// ... 现有代码 ...

/* 愿景与战略区块调整 */
#strategy .container {
    padding-top: 4rem;  /* 增加区块顶部间距 */
}

#strategy .header {
    margin-bottom: 2rem;
    padding-top: 3rem;  /* 标题上方留白 */
    position: relative;
}

#strategy .header h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f27120;
    border-radius: 2px;
}

// ... existing code ...

/* Aboutus区块背景图片 */
#Aboutus {
    background-image: url('../images/climb.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#Aboutus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

#Aboutus .container-bio {
    position: relative;
    z-index: 2;
}

.decorative-divider {
  padding-left: 2em;
  /* Space for the divider */
  text-indent: -1em;
  /* Hanging indent alignment */
  margin-bottom: 1rem;
}

.decorative-divider::before {
  content: "•  " !important ; 
  /* Or use ➜, ➤, , etc. */
}

    h1 {
      font-size: 48px;
      font-weight: 300;
      color: #f8a056;
      margin-bottom: 30px;
      letter-spacing: -1px;
      line-height: 1.2;
      opacity: 0;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
    }

    h1 strong {
      font-weight: 500;
    }

    .description {
      font-size: 18px;
      line-height: 1.8;
      color: #546e7a;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeIn 0.8s ease-out 0.5s forwards;
    }

    .image-section {
      position: relative;
      height: 100%;

      overflow: hidden;
      background: linear-gradient(45deg, #e3e9f3, #f0f4f8);
    }

    .image-section-newsrelease {
      position: relative;
      max-height: 400px;
      overflow: hidden;

    }

    .image-section-newsrelease img {
      width: 100%;
      height: auto !important;
      object-fit: cover;
      transition: transform 0.6s ease;
    }


    .image-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .image-section:hover img {
      transform: scale(1.05);
    }

    .image-section-newsrelease:hover img {
      transform: scale(1.05);
    }

    .image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
      pointer-events: none;
    }


li.description:first-of-type {
  margin-top: 10px !important; /* 减少第一个列表项的上边距 */
}

/* 通用列表项样式 */
li.description {
  margin-bottom: 10px !important;
  font-size: 18px !important;
  line-height: 1.8 !important;
  color: #546e7a !important;
  font-weight: normal !important;
}