/* 通用样式 */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #121212;
  color: white;
}

/* 头部样式 */
header {
  background-color: #1e1e1e;
  padding: 20px;
  text-align: center;
  position: sticky;

  border-bottom: 2px solid #333;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}

header nav {
  margin-top: 10px;
}

header nav a {
  color: #f05a28;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1.1rem;
}

header nav a:hover {
  text-decoration: underline;
}

/* 社交媒体分享图标 */
.social-share-icons {
  margin-top: 20px;
}

.social-share-icons a {
  margin: 0 15px;
  color: #f05a28;
  font-size: 2rem;
  text-decoration: none;
}

.social-share-icons a:hover {
  color: white;
}

/* 页面主内容样式 */
.main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  margin-top: 10px; /* 为了防止内容被头部遮挡，给内容添加顶部外边距 */
}

.container {
  max-width: 600px;
  width: 100%;
  padding: 20px;
  border-radius: 8px;
  background-color: #1e1e1e;
  text-align: center;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  background-color: #333;
  padding: 15px;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  font-size: 1.2rem;
  transition: background-color 0.3s;
}

.social-links a:hover {
  background-color: #f05a28;
}

.social-links a img {
  width: 25px;
  margin-right: 10px;
  vertical-align: middle;
}

/* 页脚样式 */
footer {
  background-color: #1e1e1e;
  text-align: center;
  padding: 30px;
  border-top: 2px solid #333;
  color: #888;
}

footer p {
  margin: 0;
  font-size: 0.8rem;
}

footer .social-icons a {
  color: #f05a28;
  margin: 0 10px;
  font-size: 1.5rem;
  text-decoration: none;
}

footer .social-icons a:hover {
  color: #fff;
}
