     :root {
            --e-global-color-12c561b: #ffcc00;
            --e-global-color-be7e877: #265569;
            --bg-dark: #0a2342;
            --text-light: #ffffff;
        }

   .banner-a-button{
    fill: var(--e-global-color-be7e877);
    color: var(--e-global-color-be7e877)  !important;
    background-color: var(--e-global-color-12c561b);
    border-radius: 30px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    border-color: #353434;
    font-size: 15px;
    text-align: center;
    line-height: 1;;
    padding: 7px 20px;
    margin: 10px 0px;
    text-decoration: none  !important;
   }
   .banner-p-text{
           color: var(--e-global-color-12c561b);
    font-family: "Noto Sans HK", Sans-serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 90px;
    text-shadow: 1px 4px 10px rgba(0, 0, 0, 0.81);
   }
   .cardcontainer {
      background-color: #0a3b52;
      color: white;
      text-align: center;
      max-width: 100%;
      padding: 0 20px;
      height: 700px;
    }

 .cardcontainer h1 {
    font-size: 35px;
    color: white;
    margin-bottom: 25px;
    display: inline-block;
    padding-bottom: 25px;
    position: relative; /* 为伪元素提供定位基准 */
}

.cardcontainer h1::after {
    content: ""; /* 必须内容 */
    position: absolute;
    bottom: 0; /* 定位到底部 */
    left: 50%; /* 从中间开始 */
    transform: translateX(-50%); /* 回退一半自身宽度，实现居中 */
    width: 80%; /* 边框长度，可根据需要调整，例如60% */
    height: 4px; /* 边框高度，与原样式保持一致 */
    background-color: #f1c40f; /* 边框颜色 */
}
 
        .services {
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            /* margin: 0 auto; */
        }

        .service-item {
            flex: 0 0 calc(100% / 6);
            padding: 20px;
            position: relative;
            transition: all 0.3s ease;
            height: 580px;
            /* display: flex;
            flex-direction: column;
            justify-content: space-between; */
        }

        .service-item:nth-child(odd):hover {
            background: linear-gradient(40deg, var(--e-global-color-12c561b) 76%, var(--e-global-color-be7e877) 0%);
            color: #fff;
        }

        .service-item:nth-child(even):hover {
            background: linear-gradient(-40deg, var(--e-global-color-12c561b) 76%, var(--e-global-color-be7e877) 0%);
            color: #fff;
        }

        .service-icon {
            text-align: center;
            margin: 15px;
            font-size: 40px;
            display: flex;
            justify-content: center;
            align-items: center
        }

        .service-title {
            text-align: center;
            font-weight: bold;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .service-description {
            font-size: 14px;
            line-height: 1.4;
            font-weight: 400;
        }
        /* 雇佣中心介绍样式 */
        
        .parallax-container {
            position: relative;
            width: 100%;
            height: 400px;
            /* margin: calc(50vh - 200px) 0; */
            overflow: hidden;
        }
        .background-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 150%;
            height: 100%;
               background-size: 115% auto;
             background-position: 125% 48%;
            transition: background-position 0.2s ease-out; /* 平滑过渡 */
                    will-change: background-position;
        }
       
        
        .content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.6); /* 半透明黑灰色背景 */
            z-index: 1;
        }
        
        .page-content {
            height: 100vh;
            padding: 20px;
            color: white;
        }
        /* 介绍样式开始  */
            
        .Introduction-container {
            margin: 0 auto;
        }
        
        .content-block {
            display: flex;
            background: #fff;
        }
        
        /* 奇数块：图片在左，文本在右 */
        .content-block:nth-child(odd) {
            flex-direction: row;
        }
        
        /* 偶数块：图片在右，文本在左 */
        .content-block:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .image-container {
            flex: 0 0 50%;
            overflow: hidden;
            display: flex;
            align-items: stretch;
        }
        
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .text-container {
            flex: 0 0 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
        }
        /* 客户反馈 */
        .testimonial-box{
               width: 100%;
                height: 450px;
                 display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
        }
      .testimonial-container {
            max-width: 800px;
            width: 100%;
            text-align: center;
            position: relative;
        }
        
        .title {
            color: #1a365d; /* 深蓝色 */
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 40px;
        }
        
        .testimonial-slider {
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        
        .testimonial-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }
        
        .testimonial-slide {
            min-width: 100%;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .testimonial-text {
            color: #666; /* 灰色 */
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .testimonial-author {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .testimonial-position {
            color: #4fc3f7; /* 天蓝色 */
            font-size: 16px;
        }
        
        .slider-indicators {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .indicator {
            width: 40px;
            height: 4px;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .indicator.active {
            background-color: #1a365d;
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
        }
        
        .nav-btn {
            background-color: rgba(255, 255, 255, 0.7);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: all;
            transition: background-color 0.3s;
        }
        
        .nav-btn:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }
        
        /* 防止文本被复制 */
        .testimonial-slide {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        /* FAQ */
    .faq-container {
            width: 100%;
            margin: 0 auto;
            background-color: #f2f5f7;
            box-shadow: none;
            overflow: hidden;
            padding: 20px 0;
                border-bottom: 1px solid #e4e4e4;
        }
        
        .faq-header {
            background-color: transparent;
            color: #09445a;
            padding: 15px 0;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .faq-header h2 {
            font-size: 22px;
            font-weight: 600;
            color: #09445a;
        }
        
        .faq-categories {
            padding: 0 20px;
            column-count: 2;
            column-gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .category {
            break-inside: avoid;
            margin-bottom: 25px;
        }
        
        .category-title {
            font-size: 18px;
            font-weight: 600;
            color: #09445a;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #e0e0e0;
        }
        .category-tips-body{

        }
        .category-tips{
            font-size: 15px;
            font-weight: 600;
            color: #09445a;
            margin-bottom: 15px;
            padding-bottom: 8px;
                    margin-left: 20%;
        }
        .faq-item {
            margin-bottom: 10px;
            overflow: hidden;
            border-radius: 0;
        }
        
        .faq-question {
            background-color: #e6ecef;
            padding: 12px 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            transition: background-color 0.2s;
            position: relative;
        }
        
        .faq-question:hover {
            background-color: #dde4e8;
        }
        
        .faq-number {
            display: inline-block;
            width: 25px;
            font-weight: bold;
            color: #09445a;
            font-size: 14px;
        }
        
        .faq-question-text {
            flex: 1;
            font-weight: 500;
            font-size: 14px;
        }
        
        .faq-toggle {
            font-size: 16px;
            color: #09445a;
            transition: transform 0.3s;
        }
        
        .faq-answer {
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 15px;
            max-height: 500px;
        }
        
        .faq-answer p {
            color: #868686;
            margin-bottom: 10px;
            font-size: 13px;
            line-height: 1.5;
        }
        
        /* 响应式设计 - 小屏幕时变为单列 */
        @media (max-width: 768px) {
            .faq-categories {
                column-count: 1;
                column-gap: 0;
                padding: 0 15px;
            }
            
            .faq-header h2 {
                font-size: 20px;
            }
            
            .category-title {
                font-size: 16px;
            }
            
            .faq-question {
                padding: 10px 12px;
            }
            
            .faq-question-text {
                font-size: 13px;
            }
            
            .faq-answer p {
                font-size: 12px;
            }
        }
    
        /* Mobile styles */
        @media (max-width: 768px) {
            /* 介绍卡片，图片文字 */
                .content-block {
                flex-direction: column !important;
            }
            
            .image-container {
                flex: 0 0 auto;
                height: 300px;
            }
            
            .text-container {
                flex: 0 0 auto;
                padding: 30px 50px;
            }
            
            /* 卡片 */
            .cardcontainer{
                height: 1830px;
            }
            /* 首页上部 */
             .cardcontainer h1 {
                font-size: 15px;
                color: white;
                margin-bottom: 25px;
                display: inline-block;
                padding-bottom: 25px;
                position: relative; /* 为伪元素提供定位基准 */
            }
            .service-item {
                flex: 0 0 50%;
                 padding: 10px;

            }
        }


