* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
 @font-face {
 font-family: 'Lora';
 src: url('Lora-Regular.ttf') format('truetype');
 font-weight: 400;
 font-style: normal;
}
 @font-face {
 font-family: 'Lora';
 src: url('Lora-Medium.ttf') format('truetype');
 font-weight: 500;  /* Medium 对应 500 */
 font-style: normal;
}
@font-face {
 font-family: 'SourceSansPro';
 src: url('SourceSansPro-Regular.ttf') format('truetype');
 font-weight:400;
 font-style: normal;
}
@font-face {
 font-family: 'SourceSansPro';
 src: url('SourceSansPro.otf') format('opentype');
 font-weight:500;
 font-style: normal;
}
body {
	color: #333F70;
	font-family: 'Lora', 'SourceSansPro', serif;
	background-color:var(--bg05);
}
a {
	text-decoration: none;
}
:root {
 --color01: #192248;/*深*/
 --color02: #333F70;/*浅*/
 --color03: #26A688;/*绿*/
 --color04: #F8FEFC;/*白灰*/
 --bg01:#192248;
 --bg02:#333F70;
 --bg03:#26A688;
 --bg04:#DDF8F2;/*浅绿*/
 --bg05:#F6F7F9;/*浅白*/
 --bg06:#F8FEFC;/*浅白*/
}
h1, h2, h3, h4 {
	font-weight:normal;
}
.container {
	width: 1200px;
	margin: 0 auto;
}
header {
	background-color:var(--bg04);
	padding: 24px 0;
	position: relative;
}
body.white {
	background:#fff;
}
.white header {
	background:#fff;
}
.header-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	font-size: 22px;
	font-family:'Lora';
	color: var(--color01);
}
.nav-list {
	display: flex;
	list-style: none;
	gap:56px;
}
.nav-list a {
	text-decoration: none;
	color: var(--color02);
	font-size: 14px;
	font-family: 'SourceSansPro';
	transition: color 0.3s ease;
}
.nav-list a:hover, .nav-list a.active {
	color: var(--color03);
}
.mobile-menu {
	display: none;
	font-size: 20px;
	cursor: pointer;
	z-index: 100;
}
.mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 250px;
	height: 100vh;
	background-color:var(--bg05);
	padding: 80px 20px 20px;
	list-style: none;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 99;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}
.mobile-nav.active {
	transform: translateX(0);
}
.mobile-nav li {
	margin-bottom: 20px;
}
.mobile-nav a {
	text-decoration: none;
	color: var(--color01);
	font-size: 16px;
	font-family: 'SourceSansPro';
	display: block;
	padding: 8px 0;
}
.mobile-nav a:hover,.mobile-nav a.active {
	color: var(--color03);
}


.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 98;
}
.overlay.active {
	display: block;
}
footer {
	background-color:var(--bg01);
	color: var(--color04);
	padding: 48px 0;
	font-size:14px;
}
.footer-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 48px;
}
.flogo {
	font-size: 22px;
	color:var(--color04);
	font-weight:500;
}
.footer-nav {
	display: flex;
	list-style: none;
	gap: 54px;
}
.footer-nav a {
	font-family: 'SourceSansPro';
	color:var(--color04);
	transition: color 0.3s ease;
}
.footer-nav a:hover {
	color: var(--color03);
}
.social-icons {
	display: flex;
	gap: 16px;
}
.social-icons img {
	height:24px;
}
.social-icons a {
	color:var(--color04);
	font-size: 16px;
	transition: color 0.3s ease;
}
.social-icons a:hover {
	color: var(--color03);
}
.footer-bottom {
	border-top: 1px solid rgba(248, 254, 252, 0.2);
	padding-top: 48px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	font-family: 'SourceSansPro';
	color:var(--color04);
}
.footer-bottom p span {
	font-size:12px;
}
.hero {
	background-color:var(--bg04);
	padding:96px 0 0 0;
	text-align: center;
}
.hero h1 {
	font-size: 64px;
	max-width:764px;
	margin:0px auto;
	margin-bottom: 28px;
	line-height: 72px;
	color: var(--color01);
	font-weight:normal;
}
.hero p {
	font-size:20px;
	max-width: 764px;
	font-family: 'SourceSansPro';
	color: var(--color02);
	line-height:1.6;
	margin: 0 auto 32px;
}
.hero p span {
	display:block
}
.btn {
	display: inline-block;
	padding: 16px 26px;
	border-radius:8px;
	font-family:'SourceSansPro';
	font-size: 18px;
	transition: all 0.3s ease;
	cursor: pointer;
	font-weight:500;
}
.btn img {
	vertical-align:middle;
	padding-left:6px;
}
.btn1 {
	width:98px;
	text-align:center;
	line-height:36px;
	height:36px;
	border-radius:8px;
	font-size:14px;
	font-family: 'SourceSansPro';
	font-weight:normal;
}
.btn2 {
	display: flex;
	padding: 16px 26px;
	border-radius: 8px;
	font-family: 'SourceSansPro';
	font-size: 16px;
	transition: all 0.3s ease;
	cursor: pointer;
	justify-content: center;
	align-items: center;
}
.btn2 img {
	vertical-align:middle;
	padding-left:6px;
}
.btn-green {
	background-color:var(--bg03);
	;
	color: #fff;
}
.btn-green:hover {
	background-color: var(--bg01);
}
.btn-dark {
	background-color:var(--bg01);
	color: #fff;
}
.btn-dark:hover {
	background-color:var(--bg03);
}
.what-we-do {
	background-color:var(--bg04);
	padding:100px 0;
}
.section-title {
	font-size: 32px;
	color: var(--color01);
	text-align: center;
	margin-bottom: 48px;
}
.cards-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:64px;
	max-width: 1200px;
	margin: 0 auto;
}
.card {
	background:var(--bg03);
	color: #fff;
	padding: 48px;
	border-radius: 16px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.card img {
	width:48px;
	height:48px;
	margin-bottom: 16px;
}
.card h3 {
	margin-bottom: 16px;
}
.card h3 a {
	font-size:20px;
	font-weight:bold;
	color: #fff;
	transition: color 0.3s ease;
}
.card h3 a:hover {
	color:var(--bg04);
}
.card p {
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
.our-reach {
	padding: 100px 0;
}
.reach-wrap {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	height: 396px;
}
.reach-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.reach-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
}
.reach-overlay h2 {
	font-size: 32px;
	margin-bottom: 75px;
	color: var(--color04);
}
.reach-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	width:100%;
	text-align: center;
}
.stat-item .number {
	font-size: 40px;
	color: var(--color04);
	margin-bottom: 8px;
	font-family:'Lora';
}
.stat-item .label {
	font-size: 18px;
	color: var(--color04);
	text-transform: capitalize;
}
.trusted-by {
	width: 100%;
	margin: 0;
}
.trusted-by .full-width-container {
	width: 100%;
	padding: 0 15px;
	margin: 0 auto;
}
.scroll-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.scroll-container {
	display: flex;
	gap: 24px;
	animation: scroll 30s linear infinite;
}
.scroll-container:hover {
	animation-play-state: paused;
}
.client-card {
	min-width: 424px;
	min-height:256px;
	background-color:var(--bg04);
	padding: 24px 40px;
	border-radius: 16px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.client-card:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.client-logo {
	height: 90px;
	width:160px;
	margin: 0 auto 10px;
	object-fit: contain;
}
.client-desc {
	font-size: 16px;
	color: var(--color01);
	margin-bottom: 20px;
	line-height: 1.6;
	font-family: 'SourceSansPro';
	font-weight:normal;
}
.client-role {
	font-size: 16px;
	font-family: 'SourceSansPro';
	color: var(--color01);
	font-weight:500;
}
.client-role span {
	color: var(--color02);
	font-weight:normal;
	padding-left:5px
}
/* 滚动动画关键帧 */
@keyframes scroll {
 0% {
 transform: translateX(0);
}
 100% {
 transform: translateX(-100%);
}
}
.cta {
	padding: 100px 0;
}
.cta-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
.cta-text {
	flex: 1;
	padding-right: 150px;
}
.cta-text h2 {
	font-size: 32px;
	color: var(--color01);
	margin-bottom: 16px;
}
.cta-text p {
	font-size: 20px;
	font-family: 'SourceSansPro';
	color: var(--color02);
}
.cta-btn {
	flex-shrink: 0;
}
.talent-pool {
	background-color:var(--bg04);
	padding-top:80px;
}
.page-header {
	text-align: center;
	margin-bottom: 40px;
}
.page-header h1 {
	font-size: 36px;
	font-weight: 600;
	color: var(--color01);
	margin-bottom: 16px;
}
.page-header p {
	font-size: 16px;
	color: var(--color01);
	max-width: 700px;
	margin: 0 auto;
}
.filter-bar {
	display: flex;
	gap: 8px;
	margin-bottom: 24px;
	background-color: #ffffff;
	border: 1px solid rgba(38, 166, 136, 0.66);
	border-radius: 8px;
	color:var(--color01);
	font-family: 'SourceSansPro';
}
.custom-select {
	flex: 1;
	position: relative;
	font-size: 14px;
}
.select-trigger {
	width: 100%;
	padding: 23px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position:relative;
}
.custom-select:after {
	content:' ';
	position:absolute;
	top:25px;
	right:0px;
	height:15px;
	width:1px;
	background:#ccc;
}
.custom-select:last-child:after {
	display:none
}
.select-trigger.active {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-color: var(--color03);
}
.select-trigger.active span{  color:var(--color03)}
.select-arrow {
	font-size: 12px;
	color: var(--color01);
	transition: transform 0.3s ease;
}
.select-trigger.active .select-arrow {
	transform: rotate(180deg);
	color: var(--color03);
}
.select-options {
	position: absolute;
	top: 101%;
	left: 0;
	width:100%;
	background-color: #ffffff;
	border-radius: 0 0 6px 6px;
	list-style: none;
	
	overflow: hidden;
	transition: max-height 0.3s ease;
	z-index: 100;
	display:none;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.select-options.active {

	display:block;
}
.select-option {
	padding: 12px 24px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	border-bottom: 1px dashed #eee;
}
.select-option:hover {
	background-color: #e6f7f5;
	color: var(--color03);
}
.search-bar {
	width:360px;
	margin:0px auto;
	overflow:hidden;
	display: flex;
	gap: 8px;
	margin-bottom: 58px;
	border:1px solid var(--color03);
	border-radius: 6px;
	padding-left:10px;
	background-color: #ffffff;
}
.search-input {
	flex: 1;
	border:0;
	font-size: 14px;
	color: var(--color01);
	transition: all 0.3s ease;
}
.search-input:focus {
	outline: none;
	border-color: var(--color03);
}
 .search-input::placeholder {
 color: #94a3b8;
}
.search-btn {
	padding: 12px 14px;
	background-color:var(--bg03);
	color: #ffffff;
	border: none;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}
.search-btn:hover {
	background-color: #0f766e;
}
.filter-note {
	text-align: center;
	font-size: 12px;
	margin-bottom: 30px;
	padding: 10px 0;
	background-color:var(--bg06);
	border-radius: 4px;
	font-family: 'SourceSansPro';
}
.candidates-section {
	background-color:var(--bg05);
	padding: 16px 0 0;
}
.list-count {
	font-size: 16px;
	font-family: 'SourceSansPro';
	font-weight:500;
	color:var(--color01);
	margin: 15px 0;
}
.list-count span {
	color:var(--color03);
}
.candidates-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 33px;
}
.candidate-card {
	background-color: #fff;
	border-radius: 16px;
	padding:20px 16px;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
	cursor: pointer; /* 点击光标 */
}
.candidate-card:hover {
	border-color:var(--bg04);
	background-color:var(--bg04);
}
.card-header {
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e2e8f0; /* 下划线 */
}
.card-id {
	font-size: 16px;
	font-weight: 500;
	color:var(--color01);
	margin-bottom:10px;
}
.card-meta img {
	height:16px;
}
.card-meta {
	display: flex;
	gap: 16px;
	font-family: 'SourceSansPro';
	font-size: 14px;
	color:var(--color02);
}
.card-meta span {
	display: flex;
	align-items: center;
	gap: 4px;
}
.card-bottom {
	display: flex;
	justify-content: space-between; /* 标签左，状态右 */
	align-items: center; /* 垂直居中 */
}
.card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 14px;
	color:var(--color02);
	font-family: 'SourceSansPro';
	margin: 0;
}
.card-tag {
	padding: 4px 8px;
	border-radius:4px;
	font-size: 12px;
	color:var(--color02);
	font-family: 'SourceSansPro';
	background: rgba(51, 63, 112, 0.08);
	border: 1px solid #e2e8f0;
}
.card-status {
	font-family: 'SourceSansPro';
	display: flex;
	font-size: 12px;
	color:var(--color03);
	align-items: center;
	justify-content: center;
	gap: 4px;
	width:77px;
	height:24px;
	line-height:24px;
	background: rgba(38, 166, 136, 0.08);
	border-radius: 4px;
	margin: 0; /* 取消原margin */
}
.card-status.internship {
	color:#FFAE00;
	background: rgba(255, 174, 0, 0.08);
}
.card-status.both {
	color:var(--color02);
	background: rgba(25,34,72, 0.08);
}
.card-status i {
	font-size: 5px;
}
.additional-note {
	text-align: center;
	font-size: 14px;
	color:var(--color02);
	font-family: 'SourceSansPro';
}
.cta-section {
	text-align: center;
	padding: 40px 0;
}
.cta-section h2 {
	font-size: 28px;
	font-weight: 600;
	color: var(--color01);
	margin-bottom: 16px;
}
.cta-section p {
	font-size: 16px;
	color: var(--color01);
	margin-bottom: 24px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: none; /* 默认隐藏 */
	justify-content: center;
	align-items: center;
	z-index: 1000; /* 最高层级 */
	padding: 20px;
}
.modal-overlay.active {
	display: flex;
}
.modal-container {
	background-color: #ffffff;
	border-radius: 16px;
	width: 100%;
	max-width: 1200px;
	max-height: 90vh;
	overflow: hidden;
	position: relative;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.modal-name {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 20px;
	color:var(--color01);
	z-index: 1001;
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #ccc;
	padding: 24px;
}
.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 20px;
	color: var(--color01);
	cursor: pointer;
	transition: color 0.3s ease;
	z-index: 1001;
}
.modal-close img {
	width:24px;
	height:24px;
}
.modal-content {
	padding:98px 24px 24px 24px;
	max-height: 80vh;
	font-family: 'SourceSansPro';
	font-size:14px;
	color: var(--color01);
	overflow-y: auto; /* 内容超出滚动 */
}
.modal-header {
	padding-bottom: 16px;
}
.modal-company {
	font-size: 16px;
	color: var(--color01);
	margin-bottom: 16px;
}
.modal-job-title {
	font-size: 20px;
	font-weight: 500;
	margin-bottom:16px;
	color: var(--color01);
	display: flex;
	font-family: 'Lora';
	align-items: center;
	gap: 26px;
}
.modal-header p {
	font-size: 14px;
	color: var(--color01);
	font-family: 'SourceSansPro';
	line-height:1.6;
}
.modal-header img {
	vertical-align:middle;
	height:16px;
}
.modal-job-status {
	font-size: 12px;
	color: var(--color03);
	background-color: rgba(90, 135, 66, 0.08);
	padding: 4px 8px;
	border-radius: 4px;
	font-family: 'SourceSansPro';
	font-weight:normal;
}
.modal-job-status i {
	font-size:5px;
	padding-right:3px;
	vertical-align:middle
}
.modal-job-status.internship {
	color: #FFAE00;
	background: rgba(255, 174, 0, 0.08);
}
.modal-info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:8px;
	font-size: 14px;
	font-family: 'SourceSansPro';
	padding-bottom:16px;
	margin-bottom:16px;
	border-bottom:1px solid rgba(25, 34, 72, 0.24);
}
.modal-info-item {
	display: flex;
	gap: 4px;
}
.modal-info-label {
	color: var(--color01);
}
.modal-info-value {
	color: var(--color01);
}
.modal-info-value a{
	color: var(--color01);
}
.modal-section-title {
	margin-bottom:6px;
}


.modal-section-content {
	line-height: 1.7;
	margin-bottom: 24px;
}


.rc .modal-job-title {
	font-size: 32px;
	margin-bottom:20px;
	margin-top: 60px;
	margin-left:2%;
	margin-right:2%;
}

.rc .modal-header p {
	margin: 0 2%;
	color: #666;
	font-size:18px;
}
.rc .modal-header p#xq4{color:#333; margin-bottom:10px;}
.rc .modal-section1{ margin:0 2% 2% 2%; color:#666; border-bottom:1px dashed #eee; padding-bottom:10px;}

.worktitle{ margin:2%; border-bottom:1px solid #eee; font-size:26px; padding-bottom:10px;color: var(--color01); font-weight:500;}


.rc .modal-section1 h3 {
	margin-bottom:8px;
}

.rc .modal-section1 h3 b{
	font-weight:500;
	color: var(--color01);
	margin-right:3px;

}
.rc .modal-section1 h3 font{
	

}
.rc .modal-section1 h3 span{
	float:right;

}
.rc .modal-section1 p{ font-size:16px; margin-bottom:8px;}
.rc .modal-section-content {
	font-size:16px;
}







/* How We Work页面核心样式 */
        .how-we-work {
	padding-top: 30px;
}
.page-header1 {
	text-align: center;
	margin-bottom:100px;
}
.page-header1 h1 {
	font-size: 32px;
	color: var(--color01);
	margin-bottom: 16px;
}
.page-header1 p {
	font-size: 20px;
	color: var(--color02);
	max-width: 900px;
	margin: 0 auto;
}
/* 流程步骤区域 - 核心修改 */
        .process-steps {
	position: relative;
	margin-bottom: 80px;
	padding-bottom: 20px; /* 为进度线预留空间 */
}
/* 步骤列表 - 核心修改 */
        .steps-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0; /* 移除间隙，保证进度线连续 */
	position: relative;
	z-index: 3;
}
.step-item {
	padding-right:70px;
	position: relative;
}
.step-item:last-child {
	padding-right:20px;
}
.step-item .step-decoration {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 68px;
	background:url(../images/zs.svg) no-repeat;
	z-index: 2;
}
.step-number {
	font-size: 48px;
	font-weight: 300;
	color: var(--color03);
	margin-bottom: 16px;
	line-height: 1;
}
.step-title {
	font-size: 20px;
	color: var(--color01);
	margin-bottom: 16px;
}
.step-desc {
	font-size: 16px;
	font-family: 'SourceSansPro';
	color: var(--color02);
	line-height: 1.5;
	margin-bottom: 88px;
}
/* 特色说明区域 */
        .features-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 80px;
}
.features-image {
	width: 740px;
	height: 320px;
	border-radius: 16px;
}
.features-list {
	display: flex;
	flex-direction: column;
	gap: 44px;
}
.feature-item h3 {
	font-size:20px;
	color: var(--color01);
	margin-bottom: 12px;
}
.feature-item p {
	font-size: 16px;
	font-family: 'SourceSansPro';
	color: var(--color02);
}
/* 原则区域 - 增加交互效果 */
        .principles-section {
	margin-bottom: 80px;
}
.principles-header {
	text-align: center;
	margin-bottom: 48px;
}
.principles-header h2 {
	font-size: 32px;
	color: var(--color01);
}
.principles-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 33px;
}
.principle-card {
	background: #F8FEFC;
	padding:48px;
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	user-select: none;
	cursor: default;
}
.principle-card:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}
.principle-card:hover .principle-icon {
	transform: scale(1.01);
}
.principle-card:hover .principle-title {
	color: var(--color03);
}
.principle-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	transition: all 0.3s ease;
}
.principle-icon img {
	width: 48px;
	height: 48px;
}
.principle-title {
	font-size: 20px;
	color: var(--color01);
	margin-bottom: 16px;
}
.principle-desc {
	font-size: 16px;
	font-family: 'SourceSansPro';
	color: var(--color02);
	line-height: 1.5;
}

 /* Contact页面核心样式 */
        .contact-page {
            padding-top: 30px;
			padding-bottom:55px;
        }


        /* 引用区域 */
        .quote-section {
            margin-bottom: 64px;
			
        }

        .quote {
            font-size: 40px;
           
            color: var(--color01);
            max-width: 1100px;
            margin: 0 auto 53px;
            line-height: 1.6;
            position: relative;
			padding-left:24px;
        }

        .quote::before {
            content: "\201C";
            font-size: 100px;
            color: var(--color01);
            position: absolute;
            left: -30px;
            top: -20px;
        }

        /* 联系人信息 - 核心修改：左右排版 */
        .contact-person {
            display: flex;
            align-items: center;
            justify-content: space-between; /* 左右分布 */
            max-width:1200px; /* 限定联系人区域宽度，避免过宽 */
            margin: 0 auto 80px;
           
        }

        /* 左侧：头像+姓名 */
        .person-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .person-avatar {
            width: 64px;
            height: 64px;
            border-radius: 8px;
            object-fit: cover;
          
        }

        .person-basic {
            text-align: left;
        }

        .person-name {
            font-size: 30px;
           color: var(--color01);
            margin-bottom: 4px;
        }

        .person-role {
            font-size: 18px;
            color: var(--color03);
           
        }

        /* 右侧：联系方式 */
        .person-right {
            text-align: right; /* 右对齐 */
        }

        .person-contact {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .person-contact a {
            font-size: 16px;
            color: var(--color01);
            text-decoration: none;
            display: flex;
           
            justify-content: flex-start;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .person-contact a:hover {
            color: var(--color03);
        }
		
		 .person-contact a img{ width:24px; height:24px;}

        /* 分类信息区域 */
        .contact-categories {
            max-width: 1200px;
            margin: 0 auto;
			margin-bottom:40px;
        }

        .category-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding:48px 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .category-card:last-child {
            border-bottom: none;
        }

        .category-icon {
            width: 72px;
            height: 72px;
           
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .category-icon img {
          width: 72px;
            height: 72px;
        }

        .category-content h3 {
            font-size: 20px;
             color: var(--color01);
            margin-bottom: 4px;
           
        }

        .category-content p {
            font-size: 16px;
			font-family: 'SourceSansPro';
            color: var(--color02);
           
			line-height:1.5;
        }

        .category-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 71px;
			font-family: 'SourceSansPro';
            color: var(--color02);
			 margin-top: 4px;
        }

        .category-tags span {
            font-size: 16px;
           
        }

   .load-more-btn {
            background: white;
            border: 1px solid #cbd5e1;
            padding: 10px 28px;
            border-radius: 60px;
            font-weight: 500;
            cursor: pointer;
            margin-top: 30px;
        }
        .load-more-btn:hover {
            background: var(--bg03);
			 border: 1px solid var(--color03);
			color:#fff;
        }
        .pagination-placeholder {
            text-align: center;
            margin-bottom: 30px;
        }
        .no-more {
            text-align: center;
            padding: 40px;
            color: #94a3b8;
        }
        .loading-spinner {
            text-align: center;
            padding: 40px;
            color: #64748b;
        }
        .loading-spinner i {
            margin-right: 8px;
        }




 @media (max-width: 992px) {
 .candidates-grid {
 grid-template-columns: repeat(2, 1fr);
}
 .modal-info-grid {
 grid-template-columns: 1fr;
}
 .steps-list {
 grid-template-columns: repeat(2, 1fr);
 gap: 48px 24px;
}

            /* 特色说明改为1列 */
            .features-section {
 grid-template-columns: 1fr;
 margin-top:48px;
}

.features-list {
	gap: 24px;
	width: 90%;
	margin: 0px auto;
}


.feature-item h3 {
	font-size: 18px;
}
.feature-item p {
	font-size: 14px;

}


            /* 原则卡片改为2列 */
            .principles-cards {
 grid-template-columns: repeat(2, 1fr);
}
}
 @media (max-width: 768px) {
 .container {
 width: 96%;
}
header .container {
 width: 90%;
}

.btn1 {
	width: 78px;
	line-height: 30px;
	height: 30px;
	border-radius: 4px;
	font-size: 12px;
}


.nav-list {
 display: none;
}
 .mobile-menu {
 display: block;
}
 .cta-wrap {
 flex-direction: column;
 text-align: center;
}
 .cta-text {
 padding-right: 0;
 margin-bottom: 24px;
}
 .client-card {
 min-width: 280px;
 padding:14px 30px;
 border-radius:10px;
 min-height:200px;
}

.client-logo {
	height: 60px;
	width: auto;
}
.client-desc {
	font-size: 14px;
	line-height: 1.5;
}

.hero {
	padding: 60px 0 0 0;
}
 .hero h1 {
 font-size: 30px;
 line-height:1.3
}
.hero p {
	font-size: 16px;
	line-height: 1.4;
}
.btn {
	padding: 12px 16px;
	font-size: 16px;
}

.what-we-do {
	padding: 60px 0;
}
.our-reach {
	padding: 20px 0 60px 0;
}

.reach-overlay h2 {
	font-size: 26px;
	margin-bottom: 55px;
}


.section-title {
	font-size: 26px;
}

 .cards-wrap {
 grid-template-columns: 1fr;
 max-width:90%;
 gap:24px;
}

.card {
	padding: 36px;
}

.card p {
	font-size: 14px;
	line-height: 1.5;
}


 .reach-wrap {
 height: 280px;
}
 .reach-stats {
 gap: 24px;
}
 .stat-item .number {
 font-size: 32px;
}
.stat-item .label {
	font-size: 14px;
}

.scroll-container {
	animation: scroll 20s linear infinite;
}



footer {
	padding: 28px 0;
}
 .footer-wrap {
 flex-direction: column;
 gap: 24px;
 text-align: center;
 margin-bottom:28px;
}
.footer-nav {
	display: none;
}
 .footer-bottom {
 flex-direction: column;
 gap: 12px;
 text-align: center;
 padding-top:28px;
}


.talent-pool {
	padding-top: 60px;
}


 .filter-bar {
 flex-direction: column;
 gap: 8px;
 margin-bottom:10px;
}
 .search-bar {
	 width:100%;
 gap: 8px;
}
 .search-btn {
 justify-content: center;
}
 .candidates-grid {
 grid-template-columns: 1fr;
 margin-bottom:0;
}

.modal-job-status {
	width: 160px;
	text-align:center;
}
.modal-job-title {
	font-size: 18px;
}
.modal-info-item {
	gap: 8px;
}
.modal-info-label {
	min-width: 95px;
	text-align:right;
}
.steps-list {
 grid-template-columns: 1fr;
 gap: 48px;
}
.cta-text h2 {
	font-size: 22px;
}
.cta-text p {
	font-size: 16px;
}
.btn2 {
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
}
.page-header1 h1 {
	font-size: 26px;
}
.page-header1 p {
	font-size: 16px;
}

.process-steps {
	width: 90%;
	margin: 0px auto;
}

.step-item {
	padding-right: 0;
}

.step-item .step-decoration {
	background: url(../images/zs1.png) no-repeat;
}
.principles-section {
	margin-bottom: 0px;
}
.how-we-work {
	padding-top: 60px;
}
.page-header1 {
	margin-bottom: 80px;
}
.principles-cards {
	grid-template-columns: 1fr;
	width: 90%;
	margin: 0px auto;
}
.principle-card {
	padding: 28px;
}
			
	 /* 标题字号适配 */
            .page-header h1 {
 font-size: 28px;
}
 .principles-header h2 {
 font-size: 24px;
}

.features-image {
	width: 100%;
	height: auto;
	border-radius: 6px;
}




.contact-page {
	padding-top: 60px;
}

            /* Contact页面适配 */
            .contact-header h1 {
                font-size: 28px;
            }

            .quote {
                font-size: 20px;
                padding: 0 40px;
            }

            .quote::before {
                left: 0;
	font-size: 80px;
}
			

            /* 移动端联系人信息恢复垂直排列 */
            .contact-person {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

.person-name {
	font-size: 24px;
}


            .person-left {
                flex-direction: column;
                text-align: center;
            }

            .person-basic {
                text-align: center;
            }

            .person-right {
                text-align: center;
            }

            .person-contact a {
                justify-content: center; /* 移动端联系方式居中 */
            }

            .category-card {
               
                gap: 16px;
            }

            .category-tags {
                gap:8px;
              
            }

.select-trigger {
	padding: 10px 14px;

}
.select-option {
	padding: 10px 14px;
}
.custom-select::after {
	display: none;
}

.rc .modal-company {
	font-size: 12px;
}
.rc .modal-job-title {
	font-size: 28px;
	margin-top: 30px;
}

.rc .modal-header p {
	font-size: 14px;
}
.rc .modal-section1 p {
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 1.5;
}
.rc .modal-section1 h3 {
	display: inline-block;
	margin-bottom:3px;
}


.rc .modal-section1 h3 font {
	display: block;
	margin-bottom:0;
}
.rc .modal-section1 h3 span {
	float: left;
	display: block;
}



}

