﻿* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft Yahei", sans-serif;
}
.about-wrap {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 40px 20px;
}
.about-title {
	text-align: center;
	font-size: 36px;
	color: #222;
	margin-bottom: 60px;
	font-weight: 500;
}
.about-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	/* 关键修改：拉伸高度，左右等高 */
	align-items: stretch;
}
.about-img-box {
	border-radius: 16px;
	overflow: hidden;
}
.about-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.about-text-area {
	/* 关键：垂直弹性布局 */
	display: flex;
	flex-direction: column;
}
.about-text-area h2 {
	font-size: 30px;
	color: #222;
	margin-bottom: 24px;
	font-weight: 500;
}
.about-text-area p {
	font-size: 16px;
	color: #444;
	line-height: 2;
	margin-bottom: 16px;
}
.about-text-area p:last-of-type {
	margin-bottom: 32px;
}
.data-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(90deg, #2563eb, #4cd9cc);
	/* 关键：自动推到容器底部 */
	margin-top: auto;
}
.data-item {
	text-align: center;
	padding: 20px 10px;
	color: #fff;
}
.data-num {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 4px;
}
.data-desc {
	font-size: 15px;
}
/*====专家简介模块样式====*/
.expert-section {
	background-color: #f0f7ff;
	padding:60px 20px;
}
.expert-wrap {
	max-width:1200px;
	margin:0 auto;
}
.expert-main-title {
	text-align:center;
	font-size:36px;
	color:#222;
	margin-bottom:40px;
	font-weight:500;
}
.expert-card {
	background:#ffffff;
	border-radius:12px;
	padding:30px;
	display:flex;
	gap:24px;
	margin-bottom:24px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.expert-avatar {
	width:140px;
	border-radius:8px;
	overflow:hidden;
	flex-shrink:0;
}
.expert-avatar img {
	width:100%;
	height:100%;
	object-fit:cover;
}
.expert-info h3 {
	font-size:26px;
	color:#111;
	display:inline-block;
	margin-right:16px;
}
.expert-direction {
	font-size:16px;
	color:#555;
}
.expert-desc {
	margin-top:16px;
	font-size:16px;
	color:#444;
	line-height:1.8;
	text-align:left
}
/*====新闻动态模块====*/
.news-section {
	padding:60px 20px;
	background:#ffffff;
}
.news-wrap {
	max-width:1200px;
	margin:0 auto;
}
.news-main-title {
	text-align:center;
	font-size:36px;
	color:#222;
	margin-bottom:40px;
	font-weight:500;
}
.news-card {
	background:#fff;
	border-radius:12px;
	padding:32px;
	margin-bottom:24px;
	box-shadow:0 2px 12px rgba(0, 0, 0, 0.05);
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	gap:24px;
}
.news-content {
	flex:1;
}
.news-title {
	font-size:20px;
	color:#222;
	font-weight:bold;
	margin-bottom:12px;
}
.news-desc {
	font-size:15px;
	color:#666;
	line-height:1.7;
	margin-bottom:16px;
}
.news-date {
	font-size:15px;
	color:#888;
}
.news-icon {
	width:80px;
	flex-shrink:0;
	text-align:center;
}
.news-icon img {
	width:100%;
}
.page-box {
	display:flex;
	justify-content:center;
	gap:8px;
	margin-top:40px;
}
.page-box span {
	width:36px;
	height:36px;
	line-height:36px;
	text-align:center;
	border-radius:4px;
	background:#f5f7fa;
	cursor:pointer;
}
.page-box span.active {
	background:#2563eb;
	color:#fff;
}
/*====人才招聘模块====*/
.recruit-section {
	padding:60px 20px;
	background:#f0f7ff;
}
.recruit-wrap {
	max-width:1200px;
	margin:0 auto;
}
.recruit-main-title {
	text-align:center;
	font-size:36px;
	color:#222;
	margin-bottom:40px;
	font-weight:500;
}
.recruit-card {
	background:#fff;
	border-radius:12px;
	padding:24px 32px;
	margin-bottom:16px;
	box-shadow:0 2px 12px rgba(0, 0, 0, 0.04);
}
.recruit-card-head {
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.recruit-left h4 {
	font-size:18px;
	color:#222;
	display:inline-block;
}
.recruit-tag {
	display:inline-block;
	background:#f54545;
	color:#fff;
	font-size:12px;
	padding:2px 6px;

	border-radius:3px;
	margin-left:8px;
}
.recruit-info {
	font-size:14px;
	color:#666;
	margin-top:8px;
}
.recruit-right {
	text-align:right;
}
.recruit-time {
	font-size:14px;
	color:#888;
	margin-bottom:8px;
}
.recruit-btn {
	border:1px solid #ccc;
	background:#fff;
	padding:4px 12px;
	border-radius:4px;
	cursor:pointer;
}
/* 招聘下拉详情容器 */
.recruit-detail {
	margin-top:20px;
	padding-top:20px;
	border-top:1px solid #eee;
	display:none;
	line-height:30px
}
.recruit-detail h5 {
	font-size:17px;
	color:#222;
	margin:16px 0 8px;
	border-left:3px solid #2563eb;
	padding-left:10px;
}
.recruit-detail ul {
	padding-left:20px;
}
.recruit-detail li {
	font-size:15px;
	color:#444;
	line-height:1.75;
	margin-bottom:6px;
}
.recruit-apply-btn {
	display:block;
	width:180px;
	height:46px;
	line-height:46px;
	text-align:center;
	background:#2563eb;
	color:#fff;
	border-radius:6px;
	border:none;
	font-size:16px;
	margin:24px auto 0;
	cursor:pointer;
}
/*====联系我们模块====*/
.contact-section {
	padding:60px 20px;
	background:#ffffff;
}
.contact-wrap {
	max-width:1200px;
	margin:0 auto;
}
.contact-main-title {
	text-align:center;
	font-size:36px;
	color:#222;
	margin-bottom:40px;
	font-weight:500;
}
.contact-map {
	border-radius:12px;
	overflow:hidden;
	box-shadow:0 2px 12px rgba(0, 0, 0, 0.06);
	margin-bottom:30px;
}
.contact-map img {
	width:100%;
	display:block;
}
.contact-info-box {
	background:#f0f7ff;
	border-radius:12px;
	padding: 5px 35px 10px;
}
.contact-item {
	display:flex;
	align-items:center;
	font-size:16px;
	color:#333;
	margin-bottom:16px;
	gap:12px;
}
/*====投递弹窗样式====*/
.modal {
	display: none;
	position: fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background-color:rgba(0, 0, 0, 0.55);
	z-index:9999;
	justify-content:center;
	align-items:center;
}
.modal-wrap {
	background:#fff;
	width:90%;
	max-width:460px;
	padding:36px 30px;
	border-radius:12px;
	position:relative;
}
.modal-close {
	position:absolute;
	right:16px;
	top:12px;
	font-size:26px;
	cursor:pointer;
	color:#999;
}
.modal-title {
	font-size:22px;
	color:#222;
	text-align:left;
	margin-bottom:24px;
}
.modal-wrap .contact-item {
	justify-content:left;
	font-size:16px;
	margin-bottom:14px;
}

/* 移动端自适应 */
@media screen and (max-width:768px) {
 .about-container {
 grid-template-columns: 1fr;
}
 .about-title {
 font-size: 28px;
 margin-bottom:30px;
}
 .about-text-area h2 {
 font-size: 24px;
}
 .about-container {
 align-items: flex-start;
}
 .expert-card {
 flex-direction:column;
 text-align:center;
}
 .expert-avatar {
 margin:0 auto;
}
 .news-card {
 flex-direction:column;
}
 .recruit-card-head {
 flex-direction:column;
 align-items:flex-start;
 gap:12px;
}
 .recruit-right {
 text-align:left;
}
}

.news .section1 {
    background: #f2f4f8;
    padding-bottom: 0.2rem;
    padding-top: 1.6rem
}
.section1 {
    background: #f2f4f8;
    padding-bottom: 0.2rem;
    padding-top: 1.6rem!important;}
@media screen and (max-width:768px) {
.section1 {
    background: #f2f4f8;
    padding-bottom: 0.2rem;
    padding-top: 0.6rem!important;}}