body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background: #004080;
    color: #fff;
    padding: 10px 0;
}

header .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 20px 0;
}

section {
    margin: 20px 0;
    text-align: center;
}

h2 {
    border-bottom: 2px solid #004080;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}


/* 为列表项添加边框和动画效果 */

.services-list li {
    list-style: none;
    width: 30%;
    margin: 20px 0;
    text-align: center;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* 半透明边框 */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}


/* 鼠标悬停时改变边框颜色和阴影 */

.services-list li:hover {
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* 为图片添加一些样式 */

.services-list img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

footer {
    background: #004080;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.center-image-big,
.center-image-teams,
.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: auto;
}

.center-image-big {
    height: 480px;
}

.center-image-contact {
    height: 100px;
    /* 默认高度 */
    max-height: 100px;
    /* 限制最大高度 */
    height: calc(100vw * 0.26);
    /* 根据视口宽度动态调整高度 */
}


/* 媒体查询，针对小屏幕设备调整样式 */

@media (max-width: 768px) {
    .center-image-contact {
        height: calc(100vw * 0.3);
        /* 在小屏幕上增加高度 */
    }
}

.center-image-teams {
    height: 480px;
}

.center-image {
    height: 260px;
}

@media (max-width: 767px) {
    .center-image-big,
    .center-image-teams,
    .center-image {
        height: auto;
        max-width: 100%;
    }
}

.services-list h3 {
    font-family: 'Helvetica Neue', sans-serif;
    /* 使用现代的无衬线字体 */
    font-size: 1em;
    /* 字体大小适中 */
    color: #4a4a4a;
    /* 稍微深一点的灰色，提高可读性 */
    margin-top: 10px;
    /* 增加顶部边距，为图片和标题之间留出更多空间 */
    margin-bottom: 5px;
    /* 底部边距也增加 */
    text-align: center;
    /* 居中文本 */
    background-color: #f5f5f5;
    /* 更浅的背景色，减少视觉压迫感 */
    padding: 10px;
    /* 增加内边距，使文本周围有更多空间 */
    border-radius: 8px;
    /* 稍微大一点的圆角，增加设计感 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* 添加轻微的阴影，增加层次感 */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* 平滑的过渡效果 */
}

.services-list h3:hover {
    background-color: #e0e0e0;
    /* 鼠标悬停时背景色变浅 */
    color: #000;
    /* 悬停时文本颜色加深 */
}


/* 响应式设计 */

@media (max-width: 768px) {
    .services-list {
        justify-content: flex-start;
        /* 在小屏幕上，项目从容器开始位置对齐 */
    }
    .services-list h3 {
        font-size: 0.8em;
        /* 在小屏幕上稍微减小字体大小 */
        text-align: center;
        /* 确保文本居中 */
        background-color: transparent;
        /* 移除背景色，减少视觉干扰 */
        padding: 0;
        /* 移除内边距 */
        border-radius: 0;
        /* 移除圆角 */
        box-shadow: none;
        /* 移除阴影 */
        transition: none;
        /* 移除过渡效果 */
    }
}