html {
    background-color: white;
}
header {
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    display: flex;
    margin: 0%;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(3px); /* 设定模糊程度，例如 10px */
    -webkit-backdrop-filter: blur(10px);
}
.logo img{
    width:200px
}
.catalog {
    margin:0;
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 12px 24px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
  }
  
.catalog li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
}

.catalog li a:hover {
    background-color: #007bff;
    color: white;
}
  
body {
    margin: 0;
    width: 100%;
    height: 100%;
}

.head {
    width: 100%;
    display: flex;
    justify-content: space-between; /* 左右对齐 */
    align-items: center; /* 垂直居中 */
}

.other {
    display: flex;
    margin-left: auto; /* 将 About 推到右侧 */
}


.about {
    display: flex;
    align-items: center;
}

.snoopy {
    position: absolute; /* 修复 position 的值 */
    width: 90px;
    top: 16px;
    right: 192px;
    margin-right: 8px; /* 修复 margin 的值 */
}

@media (max-width: 570px) {
  .snoopy {
    right: 140px;
  }
}

@media (max-width: 460px) {
  .snoopy {
    display: none;
  }
}