/* 通用样式 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* 导航栏样式 */
header {
    background-color: #005b96;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    background-color: #003d66;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}
.hero {
	background-color: #e0f7fa;
	padding: 50px;
	text-align: center;
}

.hero h1 {
	font-size: 36px;
}

.hero p {
	font-size: 20px;
	color: #333;
}
.search-bar {
	margin: 30px auto;
	width: 60%;
	text-align: center;
}

.search-bar input[type="text"] {
	width: 70%;
	padding: 10px;
	font-size: 16px;
}

.search-bar button {
	padding: 10px 20px;
	background-color: #005b96;
	color: white;
	border: none;
	font-size: 16px;
	cursor: pointer;
}

/* 主要内容样式 */
.content {
    margin: 30px auto;
    width: 80%;
}

.content h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* 项目和出版物展示样式 */
.projects, .latest-publications {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.project, .publication {
    background-color: white;
    padding: 20px;
    margin: 10px;
    width: 28%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.project h3, .publication h4 {
    margin-top: 0;
}

.project p, .publication p {
    color: #333;
}

/* 搜索栏样式 */
.search-bar {
    margin: 30px auto;
    width: 60%;
    text-align: center;
}

.search-bar form {
    display: flex;
    justify-content: center;
}

.search-bar input[type="text"] {
    width: 70%;
    padding: 10px;
    font-size: 16px;
}

.search-bar button {
    padding: 10px 20px;
    background-color: #005b96;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: #004a75;
}

/* 页脚样式 */
footer {
    background-color: #003d66;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer a {
    color: white;
    text-decoration: none;
}

/* 引用部分样式 */
.cite-section {
    margin: 30px auto;
    width: 80%;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.cite-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.cite-section p {
    font-size: 16px;
}

.cite-section ul {
    list-style-type: none;
    padding: 0;
}

.cite-section li {
    margin: 10px 0;
}

.cite-section a {
    color: #005b96;
    text-decoration: none;
}

.cite-section a:hover {
    text-decoration: underline;
}

/* 联系页面的特定样式 */
.contact-info {
	margin: 30px auto;
	width: 60%;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
	font-size: 28px;
	margin-bottom: 20px;
	text-align: center;
}

.contact-info label {
	display: block;
	margin: 10px 0 5px;
	font-size: 16px;
}

.contact-info input[type="text"],
.contact-info input[type="email"],
.contact-info textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
}

.contact-info button {
	display: block;
	width: 100%;
	padding: 10px;
	background-color: #005b96;
	color: white;
	border: none;
	font-size: 16px;
	cursor: pointer;
	border-radius: 5px;
}

.contact-info button:hover {
	background-color: #004a75;
}

/* about团队成员介绍 */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #005b96;
    color: white;
    padding: 20px;
    text-align: center;
}

.content {
    margin: 20px auto;
    width: 80%;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #005b96;
    text-align: center;
}

.team {
    display: flex;
    /*flex-direction: column;*/
    gap: 20px;
    text-align: center; /* 文本居中（可选） */
    margin: 0 auto; /* 容器水平居中（可选） */
    width: fit-content; /* 根据内容自动调整宽度（可选） */
}



.team-member {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}
.team-member1 {
    display: flex; /* 设置为 flex 容器 */
    justify-content: space-around; /* 图片之间的间距 */
}
.team-info1 p {
    text-align: center; /* 将文本居中 */
}

.team-photo2 {
    width: 300px;
    height: 300px;
    /*border-radius: 50%;*/
    object-fit: contain;
    margin-right: 20px;
}


.team-photo {
    width: 300px;
    height: 300px;
    /*border-radius: 50%;*/
    object-fit: contain;
    margin-right: 20px;
}
.team-photo1 {
    width: 900px;
    height: 480px;
    /*border-radius: 50%;*/
    object-fit: contain;
    margin-right: 20px;
    margin-bottom: 10px;
}
/*.team-photo2 {*/
/*    width: 300px;*/
/*    height: 300px;*/
/*    !*border-radius: 50%;*!*/
/*    object-fit: cover;*/
/*    margin-right: 20px;*/
/*}*/

/*!*#research页面图片布局*!*/
/*.team-member1 {*/
/*    display: flex; !* 启用Flexbox布局 *!*/
/*    flex-wrap: nowrap; !* 防止图片换行，确保它们在同一行内排列 *!*/
/*    gap: 10px; !* 图片之间的间距，可根据需求调整 *!*/
/*}*/
/*.team-photo2 {*/
/*    width: 300px;*/
/*    height: 300px;*/
/*    !*border-radius: 50%;*!*/
/*    object-fit: contain;*/
/*    margin-right: 10px;*/
/*    display: flex;*/
/*}*/
/*.team-photo3 {*/
/*    width: 350px;*/
/*    height: 350px;*/
/*    !*border-radius: 50%;*!*/
/*    object-fit: contain;*/
/*    margin-right: 10px;*/
/*    display: flex;*/
/*}*/

.team-info {
    max-width: 1200px;
}

.team-info h3 {
    margin-top: 0;
    width: fit-content;     /* 根据内容自动调整宽度 */

}

footer {
    text-align: center;
    padding: 20px;
    background-color: #003d66;
    color: white;
    margin-top: 20px;
}

/* 下载页面样式 */
.download-section {
    margin: 30px auto;
    width: 80%;
    text-align: left;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
}

th, td {
    padding: 10px;
    border: 2px solid #333;
    text-align: left;
}

th {
    background-color: #f4f4f4;
}

.download-link a {
    color: #005b96;
    text-decoration: none;
}

.download-link a:hover {
    text-decoration: underline;
}

/* 搜索结果页面样式 */
.results-section {
    margin: 30px auto;
    width: 80%;
}

.results-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.results-section ul {
    list-style-type: none;
    padding: 0;
}

.results-section li {
    background-color: white;
    padding: 20px;
    margin: 10px 0;
    border: 1px solid #ddd;
}

.results-section li strong {
    font-size: 18px;
}

.results-section p {
    margin: 10px 0;
}

.results-section a {
    color: #005b96;
    text-decoration: none;
}

.results-section a:hover {
    text-decoration: underline;
}

/* 表单样式（如登录、注册） */
.form-container {
    margin: 50px auto;
    width: 40%;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-container form {
    display: flex;
    flex-direction: column;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="password"],
.form-container textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.form-container button {
    padding: 10px;
    background-color: #005b96;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.form-container button:hover {
    background-color: #004a75;
}

/* Flash 消息样式 */
.flash-message {
    text-align: center;
    padding: 10px;
    margin: 10px 0;
}

.flash-message.success {
    background-color: #d4edda;
    color: #155724;
}

.flash-message.error {
    background-color: #f8d7da;
    color: #721c24;
}

/* 其他可根据需要添加的样式 */
