        .contact-btn {
            display: inline-flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 10px 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
        }
        .hero {
            height: 861px;
            background-size: cover;
            background-position: center;
            position: relative;
            padding-top: 118px;
        }
        
        /* .hero::before { */
            /* content: ''; */
            /* position: absolute; */
            /* top: 0; */
            /* left: 0; */
            /* width: 100%; */
            /* height: 100%; */
            /* background-color: rgba(74, 91, 118, 0.7); */
        /* } */
        
        .hero-content {
            position: relative;
            z-index: 1;
            color: #fff;
            padding: 120px 0;
            max-width: 730px;
        }
        
        .hero-title {
            font-size: 64px;
            font-weight: 300;
            margin-bottom: 20px;
        }
        
        .hero-text {
            font-size: 20px;
            line-height: 24px;
            margin-bottom: 20px;
        }
        
        .contact-info {
            /* margin-top: 30px; */
            font-size: 20px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #d8d8d8;
            color: #1e2b49;
            padding: 18px 15px;
            font-size: 16px;
            margin-top: 20px;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
			width: 240px;
			height: 50px;
        }
        
        .btn i {
            margin-right: 8px;
        }
        
        .btn:hover {
            background-color: #1e2b49;
			color: #fff;
        }
        

        /* 主要内容区域 */
        .main-content {
            padding: 80px 10px;
        }

        .intro-text {
            text-align: left;
            margin-bottom: 40px;
        }

        .intro-title {
            font-size: 32px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .intro-description {
            font-size: 32px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        /* 办公室列表 */
        .office-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
			
        }

        .office-item {
            width: 30%;
        }

        .office-image {
            position: relative;
            height: 80px;
            overflow: hidden;
            margin-bottom: 15px;
            cursor: pointer;
        }

        .office-image img {
            width: 73%;
            height: 100%;
            object-fit: cover;
            transition: filter 0.3s;
        }

        .office-image.active img {
            filter: brightness(0.7);
        }

        .office-title {
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .office-info {
		    font-size: 16px;
			line-height: 24px;
            margin-bottom: 10px;
			color: #666666;
        }

        .office-label {
            display: inline-block;
            margin-right: 5px;
			font-weight: 600;
			color: #000000;
        }

        .office-copy {
            display: inline-block;
            width: 20px;
            height: 20px;
            background-color: #f5f5f5;
            text-align: center;
            line-height: 20px;
            margin-left: 5px;
            cursor: pointer;
        }

        /* 工作机会 */
        .jobs-section {
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            position: relative;
        }

        .jobs-section::after {
            content: "";
            position: absolute;
            top: 15px;
            left: 30%;
            width: 1px;
            height: calc(100% - 30px);
            background-color: #ddd;
        }

        .jobs-title {
            width: 35%;
            font-size: 40px;
            font-weight: 600;
        }

        .jobs-list {
            width: 65%;
        }

        .job-header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .job-count {
            font-size: 24px;
            font-weight: normal;
        }

        .view-more-btn {
            display: inline-block;
            background-color: #d7d7d7;
            color: #333;
			align-items: center;
            padding: 17px 70px 17px;
            border-radius: 0;
            cursor: pointer;
			width: 240px;
			font-size: 20px;
        }

        .job-item {
            margin-bottom: 20px;
            background-color: #f9f9f9;
            border-radius: 4px;
            overflow: hidden;
        }

        .job-header {
            padding: 30px 50px 30px;
            cursor: pointer;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .job-title {
            font-size: 24px;
            font-weight: normal;
        }

        .job-meta {
            display: flex;
            margin-top: 10px;
            color: #666;
            font-size: 16px;
        }

        .job-location, .job-date {
            margin-right: 20px;
        }

        .job-toggle {
            font-size: 20px;
            transition: transform 0.3s;
        }

        .job-toggle.active {
            transform: rotate(180deg);
        }

        .job-content {
            display: none;
            padding: 0 50px 20px;
        }

        .job-section {
            margin-bottom: 20px;
        }

        .job-section-title {
            font-weight: 400;
            margin-bottom: 10px;
        }

        .job-description {
        }

        .job-apply {
            display: inline-block;
            background-color: #1e2942;
            color: #fff;
            padding: 10px 70px 10px;
            border-radius: 0;
            margin-top: 10px;
            cursor: pointer;
        }
        .contact-item {
            margin: 0 10px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .stats-container, .awards-container, .why-container {
                flex-direction: column;
            }
            
            .company-intro, .awards-intro, .stats-grid, .awards-slider, .why-title-container, .accordion-container {
                width: 100%;
            }
            
            .company-intro, .awards-intro, .why-title-container {
                margin-bottom: 40px;
            }
            
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-links {
                margin-top: 30px;
                margin-left: 0;
            }
            
            .footer-qrcode {
                margin-top: 10px;
            }            
			.office-item {
                width: 50%;
            }

            .jobs-title, .jobs-list {
                width: 100%;
            }

            .jobs-section::after {
                display: none;
            }

            .jobs-title {
                margin-bottom: 20px;
            }

            .footer-left, .footer-center, .footer-right {
                width: 100%;
                padding-right: 0;
                margin-bottom: 10px;
            }

            .footer-nav {
                width: 100%;
                text-align: center;
            }

            .social-links {
                justify-content: left;
            }

            .social-link {
                margin: 0 5px;
            }
        }

        @media (max-width: 768px) {
        .hero {
            height: 861px;
            background-size: cover;
            background-position: center;
            position: relative;
            padding-top: 118px;
        }
        
        /* .hero::before { */
            /* content: ''; */
            /* position: absolute; */
            /* top: 0; */
            /* left: 0; */
            /* width: 100%; */
            /* height: 100%; */
            /* background-color: rgba(74, 91, 118, 0.7); */
        /* } */
        
        .hero-content {
            position: relative;
            z-index: 1;
            color: #fff;
            padding: 120px 0;
            max-width: 730px;
        }
        
        .hero-title {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .hero-text {
            font-size: 14px;
            line-height: 30px;
            margin-bottom: 20px;
        }
        
        .contact-info {
            margin-top: 30px;
            font-size: 14px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #d8d8d8;
            color: #1e2b49;
            padding: 18px 15px;
            font-size: 16px;
            margin-top: 20px;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
			width: 240px;
			height: 50px;
        }
        
        .btn i {
            margin-right: 8px;
        }
        
        .btn:hover {
            background-color: #1e2b49;
			color: #fff;
        }
        /* Stats Section */
        .stats-section {
            padding: 40px 0 10px;
            background-color: #fff;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        
        .company-intro {
            width: 100%;
        }
        
        .company-title {
            font-size: 24px;
            margin-bottom: 20px;
			font-weight: 400;
        }
        
        .company-subtitle {
            font-size: 24px;
            margin-bottom: 30px;
            font-weight: 400;
        }
        
        .yellow-line {
            width: 124px;
            height: 6px;
            background-color: #ffd700;
            margin-bottom: 30px;
        }
        
        .stats-grid {
            width: 55%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .stat-item {
            text-align: left;
        }
        
        .stat-number {
            font-size: 40px;
            font-weight: 400;
            color: #333;
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 20px;
            color: #333;
			margin-top: 20px;
        }
        /* 主要内容区域 */
        .main-content {
            padding: 40px 10px;
        }

        .intro-text {
            text-align: left;
            margin-bottom: 40px;
        }

        .intro-title {
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: normal;
        }

        .intro-description {
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: normal;
        }

        /* 办公室列表 */
        .office-grid {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .office-item {
            width: 33.333%;
            padding: 0 15px;
            margin-bottom: 40px;
        }

        .office-image {
            position: relative;
            /* height: 270px; */
            overflow: hidden;
            margin-bottom: 15px;
            cursor: pointer;
        }

        .office-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: filter 0.3s;
        }

        .office-image.active img {
            filter: brightness(0.7);
        }

        .office-title {
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: normal;
        }

        .office-info {
		    font-size: 14px;
			line-height: 30px;
            margin-bottom: 10px;
			color: #666666;
        }

        .office-label {
            display: inline-block;
            margin-right: 5px;
        }

        .office-copy {
            display: inline-block;
            width: 20px;
            height: 20px;
            background-color: #f5f5f5;
            text-align: center;
            line-height: 20px;
            margin-left: 5px;
            cursor: pointer;
        }

        /* 工作机会 */
        .jobs-section {
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            position: relative;
        }

        .jobs-section::after {
            content: "";
            position: absolute;
            top: 15px;
            left: 20%;
            width: 1px;
            height: calc(100% - 30px);
            background-color: #ddd;
        }

        .jobs-title {
            width: 100%;
            font-size: 24px;
            font-weight: normal;
        }

        .jobs-list {
            width: 100%;
        }

        .job-header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .job-count {
            font-size: 16px;
            font-weight: normal;
        }

        .view-more-btn {
            display: inline-block;
            background-color: #d7d7d7;
            color: #333;
			align-items: center;
            padding: 5px 15px;
            border-radius: 0;
            cursor: pointer;
			width: 100px;
			font-size: 14px;
        }

        .job-item {
            margin-bottom: 20px;
            background-color: #f9f9f9;
            border-radius: 4px;
            overflow: hidden;
        }

        .job-header {
            padding: 15px 20px 15px;
            cursor: pointer;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .job-title {
            font-size: 16px;
            font-weight: normal;
			color: #333;
        }

        .job-meta {
            display: flex;
            margin-top: 10px;
            color: #666;
            font-size: 14px;
        }

        .job-location, .job-date {
            margin-right: 20px;
        }

        .job-toggle {
            font-size: 16px;
            transition: transform 0.3s;
        }

        .job-toggle.active {
            transform: rotate(180deg);
        }

        .job-content {
            display: none;
            padding: 0 20px 20px;
        }

        .job-section {
            margin-bottom: 20px;
        }

        .job-section-title {
            font-weight: 400;
            margin-bottom: 10px;
        }

        .job-description {
        }

        .job-apply {
            display: inline-block;
            background-color: #1e2942;
            color: #fff;
            padding: 10px 70px 10px;
            border-radius: 0;
            margin-top: 10px;
            cursor: pointer;
        }		
            .header-container {
                flex-wrap: wrap;
            }
			
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                display:none; 
            }
            
            .nav-list {
                display:none; 
            }
            .language-select {
                display:none; 
            }
			
            .hero {
                height: auto;
                padding-bottom: 50px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .award-slide.active {
                flex-direction: column;
            }
            
            .award-card {
                width: 100%;
                margin-bottom: 20px;
            }		
		
            .header-container {
                flex-wrap: wrap;
            }
			.header-container {
				border-bottom: solid 2px #999;
				padding: 0 0 10px;
				margin: 10px;
			}
			.logo {
				display: flex;
				align-items: center;
			}
        
			.logo img {
				width: 130px;
			}
			
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                display:none; 
            }
            
            .nav-list {
                display:none; 
            }
            .language-select {
                display:none; 
            }
			
            .hero {
                height: auto;
                padding-bottom: 50px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .award-slide.active {
                flex-direction: column;
            }
            
            .award-card {
                width: 100%;
                margin-bottom: 20px;
            }
            
            .footer-links {
                flex-wrap: wrap;
            }
            
            .footer-column {
                width: 50%;
                margin-bottom: 20px;
            }		
            .nav-desktop {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }
		
            .header-container {
                flex-wrap: wrap;
            }
			
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                display:none; 
            }
            
            .nav-list {
                display:none; 
            }
            .language-select {
                display:none; 
            }
			
            .hero {
                height: auto;
                padding-bottom: 50px;
            }
            .office-item {
                width: 100%;
            }

            .job-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .job-toggle {
                position: absolute;
                top: 15px;
                right: 15px;
            }
        }
