body {
    font-family: Arial, sans-serif;
    /* background-image: url('https://bing.img.run/rand_1366x768.php'); */
    background-size: cover;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}
.navbar {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 10;
}
.navbar a {
    margin: 0 15px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}
.navbar a:hover {
    text-decoration: underline;
}
.container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 300px;
    text-align: center;
    margin-top: 80px; /* To avoid navbar overlap - adjusted for new navbar height */
}
/* 添加天气图标的样式 */
.weather-icon {
    width: 20px; /* 图标宽度 */
    height: 20px; /* 图标高度 */
    vertical-align: middle; /* 垂直对齐 */
    margin-right: 5px; /* 右边距 */
}
/* 添加天气信息的样式 */
.weather-info {
    color: #FF69B4; /* 红粉色 */
    font-weight: bold; /* 加粗字体 */
}
