html, body {
    overflow-x: hidden; /* 隐藏水平溢出 */
    width: 100%;
}

.logo1 {
    position: relative;
    padding-left: 100px;
    float: left;
    z-index: 10;
    top: -15px;
}

.logo1-frame img {
    display: block;
    transition: transform 0.3s ease;
}


/* -------------------- 云巅商学院简介部分样式 -------------------- */
.yundian-intro {
    position: relative;
    height: 100vh; /* 占据整个视口高度 */
    /* padding-top: 80px;  */
    overflow: hidden; /* 隐藏超出部分 */
    display: flex;
    flex-direction: column;
    justify-content: center; /* 垂直居中 */
    align-items: center; /* 水平居中 */
    text-align: center;
}

/* 添加全屏背景图片 */
.yundian-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/云巅商学院/背景.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* 主标题样式 */
.yundian-intro .main-title {
    font-size: 5vw; /* 响应式字体大小 */
    color: white;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 15px;
    line-height: 1.2;
}

/* 副标题样式 */
.yundian-intro .sub-title {
    font-size: 2vw; /* 响应式字体大小 */
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    font-weight: 300;
}

.learn-more-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #1a252f;
    transform: translateX(10px);
}

/* ------------------------云巅商学院简介------------------ */

.elite-intro-box {
    width: 100%;
    padding: 60px 0;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
}

.elite-text-content {
    max-width: 1080px;
    padding-left: 30px;
    position: relative;
    margin: 0 20px;
    text-align: left; /* 确保整个内容区域默认左对齐 */
}

.elite-text-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #2c3e50;
}

.elite-text-content h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.elite-text-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.elite-intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/1753864035176.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 1;
}

.elite-text-box {
    max-width: 800px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 2;
}

.elite-text-box h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.elite-text-box p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* -------------------- 荣誉展示部分样式 -------------------- */
.honors-section {
    padding: 30px 0;              /* 灰色背景高度调节 */
    background-color: #e0e0e0; /* 更深的灰色背景 */
    position: relative;
    overflow: hidden;
}

.honors-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.honor-item {
    flex: 1;
    text-align: center;
    padding: 30px 0;
}

.honor-number {
    font-size: 48px;
    font-weight: 700;
    color: #141414;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif; /* 系统自带科技感数字字体 */
    font-weight: normal; /* 确保不加粗 */
}

.honor-text {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    text-align: left; /* 文字内容左对齐 */
    display: inline-block; /* 使左对齐在居中容器内生效 */
    width: 100%; /* 确保宽度填满容器 */
    padding-left: 20%; /* 可选：控制左对齐的起始位置 */
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; /* 系统自带现代感小字字体 */
}

/* 响应式设计 */
@media (max-width: 992px) {
    .honors-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .honor-item {
        flex: 0 0 45%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .honor-item {
        flex: 0 0 100%;
    }
    
    .honor-number {
        font-size: 36px;
    }
    
    .honor-text {
        font-size: 14px;
    }
}


/* -------------------- Logo展示栏样式 -------------------- */
.logo-showcase {
    padding: 65px 0;
    background-color: #fff;
    overflow: hidden; /* 防止内容溢出 */
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 50px;
    position: relative;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    gap: 5px;
    overflow: hidden; /* 确保内容不换行 */
}

.logo-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
    min-width: 0; /* 防止内容溢出单元格 */
}

.logo-cell img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
}

.arrow-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.2s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 10px;
}

.arrow-btn:hover {
    color: #000;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}


/* -------------------- 具体服务项目展示部分样式 -------------------- */
.mba-programs-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
    margin-top: -40px; /* 新增：整体向上移动20px */
}

.mba-programs-container {
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
}

.mba-program-card {
    background: none;
    padding: 40px 30px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left; /* 将卡片整体内容改为左对齐 */
    
}


.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 50px;
    background: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    
}

.program-icon img {
    width: 100px;  /* 调整图片大小 */
    height: 100px;
    object-fit: contain;  /* 保持比例 */
}

.mba-program-card h3 {
    font-size: 22px;
    color: #070707;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center; /* 保持标题居中 */
}

.mba-program-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    text-align: left; /* 确保段落左对齐 */  
}

/* 响应式设计 */
@media (max-width: 992px) {
    .mba-programs-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mba-programs-container {
        grid-template-columns: 1fr;
    }
    
    .mba-program-card {
        padding: 30px 20px;
    }
}

/* -------------------- 为什么选择我们部分 -------------------- */
.why-choose-us {
    background-color: #2c3e50;
    color: white;
    padding: 60px 20px; /* 增加左右内边距 */
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
    top: -40px; /* 改用相对定位微调 */
    z-index: 1; /* 确保层级正确 */
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us h2 {
    font-size: 32px;
    text-align: left; /* 改为左对齐 */
    margin-bottom: 30px;
    font-weight: 600;
    padding-left: 25px; /* 和列表项对齐 */
    position: relative;
}

.reasons-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.reasons-column {
    flex: 1;
}

.reasons-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.reasons-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    text-align: left; /* 确保文本左对齐 */
}

.reasons-list li::before {
    content: "•";
    position: absolute;
    left: 10px; /* 调整圆点位置 */
    color: white;
    font-size: 16px;
    top: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .reasons-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .why-choose-us h2 {
        font-size: 28px;
        padding-left: 20px;
    }
    
    .reasons-list li {
        font-size: 14px;
        padding-left: 25px;
    }

    .reasons-list li::before {
        left: 5px;
    }
}



/* -------------------- 全屏图片部分 -------------------- */
.full-width-image-section {
    width: 100%;
    height: 300px;
    background-image: url('../images/云巅商学院/背景4.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden; /* 防止放大时溢出 */
    animation: zoomIn 8s ease-in-out forwards; /* 播放一次并定格 */
}

/* 定义关键帧动画（放大） */
@keyframes zoomIn {
    0% {
        transform: scale(1); /* 初始大小 */
    }
    100% {
        transform: scale(1.2); /* 放大到 120% */
    }
}


/* -------------------- 人才优势展示部分样式 -------------------- */
.talent-advantages {
    width: 100%;
    height: 100px;
    background-color: white;
    padding: 50px 0;
}

.advantages-container {
    width: calc(100% - 10px); /* 左右各留5px */
    margin: 0 auto;
    display: flex;
    height: 100%;
    padding: 0 5px; /* 左右5px边距 */
}

.advantage-item {
    flex: 1;
    margin-right: 20px; /* 项目间20px间距 */
    text-align: left; /* 文字左对齐 */
    padding: 15px;
    background: none; /* 移除背景色 */
    border: none; /* 移除边框 */
}

.advantage-item:last-child {
    margin-right: 0; /* 最后一个去掉右边距 */
}

.advantage-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 10px;
}

.advantage-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .advantages-container {
        width: calc(100% - 40px);
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .talent-advantages {
        height: auto;
        padding: 30px 0;
    }
    
    .advantages-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .advantage-item {
        flex: 0 0 calc(50% - 10px);
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .advantage-item {
        flex: 0 0 100%;
    }
}


/* -------------------- 精英团队部分样式 -------------------- */
/* 精英团队 - 杂志斜切风 */

.elite-team-section {
    width: 100%;
    overflow: hidden;
    /* 切角颜色 */
    background: rgb(247, 248, 248);
    color: white;
}

/* -------------------- 精英团队部分样式 -------------------- */
/* 院长部分样式保持不变 */
.dean-showcase {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* 修改为左下角曲线斜切 */
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}



.dean-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: 1;
}

.dean-overlay {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    box-sizing: border-box;
    z-index: 2;
}

.dean-quote {
    width: 40%;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    color: white;
    padding: 20px;
    text-align: left;
}

.dean-info {
    width: auto;
    max-width: 500px;
    background: rgba(20, 20, 30, 0.8);
    padding: 30px;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-left: auto;
    z-index: 2;
    margin-bottom: 10%; /* 为斜切部分留出空间 */
}

.dean-info h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.dean-info .title {
    font-size: 5rem;
    color: #a1a1ff;
    margin: 10px 0;
    line-height: 2;
    text-align: left;
    max-width: 100%;
    word-break: keep-all;
}

.dean-info .divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #a1a1ff, transparent);
    margin: 20px 0;
}

/* 赵志霖头衔图标样式 - 修正版 */
.dean-info .title-with-icon {
    display: flex;
    align-items: center; /* 确保垂直居中 */
    gap: 12px;
    margin: 8px 0;
}

.dean-info .title-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(245, 245, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0; /* 移除可能的外边距 */
}

.dean-info .title-icon i {
    color: #fff;
    font-size: 0.7rem;
}

.dean-info .title {
    font-size: 0.95rem;
    color: #a1a1ff;
    margin: 0;
    line-height: 2;
    display: inline; /* 确保文字是行内显示 */
}

/* 响应式调整 */
@media (max-width: 768px) {
    .dean-showcase {
        /* 移动端调整曲线幅度 */
        clip-path: polygon(
            0 0, 
            100% 0, 
            100% 100%, 
            0 calc(100% - 80px)
        );
    }
    
    .dean-showcase::after {
        height: 80px;
        /* 简化移动端的曲线路径 */
        clip-path: path('M0,100 C50,90 150,110 200,100 C250,90 350,110 400,100 L400,0 L0,0 Z');
    }
}


/* -------------------- 陈晖部分重新设计 -------------------- */
.chenhui-showcase {
    width: 100%;
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin-top: 120px;
}

.chenhui-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    height: 600px;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.chenhui-image {
    flex: 0 0 400px; /* 固定宽度为800px */
    position: relative;
    overflow: hidden;
    margin-right: 50px; /* 与介绍盒子保持50px距离 */
    margin-left: 50px; /* 从左侧移动一些 */
}

.chenhui-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s cubic-bezier(0.25, 0.45, 0.45, 0.95);
}

.chenhui-image:hover img {
    transform: scale(1.03);
}

.chenhui-info {
    flex: 0 0 800px;
    background-color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.chenhui-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,62,80,0.1) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.info-content {
    position: relative;
    z-index: 2;
}

.chenhui-info h3 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.chenhui-info .position {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, #2c3e50, transparent);
    margin: 25px 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.achievement-icon {
    width: 24px;
    height: 24px;
    background-color: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-icon i {
    color: white;
    font-size: 0.8rem;
}

.achievement-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    text-align: left;
}

.signature {
    margin-top: 30px;
}

.signature img {
    height: 50px;
    opacity: 0.9;
}

/* 装饰元素 */
.chenhui-showcase::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(44, 62, 80, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.chenhui-showcase::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(44, 62, 80, 0.03);
    border-radius: 50%;
    z-index: 1;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .chenhui-container {
        flex-direction: column;
        height: auto;
    }
    
    .chenhui-image {
        height: 400px;
        flex: 0 0 100%;
    }
    
    .chenhui-info {
        padding: 40px;
        flex: 0 0 100%;
    }
    
    .chenhui-info h3 {
        font-size: 2.2rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .chenhui-showcase {
        padding: 60px 0;
    }
    
    .chenhui-info h3 {
        font-size: 1.8rem;
    }
    
    .chenhui-info .position {
        font-size: 1rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .achievement-item p {
        font-size: 0.9rem;
    }
}

/* -------------------------陈晖部分结束---------------------- */

/* 团队卡片样式 */
.scheme5 {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 80px 8vw;  /* 第一个是上下间距，第二个是左右间距 */
  overflow: hidden;
  text-align: center;
}

.scheme5.backend-team {
    background: linear-gradient(135deg, #0f2027, #1a2a37);
}

.scheme5 h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1.2px;
}

.scheme5 .team-subtitle {
  font-size: 1.2rem;
  margin-bottom: 45px;
  opacity: 0.8;
}

.scheme5 .carousel {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
}

.scheme5 .cards-container {
  display: flex;
  gap: 40px;
  padding-bottom: 15px;
}

.scheme5 .card {
  position: relative;
  flex: 0 0 10px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scheme5 .card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.75);
}

.scheme5 .avatar {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  filter: brightness(0.85);
  display: block;
}

.scheme5 .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  user-select: none;
}

.scheme5 .overlay h3 {
  font-size: 1.5rem;
  margin: 0 0 6px;
  font-weight: 700;
}

.scheme5 .overlay p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.85;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .chenhui-container {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .chenhui-image {
        max-width: 300px;
    }
    
    .chenhui-info {
        text-align: center;
    }
    
    .chenhui-info .achievements p {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .scheme5 h2 {
        font-size: 2.5rem;
    }
    
    .scheme5 .card {
        flex: 0 0 240px;
    }
    
    .scheme5 .avatar {
        height: 250px;
    }
    
    .chenhui-showcase {
        height: auto;
        padding: 30px;
    }
    
    .chenhui-info h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .scheme5 {
        padding: 60px 5vw;
    }
    
    .scheme5 h2 {
        font-size: 2rem;
    }
    
    .scheme5 .team-subtitle {
        font-size: 1rem;
    }
    
    .scheme5 .card {
        flex: 0 0 200px;
    }
    
    .scheme5 .avatar {
        height: 220px;
    }
}
/* ------------------- 前端陪跑部分样式开始 ------------------- */
/* 前端陪跑专家 - 9:16 卡片布局 */
.frontend-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px 225px;/* 第一个是纵向间隔，第二个是横向间隔 */
    max-width: 100%;
    margin: 0 auto;
    justify-content: center; /* 确保内容居中 */
    max-width: 1800px;
}

.frontend-team-grid .card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    background: rgba(255, 255, 255, 0.08);
    aspect-ratio: 9 / 16; /* 保持9:16比例 */
    display: flex;
    flex-direction: column;
    height: 500px; /* 固定高度 */
}

.frontend-team-grid .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.35);
}

.frontend-team-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: 1;
    filter: brightness(0.9);
}

.frontend-team-grid .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    text-align: center;
}

.frontend-team-grid .overlay h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.frontend-team-grid .overlay p {
    margin: 4px 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
    color: #fff;
}



@media (max-width: 992px) {
.frontend-team-grid {
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
}
@media (max-width: 576px) {
.frontend-team-grid {
grid-template-columns: 1fr;
gap: 25px;
}
}
/* --------------------前端陪跑部分样式结束 -------------------- */


/* --------------------后端陪跑部分样式开始 -------------------- */
/* 前后端陪跑专家 - 9:16 卡片布局 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px 225px;/* 第一个是纵向间隔，第二个是横向间隔 */
    max-width: 100%;
    margin: 0 auto;
    justify-content: center; /* 确保内容居中 */
    max-width: 1800px;
  }

.team-grid .card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    background: rgba(255, 255, 255, 0.08);
    aspect-ratio: 9 / 16; /* 保持9:16比例 */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 500px; /* 固定高度 */
}

.team-grid .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.35);
}

.team-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: 1;
    filter: brightness(0.9);
}

.team-grid .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    text-align: center;
}

.team-grid .overlay h3 {
margin: 0;
font-size: 1.1rem;
font-weight: 600;
}

.team-grid .overlay p {
margin: 4px 0 0;
font-size: 0.9rem;
opacity: 0.9;
}



@media (max-width: 992px) {
.team-grid {
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
}
@media (max-width: 576px) {
.team-grid {
grid-template-columns: 1fr;
gap: 25px;
}
}
/* --------------------后端陪跑部分样式结束 -------------------- */
 /* 个人简介弹窗样式 */
 .member-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.member-modal.active {
    opacity: 1;
    visibility: visible;
}

.member-modal-content {
    background: linear-gradient(135deg, #0f2027, #203a43);
    border-radius: 20px;
    width: 80%;
    max-width: 800px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.member-modal.active .member-modal-content {
    transform: translateY(0);
}

.member-modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.member-modal-avatar {
    width: 180px !important;
    height: 180px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    margin-right: 30px;
}

.member-modal-info h3 {
    font-size: 50px;
    margin-bottom: 5px;
    color: white;
    text-align: left; /* 新增：左对齐 */
}

.member-modal-info p {
    font-size: 18px;
    color: #d0a1ff;
    margin-bottom: 10px;
}

.member-modal-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #a1a1ff, transparent);
    margin: 20px 0;
}

.member-modal-body {
    display: flex;
    gap: 30px;
}

.member-modal-bio {
    flex: 1;
    color: #eee;
    line-height: 1.8;
    font-size: 18px;
    text-align: left;
}

.member-modal-stats {
    width: 200px;
}

.stat-item {
    margin-bottom: 15px;
}

.stat-item h4 {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 18px;
    color: white;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
    color: #a1a1ff;
}

/* --------------------前端后端个人简介样式开始 -------------------- */
/* 个人简介弹窗样式 */
.member-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.member-modal.active {
    opacity: 1;
    visibility: visible;
}

.member-modal-content {
    background: linear-gradient(135deg, #0f2027, #203a43);
    border-radius: 20px;
    width: 80%;
    max-width: 800px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.member-modal.active .member-modal-content {
    transform: translateY(0);
}

.member-modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.member-modal-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    margin-right: 30px;
}

.member-modal-info h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: white;
}

.member-modal-info p {
    font-size: 18px;
    /* #a1a1ff */
    color: #d0a1ff;
    margin-bottom: 10px;
}

.member-modal-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #a1a1ff, transparent);
    margin: 20px 0;
}

.member-modal-body {
    display: flex;
    gap: 30px;
}

.member-modal-bio {
    flex: 1;
    color: #eee;
    line-height: 1.8;
    font-size: 16px;
}

.member-modal-stats {
    width: 200px;
}

.card[data-position*="用视觉传达力量，助营销风生水起！"] {
    color: #a1a1ff; /* 橙色 */
    font-weight: bold;
}

.stat-item {
    margin-bottom: 15px;
}

.stat-item h4 {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 18px;
    color: white;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
    color: #a1a1ff;
}

/* --------------------前端后端个人简介样式结束 -------------------- */








/* -------------------- 客户好评部分样式 -------------------- */
.testimonials-section {
    padding: 60px 0 30px; /* 上 左右 下 */
    background-color: #f8f9fa;
}

.testimonials-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    padding: 30px;
    position: relative;
}

/* 修改客户评价部分的标题样式 */
.section-header {
    margin-bottom: 40px; /* 增加主标题和内容之间的间距 */
    text-align: center; /* 确保居中 */
}

.section-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px; /* 增加主标题和副标题之间的间距 */
}

.section-header p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px; /* 增加副标题和下方内容之间的间距 */
    position: relative;
    display: inline-block;
}

/* 可选：添加装饰线 */
.section-header p::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #2c3e50;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #eee;
    font-size: 50px;
    z-index: 1;
}

.testimonial-text {
    position: relative;
    z-index: 2;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.client-details p {
    color: #7f8c8d;
    font-size: 14px;
}

.testimonials-video {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 640px; /* 适当宽度，可根据需求调整 */
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); /* 柔和阴影 */
    background-color: #000; /* 统一黑色背景，避免灰色 */
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px; /* 和容器一致 */
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-btn i {
    color: #2c3e50;
    font-size: 30px;
    margin-left: 5px;
}

.play-btn:hover {
    background-color: rgba(255,255,255,1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-description {
    flex: 1;
}

.video-description h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.video-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.view-more-btn {
    display: inline-block;
    width: 117px; /* 调整为更合适的宽度 */
    height: 43px; /* 设置固定高度为30px */
    line-height: 43px; /* 使文字垂直居中 */
    margin: 0 auto; /* 居中 */
    padding: 0; /* 移除内边距 */
    background-color: #2c3e50; /* 背景色 */
    color: white; /* 文字颜色 */
    text-decoration: none;
    border-radius: 4px; /* 适当圆角 */
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 14px; /* 适当字体大小 */
    margin-bottom: 30px;
    text-align: center; /* 文字水平居中 */
    box-sizing: border-box; /* 确保宽度包含内边距 */
}

.view-more-btn:hover {
    background-color: #1a252f; /* 悬停颜色稍深 */
    transform: scale(1.05); /* 悬停轻微放大 */
}

/* 确保页脚没有额外上边距 */
.footer {
    margin-top: 0;
    padding-top: 0px; /* 如果需要顶部间距，使用padding代替margin */
}


/* 响应式设计 */
@media (max-width: 992px) {
    .intro-container {
        flex-direction: column;
    }
    
    .intro-content {
        max-width: 100%;
        margin: 20px;
        text-align: center;
    }

    .intro-content h2 {
        font-size: 36px;
    }
    
    .intro-content .subtitle {
        font-size: 20px;
    }
    
    .team-member {
        flex-direction: column;
    }
    
    .member-image {
        width: 100%;
        height: 250px;
    }
    
    .testimonials-video {
        flex-direction: column;
    }
    
    .video-description {
        text-align: center;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .yundian-intro .main-title {
        font-size: 8vw;
    }
    
    .yundian-intro .sub-title {
        font-size: 4vw;
    }
    
    .yundian-intro {
        padding-bottom: 15vh;
    }    
    
    .intro-content h2 {
        font-size: 32px;
    }
    
    .intro-content .subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .video-description h3 {
        font-size: 28px;
    }

    .elite-text-box {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .elite-text-box h3 {
        font-size: 24px;
    }
    
    .elite-text-box p {
        font-size: 16px;
    }

    .elite-text-content {
        padding-left: 20px;
    }
    
    .elite-text-content h3 {
        font-size: 24px;
    }
    
    .elite-text-content p {
        font-size: 16px;
    }
    
    .elite-text-content::before {
        width: 3px;
    }
}


/* -------------------------------------页脚开始------------------------------------- */
/* 页脚全屏背景解决方案 */
.footer {
    position: relative;
    width: 100%;
    min-height: 230px;
    overflow: hidden;
    margin-top: 60px;
    z-index: 10;
}

/* 移除原有的背景设置 */
.footer, .footer-link {
    background: none !important;
}

/* 全屏背景容器 */
.footer-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    z-index: -1;
    overflow: hidden;

}

/* 背景图片样式 */
.footer-bg-image {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    object-position: center;

}

/* 确保内容在上层 */
.footer-link {
    position: relative;
    z-index: 1;
}

/* 文字信息样式保持不变 */
.footer-info {
    margin-top: 60px;
    margin-bottom: 10px;
    margin-left: 40px;
    margin-right: 40px;
    line-height: 1.8;
}

.footer-info p {
    margin-bottom: 0px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7); /* 添加文字阴影提高可读性 */
}

.footer-info h3 {
    margin-bottom: 5px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* -------------------------------------页脚结束------------------------------------- */

