/* more.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;
    }



    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f9;
      color: #333;
      text-align: center;
    }

    h1 {
      margin-top: 20px;
      color: #007BFF;
      font-size: 2.5em;
    }

    /* 网站链接外壳 */
    .website-links {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 20px auto;
      padding: 10px;
    }

    /* 单个链接卡片样式 */
    .website-links a {
      text-decoration: none;
      border: 1px solid #ddd;
      border-radius: 10px;
      background-color: #fff;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .website-links a:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

    /* 图片样式 */
    .website-links img {
      width: 100%;
      height: 150px;
      object-fit: cover;
    }

    /* 链接标题样式 */
    .website-links h2 {
      margin: 15px 0;
      color: #333;
      font-size: 1.2em;
    }

    /* 响应式优化 */
    @media (max-width: 600px) {
      h1 {
        font-size: 2em;
      }

      .website-links {
        grid-template-columns: 1fr;
      }
    }