/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
    max-width: 100%;
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner样式 - 1:1比例 */
.service-banner {
  position: relative;
  width: 100%;
  height: 500px; /* 全屏高度 */
  background-image: url('topbg.jpg');
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
}

/* 文字层级样式 */
.english-slogan {
  color: #e0e0e0;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.chinese-core {
  margin-bottom: 2rem;
}

.core-border {
  background-color: #0066cc;
  padding: 0.4rem 1.5rem;
}

.core-border h2 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}

.value-proposition {
  margin-bottom: 2rem;
  text-align: center;
}

.value-proposition p {
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
}

.divider {
  width: 80px;
  height: 3px;
  background-color: #ff9933;
  margin: 0 auto;
}

.company-values {
  color: #d0d0d0;
  font-size: 1rem;
}

.company-values .highlight {
  color: #ffcc00;
  font-weight: bold;
  margin: 0 5px;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .core-border h2 {
    font-size: 1.8rem;
  }
  
  .value-proposition p {
    font-size: 1.5rem;
  }
  
  .english-slogan {
    font-size: 1rem;
  }
}

/* 公司实事板块整体样式 */
.grid-section {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 标题区样式 */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
}

.section-title {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.explore-more {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.explore-more:hover {
    color: #004999;
    text-decoration: underline;
}

/* 员工风采模块整体样式 */
.employee-section {
    width: 100%;
    min-width: 1920px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    background-image: url('../sszt/fxbj.jpg'), radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: cover, 30px 30px;
    background-position: center, center;
    background-repeat: no-repeat, repeat;
    padding: 40px 0;
    margin: 40px 0;
    overflow-x: hidden;
}

.employee-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    justify-content: center;
}

.employee-left {
    width: 25%;
    display: flex;
    align-items: center;
}

/* 英文标题（分两行 + 蓝色粗体） */
.employee-en-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1C64D1; /* 主色调蓝色 */
    line-height: 1.2;
    margin: 0 0 10px 0;
}

.employee-en-title span {
    display: block; /* 强制分行 */
}

/* 中文标题（小字号黑色） */
.employee-cn-title {
    font-size: 1rem;
    color: #1f2937; /* 黑色常规体 */
    margin: 0;
    padding-left: 2px;
}

/* 右侧员工卡片区（70%占比） */
.employee-right {
    width: 70%;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); /* 蓝色渐变底色 */
    padding: 40px 30px;
    box-sizing: border-box;
    position: relative;
    /* 白色点阵装饰（通过背景图实现，可替换实际图片路径） */
    background-image: radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 30px 30px;
}

/* 卡片横向排列容器 */
.employee-right {
    display: flex;
    gap: 25px;
    justify-content: space-between;
}

/* 通用卡片样式 */
.employee-card {
    width: 31%; /* 3张卡片等宽分布 */
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
}

/* 卡片图片容器 */
.card-image-wrapper {
    width: 100%;
    height: 366px; /* 统一图片高度 */
    overflow: hidden;
    position: relative;
}

.employee-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持图片比例，避免拉伸 */
    transition: transform 0.3s ease;
}

/* 卡片内容区（通用） */
.card-content {
    padding: 20px;
    box-sizing: border-box;
}

/* 普通卡片内容（底部黑底白字） */
.card-content-bottom {
    background-color: rgba(0, 0, 0, 0); /* 默认无背景 */
    color: #ffffff;
    padding: 15px 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 1; /* 默认隐藏 */
    transform: translateY(100%);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease, background-color 0.3s ease;
}

.employee-card:hover .card-content-bottom {
    /* 悬停时背景图效果 */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(249, 115, 22, 0.3) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    background-size: cover, 40px 40px;
    background-blend-mode: overlay, normal;
    opacity: 1;
    transform: translateY(0);
    max-height: 100%;
    /* 修改为铺满整张图片 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* 内容靠下对齐 */
}

/* 主卡片内容（白色文字 + 叠加定位） */
/* 主卡片内容（静态展示模式：始终有背景图） */
.employee-card-main .card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #ffffff;
    /* 静态展示：背景图效果 */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(249, 115, 22, 0.3) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    background-size: cover, 40px 40px;
    background-blend-mode: overlay, normal;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* 内容靠下对齐 */
    padding: 20px;
    box-sizing: border-box;
    opacity: 1; /* 静态展示：始终可见 */
    transform: translateY(0);
    max-height: 100%;
    overflow: visible;
    /* 静态展示模式下不需要transition动画 */
}

/* 主卡片基本信息区域始终显示 */
.employee-card-main .card-basic-info {
    display: block;
    opacity: 1;
    max-height: 200px;
    overflow: visible;
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
}

/* 主卡片补充信息样式（静态展示） */
.card-intro-main ul {
    margin: 0 0 15px 0;
    padding: 0;
    list-style: none;
}

.card-intro-main li {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 0 8px 0;
    padding-left: 18px;
    position: relative;
}

.card-intro-main li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f97316;
}

.employee-card-main:hover .card-content {
    /* 悬停时背景图效果 */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(249, 115, 22, 0.3) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    background-size: cover, 40px 40px;
    background-blend-mode: overlay, normal;
    opacity: 1;
    transform: translateY(0);
    max-height: 100%;
}

/* 基本信息区域（始终显示） */
.card-basic-info {
    display: block;
    opacity: 1;
    max-height: 200px;
    overflow: visible;
}

/* 卡片文字样式 */
.card-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.card-position {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0 0 15px 0;
}

/* 主卡片专属：个人简介 */
.card-intro {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    opacity: 0; /* 默认隐藏 */
    max-height: 0; /* 默认隐藏 */
    overflow: hidden; /* 默认隐藏 */
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

/* 主卡片专属：操作按钮（橙色） */
.card-btn {
    background-color: #f97316; /* 点缀色橙色 */
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    width: fit-content;
    opacity: 1; /* 静态展示：始终可见 */
    max-height: 200px; /* 静态展示：始终显示 */
    overflow: visible;
    transition: opacity 0.3s ease, max-height 0.3s ease, background-color 0.3s ease;
}

/* 悬停时显示内容 */
.employee-card:hover .card-intro {
    opacity: 1;
    max-height: 200px;
    display: block;
}

.employee-card:hover .card-btn {
    opacity: 1;
    max-height: 100px;
    display: block;
}

/* 悬停时按钮增强效果 */
.card-btn:hover {
    background-color: #ea580c; /* hover 加深橙色 */
}

/* 响应式调整（平板/手机端） */
@media (max-width: 992px) {
    .employee-container {
        flex-direction: column; /* 垂直堆叠 */
    }

    .employee-left, .employee-right {
        width: 100%;
    }

    .employee-right {
        gap: 20px;
        padding: 30px 20px;
    }

    .employee-card {
        width: 48%; /* 平板端 2 张卡片一排 */
    }
}

@media (max-width: 576px) {
    .employee-right {
        flex-direction: column; /* 手机端 1 张卡片一排 */
    }

    .employee-card {
        width: 100%;
    }

    .employee-en-title {
        font-size: 1.8rem;
    }
}

/* 主体内容区布局 */
.grid-container {
    display: flex;
    gap: 20px;
}

.grid-left {
    width: 50%;
    box-sizing: border-box;
}

.grid-right {
    width: 50%;
    box-sizing: border-box;
}

/* 左侧图片组合样式 */
.image-group {
    display: grid;
    background-color: #fff;
    border-radius: 4px;
}

.top-left {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* 右侧列表样式 */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    border-bottom: 1px solid #eee; /* 细分割线 */
}

.news-list li:last-child {
    border-bottom: none;
}

.news-content {
    color: #333;
    line-height: 1.5;
}

.news-date {
    color: #999;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .grid-container {
        flex-direction: column;
    }
    
    .grid-left, .grid-right {
        width: 100%;
    }
    
    .top-left, .top-right, .bottom-full {
        height: 150px;
    }
}

/* 瀑布流样式 */
.waterfall-section {
    margin-bottom: 80px;
}

.waterfall-container {
    column-count: 3;
    column-gap: 30px;
    padding: 0 10px;
}

.waterfall-item {
    break-inside: avoid;
    margin-bottom: 30px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.waterfall-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.waterfall-image {
    width: 100%;
    height: auto;
    display: block;
}

.waterfall-content {
    padding: 25px;
}

.waterfall-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.waterfall-text {
    color: #666;
    line-height: 1.6;
}

/* 卡片式布局样式 */
.card-section {
    margin-bottom: 10px;
    width: 100%;
    min-width: 1920px;
    background-color: #fff;
    overflow-x: hidden;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(349px, 1fr));
    gap: 3px;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
}

.card-item {
    background: white;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.card-image-container {
    width: 100%;
    height: 349px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.card-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.card-button:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 20px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 0.7;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.modal-prev, .modal-next {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    pointer-events: all;
}

.modal-prev:hover, .modal-next:hover {
    background: rgba(255,255,255,0.3);
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: slideUp 0.6s ease forwards;
}

/* 懒加载图片样式 */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .banner-title {
        font-size: 2.2rem;
    }
    
    .banner-description {
        font-size: 1.1rem;
    }
    
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .waterfall-container {
        column-count: 2;
        column-gap: 20px;
    }
    
    .card-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .waterfall-container {
        column-count: 1;
    }
    
    .header {
        padding: 40px 0;
    }
}

/* 关于我们板块样式 */
.about-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #F8F8F8 0%, #F8F8F8 100%);
    width: 100%;
    min-width: 1920px;
    overflow-x: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* 左侧标题区域 */
.about-left {
    flex: 0 0 25%;
    position: sticky;
    top: 100px;
}

.about-title {
    text-align: left;
}

.about-en-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 1px;
}

.about-cn-title {
    font-size: 1rem;
    }
    
.about-content p {
        font-size: 0.9rem;
        text-indent: 1.5em;
    } 

.about-btn{
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #FD9D0F, #FD9D0F);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

/* 合作伙伴板块样式 */
.partners-section {
    padding: 80px 0;
    width: 100%;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 合作伙伴标题区域 */
.partners-header {
    text-align: center;
    margin-bottom: 60px;
}

.partners-en-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.partners-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #2563eb);
    margin: 10px auto 20px;
    border-radius: 2px;
}

.partners-cn-title {
    font-size: 1.8rem;
    color: #374151;
    font-weight: 600;
    margin: 0;
}

/* 合作伙伴网格布局 */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* 合作伙伴卡片样式 */
.partner-card {
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

/* 合作伙伴Logo区域 */

.partner-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 991px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .partners-en-title {
        font-size: 2.5rem;
    }
    
    .partners-cn-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .partners-section {
        padding: 50px 0;
    }
    
    .partners-container {
        padding: 0 15px;
    }
    
    .partners-header {
        margin-bottom: 40px;
    }
    
    .partners-en-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .partners-divider {
        width: 60px;
        height: 3px;
        margin-bottom: 15px;
    }
    
    .partners-cn-title {
        font-size: 1.3rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .partner-card {
        padding: 25px 15px;
    }
    
    .partner-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .partner-image {
        width: 60px;
        height: 60px;
    }
    
    .partner-name {
        font-size: 1rem;
    }
    
    .partner-name-en {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-en-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .partners-divider {
        width: 50px;
        height: 3px;
        margin-bottom: 12px;
    }
    
    .partners-cn-title {
        font-size: 1.1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 25px;
    }
    
    .partner-card {
        padding: 20px 10px;
    }
    
    .partner-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .partner-image {
        width: 45px;
        height: 45px;
    }
    
    .partner-name {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .partner-name-en {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

/* 主卡片：个人简介（静态展示，始终可见） */
.employee-card-main .card-intro {
    opacity: 1 !important; /* 静态展示：始终可见 */
    max-height: 200px !important; /* 静态展示：始终显示 */
    display: block !important; /* 静态展示：始终显示 */
    overflow: visible !important; /* 静态展示：始终可见 */
    transition: none; /* 静态展示：不需要过渡动画 */
}