/* 全局样式设置 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;
}

/* 主标题样式 */
h1 {
    margin-top: 50px;
    color: #333;
}

/* 主图容器样式 */
#main-image-container {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 主图样式 */
#main-image {
    width: 40%;
    height: 66%;
    object-fit: cover;
}

/* 景点图片容器样式 */
#scenic-spots-images-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
}

/* 单个景点图片样式 */
.scenic-spots-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
}

/* 左侧景点图片容器样式 */
#scenic-spots-images-container.left {
    flex-direction: column;
    align-items: flex-start;
}

/* 右侧景点图片容器样式 */
#scenic-spots-images-container.right {
    flex-direction: column;
    align-items: flex-end;
}

/* 弹出框样式（用于显示景点介绍） */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 80%;
    max-height: 80%;
    overflow: auto;
}

/* 弹出框关闭按钮样式 */
.popup-close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
}

/* 导航栏样式 */
nav {
    background-color: #333;
    color: white;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    cursor: pointer;
}

/* 链接样式 */
.link {
    color: white;
    text-decoration: none;
}