/* 专家智库页面专用样式 */

.expert-think-tank-page {
	background: var(--bg);
}

/* Hero Section */
.expert-hero {
	background: url('expbg1.jpg') center/cover;
	min-height: 60vh;
	position: relative;
	display: flex;
	align-items: center;
}


.expert-hero .container {
	position: relative;
	z-index: 2;
}

.expert-hero .hero-content {
	/* padding-top: 120px; */
	text-align: center;
}

/* 人才专家部分 */
.talent-expert {
	padding: 120px 0 80px;
	background: white;
}

.talent-expert .container {
	background: white;
	padding: 40px;
}

.expert-subtitle {
	text-align: center;
	margin-bottom: 60px;
}

.expert-subtitle p {
	font-size: 1.2rem;
	color: #666;
	font-weight: 400;
	margin: 0;
	line-height: 1.6;
}

/* 专家列表布局 */
.expert-list {
	margin-top: 60px;
}

.expert-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
	margin-bottom: 80px;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.expert-row .expert-image {
	order: 1;
}

.expert-row .expert-details {
	order: 2;
}

.expert-row:last-child {
	margin-bottom: 0;
}

/* 反向布局 */
.expert-row.reverse {
	grid-template-columns: 1fr 1fr;
}

.expert-row.reverse .expert-details {
	order: 1;
}

.expert-row.reverse .expert-image {
	order: 2;
}

.expert-image {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 500px;
	overflow: hidden;
}

.expert-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}


.expert-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(179, 131, 38, 0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}


.expert-details {
	position: relative;
	padding: 40px;
	background: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	min-height: 500px;
}

.expert-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #d4af37;
	color: white;
	border-radius: 50%;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.expert-details h3 {
	font-size: 2rem;
	color: #333;
	margin: 0 0 10px 0;
	font-weight: 700;
}

.expert-title {
	font-size: 1.2rem;
	color: #666;
	margin: 0 0 25px 0;
	font-weight: 500;
}

.expert-bio {
	margin-bottom: 25px;
}

.expert-bio p {
	font-size: 1rem;
	color: #555;
	margin: 0 0 8px 0;
	line-height: 1.6;
}

.expert-quote {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	border-left: 4px solid #d4af37;
}

.expert-quote p {
	font-size: 1rem;
	color: #333;
	margin: 0;
	font-style: italic;
	line-height: 1.6;
}

/* 全部专家部分 */
.all-experts {
	padding: 80px 0;
	background: #f8f9fa;
}

.all-experts-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 40px;
	margin-top: 60px;
}

.expert-card-large {
	text-align: center;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
}


.expert-card-large .expert-image {
	height: 400px;
}

.expert-card-large .expert-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(179, 131, 38, 0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}


.expert-cards-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.expert-card-small {
	text-align: center;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
}


.expert-card-small .expert-image {
	height: 250px;
}

.expert-card-small .expert-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(179, 131, 38, 0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}


.expert-card-small .expert-info {
	padding: 15px;
	color: #333;
}

.expert-card-small .expert-info h3 {
	font-size: 1.1rem;
	margin-bottom: 5px;
}

.expert-card-small .expert-info p {
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.expert-description {
	margin-top: 10px;
}

.expert-description p {
	font-size: 0.85rem;
	color: #888;
	line-height: 1.4;
	margin: 0;
	text-align: left;
}

/* 联系我们部分 */
.contact-section {
	padding: 80px 0;
	background: white;
}

.contact-header {
	margin-bottom: 40px;
}

.contact-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #000;
	margin: 0;
	text-align: left;
}

.contact-title .gradient-text {
	color: #d4af37;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.contact-left {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-info {
	background: white;
	padding: 0;
	border-radius: 0;
	backdrop-filter: none;
	border: none;
}

.contact-item {
	margin-bottom: 25px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.contact-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand);
	flex-shrink: 0;
}

.contact-details {
	flex: 1;
}

.contact-label {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 5px;
}

.contact-value {
	color: #000;
	font-size: 1rem;
	font-weight: 500;
}

.contact-map {
	background: white;
	padding: 0;
	border-radius: 0;
	backdrop-filter: none;
	border: none;
	text-align: left;
}

.map-placeholder {
	height: 300px;
	background: #f8f9fa;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.map-pin {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 60px;
	background: #d4af37;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: white;
	padding: 0 15px;
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.map-pin svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.map-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}

.map-company {
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.2;
	color: #000;
}

.map-address {
	font-size: 0.8rem;
	opacity: 0.8;
	line-height: 1.2;
	color: #000;
}

.contact-right {
	background: white;
	padding: 0;
	border-radius: 0;
	backdrop-filter: none;
	border: none;
}

.contact-form {
	background: white;
	padding: 0;
	border-radius: 0;
	backdrop-filter: none;
	border: none;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	color: #000;
	font-size: 0.9rem;
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 12px;
	color: #000;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--brand);
	background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #999;
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.contact-form .btn {
	width: 100%;
	margin-top: 20px;
}

/* Footer样式 */
.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 50px;
	margin-bottom: 40px;
	gap: 40px;
}

.footer-left {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 0 0 auto;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer-logo .logo-image {
	width: 120px;
	height: auto;
	border-radius: 8px;
	flex-shrink: 0;
	object-fit: contain;
}

.company-address {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.address-label {
	font-size: 14px;
	color: var(--muted);
	font-weight: 500;
}

.address-text {
	font-size: 14px;
	color: var(--text);
	line-height: 1.5;
	max-width: 200px;
}

.footer-cols {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 40px;
	flex: 1;
}

.footer-cols .col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-cols .col h4 {
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	margin: 0 0 8px 0;
}

.footer-cols .col a {
	font-size: 14px;
	color: var(--muted);
	text-decoration: none;
	transition: color 0.3s ease;
}


.contact-icons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	flex: 0 0 auto;
}

.contact-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.all-experts-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.expert-cards-row {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.footer-cols {
		grid-template-columns: repeat(4, 1fr);
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.expert-row {
		grid-template-columns: 1fr;
		gap: 0;
		margin-bottom: 60px;
		border-radius: 20px;
		overflow: hidden;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	}
	
	.expert-row .expert-image,
	.expert-row .expert-details,
	.expert-row.reverse .expert-image,
	.expert-row.reverse .expert-details {
		order: unset;
	}
	
	.expert-image {
		height: 300px;
		min-height: 300px;
	}
	
	.expert-details {
		padding: 30px 20px;
		min-height: auto;
		height: auto;
	}
	
	.expert-details h3 {
		font-size: 1.5rem;
	}
	
	.expert-cards-row {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.contact-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.form-row {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.footer-top {
		flex-direction: column;
		gap: 30px;
		text-align: center;
	}
	
	.footer-cols {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.contact-icons {
		order: -1;
		flex-direction: row;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.talent-expert,
	.all-experts,
	.contact-section {
		padding: 60px 0;
	}
	
	.expert-row {
		margin-bottom: 40px;
		gap: 0;
	}
	
	.expert-image {
		height: 250px;
		min-height: 250px;
	}
	
	.expert-details {
		padding: 20px 15px;
		min-height: auto;
		height: auto;
	}
	
	.expert-details h3 {
		font-size: 1.3rem;
	}
	
	.expert-title {
		font-size: 1rem;
	}
	
	.expert-bio p {
		font-size: 0.9rem;
	}
	
	.expert-quote {
		padding: 15px;
	}
	
	.expert-quote p {
		font-size: 0.9rem;
	}
	
	.expert-card-large,
	.expert-card-small {
		margin: 0 10px;
	}
	
	.expert-card-large .expert-image {
		height: 300px;
	}
	
	.expert-card-small .expert-image {
		height: 200px;
	}
	
	.footer-cols {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.footer-logo .logo-image {
		width: 100px;
	}
	
	.address-text {
		max-width: none;
	}
}
