/* -----------------------导航栏样式开始------------------------- */
        /* 导航栏容器 */
        .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;
            width: 100%;
            /* 这行代码是导航栏内容均居中显示 */
            /* justify-content: space-between; */
            align-items: center;
        }

        /* 左侧字体向右移动 */
        .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: 1599px;
    height: 427.5px;
    margin: 0 auto;
    padding-top: 100px;
    margin-bottom: 20px; /* 增加下边距 */
}
.banner-img{
    width: 100%;
    position: absolute;
    left: 50%;
    transform:translateX(-50%);
    margin: 0;
}

.banner>.wrap{
    position: relative;
}
/* -----------------------海报结束------------------------- */


/* ---------------------产品导航栏区域开始-------------------- */
/* 内容区域 */
.content {
    width: 1600px;
    /* height: 3000px; */
    /* 这里调整距离上面的海报的距离 */
    margin: 390px auto 20px auto; /* 修改上边距为120px */
    display: flex;
    /* background-color: #f1e8e1; */
    border: 5px solid #e5e5e5;
    border-left: none;
    border-right: none;
}

/* 左侧导航 */
.left-nav {
    width: 230px;
    border-right: 1px solid #e5e5e5;
    /* 上右下左 */
    padding: 15px 0;
}

.nav-title {
    font-size: 30px;
    font-weight: bold;
    color: rgb(163, 175, 62);
    /* 上右下左  用来调节产品简介的*/
    padding: 25px 20px 15px 20px;
    /* border-left: 4px solid rgb(79, 195, 66); */
    margin-bottom: 18px;
    /* border-bottom: 2px solid rgb(250, 250, 250); */
}

/* .nav-title li a{
    font-size: 30px;
    font-weight: bold;
    color: rgb(79, 195, 66); */
    /* 上右下左 */
    /* padding: 20px 20px 20px 20px;
    border-left: 3px solid rgb(66, 197, 97);
    margin-bottom: 40px;
    border-bottom: 2px solid rgb(250, 250, 250);
} */


.side-menu {
    list-style: none;
    margin-bottom: 10px;
}


/* 产品简介的盒子边框和高度 */
.side-menu li {
    border-bottom: 2px solid #f0f0f0;
    /* 这个可以控制左侧小盒子的高度 */
    height: 128px;
    border-top: 4px solid #f0f0f0;
    /* background-size: cover;
    background-position: center; */
}

/* --------------------给每个盒子加背景图片开始----------------- */

/* --------------------给每个盒子加背景图片结束----------------- */

.side-menu li a {
    display: block;
    /* 上右下左 这个控制左侧盒子的白色部分 */
    padding: 50px 0px 50px 0px;
    color: #faf7f7;
    font-size: 25px;
    font-weight: 700;
    transition: all 0.3s;
    
}

/* 背景颜色 */
.side-menu li a:hover, .side-menu li.active a {
    color: rgb(104, 194, 59);
    background-color: rgba(240, 238, 238, 0.1);

    /* 左侧导航栏盒子右边颜色 */
    border-right: 5px solid rgb(104, 194, 59);
}

/* 右侧内容 */
.right-content {
    flex: 1;
    padding: 20px 10px 10px 20px;
    min-height: 600px;
}

.content-title {
    font-size: 35px;
    color: rgb(54, 189, 85);
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1.5px solid #eee;
}

.content-section {
    margin-bottom: 30px;
    line-height: 1.8;
}

.content-section h2 {
    font-size: 20px;
    color: #fefdfd;
    margin: 20px 0 15px;    
    padding-left: 10px;
    border-left: 3px solid rgb(199, 187, 77);
}

.content-section p {
    margin-bottom: 15px;
    text-indent: 2em;
}

/* ------------------------放文件盒子开始-------------------------- */
        /* PDF显示框的容器样式 */
            .pdf-container {
                position: absolute;
                width: 1280px; /* 宽度 */
                height: 2870px; /* 高度 */
                border: 10px solid rgb(8, 93, 32); /* 墨绿色边框 */
                box-sizing: border-box;
                overflow: auto; /* 启用滚动条 */
                /* 初始居中 */
                /* 这里调整pdf距离上面的距离 */
                top: 187%;    
                left: 54.5%;
                transform: translate(-50%, -50%);
                cursor: move; /* 鼠标悬停时显示为移动图标 */
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: #f4f4f4;
         
            }

        /* iframe 样式 */
        .pdf-container iframe {
            width: 100%;
            height: 100%;
            border: none; /* 去掉 iframe 的默认边框 */
        }

/* ------------------------放文件盒子结束-------------------------- */

/* ---------------------左侧导航栏下面的图片开始--------------- */
  /* 基础样式 - 图片容器 */
  .pt-left-bgt1 {
    position: relative; /* 为绝对定位的图片提供参照 */
    width: 227px;       /* 根据实际需求调整 */
    /* 根据实际需求调整 */
    height: 565px;     
    /* 可视化容器边界，实际使用可移除 */
    /* border: 1px dashed #ccc;  */
    margin-top: 18px;
  }
  
  /* 可调节图片样式 */
  .pt-left-bgt1 img {
    /* 定位控制 */
    position: absolute;
    top: 275px;          /* 垂直居中基准 */
    left: 115px;         /* 水平居中基准 */
    transform: translate(-50%, -50%); /* 精确居中 */
    
    /* 尺寸控制 */
   /* 可调整图片显示宽度 */
    width: 227px;     
    height: auto;      /* 保持比例 */
    
    /* 透明度控制 */
    opacity: 0.7;      /* 0-1之间调整透明度 */
    
    /* 其他效果 */
    /* 可选：混合模式 */
    /* mix-blend-mode: multiply;  */
    /* 平滑过渡效果 */
    /* transition: all 0.3s ease;  */
  }


 /*------------------------ 图片2---------------------------- */
  .pt-left-bgt2 {
    position: relative; /* 为绝对定位的图片提供参照 */
    width: 227px;       /* 根据实际需求调整 */
    /* 根据实际需求调整 */
    height: 565px;     
    /* 可视化容器边界，实际使用可移除 */
    /* border: 1px dashed #ccc;  */
    margin-top: 18px;

  }
  
  /* 可调节图片样式 */
  .pt-left-bgt2 img {
    /* 定位控制 */
    position: absolute;
    top: 275px;          /* 垂直居中基准 */
    left: 115px;         /* 水平居中基准 */
    transform: translate(-50%, -50%); /* 精确居中 */
    
    /* 尺寸控制 */
   /* 可调整图片显示宽度 */
    width: 227px;     
    height: auto;      /* 保持比例 */
    
    /* 透明度控制 */
    opacity: 0.7;      /* 0-1之间调整透明度 */
    
    /* 其他效果 */
    /* 可选：混合模式 */
    /* mix-blend-mode: multiply;  */
    /* 平滑过渡效果 */
    /* transition: all 0.3s ease;  */
  }
  
/*------------------------ 图片3---------------------------- */
.pt-left-bgt3 {
    position: relative; /* 为绝对定位的图片提供参照 */
    width: 227px;       /* 根据实际需求调整 */
    /* 根据实际需求调整 */
    height: 565px;     
    /* 可视化容器边界，实际使用可移除 */
    /* border: 1px dashed #ccc;  */
    margin-top: 18px;

  }
  
  /* 可调节图片样式 */
  .pt-left-bgt3 img {
    /* 定位控制 */
    position: absolute;
    top: 275px;          /* 垂直居中基准 */
    left: 115px;         /* 水平居中基准 */
    transform: translate(-50%, -50%); /* 精确居中 */
    
    /* 尺寸控制 */
   /* 可调整图片显示宽度 */
    width: 227px;     
    height: auto;      /* 保持比例 */
    
    /* 透明度控制 */
    opacity: 0.7;      /* 0-1之间调整透明度 */
    
    /* 其他效果 */
    /* 可选：混合模式 */
    /* mix-blend-mode: multiply;  */
    /* 平滑过渡效果 */
    /* transition: all 0.3s ease;  */
  }

  /*------------------------ 图片4---------------------------- */
.pt-left-bgt4 {
    position: relative; /* 为绝对定位的图片提供参照 */
    width: 227px;       /* 根据实际需求调整 */
    /* 根据实际需求调整 */
    height: 565px;     
    /* 可视化容器边界，实际使用可移除 */
    /* border: 1px dashed #ccc;  */
    margin-top: 18px;

  }
  
  /* 可调节图片样式 */
  .pt-left-bgt4 img {
    /* 定位控制 */
    position: absolute;
    top: 275px;          /* 垂直居中基准 */
    left: 115px;         /* 水平居中基准 */
    transform: translate(-50%, -50%); /* 精确居中 */
    
    /* 尺寸控制 */
   /* 可调整图片显示宽度 */
    width: 227px;     
    height: auto;      /* 保持比例 */
    
    /* 透明度控制 */
    opacity: 0.7;      /* 0-1之间调整透明度 */
    
    /* 其他效果 */
    /* 可选：混合模式 */
    /* mix-blend-mode: multiply;  */
    /* 平滑过渡效果 */
    /* transition: all 0.3s ease;  */
  }
/* ---------------------左侧导航栏下面的图片结束--------------- */




/* -----------------给分别每个小盒子添加图片开始---------------- */

/* -----------------给分别每个小盒子添加图片开始---------------- */

/* ---------------------产品导航栏区域结束-------------------- */











/* ------------------------师演匠联合创始人----------------------- */
 /* 可调透明度的背景 */
 .background-layer {
    padding-top: 800px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/大背景图.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.8; /* 透明度调节 0-1 */
    z-index: -1;
}

/* 主容器 */
.lianchuang-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 40px;
}

/* 标题样式 */
.page-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 30px;
}

.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);
}

.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;
}

.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;
}

/* 标题样式 */
.peipao-page-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 30px;
}

.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);
}

.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;
}


/* ------------------------师演匠陪跑合作企业-------------------- */








.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;
}

/* Logo容器 */
/* .footer-logos {
    display: flex; */
    /* 调整这个值来改变Logo垂直位置 */
     /* 上间距 */
    /* margin-top: 30px; */
    /* 下间距 */
    /* margin-bottom: 30px;
} */

/* 单个Logo样式 */
/* .footer-logo-item {
    width: 60px;
    height: 60px;
    margin: 0 15px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
} */

/* .footer-logo-item img {
    max-width: 80%;
    max-height: 80%; */
    /* 使Logo变白 */
    /* filter: brightness(0) invert(1); 
} */

/* 版权信息 */
/* .copyright {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 14px;

} */

/* -----------------------公司愿景开始------------------------- */
.yuanjing {
    width: 1899px;
    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;
    }
}

