/* 全局样式 */
body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #0052cc;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.5em;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

header .login-btn {
    background-color: #fff;
    color: #0052cc;
    padding: 5px 10px;
    border-radius: 5px;
}

/* 页面内容部分 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 关于我们标题和简介部分 */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 20px;
}

.about-section .text-content {
    width: 50%;
    line-height: 1.8;
}

.about-section h1 {
    font-size: 2.5em;
    color: #0056b3;
}

.about-section p {
    margin-top: 10px;
    color: #555;
    text-indent: 1.6em;
    font-size: 0.8em;
}

.about-section .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* 人员构成部分 */
/* 人员构成部分 */
.team-section {
    margin-top: 50px;
    text-align: center;
}

.team-section h2 {
    font-size: 2em;
    color: #0056b3;
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 每行最多三列 */
    gap: 30px;
    padding: 20px 0;
}

.team-member {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 90px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
    /* 移除圆角 */
    border-radius: 0;
}

.team-member h3 {
    font-size: 1.2em;
    color: #0056b3;
    margin: 10px 0;
}

.team-member p {
    font-size: 0.9em;
    color: #666;
}



/* 地址部分 */
.address-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid #ccc;
}

.address-section .map {
    width: 50%;
}

.address-section img {
    max-width: 100%;
    border-radius: 10px;
}

.address-section .address-text {
    width: 35%;
    padding: 20px;
    font-size: 1.1em;
}

.address-section h2 {
    font-size: 1.8em;
    color: #0056b3;
    margin-bottom: 10px;
}

.address-section a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.address-section a:hover {
    background-color: #003d80;
}

/* 页脚部分 */
footer {
    background-color: #0046b8;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 14px;
    position: fixed;       /* 固定位置 */
    left: 0;
    bottom: 0;             /* 固定在页面底部 */
    width: 100%;           /* 宽度占满全屏 */
    z-index: 9999;         /* 确保页脚位于最上层 */
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 5px 10px;
}
