/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

p{
	margin-top: 5px;  /* 设置p标签上间隔 */
	margin-bottom: 5px;  
}

.travel-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.fee_item{
	margin-left: 10px;
}

.content-item {
    margin: 15px;
    background: white;
    box-shadow: 0 0 10px #ccc;
    padding: 20px;
    width: 350px;
}
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

img {
    transition: transform 0.3s ease;
    cursor: zoom-in;
    max-width: 100%;
    height: auto;
}

img.zoomed {
    transform: scale(2);
    cursor: zoom-out;
}
.content-item img, .content-item video {
    width: 100%;
    height: auto;
}

footer {
    text-align: center;
    padding: 10px 20px;
    background: #333;
    color: white;
    left: 0;
    bottom: 0;
    width: 100%;
}