/* -----------------------导航栏样式开始------------------------- */
        /* 导航栏容器 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* padding: 10 5%; */
            z-index: 1000;
            /* 背景图片设置 */
            background-image: url('../images/导航栏长图.jpg');
            background-size: cover;
            /* background-position: center; */
            /* 默认透明度 */
            opacity: 0.9;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        /* 导航栏内容 */
        .nav-content {
            display: flex;
            align-items: center; /* 垂直居中 */
            justify-content: space-between; /* 左右分布 */
        }

        /* 左侧字体向右移动 */
        .navbar .nav-content .nav-links{
            float: left;
            padding: 50px;
        }

        /* 右侧字体向右移动 */
        .navbar .nav-content .right-nav-links{
            float: left;
            padding: 35px;
        }

        
        /* Logo样式 */
        .logo img{
            padding-left: 100px;
            float: left;
        }
        
        /* 导航链接 */
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin:  0 15px;
            float: left;
        }

        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 20px;
            font-weight: 700;
            text-shadow: 0 0 5px rgba(0,0,0,0.5);
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #FFD700;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #FFD700;
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        
        /* 右侧导航栏的字体 */
        .right-nav-links {
            position: absolute;
            right: 3%;
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .right-nav-links li {
            /* 上右下左 */
            margin:  0 10px;
            float: right;
            }

        /* 右侧字体 */
        .nav-content .right-nav-links{
            padding-left: 90px;
        }


        .right-nav-links a {
        color: white;
        text-decoration: none;
        font-size: 20px;
        font-weight: 700;
        text-shadow: 0 0 5px rgba(0,0,0,0.5);
        transition: color 0.3s;
        padding: 5px 0;
        position: relative;
        }

        .right-nav-links a:hover {
        color: #FFD700;
        }

        .right-nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #FFD700;
        transition: width 0.3s;
        }

        .right-nav-links a:hover::after {
        width: 100%;
        }
        /* 右侧导航栏的字体结束 */

        .nav-content .right-nav-links{
            padding-left: 90px;
        }

        /* 搜索框容器 */
        .search-container {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 30px;
            /* 上右下左 */
            padding: 5px 15px;
            transition: all 0.3s;
        }

        .nav-content .search-container{
            margin-left: 5px;
        }
        
        .search-container:hover {
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        
        /* 搜索输入框 */
        .search-box {
            width: 550px;
            height: 35px;
            padding: 0 10px;
            border: none;
            background: transparent;
            outline: none;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        /* 搜索框缩小之后的宽度 */
        .search-box:focus {
            width: 270px;
        }
        

        /* 搜索按钮 */
        .search-btn {
            background: none;
            border: none;
            cursor: pointer;
            width: 24px;
            height: 24px;
            background-image: url('https://cdn-icons-png.flaticon.com/512/149/149852.png');
            background-size: contain;
            background-repeat: no-repeat;
            transition: transform 0.3s;
        }
        
        .search-btn:hover {
            transform: scale(1.1);
        }
        
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .nav-links li {
                margin: 0 10px;
            }
            
            .search-box {
                width: 150px;
            }
            
            .search-box:focus {
                width: 180px;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 0 20px;
                height: 70px;
            }
            
            .logo {
                font-size: 20px;
            }
            
            .nav-links {
                display: none; /* 移动端可以替换为汉堡菜单 */
            }
            
            .search-container {
                margin-left: auto;
            }
        }
/* -----------------------导航栏样式结束------------------------- */




/* -----------------------海报开始------------------------- */
.banner {
    width: 80%;          /* 横向撑满容器 */
    max-width: 100vw;     /* 最大不超过视口宽度 */
    height: 80%;         /* 高度可自定义 */
    margin: 0 auto;
    padding-top: 20px;
    position: relative;
    overflow: hidden;     /* 隐藏溢出部分 */
}

/* 容器保持宽高比 (7346/14998 ≈ 0.49) */
.banner > .wrap {
    width: 100%;
    position: relative;
    padding-top: 49%;     /* 根据图片比例计算 */
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;         /* 填满容器 */
    object-fit: cover;    /* 保持比例填充 */
    object-position: center; /* 居中显示 */
}
/* -----------------------海报结束------------------------- */



/* ----------------------图片样式光标从上到下、圆角--------------------- */
.team-member {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 15px;
  }
  
  .team-member::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: translateY(-100%);
    pointer-events: none;
    transition: transform 0.5s ease;
    border-radius: 15px; 
  }
  
  .team-member:hover::before {
    transform: translateY(100%);
    border-radius: 15px; 
  }
  


/* 导航栏logo特殊处理 - 可能需要去除圆角 */
.logo img {
    border-radius: 0;
}

/* 团队成员图片圆角 */
.member-image {
    border-radius: 15px; /* 更大的圆角 */
}

/* 模态框图片圆角 */
.modal-image {
    border-radius: 10px; /* 适中的圆角 */
}

/* logo网格中的图片圆角 */
.logo-img, .peipao-logo-img {
    border-radius: 10px;
}

/* 页脚图片特殊处理 */
.footer img, .yuanjing-img {
    border-radius: 0; /* 页脚图片通常不需要圆角 */
}
/* ----------------------图片样式光标从上到下、圆角--------------------- */



/* -----------------------员工导航栏-------------------------------- */
    /* 在现有的 .lianchuang-container 类中添加ID样式 */
    #lianchuangren {
        /* 防止导航栏遮挡内容 */
        scroll-margin-top: 100px; 
    }

    /* 为其他部分添加类似的ID样式 */
    #zhinangtuan {
        scroll-margin-top: 180px;
        }
    #shouxi {
        scroll-margin-top: 180px;
        }
    #gaojihehuoren {
        scroll-margin-top: 180px;
        }
    #fanyinshan {
        scroll-margin-top: 180px;
        }
    #zhixingdaoshi {
    scroll-margin-top: 180px;
    }

        /* Global Styles */
        :root {
            --primary-color: #003366;
            --secondary-color: #e31937;
            --light-gray: #f5f5f5;
            --dark-gray: #333;
        }
        
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            color: #333;
        }
        
        a {
            text-decoration: none;
            color: var(--primary-color);
        }
        
        .people-container {
            max-width: 1200px;
            margin: 0 auto;
            /* 上右下左 */
            padding: 40px 20px 20px 20px;
        }
        
        /* Header */
        /* 这个是单独控制导航栏的 */
        header {
            background-color: rgb(246, 242, 242);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position:relative;
            top: 25px;
            /* 这个是把该盒子放在最前面的意思（图层从下到上100层） */
            z-index: 100;
            opacity:0.9;
        }
        
        /* 这个盒子是控制导航栏的宽度和字体的位置的 */
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* 这个盒子是控制导航栏的宽度和字体的位置的 */
            padding: 20px 0px 20px 0px;
            /* color: #0dc36b; */
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        /* Main Team Grid */
        .team-header {
            /* 这是控制黄色的字距离上面的字的距离 */
            padding-top: 5px;
            text-align: center;
        }
        
        .team-header h1 {
            font-size: 36px;
            /* 这个是控制黄色的字距离底下的白字的距离 */
            margin-bottom: 15px;
            color: rgb(187, 228, 126);
        }
        
        .team-header p {
            max-width: 700px;
            margin: 0 auto;
            color: white;
        }   
        

/* --------------------员工导航栏加下拉菜单和下划线------------------------- */
        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        nav ul li {
            margin-left: 50px;
            position: relative; /* 为下拉菜单定位做准备 */
        }
        
        nav ul li a {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            padding: 10px 0;
            position: relative;
            transition: all 0.3s ease;
            display: block;
        }
        
        /* 鼠标悬停时主菜单项样式 */
        nav ul li a:hover {
            color: var(--secondary-color);
        }
        
        /* 主菜单项下划线效果 */
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--secondary-color);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 100%;
        }
        
        
        /* 当前选中项的样式 */
        nav ul li a.active {
            color: var(--secondary-color);
        }
        
        
        /* 下拉菜单样式 */
        nav ul li ul {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            max-width: 600px; /* 限制最大宽度 */
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 5px 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            flex-wrap: wrap; /* 允许多行显示 */
        }
        
        nav ul li:hover ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            display: flex;
            flex-wrap: wrap;
        }
        
        /* 下拉菜单项样式 */
        nav ul li ul li {
            margin: 0;
            border-bottom: none; /* 移除边框下划线 */
            flex: 1 0 200px; /* 每项最小宽度200px，自动换行 */
            min-width: 50px; /* 确保每列有足够宽度 */
        }
        
        nav ul li ul li:last-child {
            border-bottom: none;
        }
        
        nav ul li ul li a {
            padding: 8px 15px;
            color: var(--dark-gray);
            font-weight: 500;
            white-space: nowrap;
            position: relative;
        }
        
        nav ul li ul li a:hover {
            color: var(--secondary-color);
            background-color: #f9f9f9;
        }
        
        /* 下拉菜单项下划线效果 */
        nav ul li ul li a::after {
            bottom: 3px;
            height: 1px;
        }

        /* 响应式调整 */
    @media (max-width: 768px) {
    nav ul li ul {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
    }
    
    nav ul li:hover ul {
        display: block;
    }
    
    nav ul li ul li {
        flex: 1 0 100%;
    }
}
/*-------------------------让导航栏一直在顶部--------------------------*/
/* 修改现有的 header 样式 */
header {
    position: fixed; /* 固定在顶部 */
    top: 80px;          /* 距离顶部 0 */
    left: 0;         /* 距离左侧 0 */
    width: 100%;     /* 宽度 100% */
    z-index: 1000;   /* 确保导航栏在最上层 */
    background-color: rgb(182, 186, 186); /* 背景色（可选） */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8); /* 阴影效果（可选） */
    opacity: 0.9;
}

/* 调整内容区域的上边距，防止被导航栏遮挡 */
body {
    padding-top: 60px; /* 根据导航栏高度调整（如 60px） */
}

/* 确保导航栏内容居中 */
.header-container {
    max-width: 1200px; /* 与页面内容宽度一致 */
    margin: 0 auto;    /* 居中 */
    padding: 0 20px;   /* 左右内边距 */
}
/*-------------------------让导航栏一直在顶部--------------------------*/



/*----------------- 针对联合创始人这样一行只有三个人的单独显示---------- */
.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
/*----------------- 针对联合创始人这样一行只有三个人的单独显示---------- */



/*-------------------- 针对赵志霖这样一行只有一个人的单独显示----------------- */
        /* 修改现有的 .team-grid 样式 */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            padding: 30px 0 60px;
            place-items: center;
        }
            
        /* 新增：当只有一个成员时的特殊样式 */
        .team-grid.single-member {
            grid-template-columns: 1fr; /* 只显示一列 */
            justify-items: center; /* 水平居中 */
            max-width: 300px; /* 限制最大宽度 */
            margin: 0 auto; /* 水平居中 */
        }
/*-------------------- 针对赵志霖这样一行只有一个人的单独显示----------------- */
        



/*-------------------- 针对梵银山这样一行只有三个人的单独显示----------------- */
/* 修改这部分样式 */
.team-grid.fanyinshan-member {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 0;
    max-width: 5000px;
    margin: 0 auto;
}

/* 确保团队成员卡片宽度一致 */
.team-grid.fanyinshan-member .team-member {
    width: 300px;
    margin: 0 15px;
}

/* 响应式调整 */
@media (max-width: 900px) {
    .team-grid.fanyinshan-member {
        justify-content: space-around;
    }
}

@media (max-width: 600px) {
    .team-grid.fanyinshan-member {
        flex-direction: column;
        align-items: center;
    }
    .team-grid.fanyinshan-member .team-member {
        margin-bottom: 30px;
    }
}
/*------------- 针对梵银山这样一行只有三个人的单独显示----------------- */



/*-------------------导师点开页面导师名字下面字体居中开始--------------------- */
.bio-container {
    display: flex;
    justify-content: center; /* 整体水平居中 */
  }
  .bio {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 每行文字左对齐 */
    gap: 4px;
  }

/*-------------------导师点开页面导师名字下面字体居中结束--------------------- */







/*--------------------------------导师点开页面开始--------------------------- */

        .team-member {
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
        }
        
        .team-member:hover {
            transform: translateY(-5px);
        }
        
        .member-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }
        
        .member-info {
            padding: 20px 0;
        }
        
        .member-info h3 {
            margin: 0;
            font-size: 18px;
            color: white;

        }
        
        .member-info p {
            margin: 5px 0 0;
            color: white;
        }
        




/* 模态框整体样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    width: 85%;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-header {
    padding: 20px 30px;
    background: linear-gradient(135deg, #1a3a8f, #0d2255);
    color: white;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.close-modal {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #f1f1f1;
    transform: scale(1.1);
}

.modal-body {
    padding: 0;
}

.modal-main {
    display: flex;
    min-height: 500px;
}

/* 左侧照片区域 */
.modal-image-container {
    flex: 0 0 35%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.modal-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

/* 右侧信息区域 */
.modal-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.modal-info-header {
    margin-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
}

.position {
    font-size: 22px;
    color: #1a3a8f;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.bio-container {
    margin-top: 15px;
}

.bio-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.bio-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.bio-list li:before {
    content: "•";
    color: #1a3a8f;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* 详情部分样式 */
.modal-details {
    flex: 1;
    overflow-y: auto;
}

.detail-section {
    margin-bottom: 25px;
}

.section-title {
    font-size: 18px;
    color: #1a3a8f;
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #eaeaea;
    font-weight: 600;
}

.section-content {
    padding-left: 10px;
}

blockquote {
    border-left: 4px solid #1a3a8f;
    padding-left: 15px;
    margin: 0 0 15px 0;
    font-style: italic;
    color: #333;
    font-size: 16px;
}

.section-text {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-text p {
    text-align: left; /* 确保文本左对齐 */
    margin: 0; /* 移除默认的段落外边距 */
    padding: 0; /* 移除默认的段落内边距 */
    line-height: 1.6; /* 设置合适的行高 */
    word-wrap: break-word; /* 允许长单词或URL换行 */
    white-space: normal; /* 确保文本正常换行 */
    text-indent: 28px; /* 首行回退 20px，相当于额外缩进 2 字符 */
}

.expertise-list, .campus-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.expertise-list li, .campus-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.expertise-list li:before, .campus-list li:before {
    content: "✓";
    color: #1a3a8f;
    font-size: 14px;
    position: absolute;
    left: 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .modal-content {
        width: 90%;
        margin: 10% auto;
    }
    
    .modal-main {
        flex-direction: column;
    }
    
    .modal-image-container {
        flex: 0 0 auto;
        padding: 20px;
    }
    
    .modal-image {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .modal-content {
        width: 95%;
        margin: 15% auto;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-image-container, .modal-info {
        padding: 15px;
    }
}









        




     
/* -----------------------员工介绍结束-------------------------------- */




/* ------------------------师演匠联合----------------------- */
 /* 可调透明度的背景 */
 .background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;    /* 使用视口宽度单位 */
    height: 100vh;   /* 使用视口高度单位 */
    background-image: url('../images/员工页背景图6.jpg');
    background-size: cover;      /* 覆盖整个容器 */
    background-position: 100%; /* 图片居中显示 */
    background-repeat: no-repeat; /* 防止重复 */
    opacity: 0.8;
    z-index: -1;
    margin: 0;       /* 移除默认边距 */
    padding: 0;      /* 移除内边距 */
}

/* 主容器 */
.lianchuang-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 40px;
    background: transparent; /* 添加这行使背景透明 */
    position: relative; /* 添加相对定位 */
    z-index: 1; /* 确保在背景层之上 */
}

/* 标题样式 */
.page-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 30px;
    z-index: 1; /* 确保在背景层之上 */
    background: transparent; /* 添加这行使背景透明 */
    box-shadow: none !important; /* 移除阴影 */
}

.page-header h1 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #daf082;
    text-shadow: 0 0 10px rgba(78, 203, 168, 0.3);
    background: transparent; /* 确保无背景 */
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.page-header p {
    font-size: 1.4rem;
    max-width: 1400px;
    margin: 0 auto;
    line-height: 1.6;
    color: #0dc36b;
    background: transparent; /* 确保无背景 */
}

.beijingtu{
    width: 1400px;
    float: top;
}


/* 轮播logo样式 */
.trusted-section {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.trusted-text {
    font-size: 24px;
    color: #141413;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.logo-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    margin: 0 auto;
}

.logo-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    flex-shrink: 0;
    gap: 15px;
}

.logo-item img {
    max-height: 80px;
    max-width: 180px;
    /* 移除grayscale滤镜，保持原色 */
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-item .logo-text {
    font-size: 16px;
    color: #daf082;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* 修改悬停效果，只保留轻微的放大效果 */
.logo-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.logo-item:hover .logo-text {
    color: #fff;
    transform: translateY(5px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 为了无缝循环，我们复制一份logo */
.logo-track::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 50%);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .trusted-text {
        font-size: 18px;
    }
    
    .logo-item {
        height: 120px;
        gap: 10px;
    }
    
    .logo-item img {
        max-height: 60px;
        max-width: 140px;
    }
    
    .logo-item .logo-text {
        font-size: 14px;
    }
    
    .logo-track {
        gap: 50px;
    }
}




/* ------------------------师演匠陪跑合作企业--------------------- */
/* 主容器 */
.peipao-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 40px;
    background: transparent; /* 添加这行使背景透明 */
    position: relative; /* 添加相对定位 */
    z-index: 1; /* 确保在背景层之上 */
}

/* 标题样式 */
.peipao-page-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 30px;
    z-index: 1; /* 确保在背景层之上 */
    background: transparent; /* 添加这行使背景透明 */
    box-shadow: none !important; /* 移除阴影 */

}

.peipao-page-header h1 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffaf58;
    text-shadow: 0 0 10px rgba(143, 98, 189, 0.3);
    background: transparent; /* 确保无背景 */
}

.peipao-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.peipao-page-header p {
    font-size: 1.4rem;
    max-width: 1400px;
    margin: 0 auto;
    line-height: 1.6;
    color: #ca93e8;
    background: transparent; /* 确保无背景 */
}
/* ------------------------师演匠陪跑合作企业-------------------- */








.footer {
    /* 核心背景设置 */
    background-image: url('../images/良心长图.jpg');
    /* 必须修改部分 */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* 容器尺寸保障 */
    display: block;
    width: 100%;
    min-height: 245px;
    /* 必须大于背景图片高度 */
    /* 防止其他样式覆盖 */
    background: none !important;
    /* 强制清除旧背景 */
    background-image: url('../images/良心长图.jpg') !important;
    /* 二次保险 */
    margin-top: 60px;

}





/* 控制底下图片的高度 */
.footer-link{
    width: 100%;
    /* height: 20px; */
    padding: 10px 0;
}

/* 页脚模块 end */
 /* 页脚容器 */



/* 文字信息部分 - 位置可调 */
.footer-info {
    /* 调整这些值来改变文字位置 */
    margin-top: 10px; /* 上间距 */
    margin-bottom: 10px; /* 下间距 */
    margin-left: 40px; /* 左间距 */
    margin-right: 40px; /* 右间距 */
    line-height: 1.8;

}

.footer-info p {
    margin-bottom: 0px;
    color: #fff;
}

.footer-info h3 {
    margin-bottom: 5px;
    color: #fff;
}



/* -----------------------公司愿景开始------------------------- */
.yuanjing {
    width: 100%;
    height: 80px;
    /* margin-top: 0px; */
    padding-top: 0px;


}


/* -----------------------公司愿景结束------------------------- */
/* 响应式设计 */
@media (max-width: 1899px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-info {
        margin: 20px 0;
        text-align: center;
    }
    
    .footer-logos {
        margin: 20px 0;
        justify-content: center;
    }
}

