/* CSS for styling the web page */

body {
    font-family: Arial, sans-serif;
    background-image: url("/file/photo/xt/ditu.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 5px;
}



h2 {
    color: #333;
}

p {
    color: #666;
}

input[type="text"],

input[type="email"],
input[type="password"],
input[type="submit"] {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

a {
    text-decoration: none;
    color: #0066cc;
}

a:hover {
    color: #004080;
}


/* 样式化导航链接 */
.navigation-links {
    margin-top: 20px; /* 上方留白 */
    font-size: 16px;  /* 设置字体大小 */
}

.nav-link {
    display: block; /* 让每个链接在新的一行显示 */
    margin-bottom: 10px; /* 设置链接之间的间距 */
    text-decoration: none; /* 去掉链接的下划线 */
    color: #007bff; /* 设置链接颜色 */
    font-weight: bold; /* 加粗字体 */
}

.nav-link:hover {
    color: #0056b3; /* 鼠标悬停时改变颜色 */
    text-decoration: underline; /* 悬停时出现下划线 */
}
button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

/* 这里你可以根据需要增加更多的样式 */
