/* styles.css */
.language-switcher {
  text-align: center;
  padding: 20px;
}

#language-select {
  padding: 5px;
  font-size: 16px;
}




body {
    font-family: 'Arial', sans-serif,0.1px;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}

header .logo {
    width: 50px;
    height: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 1em 0 0 0;
}

nav ul li {
    display: inline;
    margin: 0 1em;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Arial', sans-serif, 6px;
}

main {
    padding: 2em;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
}

.footer {
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 10em 10;
    position: fixed;
    width: 100%;
    bottom: 0;
}
.footer p{
    background-color: #333;
}

.resource-list, .download-list {
    list-style: none;
    padding: 0;
}

.resource-list li, .download-list li {
    background-color: #e2e2e2;
    margin: 0.5em 0;
    padding: 0.5em;
    border-radius: 2px;
}

.resource-list li a, .download-list li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin: 0.5em 0 0.2em 0;
}

.contact-form input, .contact-form textarea {
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.contact-form button {
    margin-top: 1em;
    padding: 0.7em;
    border: none;
    border-radius: 3px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #555;
}
.copy{
    position: absolute;
    bottom: 40%; /* 调整距离底部的百分比来改变垂直位置 */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.copy1{
    position: absolute;
    bottom: 10%; /* 调整距离底部的百分比来改变垂直位置 */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
footer {
    background-color: #f0f0f0;
    padding: 20px 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: -20px;
    justify-content: space-around;
}

.footer-content > div {
  margin-bottom: 20px;
}

.about-us h3, .contact-info h3, .social-links h3 {
  margin-bottom: 10px;
}

.social-links a {
    font-size: 20px;
    margin: 0 5px;
    text-decoration: none;
}

.copyright {
    margin-top: 20px;
    font-size: 0.8em;
}

/* 响应式布局示例 */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

}