body {
      margin: 0;
      font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
      background: linear-gradient(to right, #f0f4ff, #ffffff);
      background-image: url(../../publicPhotos/background.jpg);
      background-repeat:no-repeat;
      background-size:cover;
      background-attachment:fixed;
      color: #333;
      overflow-x: hidden;
    }
    .container {
      max-width: 860px;
      margin: 120px auto;
      padding: 30px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease, transform 1s ease;
    }
    .loaded .container {
      opacity: 1;
      transform: translateY(0);
    }
    .avatar {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      margin: 0 auto 20px;
      transition: transform 0.3s ease;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }
    .avatar:hover {
      transform: scale(1.1);
    }
    h1, h2 {
      text-align: center;
      margin-bottom: 12px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease-out;
    }
    h2 {
      margin-top: 40px;
    }
    .visible {
      opacity: 1 !important;
      transform: translateY(0) !important;
    }
    p, ul {
      font-size: 16px;
      line-height: 1.8;
      margin: 10px 0;
    }
    ul {
      padding-left: 20px;
    }
    a {
      color: #007bff;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    @media (max-width: 600px) {
      .container {
        margin: 20px;
        padding: 20px;
      }
    }

    #container-ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

#container-ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: 16px;
}

#container-ul li::before {
  content: "👉";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: #007bff;
}
/*解决移动端适配问题*/
@media (max-width: 1025px) {
  /* 容器适配手机屏幕 */
  .container {
    margin: 80px 10px 20px;
    padding: 20px 16px;
    border-radius: 10px;
  }

  /* 头像缩小适配 */
  .avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  /* 标题字号优化 */
  h1, h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  /* 正文字体更紧凑 */
  p, ul, #container-ul li {
    font-size: 14px;
    line-height: 1.6;
  }

  /* 列表样式微调 */
  #container-ul li {
    padding-left: 24px;
    margin-bottom: 10px;
  }

  #container-ul li::before {
    font-size: 14px;
  }
}
