        /* 滚动淡入效果 */
        .fade-in-section {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 顶部大图 */
        .top-banner {
            height: 500px;
            background: /*linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), */
                        url('/static/upload/image/20251117/1763357408160544.png');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        
        .top-banner h1 {
            font-size: 48px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        /* 双引号标题 */
        .quote-section {
            padding: 80px 0;
            text-align: center;
            background-color: #f9f9f9;
        }
        
        .quote-img {
            width: 100px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .quote-img img {
            max-width: 100%;
            max-height: 100%;
        }
        
        .quote-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 40px;
            color: #1a5276;
        }
        
        /* 用人理念部分 */
        .philosophy-section {
            position: relative;
        }
        
        .philosophy-item {
            padding: 150px 0; /* 增加高度以容纳更多内容 */
            position: relative;
            overflow: hidden;
            min-height: 600px; /* 确保有足够高度显示15行文本 */
        }
        
        .philosophy-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.8;
            z-index: -1;
        }
        
        .philosophy-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .philosophy-title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 101px;
            color: #a41626;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .title-icon {
            width: 40px;
            height: 40px;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .title-icon img {
            max-width: 100%;
            max-height: 100%;
        }
        
        .philosophy-text {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        
        /* 办公环境轮播图 */
        .office-carousel-section {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        /*.section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 50px;
            color: #a41626;
        }*/
        
        .office-carousel {
            width: 100%;
            height: 500px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .office-slides-container {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 1200px;
        }
        
        .office-slide {
            position: absolute;
            width: 60%;
            height: 400px;
            transition: all 0.8s ease;
            opacity: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .office-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .office-slide.prev {
            transform: translateX(-80%) scale(0.85);
            opacity: 0.7;
            filter: blur(3px);
            z-index: 1;
        }
        
        .office-slide.active {
            transform: translateX(0) scale(1);
            opacity: 1;
            filter: blur(0);
            z-index: 2;
        }
        
        .office-slide.next {
            transform: translateX(80%) scale(0.85);
            opacity: 0.7;
            filter: blur(3px);
            z-index: 1;
        }
        
        .carousel-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .carousel-control {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .carousel-control.active {
            background-color: white;
        }
        
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.7);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s ease;
        }
        
        .carousel-arrow:hover {
            background: rgba(255, 255, 255, 0.9);
        }
        
        .carousel-arrow.prev {
            left: 300px;
        }
        
        .carousel-arrow.next {
            right: 300px;
        }
        
        /* 团队氛围轮播图 */
        .team-carousel-section {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .team-carousel {
            width: 100%;
            height: 500px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .team-slides-container {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
                max-width: 1200px;
        }
        
        .team-slide {
            position: absolute;
            width: 70%;
            height: 400px;
            transition: all 0.8s ease;
            opacity: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .team-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-slide.active {
            opacity: 1;
            z-index: 2;
        }
        
        /* 招聘信息部分 */
        .recruitment-section {
            padding: 100px 0;
            background-color: #f9f9f9;
        }
        
        .recruitment-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            gap: 40px;
        }
        
        .recruitment-item {
            flex: 1;
            max-width: 500px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .recruitment-item:hover {
            transform: translateY(-10px);
        }
        
        .recruitment-item a {
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
        }
        
        .recruitment-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .recruitment-title {
            text-align: center;
            font-size: 24px;
            padding: 20px;
            background-color: #a41626;
            color: white;
        }