/* 全局样式 */
body {
  background-color: #0B2E2E;
  background-image: url('https://rinka204.github.io/photos/setup.png');
  color: #FFFFFF;
  font-family: 宋体, SimSun, serif;
  font-size: 14px;
  max-width: 960px;
  margin: 0 auto;
}

a {
  color: #8FF7F3;
}

a:visited {
  color: #79E4D6;
}

a:hover {
  color: #D0FFF8;
}

/* 动画效果 */
.blink {
  animation: blink-anim 1s linear infinite;
}

@keyframes blink-anim {

  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.rainbow {
  animation: rainbow-anim 3s linear infinite;
}

@keyframes rainbow-anim {
  0% {
    color: #FF0000;
  }

  16% {
    color: #FF9900;
  }

  33% {
    color: #FFFF00;
  }

  50% {
    color: #00FF00;
  }

  66% {
    color: #0099FF;
  }

  83% {
    color: #9900FF;
  }

  100% {
    color: #FF0000;
  }
}

.sparkle {
  animation: sparkle-anim 1.5s linear infinite;
}

@keyframes sparkle-anim {

  0%,
  100% {
    opacity: 1;
    color: #FFFF00;
  }

  50% {
    opacity: 0.3;
    color: #FFFFFF;
  }
}

/* 滚动条 */
.marquee-bar {
  background: #021E1E;
  color: #7CF7F3;
  font-size: 12px;
  font-weight: bold;
}

/* 导航栏  */
.nav-bar {
  background: #098080;
}

/* 侧边栏 */
.sidebar {
  background: #0B3E3E;
}

/*导航项 */
.nav-item {
  background: #0B4A4A;
  border: 1px solid #40D9D9;
}

.nav-item:hover {
  background: #0F6A6A;
}

/* 内容区 */
.content {
  background: #0A3333;
}

/* 照片格 */
.photo-cell {
  text-align: center;
  background: #082828;
  border: 2px solid #098080;
  padding: 6px;
}

.photo-cell img {
  border: 2px solid #7FF5F5;
}

/* 页脚 */
.footer {
  background: #111111;
}

/* 头像 */
.avatar-box {
  text-align: center;
  padding: 6px 4px;
}
.avatar-box img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #098080;
  box-shadow: 0 2px 8px rgba(9,128,128,0.2);
  display: inline-block;
}

/* 播放器 */
.music-player {
    border: 2px solid #098080;
    background-color: #000000;
    padding: 10px;
    text-align: center;
    margin-top: 10px;
    font-family: 'Courier New', monospace; /*小巧思:p*/
}
.music-player .player-title {
    color: #7CF7F3;
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 5px 0;
    display: block;
}
.music-player .track-info {
    width: 100%;
    height: 14px;
    overflow: hidden;
    background-color: #111;
    border: 1px inset #2F5E5E;
    margin-bottom: 10px;
}
.music-player .track-info marquee {
    color: #AFFFF6;
    font-size: 10px;
    line-height: 14px;
}
.music-player .play-pause-btn {
    background-color: #0C6666;
    color: #DFFFFF;
    border: 2px outset #098080;
    padding: 2px 10px;
    font-size: 10px;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
}
.music-player .play-pause-btn:active {
    border-style: inset;
}
.music-player audio {
    display: none;
}