  /* 基础样式重置 */
  .cy-containercy, .cy-containercy * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "黑体", "SimHei", sans-serif; /* 确保所有文字使用黑体 */
}

/* 成员卡片容器 */
.cy-members-containercy {
    display: flex;
    flex-wrap: wrap;
    background: transparent;
}

/* 单个成员卡片 - 高度增加15px */
.cy-member-cardcy {
    position: relative;
    width: 25%; /* 默认每行4个成员 */
    background: #FFFFFF; /* 改为白色背景 */
    overflow: hidden;
    height: 225px; /* 增加15px高度 */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; /* 添加背景色过渡效果 */
}

/* 左上角蓝色方块 - 淡入效果 */
.cy-blue-squarecy {
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    background-color: #0066ff;
    z-index: 1;
    opacity: 0; /* 初始透明度为0 */
    transition: opacity 0.3s ease-out 0.2s; /* 添加淡入过渡效果 */
}

/* 悬停时显示蓝色方块 - 淡入效果 */
.cy-member-cardcy:hover .cy-blue-squarecy {
    opacity: 1; /* 悬停时完全显示 */
}

/* 头部区域（照片+名字） - 修改为头像在右侧 */
.cy-member-headercy {
    display: flex;
    align-items: flex-end;
    padding: 0; /* 移除顶部内边距 */
    justify-content: space-between; /* 名字在左，头像在右 */
}

/* 成员照片 */
.cy-member-photocy {
    width: 90px;
    height: 90px;
    object-fit: cover;
    vertical-align: bottom;
    margin: 0; /* 移除外边距 */
    order: 2; /* 将头像放在右侧 */
}

/* 成员名字 - 取消加粗，改为蓝色 */
.cy-member-namecy {
    color: #0066ff; /* 改为蓝色 */
    margin-right: 30px; /* 改为右边距 */
    font-size: 18px;
    align-self: flex-end;
    padding-bottom: 0px;
    transition: color 0.3s ease;
    order: 1; /* 将名字放在左侧 */
    text-align: left; /* 左对齐 */
    padding-left: 40px; /* 添加左内边距确保对齐 */
    font-weight: 300; /* 细体 */
    font-family: "Microsoft YaHei Light", "Microsoft YaHei", sans-serif; /* 确保使用细体字体 */
}

/* 职位信息 */
.cy-member-positioncy {
    color: #999;
    padding: 0 0 15px 40px;
    font-size: 14px; /* 增大字体大小 */
    margin-top: 20px;
    text-align: left; /* 左对齐 */
    font-weight: 300; /* 细体 */
    font-family: "Microsoft YaHei Light", "Microsoft YaHei", sans-serif; /* 确保使用细体字体 */
}

.cy-member-positioncy-2 {
    color: #999;
    padding: 0 0 15px 40px;
    font-size: 14px; /* 增大字体大小 */
    margin-top: 0px;
    text-align: left; /* 左对齐 */
    font-weight: 300; /* 细体 */
    font-family: "Microsoft YaHei Light", "Microsoft YaHei", sans-serif; /* 确保使用细体字体 */

}

/* 弹窗样式 - 黑色毛玻璃风格 */
.cy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.233); /* 半透明黑色背景 */
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px); /* 毛玻璃效果 */
    opacity: 0; /* 初始透明度为0 */
    transition: opacity 0.3s ease; /* 添加淡入淡出动画 */
}

.cy-modal-content {
    background: rgba(29, 29, 29, 0.8); /* 深色半透明背景 */
    width: 80%;
    max-width: 600px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.116); /* 微妙的边框 */
    border-radius: 0;
    transform: scale(0.9); /* 初始缩放 */
    opacity: 0; /* 初始透明度 */
    transition: transform 0.3s ease, opacity 0.3s ease; /* 添加缩放和透明度动画 */
}

/* 弹窗显示时的动画效果 */
.cy-modal.show {
    display: flex;
    opacity: 1;
}

.cy-modal.show .cy-modal-content {
    transform: scale(1);
    opacity: 1;
}

/* 弹窗头部 */
.cy-modal-header {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.062); /* 浅色分割线 */
    position: relative;
}

/* 头像区域 */
.cy-modal-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 0;
}

/* 名字和职位区域 */
.cy-modal-info {
    flex: 1;
}

/* 弹窗名字 - 取消加粗 */
.cy-modal-name {
    color: #fff; /* 白色文字 */
    font-size: 24px;
    font-weight: normal; /* 取消加粗 */
    margin-bottom: 5px;
    text-align: left; /* 左对齐 */
    margin-top: 30px;
    font-weight: 300; /* 细体 */
    font-family: "Microsoft YaHei Light", "Microsoft YaHei", sans-serif; /* 确保使用细体字体 */
}

.cy-modal-position {
    color: #c9c9c9; /* 浅灰色文字 */
    font-size: 14px;
    text-align: left; /* 左对齐 */
    font-weight: normal; /* 确保不加粗 */
}

/* 关闭按钮 */
.cy-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa; /* 浅灰色 */
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.cy-modal-close:hover {
    color: #fff; /* 悬停时白色 */
}

/* 弹窗正文 */
.cy-modal-body {
    padding: 20px;
    color: #ddd; /* 浅灰色文字 */
    line-height: 1.3;
    max-height: 300px;
    overflow-y: auto;
    text-align: left; /* 左对齐 */
    font-weight: 300; /* 细体 */
    font-family: "Microsoft YaHei Light", "Microsoft YaHei", sans-serif; /* 确保使用细体字体 */
    font-size: 14px;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .cy-member-cardcy { width: 33.333%; }
    .cy-member-namecy { 
        font-size: 22px;
        padding-left: 10px; /* 调整内边距 */
    }
    .cy-member-photocy {
        width: 100px; /* 中屏尺寸 */
        height: 100px; /* 中屏尺寸 */
    }
    .cy-member-positioncy, .cy-member-positioncy-2 {
        font-size: 16px; /* 中屏字体大小 */
        padding-left: 10px; /* 调整内边距 */
    }
}

@media (max-width: 768px) {
    .cy-member-cardcy { width: 50%; }
    .cy-member-namecy { 
        font-size: 19px;
        padding-left: 20px; /* 调整内边距 */
    }
    .cy-member-photocy {
        width: 80px; /* 小屏尺寸 */
        height: 80px; /* 小屏尺寸 */
    }
    .cy-member-positioncy, .cy-member-positioncy-2 {
        font-size: 15px; /* 小屏字体大小 */
        padding-left: 20px; /* 调整内边距 */
    }
}

@media (max-width: 480px) {
    .cy-member-cardcy { width: 50%; }
    .cy-modal-content { width: 90%; }
    .cy-member-photocy {
        width: 60px; /* 超小屏尺寸 */
        height: 60px; /* 超小屏尺寸 */
    }
    .cy-member-namecy { 
        font-size: 18px;
        padding-left: 8px; /* 调整内边距 */
    }
    .cy-member-positioncy, .cy-member-positioncy-2 {
        font-size: 14px; /* 超小屏字体大小 */
        padding-left: 8px; /* 调整内边距 */
    }
}