
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
           font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #2d3748;
            background: #f1f6f9;
            overflow-x: hidden;
        }

        .job-opportunities-main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Header Section */
        .job-opportunities-header-wrapper {
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(-30px);
            animation: jobOpportunitiesSlideDown 0.8s ease-out 0.2s forwards;
        }

        .job-opportunities-main-title {
            font-size: 48px;
      font-weight: 500;
      color: #f8a056;
      margin-bottom: 30px;
      letter-spacing: -1px;
      line-height: 1.2;
      opacity: 0;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
        }

        .job-opportunities-main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, #f8a056, #f7da9a);
            border-radius: 2px;
            animation: jobOpportunitiesExpandLine 1s ease-out 1s forwards;
        }

        /* Job Card */
        .job-opportunities-position-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
            animation: jobOpportunitiesSlideUp 0.8s ease-out 0.5s forwards;
            position: relative;
            overflow: hidden;
        }

        .job-opportunities-position-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.03), transparent);
            transition: left 0.6s ease;
        }

        .job-opportunities-position-card:hover::before {
            left: 100%;
        }

        .job-opportunities-position-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            border-color: rgba(66, 153, 225, 0.2);
        }

        .job-opportunities-card-header-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .job-opportunities-position-details {
            flex: 1;
        }

        .job-opportunities-position-name {
             font-size: 18px;
      line-height: 1.8;
      color: #546e7a;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeIn 0.8s ease-out 0.5s forwards;
        }

        .job-opportunities-location-info {
             font-size: 0.9rem;
            color: #a0aec0;
            font-weight: 500;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            
      
      opacity: 0;
      animation: fadeIn 0.8s ease-out 0.5s forwards;
        }

        .job-opportunities-location-icon-svg {
            width: 16px;
            height: 16px;
            opacity: 0.7;
        }

        .job-opportunities-posting-date-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            text-align: right;
            gap: 4px;
        }

        .job-opportunities-date-label-text {
            font-size: 0.9rem;
            color: #a0aec0;
            font-weight: 500;
        }

        .job-opportunities-date-value-display {
            font-size: 18px;
      line-height: 1.8;
      color: #546e7a;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeIn 0.8s ease-out 0.5s forwards;
        }



        /* Floating elements */
        .job-opportunities-floating-background-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .job-opportunities-animated-circle-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(66, 153, 225, 0.1), rgba(159, 122, 234, 0.1));
            animation: jobOpportunitiesFloat 20s infinite linear;
        }

        .job-opportunities-animated-circle-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .job-opportunities-animated-circle-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 15%;
            animation-delay: -7s;
        }

        .job-opportunities-animated-circle-element:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 30%;
            left: 20%;
            animation-delay: -14s;
        }

        /* Animations */
        @keyframes jobOpportunitiesSlideDown {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes jobOpportunitiesSlideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes jobOpportunitiesExpandLine {
            to {
                width: 120px;
            }
        }

        @keyframes jobOpportunitiesFloat {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.3;
            }
            25% {
                transform: translateY(-20px) rotate(90deg);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-40px) rotate(180deg);
                opacity: 0.3;
            }
            75% {
                transform: translateY(-20px) rotate(270deg);
                opacity: 0.6;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .job-opportunities-main-container {
                padding: 20px 15px;
            }

            .job-opportunities-position-card {
                padding: 30px 20px;
            }

            .job-opportunities-card-header-section {
                flex-direction: column;
                align-items: flex-start;
            }

            .job-opportunities-posting-date-wrapper {
                align-items: flex-start;
                text-align: left;
            }

            .job-opportunities-position-name {
                font-size: 1.5rem;
            }
        }





   
       

        .unique_photo_carousel_wrapper {
            width: 100vw;
            height: 100vh;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .unique_photo_slider_container {
            width: 100%;
            height: 400px;
            overflow: hidden;
            position: relative;
            mask: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
        }

        .unique_photo_strip {
            display: flex;
            gap: 15px;
            height: 100%;
            animation: uniqueAutoSlide 24s linear infinite;
            width: calc(12 * 400px + 11 * 15px);
        }

        @keyframes uniqueAutoSlide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-6 * 415px));
            }
        }

        .unique_photo_item {
            flex: none;
            width: 400px;
            height: 350px;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
            transition: transform 0.3s ease;
            background: white;
        }

        .unique_photo_item:hover {
            transform: scale(1.02) translateY(-5px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.18);
            z-index: 5;
        }

        .unique_photo_image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .unique_photo_item:hover .unique_photo_image {
            transform: scale(1.03);
        }

        /* 响应式设计 */
        @media (max-width: 1200px) {
            .unique_photo_item {
                width: 320px;
                height: 280px;
            }
            
            .unique_photo_strip {
                width: calc(6 * 335px + 5 * 15px);
            }
            
            @keyframes uniqueAutoSlide {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-3 * 335px)); }
            }
        }

        @media (max-width: 768px) {
            .unique_photo_item {
                width: 280px;
                height: 240px;
            }
            
            .unique_photo_strip {
                width: calc(6 * 295px + 5 * 15px);
                gap: 10px;
            }
            
            @keyframes uniqueAutoSlide {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-3 * 295px)); }
            }
            
            .unique_photo_slider_container {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .unique_photo_item {
                width: 250px;
                height: 200px;
            }
            
            .unique_photo_strip {
                width: calc(6 * 265px + 5 * 15px);
            }
            
            @keyframes uniqueAutoSlide {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-3 * 265px)); }
            }
            
            .unique_photo_slider_container {
                height: 250px;
            }
        }
    


    
     