/* 现有的CSS样式保持不变 */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
    flex-direction: row;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 0vh;
    /* 使容器占满整个视口高度 */
    margin-bottom: 30px;
}

.center-container p {
    font-size: 2em;
    /* 放大文字 */
}

.image-container {
    margin: 37px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.image-container img {
    width: 50%;
    height: 50%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.image-container:hover img {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.caption {
    margin-top: 5px;
    font-size: 18px;
    color: #0a0a0a;
    cursor: pointer;
    border-radius: 5px;
}

.caption a {
    font-size: 22px;
    color: #333;
    text-decoration: none;
    /* 去掉下划线 */
    background-color: #f9f9f9;
    /* 背景颜色 */
    border: 1px solid #ddd;
    /* 边框 */
    padding: 5px 10px;
    /* 内边距 */
    border-radius: 3px;
    /* 圆角 */
    transition: background-color 0.3s, color 0.3s;
    /* 过渡效果 */
}

.caption a:hover {
    background-color: #ddd;
    /* 鼠标悬停时的背景颜色 */
    color: #007bff;
    /* 鼠标悬停时的文字颜色 */
}

/* 新增样式以支持Logo和按钮 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    /* 你可以根据需要更改背景颜色 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* 添加阴影 */
}

.logo {
    width: 240px;
    /* 根据你的Logo大小调整 */
    height: 100px;
}

.button {
    background-color: #007bff;
    /* 按钮背景颜色 */
    color: #fff;
    /* 按钮文字颜色 */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
    /* 鼠标悬停时的背景颜色 */
}