/* -----------------------导航栏样式开始------------------------- */
        /* 导航栏容器 */
        .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: 100%;
    height: 100%;
    margin: 0 auto;
    padding-top: 100px;
 
}
.banner-img{
    width: 100%;
    position: absolute;
    left: 50%;
    transform:translateX(-50%);
    margin: 0;
}

.banner>.wrap{
    position: relative;
}
/* -----------------------公司背景墙结束------------------------- */




/* -----------------------公司文化书开始------------------------- */
body {
    background-color: #222;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.book-container {
    position: relative;
    width: 90%;
    max-width: 2000px;
    height: 1500px;
    margin-bottom: 30px;
    margin-top: 800px;
}

.book {
    position: relative;
    width: 100%;
    height: 100%;
}

.page {
    position: absolute;
    width: 48%;
    height: 100%;
    top: 0;
    box-sizing: border-box;
}

.left-page {
    left: 0;
    z-index: 10;
}

.right-page {
    right: 0;
    z-index: 15;
}

.page-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a 0%, #000 100%);
    border: 2px solid #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    border-radius: 5px 15px 15px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.content-area {
    width: 90%;
    height: 90%;
    border: 2px solid #d4af37;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.content-area img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gold-decoration {
    position: absolute;
    border: 0px solid #d4af37;
}

.decoration-1 {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 70px;
}

.decoration-2 {
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 40px;
}

.book-nav-btn {
    position: absolute;
    bottom: 20px;
    width: 80px;
    height: 40px;
    background: linear-gradient(145deg, #1a1a1a 0%, #000 100%);
    border: 2px solid #d4af37;
    color: #d4af37;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-nav-btn:hover {
    background: linear-gradient(145deg, #000 0%, #1a1a1a 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.book-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#prev-btn {
    left: calc(50% - 165px); /* 调整到中间偏左位置 */
}

#next-btn {
    left: calc(50% + 90px); /* 调整到中间偏右位置 */
}

.page-indicator {
    position: absolute;
    bottom: 30px;
    color: #d4af37;
    font-size: 16px;
    z-index: 20;
}

#left-page-indicator {
    left: 30px;
}

#right-page-indicator {
    right: 20px;
}

.spine {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, #000 0%, #1a1a1a 100%);
    border-left: 5px solid #d4af37;
    border-right: 5px solid #d4af37;
    transform: translateX(-50%);
    z-index: 5;
}

.hidden {
    display: none;
}
/* -----------------------公司文化书结束------------------------- */


/* ------------------------师演匠联合创始人----------------------- */
 /* 可调透明度的背景 */
 .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;
}



/* -----------------------公司愿景开始------------------------- */
.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;
    }
}

