<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            background-color: #f4f4f4;
        }
        header {
            color: white;
			margin-top: 10px;
            padding: 10px 0;
            text-align: center;
        }
        header .logo img {
            width: 90%;
			max-width: 500px; 
            height: auto;
        }
        .container {
            max-width: 1100px;
            margin: 10px auto;
            background-color: white;
            padding: 35px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .intro {
            text-align: left;
        }
        .intro h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
			text-align: center;
        }
        .intro p {
            font-size: 1.2em;
            margin-bottom: 20px;
        }
        .section {
            margin-bottom: 20px;
        }
        .section h2 {
            font-size: 1.5em;
            margin-bottom: 10px;
            border-bottom: 2px solid #343a40;
            padding-bottom: 5px;
        }
        .section ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .section ul li {
            margin-bottom: 10px;
        }
        .popular-destinations a {
            padding: 6px 6px;
            color: #ffffff;
            background-color: #007bff;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .popular-destinations a:hover {
            background-color: #0056b3;
        }
        .city-list ul{
		    margin: 0 5px 0 5px;
			padding: 0;
        }
        .city-list ul li {
			margin: 0;
            padding: 0;
            width: 100%;
			line-height: 1.8 ; 
        }
        .city-list ul li a {
            padding-right: 8px;
			white-space: nowrap;
            color: #007dfb;
            text-decoration: none;
        }
		.city-list ul li a:hover {
            color: #ff8236;
			font-weight: bold;
        }
        .city-list span {
            font-weight: bold;
			padding-right: 8px;
        }
		.links-section ul li {
			margin: 0;
			padding: 0;
			list-style-type: none;
            line-height: 1.0;
        }
        .links-section ul a {
            text-decoration: none;
            color: #666666;
        }
        .links-section ul a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #343a40;
            color: white;
            text-align: center;
            padding: 15px 0;
            width: 100%;
            position: relative;
            bottom: 0;
        }
        footer .links a {
            color: white;
            text-decoration: none;
            margin: 0 8px;
            font-weight: bold;
			line-height: 2; 
        }
        footer .links a:hover {
            text-decoration: underline;
        }
		footer .footer-info p {
			line-height: 1.5; 
			margin: 0 auto; 
			width: 98%;
			font-size: 1em;
		}
		footer .footer-info a {
			text-decoration: none; 
			color: white; 
		}

		@media (max-width: 768px) {
            .section ul {
                padding-left: 0;
            }
    .intro h1 {
        font-size: 1.8em; 
    }
    .intro p {
        font-size: 1em; 
    }
    .container {
        padding: 15px; 
    }
}

.search-container {
    margin: 0px auto 0;
    margin-top: 5px;
    margin-bottom: 5px;
    display: flex;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #0FAAFF;
}
 
.search-input {
    flex: 1;
    padding: 8px 12px;
    border: none;
    outline: none;
    font-size: 16px;
}
 
.search-buttonm {
    padding: 8px 12px;
    font-size: 16px;
    background-color: #0FAAFF;
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s;
}
 
.search-buttonm:hover {
    background-color: #0056b3;
}
 
@media (min-width: 768px) {
    .search-container {
        max-width: 500px; 
    }
}
 
@media (max-width: 767px) {
    .search-container {
        max-width: 100%; 
    }
}
        .desktop-links, .mobile-links {
            display: none; /* 默认隐藏 */
        }
 
        /* 使用媒体查询来根据屏幕宽度显示内容 */
        @media (min-width: 768px) {
            .desktop-links {
                display: block;
            }
        }
 
        @media (max-width: 767px) {
            .mobile-links {
                display: block;
            }
        }</pre></body></html>