@font-face {
  font-family: 'LeMiHuiYuan';
  src: url('/fonts/乐米惠圆体.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

[v-cloak] {
  display: none;
}

.welcome-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  cursor: pointer;
  transition: background-color 0.8s ease;
}

.welcome-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.welcome-content h1 {
  font-size: 3rem;
  font-weight: 300;
  color: #000000;
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
}

.welcome-content p {
  font-size: 1.2rem;
  color: #666666;
  animation: pulse 2s ease-in-out infinite;
  transition: opacity 0.2s ease;
}

.welcome-content p.music-tip {
  font-size: 0.75rem;
  color: #999999;
  animation: none;
  margin-top: 0.5rem;
  line-height: 1.5;
  text-align: center;
}

.welcome-option {
  margin-top: 2rem;
  animation: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.2s ease;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #666666;
  cursor: pointer;
  user-select: none;
}

.welcome-checkbox {
  width: 14px;
  height: 14px;
  cursor: pointer;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

body {
  font-family: 'LeMiHuiYuan', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  overflow-y: scroll;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

* {
  -webkit-tap-highlight-color: transparent;
}

body::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.75rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
}

.logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  position: relative;
}

.icon-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.icon-btn:hover {
  opacity: 0.6;
}

.music-player {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
  max-width: 150px;
}

.music-player:hover {
  max-width: 350px;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.music-player:hover .volume-control {
  opacity: 1;
  width: 120px;
}

.audio-visualization {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 40px;
  padding: 0 0.5rem;
  background: transparent;
  overflow: visible;
  pointer-events: none;
  opacity: 0;
  width: 0;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.music-player:hover .audio-visualization {
  opacity: 1;
  width: 50px;
}

.audio-bar {
  width: 2px;
  background: #000000;
  height: 6px;
  transition: none;
  border-radius: 1px;
  opacity: 0.6;
  will-change: height;
}

.volume-btn {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.volume-btn:hover {
  opacity: 0.6;
}

.volume-slider {
  width: 80px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: #e0e0e0;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #000000;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s;
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #000000;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.volume-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.music-btn {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.music-btn:hover {
  opacity: 0.6;
}

.music-info {
  display: flex;
  align-items: center;
  min-width: 150px;
  max-width: 200px;
}

.music-title {
  font-size: 0.9rem;
  color: #666666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  width: 350px;
  max-height: 400px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

/* 下拉动画 */
.dropdown-enter-active {
  animation: dropdown-in 0.15s ease-out;
}

.dropdown-leave-active {
  animation: dropdown-out 0.1s ease-in;
}

@keyframes dropdown-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes dropdown-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.announcement-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e0e0e0;
}

.announcement-dropdown-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.close-dropdown {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666666;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.close-dropdown:hover {
  color: #000000;
}

.announcement-dropdown-list {
  overflow-y: auto;
  max-height: 350px;
}

.announcement-empty {
  padding: 2rem;
  text-align: center;
  color: #999999;
  font-size: 0.9rem;
}

.announcement-dropdown-item {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.announcement-dropdown-item:last-child {
  border-bottom: none;
}

.announcement-dropdown-item:hover {
  background-color: #f9f9f9;
}

.announcement-dropdown-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.25rem;
}

.announcement-dropdown-date {
  font-size: 0.8rem;
  color: #999999;
}

.music-player {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.music-cover-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  flex-shrink: 0;
}

.music-cover-wrapper.rotating {
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.music-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  border-radius: 50%;
  flex-shrink: 0;
}

.music-toggle:hover {
  opacity: 0.6;
  background-color: #f5f5f5;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  transition: opacity 0.3s;
  padding-bottom: 0.25rem;
  display: inline-block;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0 !important;
  height: 2px;
  background-color: #000000;
  transition: width 0.3s ease;
}

.nav-links a.active::after {
  width: 100% !important;
}

.nav-links a:not(.active)::after {
  width: 0 !important;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* 我的世界导航下划线动画 */
.nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: width 0.3s ease;
}

.nav-underline-active {
  width: 100%;
}

.main-content {
  flex: 0 0 auto;
  padding: 0;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  margin-top: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: background-image 0.5s ease-in-out;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 0;
}

.main-content::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  background: linear-gradient(to bottom, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.3) 30%,
    rgba(255, 255, 255, 0.6) 60%,
    rgba(255, 255, 255, 1) 100%);
  z-index: 1;
}

.divider-section {
  border-top: 1px solid #e0e0e0;
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 3rem 2rem;
  min-height: 600px;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
}

.projects-container {
  width: 100%;
  max-width: 1150px;
}

.projects-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.intro-section {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cover-nav-buttons {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.cover-nav-buttons > button {
  display: inline-flex;
}

.cover-nav-buttons .cover-description {
  margin-top: 0.5rem;
  color: #666666;
  font-size: 0.85rem;
  text-align: center;
  max-width: 200px;
}

.cover-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(224, 224, 224, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000000;
  transition: all 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.cover-nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  transform: scale(1.05);
}

.intro-section h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #000000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.intro-section h1.show {
  opacity: 1;
}

.intro-section .subtitle {
  font-size: 1.2rem;
  color: #666666;
  font-weight: 300;
  min-height: 1.5rem;
}

.cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.footer {
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 1.5rem 2rem;
  text-align: center;
  color: #666666;
  position: relative;
  z-index: 1;
}

.footer-wave-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
  z-index: 0;
}

.wave-line {
  width: 2px;
  background-color: #000000;
  flex-shrink: 0;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.8s ease;
  opacity: 0.5;
}

@keyframes waveFloat {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.3);
  }
}

.footer-wave-lines.animate .wave-line {
  transform: scaleY(1);
  animation: waveFloat 3s ease-in-out infinite;
}

.footer-wave-lines.animate .wave-line:nth-child(1) { transition-delay: 0s; animation-delay: 0s; }
.footer-wave-lines.animate .wave-line:nth-child(2) { transition-delay: 0.01s; animation-delay: 0.05s; }
.footer-wave-lines.animate .wave-line:nth-child(3) { transition-delay: 0.02s; animation-delay: 0.1s; }
.footer-wave-lines.animate .wave-line:nth-child(4) { transition-delay: 0.03s; animation-delay: 0.15s; }
.footer-wave-lines.animate .wave-line:nth-child(5) { transition-delay: 0.04s; animation-delay: 0.2s; }
.footer-wave-lines.animate .wave-line:nth-child(6) { transition-delay: 0.05s; animation-delay: 0.25s; }
.footer-wave-lines.animate .wave-line:nth-child(7) { transition-delay: 0.06s; animation-delay: 0.3s; }
.footer-wave-lines.animate .wave-line:nth-child(8) { transition-delay: 0.07s; animation-delay: 0.35s; }
.footer-wave-lines.animate .wave-line:nth-child(9) { transition-delay: 0.08s; animation-delay: 0.4s; }
.footer-wave-lines.animate .wave-line:nth-child(10) { transition-delay: 0.09s; animation-delay: 0.45s; }
.footer-wave-lines.animate .wave-line:nth-child(11) { transition-delay: 0.1s; animation-delay: 0.5s; }
.footer-wave-lines.animate .wave-line:nth-child(12) { transition-delay: 0.11s; animation-delay: 0.55s; }
.footer-wave-lines.animate .wave-line:nth-child(13) { transition-delay: 0.12s; animation-delay: 0.6s; }
.footer-wave-lines.animate .wave-line:nth-child(14) { transition-delay: 0.13s; animation-delay: 0.65s; }
.footer-wave-lines.animate .wave-line:nth-child(15) { transition-delay: 0.14s; animation-delay: 0.7s; }
.footer-wave-lines.animate .wave-line:nth-child(16) { transition-delay: 0.15s; animation-delay: 0.75s; }
.footer-wave-lines.animate .wave-line:nth-child(17) { transition-delay: 0.16s; animation-delay: 0.8s; }
.footer-wave-lines.animate .wave-line:nth-child(18) { transition-delay: 0.17s; animation-delay: 0.85s; }
.footer-wave-lines.animate .wave-line:nth-child(19) { transition-delay: 0.18s; animation-delay: 0.9s; }
.footer-wave-lines.animate .wave-line:nth-child(20) { transition-delay: 0.19s; animation-delay: 0.95s; }
.footer-wave-lines.animate .wave-line:nth-child(21) { transition-delay: 0.2s; animation-delay: 1s; }
.footer-wave-lines.animate .wave-line:nth-child(22) { transition-delay: 0.21s; animation-delay: 1.05s; }
.footer-wave-lines.animate .wave-line:nth-child(23) { transition-delay: 0.22s; animation-delay: 1.1s; }
.footer-wave-lines.animate .wave-line:nth-child(24) { transition-delay: 0.23s; animation-delay: 1.15s; }
.footer-wave-lines.animate .wave-line:nth-child(25) { transition-delay: 0.24s; animation-delay: 1.2s; }
.footer-wave-lines.animate .wave-line:nth-child(26) { transition-delay: 0.25s; animation-delay: 1.25s; }
.footer-wave-lines.animate .wave-line:nth-child(27) { transition-delay: 0.26s; animation-delay: 1.3s; }
.footer-wave-lines.animate .wave-line:nth-child(28) { transition-delay: 0.27s; animation-delay: 1.35s; }
.footer-wave-lines.animate .wave-line:nth-child(29) { transition-delay: 0.28s; animation-delay: 1.4s; }
.footer-wave-lines.animate .wave-line:nth-child(30) { transition-delay: 0.29s; animation-delay: 1.45s; }
.footer-wave-lines.animate .wave-line:nth-child(31) { transition-delay: 0.3s; animation-delay: 1.5s; }
.footer-wave-lines.animate .wave-line:nth-child(32) { transition-delay: 0.31s; animation-delay: 1.45s; }
.footer-wave-lines.animate .wave-line:nth-child(33) { transition-delay: 0.32s; animation-delay: 1.4s; }
.footer-wave-lines.animate .wave-line:nth-child(34) { transition-delay: 0.33s; animation-delay: 1.35s; }
.footer-wave-lines.animate .wave-line:nth-child(35) { transition-delay: 0.34s; animation-delay: 1.3s; }
.footer-wave-lines.animate .wave-line:nth-child(36) { transition-delay: 0.35s; animation-delay: 1.25s; }
.footer-wave-lines.animate .wave-line:nth-child(37) { transition-delay: 0.36s; animation-delay: 1.2s; }
.footer-wave-lines.animate .wave-line:nth-child(38) { transition-delay: 0.37s; animation-delay: 1.15s; }
.footer-wave-lines.animate .wave-line:nth-child(39) { transition-delay: 0.38s; animation-delay: 1.1s; }
.footer-wave-lines.animate .wave-line:nth-child(40) { transition-delay: 0.39s; animation-delay: 1.05s; }
.footer-wave-lines.animate .wave-line:nth-child(41) { transition-delay: 0.4s; animation-delay: 1s; }
.footer-wave-lines.animate .wave-line:nth-child(42) { transition-delay: 0.41s; animation-delay: 0.95s; }
.footer-wave-lines.animate .wave-line:nth-child(43) { transition-delay: 0.42s; animation-delay: 0.9s; }
.footer-wave-lines.animate .wave-line:nth-child(44) { transition-delay: 0.43s; animation-delay: 0.85s; }
.footer-wave-lines.animate .wave-line:nth-child(45) { transition-delay: 0.44s; animation-delay: 0.8s; }
.footer-wave-lines.animate .wave-line:nth-child(46) { transition-delay: 0.45s; animation-delay: 0.75s; }
.footer-wave-lines.animate .wave-line:nth-child(47) { transition-delay: 0.46s; animation-delay: 0.7s; }
.footer-wave-lines.animate .wave-line:nth-child(48) { transition-delay: 0.47s; animation-delay: 0.65s; }
.footer-wave-lines.animate .wave-line:nth-child(49) { transition-delay: 0.48s; animation-delay: 0.6s; }
.footer-wave-lines.animate .wave-line:nth-child(50) { transition-delay: 0.49s; animation-delay: 0.55s; }
.footer-wave-lines.animate .wave-line:nth-child(51) { transition-delay: 0.5s; animation-delay: 0.5s; }
.footer-wave-lines.animate .wave-line:nth-child(52) { transition-delay: 0.51s; animation-delay: 0.55s; }
.footer-wave-lines.animate .wave-line:nth-child(53) { transition-delay: 0.5s; animation-delay: 0.6s; }
.footer-wave-lines.animate .wave-line:nth-child(54) { transition-delay: 0.49s; animation-delay: 0.65s; }
.footer-wave-lines.animate .wave-line:nth-child(55) { transition-delay: 0.48s; animation-delay: 0.7s; }
.footer-wave-lines.animate .wave-line:nth-child(56) { transition-delay: 0.47s; animation-delay: 0.75s; }
.footer-wave-lines.animate .wave-line:nth-child(57) { transition-delay: 0.46s; animation-delay: 0.8s; }
.footer-wave-lines.animate .wave-line:nth-child(58) { transition-delay: 0.45s; animation-delay: 0.85s; }
.footer-wave-lines.animate .wave-line:nth-child(59) { transition-delay: 0.44s; animation-delay: 0.9s; }
.footer-wave-lines.animate .wave-line:nth-child(60) { transition-delay: 0.43s; animation-delay: 0.95s; }
.footer-wave-lines.animate .wave-line:nth-child(61) { transition-delay: 0.42s; animation-delay: 1s; }
.footer-wave-lines.animate .wave-line:nth-child(62) { transition-delay: 0.41s; animation-delay: 1.05s; }
.footer-wave-lines.animate .wave-line:nth-child(63) { transition-delay: 0.4s; animation-delay: 1.1s; }
.footer-wave-lines.animate .wave-line:nth-child(64) { transition-delay: 0.39s; animation-delay: 1.15s; }
.footer-wave-lines.animate .wave-line:nth-child(65) { transition-delay: 0.38s; animation-delay: 1.2s; }
.footer-wave-lines.animate .wave-line:nth-child(66) { transition-delay: 0.37s; animation-delay: 1.25s; }
.footer-wave-lines.animate .wave-line:nth-child(67) { transition-delay: 0.36s; animation-delay: 1.3s; }
.footer-wave-lines.animate .wave-line:nth-child(68) { transition-delay: 0.35s; animation-delay: 1.35s; }
.footer-wave-lines.animate .wave-line:nth-child(69) { transition-delay: 0.34s; animation-delay: 1.4s; }
.footer-wave-lines.animate .wave-line:nth-child(70) { transition-delay: 0.33s; animation-delay: 1.45s; }
.footer-wave-lines.animate .wave-line:nth-child(71) { transition-delay: 0.32s; animation-delay: 1.5s; }
.footer-wave-lines.animate .wave-line:nth-child(72) { transition-delay: 0.31s; animation-delay: 1.45s; }
.footer-wave-lines.animate .wave-line:nth-child(73) { transition-delay: 0.3s; animation-delay: 1.4s; }
.footer-wave-lines.animate .wave-line:nth-child(74) { transition-delay: 0.29s; animation-delay: 1.35s; }
.footer-wave-lines.animate .wave-line:nth-child(75) { transition-delay: 0.28s; animation-delay: 1.3s; }
.footer-wave-lines.animate .wave-line:nth-child(76) { transition-delay: 0.27s; animation-delay: 1.25s; }
.footer-wave-lines.animate .wave-line:nth-child(77) { transition-delay: 0.26s; animation-delay: 1.2s; }
.footer-wave-lines.animate .wave-line:nth-child(78) { transition-delay: 0.25s; animation-delay: 1.15s; }
.footer-wave-lines.animate .wave-line:nth-child(79) { transition-delay: 0.24s; animation-delay: 1.1s; }
.footer-wave-lines.animate .wave-line:nth-child(80) { transition-delay: 0.23s; animation-delay: 1.05s; }
.footer-wave-lines.animate .wave-line:nth-child(81) { transition-delay: 0.22s; animation-delay: 1s; }
.footer-wave-lines.animate .wave-line:nth-child(82) { transition-delay: 0.21s; animation-delay: 0.95s; }
.footer-wave-lines.animate .wave-line:nth-child(83) { transition-delay: 0.2s; animation-delay: 0.9s; }
.footer-wave-lines.animate .wave-line:nth-child(84) { transition-delay: 0.19s; animation-delay: 0.85s; }
.footer-wave-lines.animate .wave-line:nth-child(85) { transition-delay: 0.18s; animation-delay: 0.8s; }
.footer-wave-lines.animate .wave-line:nth-child(86) { transition-delay: 0.17s; animation-delay: 0.75s; }
.footer-wave-lines.animate .wave-line:nth-child(87) { transition-delay: 0.16s; animation-delay: 0.7s; }
.footer-wave-lines.animate .wave-line:nth-child(88) { transition-delay: 0.15s; animation-delay: 0.65s; }
.footer-wave-lines.animate .wave-line:nth-child(89) { transition-delay: 0.14s; animation-delay: 0.6s; }
.footer-wave-lines.animate .wave-line:nth-child(90) { transition-delay: 0.13s; animation-delay: 0.55s; }
.footer-wave-lines.animate .wave-line:nth-child(91) { transition-delay: 0.12s; animation-delay: 0.5s; }
.footer-wave-lines.animate .wave-line:nth-child(92) { transition-delay: 0.11s; animation-delay: 0.45s; }
.footer-wave-lines.animate .wave-line:nth-child(93) { transition-delay: 0.1s; animation-delay: 0.4s; }
.footer-wave-lines.animate .wave-line:nth-child(94) { transition-delay: 0.09s; animation-delay: 0.35s; }
.footer-wave-lines.animate .wave-line:nth-child(95) { transition-delay: 0.08s; animation-delay: 0.3s; }
.footer-wave-lines.animate .wave-line:nth-child(96) { transition-delay: 0.07s; animation-delay: 0.25s; }
.footer-wave-lines.animate .wave-line:nth-child(97) { transition-delay: 0.06s; animation-delay: 0.2s; }
.footer-wave-lines.animate .wave-line:nth-child(98) { transition-delay: 0.05s; animation-delay: 0.15s; }
.footer-wave-lines.animate .wave-line:nth-child(99) { transition-delay: 0.04s; animation-delay: 0.1s; }
.footer-wave-lines.animate .wave-line:nth-child(100) { transition-delay: 0.03s; animation-delay: 0.05s; }
.footer-wave-lines.animate .wave-line:nth-child(101) { transition-delay: 0.02s; animation-delay: 0s; }
.footer-wave-lines.animate .wave-line:nth-child(102) { transition-delay: 0.01s; animation-delay: 0s; }
.footer-wave-lines.animate .wave-line:nth-child(103) { transition-delay: 0s; animation-delay: 0s; }

#footerContent {
  position: relative;
  z-index: 2;
}

.floating-menu {
  position: fixed;
  right: 2rem;
  bottom: calc(1.5rem + 3rem + 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1000;
  opacity: 0;
  transform: translateX(100px);
  animation: slideInFromRight 0.8s ease forwards;
  animation-delay: 0.5s;
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.floating-btn {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000000;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(80px);
}

.floating-btn:nth-child(1) {
  animation: slideInBtn 0.6s ease forwards;
  animation-delay: 0.6s;
}

.floating-btn:nth-child(2) {
  animation: slideInBtn 0.6s ease forwards;
  animation-delay: 0.75s;
}

.floating-btn:nth-child(3) {
  animation: slideInBtn 0.6s ease forwards;
  animation-delay: 0.9s;
}

@keyframes slideInBtn {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.floating-btn:hover {
  background-color: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 节点监控区域样式 */
.node-monitor-section {
  flex: 1;
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 65px);
  margin-top: 65px;
  background-color: #ffffff;
  position: relative;
  z-index: 0;
}

.node-wave-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
  z-index: -1;
}

.node-wave-lines .wave-line {
  width: 2px;
  background-color: #000000;
  flex-shrink: 0;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.8s ease;
  opacity: 0.5;
  animation: waveFloat 3s ease-in-out infinite;
}

.node-wave-lines.animate .wave-line {
  transform: scaleY(1);
  animation: waveFloat 3s ease-in-out infinite;
}

.node-monitor-container {
  width: 100%;
  max-width: 1150px;
  position: relative;
  z-index: 2;
}

.node-monitor-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2rem;
}

.node-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f0f0f0;
  border-top: 4px solid #000000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.node-loading p {
  color: #666666;
  font-size: 0.95rem;
}

/* 我的世界表格包装器 - 支持横向滚动 */
.minecraft-table-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 8px;
  cursor: grab;
  /* 隐藏滚动条但保持滚动功能 */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.minecraft-table-wrapper:active {
  cursor: grabbing;
}

.minecraft-table-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.minecraft-table-wrapper .node-table {
  min-width: 900px; /* 设置最小宽度，确保内容不会太挤 */
}

.node-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.node-table thead {
  background-color: #f9f9f9;
}

.node-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #333333;
  font-size: 0.9rem;
  border-bottom: 1px solid #e0e0e0;
  background-color: #f9f9f9;
}

.node-table th:first-child {
  border-top-left-radius: 8px;
}

.node-table th:last-child {
  border-top-right-radius: 8px;
}

.node-table td {
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
  color: #666666;
  font-size: 0.95rem;
}

.node-table tbody tr:last-child td {
  border-bottom: none;
}

.node-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.node-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

.node-table tbody tr:hover {
  background-color: #fafafa;
}

.node-name-cell {
  font-weight: 500;
  color: #000000;
}

.node-stat-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.node-stat-value svg {
  color: #666666;
}

.stat-bar {
  flex: 1;
  height: 6px;
  background-color: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
  max-width: 100px;
}

.stat-bar-fill {
  height: 100%;
  background-color: #4caf50;
  transition: width 0.3s;
}

.stat-bar-fill.warning {
  background-color: #ff9800;
}

.stat-bar-fill.danger {
  background-color: #f44336;
}

.node-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4caf50;
}

.status-dot.offline {
  background-color: #999999;
}

.status-dot.status-warning {
  background-color: #ff9800;
}

.status-dot.status-offline {
  background-color: #f44336;
}

/* 我的世界区域样式 */
.minecraft-section {
  flex: 1;
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 65px);
  margin-top: 65px;
  background-color: #ffffff;
  position: relative;
  z-index: 0;
}

.minecraft-wave-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
  z-index: -1;
}

.minecraft-wave-lines .wave-line {
  width: 2px;
  background-color: #000000;
  flex-shrink: 0;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.8s ease;
  opacity: 0.5;
  animation: waveFloat 3s ease-in-out infinite;
}

.minecraft-wave-lines.animate .wave-line {
  transform: scaleY(1);
  animation: waveFloat 3s ease-in-out infinite;
}

.minecraft-wave-lines.animate .wave-line:nth-child(1) { transition-delay: 0s; animation-delay: 0s; }
.minecraft-wave-lines.animate .wave-line:nth-child(2) { transition-delay: 0.01s; animation-delay: 0.05s; }
.minecraft-wave-lines.animate .wave-line:nth-child(3) { transition-delay: 0.02s; animation-delay: 0.1s; }
.minecraft-wave-lines.animate .wave-line:nth-child(4) { transition-delay: 0.03s; animation-delay: 0.15s; }
.minecraft-wave-lines.animate .wave-line:nth-child(5) { transition-delay: 0.04s; animation-delay: 0.2s; }
.minecraft-wave-lines.animate .wave-line:nth-child(6) { transition-delay: 0.05s; animation-delay: 0.25s; }
.minecraft-wave-lines.animate .wave-line:nth-child(7) { transition-delay: 0.06s; animation-delay: 0.3s; }
.minecraft-wave-lines.animate .wave-line:nth-child(8) { transition-delay: 0.07s; animation-delay: 0.35s; }
.minecraft-wave-lines.animate .wave-line:nth-child(9) { transition-delay: 0.08s; animation-delay: 0.4s; }
.minecraft-wave-lines.animate .wave-line:nth-child(10) { transition-delay: 0.09s; animation-delay: 0.45s; }
.minecraft-wave-lines.animate .wave-line:nth-child(11) { transition-delay: 0.1s; animation-delay: 0.5s; }
.minecraft-wave-lines.animate .wave-line:nth-child(12) { transition-delay: 0.11s; animation-delay: 0.55s; }
.minecraft-wave-lines.animate .wave-line:nth-child(13) { transition-delay: 0.12s; animation-delay: 0.6s; }
.minecraft-wave-lines.animate .wave-line:nth-child(14) { transition-delay: 0.13s; animation-delay: 0.65s; }
.minecraft-wave-lines.animate .wave-line:nth-child(15) { transition-delay: 0.14s; animation-delay: 0.7s; }
.minecraft-wave-lines.animate .wave-line:nth-child(16) { transition-delay: 0.15s; animation-delay: 0.75s; }
.minecraft-wave-lines.animate .wave-line:nth-child(17) { transition-delay: 0.16s; animation-delay: 0.8s; }
.minecraft-wave-lines.animate .wave-line:nth-child(18) { transition-delay: 0.17s; animation-delay: 0.85s; }
.minecraft-wave-lines.animate .wave-line:nth-child(19) { transition-delay: 0.18s; animation-delay: 0.9s; }
.minecraft-wave-lines.animate .wave-line:nth-child(20) { transition-delay: 0.19s; animation-delay: 0.95s; }
.minecraft-wave-lines.animate .wave-line:nth-child(21) { transition-delay: 0.2s; animation-delay: 1s; }
.minecraft-wave-lines.animate .wave-line:nth-child(22) { transition-delay: 0.21s; animation-delay: 1.05s; }
.minecraft-wave-lines.animate .wave-line:nth-child(23) { transition-delay: 0.22s; animation-delay: 1.1s; }
.minecraft-wave-lines.animate .wave-line:nth-child(24) { transition-delay: 0.23s; animation-delay: 1.15s; }
.minecraft-wave-lines.animate .wave-line:nth-child(25) { transition-delay: 0.24s; animation-delay: 1.2s; }
.minecraft-wave-lines.animate .wave-line:nth-child(26) { transition-delay: 0.25s; animation-delay: 1.25s; }
.minecraft-wave-lines.animate .wave-line:nth-child(27) { transition-delay: 0.26s; animation-delay: 1.3s; }
.minecraft-wave-lines.animate .wave-line:nth-child(28) { transition-delay: 0.27s; animation-delay: 1.35s; }
.minecraft-wave-lines.animate .wave-line:nth-child(29) { transition-delay: 0.28s; animation-delay: 1.4s; }
.minecraft-wave-lines.animate .wave-line:nth-child(30) { transition-delay: 0.29s; animation-delay: 1.45s; }
.minecraft-wave-lines.animate .wave-line:nth-child(31) { transition-delay: 0.3s; animation-delay: 1.5s; }
.minecraft-wave-lines.animate .wave-line:nth-child(32) { transition-delay: 0.31s; animation-delay: 1.45s; }
.minecraft-wave-lines.animate .wave-line:nth-child(33) { transition-delay: 0.32s; animation-delay: 1.4s; }
.minecraft-wave-lines.animate .wave-line:nth-child(34) { transition-delay: 0.33s; animation-delay: 1.35s; }
.minecraft-wave-lines.animate .wave-line:nth-child(35) { transition-delay: 0.34s; animation-delay: 1.3s; }
.minecraft-wave-lines.animate .wave-line:nth-child(36) { transition-delay: 0.35s; animation-delay: 1.25s; }
.minecraft-wave-lines.animate .wave-line:nth-child(37) { transition-delay: 0.36s; animation-delay: 1.2s; }
.minecraft-wave-lines.animate .wave-line:nth-child(38) { transition-delay: 0.37s; animation-delay: 1.15s; }
.minecraft-wave-lines.animate .wave-line:nth-child(39) { transition-delay: 0.38s; animation-delay: 1.1s; }
.minecraft-wave-lines.animate .wave-line:nth-child(40) { transition-delay: 0.39s; animation-delay: 1.05s; }
.minecraft-wave-lines.animate .wave-line:nth-child(41) { transition-delay: 0.4s; animation-delay: 1s; }
.minecraft-wave-lines.animate .wave-line:nth-child(42) { transition-delay: 0.41s; animation-delay: 0.95s; }
.minecraft-wave-lines.animate .wave-line:nth-child(43) { transition-delay: 0.42s; animation-delay: 0.9s; }
.minecraft-wave-lines.animate .wave-line:nth-child(44) { transition-delay: 0.43s; animation-delay: 0.85s; }
.minecraft-wave-lines.animate .wave-line:nth-child(45) { transition-delay: 0.44s; animation-delay: 0.8s; }
.minecraft-wave-lines.animate .wave-line:nth-child(46) { transition-delay: 0.45s; animation-delay: 0.75s; }
.minecraft-wave-lines.animate .wave-line:nth-child(47) { transition-delay: 0.46s; animation-delay: 0.7s; }
.minecraft-wave-lines.animate .wave-line:nth-child(48) { transition-delay: 0.47s; animation-delay: 0.65s; }
.minecraft-wave-lines.animate .wave-line:nth-child(49) { transition-delay: 0.48s; animation-delay: 0.6s; }
.minecraft-wave-lines.animate .wave-line:nth-child(50) { transition-delay: 0.49s; animation-delay: 0.55s; }
.minecraft-wave-lines.animate .wave-line:nth-child(51) { transition-delay: 0.5s; animation-delay: 0.5s; }
.minecraft-wave-lines.animate .wave-line:nth-child(52) { transition-delay: 0.51s; animation-delay: 0.55s; }
.minecraft-wave-lines.animate .wave-line:nth-child(53) { transition-delay: 0.5s; animation-delay: 0.6s; }
.minecraft-wave-lines.animate .wave-line:nth-child(54) { transition-delay: 0.49s; animation-delay: 0.65s; }
.minecraft-wave-lines.animate .wave-line:nth-child(55) { transition-delay: 0.48s; animation-delay: 0.7s; }
.minecraft-wave-lines.animate .wave-line:nth-child(56) { transition-delay: 0.47s; animation-delay: 0.75s; }
.minecraft-wave-lines.animate .wave-line:nth-child(57) { transition-delay: 0.46s; animation-delay: 0.8s; }
.minecraft-wave-lines.animate .wave-line:nth-child(58) { transition-delay: 0.45s; animation-delay: 0.85s; }
.minecraft-wave-lines.animate .wave-line:nth-child(59) { transition-delay: 0.44s; animation-delay: 0.9s; }
.minecraft-wave-lines.animate .wave-line:nth-child(60) { transition-delay: 0.43s; animation-delay: 0.95s; }
.minecraft-wave-lines.animate .wave-line:nth-child(61) { transition-delay: 0.42s; animation-delay: 1s; }
.minecraft-wave-lines.animate .wave-line:nth-child(62) { transition-delay: 0.41s; animation-delay: 1.05s; }
.minecraft-wave-lines.animate .wave-line:nth-child(63) { transition-delay: 0.4s; animation-delay: 1.1s; }
.minecraft-wave-lines.animate .wave-line:nth-child(64) { transition-delay: 0.39s; animation-delay: 1.15s; }
.minecraft-wave-lines.animate .wave-line:nth-child(65) { transition-delay: 0.38s; animation-delay: 1.2s; }
.minecraft-wave-lines.animate .wave-line:nth-child(66) { transition-delay: 0.37s; animation-delay: 1.25s; }
.minecraft-wave-lines.animate .wave-line:nth-child(67) { transition-delay: 0.36s; animation-delay: 1.3s; }
.minecraft-wave-lines.animate .wave-line:nth-child(68) { transition-delay: 0.35s; animation-delay: 1.35s; }
.minecraft-wave-lines.animate .wave-line:nth-child(69) { transition-delay: 0.34s; animation-delay: 1.4s; }
.minecraft-wave-lines.animate .wave-line:nth-child(70) { transition-delay: 0.33s; animation-delay: 1.45s; }
.minecraft-wave-lines.animate .wave-line:nth-child(71) { transition-delay: 0.32s; animation-delay: 1.5s; }
.minecraft-wave-lines.animate .wave-line:nth-child(72) { transition-delay: 0.31s; animation-delay: 1.45s; }
.minecraft-wave-lines.animate .wave-line:nth-child(73) { transition-delay: 0.3s; animation-delay: 1.4s; }
.minecraft-wave-lines.animate .wave-line:nth-child(74) { transition-delay: 0.29s; animation-delay: 1.35s; }
.minecraft-wave-lines.animate .wave-line:nth-child(75) { transition-delay: 0.28s; animation-delay: 1.3s; }
.minecraft-wave-lines.animate .wave-line:nth-child(76) { transition-delay: 0.27s; animation-delay: 1.25s; }
.minecraft-wave-lines.animate .wave-line:nth-child(77) { transition-delay: 0.26s; animation-delay: 1.2s; }
.minecraft-wave-lines.animate .wave-line:nth-child(78) { transition-delay: 0.25s; animation-delay: 1.15s; }
.minecraft-wave-lines.animate .wave-line:nth-child(79) { transition-delay: 0.24s; animation-delay: 1.1s; }
.minecraft-wave-lines.animate .wave-line:nth-child(80) { transition-delay: 0.23s; animation-delay: 1.05s; }
.minecraft-wave-lines.animate .wave-line:nth-child(81) { transition-delay: 0.22s; animation-delay: 1s; }
.minecraft-wave-lines.animate .wave-line:nth-child(82) { transition-delay: 0.21s; animation-delay: 0.95s; }
.minecraft-wave-lines.animate .wave-line:nth-child(83) { transition-delay: 0.2s; animation-delay: 0.9s; }
.minecraft-wave-lines.animate .wave-line:nth-child(84) { transition-delay: 0.19s; animation-delay: 0.85s; }
.minecraft-wave-lines.animate .wave-line:nth-child(85) { transition-delay: 0.18s; animation-delay: 0.8s; }
.minecraft-wave-lines.animate .wave-line:nth-child(86) { transition-delay: 0.17s; animation-delay: 0.75s; }
.minecraft-wave-lines.animate .wave-line:nth-child(87) { transition-delay: 0.16s; animation-delay: 0.7s; }
.minecraft-wave-lines.animate .wave-line:nth-child(88) { transition-delay: 0.15s; animation-delay: 0.65s; }
.minecraft-wave-lines.animate .wave-line:nth-child(89) { transition-delay: 0.14s; animation-delay: 0.6s; }
.minecraft-wave-lines.animate .wave-line:nth-child(90) { transition-delay: 0.13s; animation-delay: 0.55s; }
.minecraft-wave-lines.animate .wave-line:nth-child(91) { transition-delay: 0.12s; animation-delay: 0.5s; }
.minecraft-wave-lines.animate .wave-line:nth-child(92) { transition-delay: 0.11s; animation-delay: 0.45s; }
.minecraft-wave-lines.animate .wave-line:nth-child(93) { transition-delay: 0.1s; animation-delay: 0.4s; }
.minecraft-wave-lines.animate .wave-line:nth-child(94) { transition-delay: 0.09s; animation-delay: 0.35s; }
.minecraft-wave-lines.animate .wave-line:nth-child(95) { transition-delay: 0.08s; animation-delay: 0.3s; }
.minecraft-wave-lines.animate .wave-line:nth-child(96) { transition-delay: 0.07s; animation-delay: 0.25s; }
.minecraft-wave-lines.animate .wave-line:nth-child(97) { transition-delay: 0.06s; animation-delay: 0.2s; }
.minecraft-wave-lines.animate .wave-line:nth-child(98) { transition-delay: 0.05s; animation-delay: 0.15s; }
.minecraft-wave-lines.animate .wave-line:nth-child(99) { transition-delay: 0.04s; animation-delay: 0.1s; }
.minecraft-wave-lines.animate .wave-line:nth-child(100) { transition-delay: 0.03s; animation-delay: 0.05s; }
.minecraft-wave-lines.animate .wave-line:nth-child(101) { transition-delay: 0.02s; animation-delay: 0s; }
.minecraft-wave-lines.animate .wave-line:nth-child(102) { transition-delay: 0.01s; animation-delay: 0s; }
.minecraft-wave-lines.animate .wave-line:nth-child(103) { transition-delay: 0s; animation-delay: 0s; }

.minecraft-container {
  width: 100%;
  max-width: 1150px;
  position: relative;
  z-index: 2;
}

/* Minecraft分类标签 */
.minecraft-tabs {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.minecraft-section .minecraft-tab {
  padding: 0 0 0.25rem 0;
  background: none;
  border: none;
  font-size: 1rem;
  color: #000000;
  cursor: pointer;
  transition: opacity 0.3s;
  position: relative;
  font-family: '乐米惠圆体', sans-serif;
}

.minecraft-section .minecraft-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: width 0.3s ease;
}

.minecraft-section .minecraft-tab:hover {
  opacity: 0.6;
}

.minecraft-section .minecraft-tab.active::after {
  width: 100%;
}

.minecraft-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2rem;
}

/* 团队信息区域 */
.team-section {
  padding: 3rem 2rem;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 0;
}

.team-wave-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
  z-index: -1;
}

.team-wave-lines .wave-line {
  width: 2px;
  background-color: #000000;
  flex-shrink: 0;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.8s ease;
  opacity: 0.5;
  animation: waveFloat 3s ease-in-out infinite;
}

.team-wave-lines.animate .wave-line {
  transform: scaleY(1);
  animation: waveFloat 3s ease-in-out infinite;
}

.team-wave-lines.animate .wave-line:nth-child(1) { transition-delay: 0s; animation-delay: 0s; }
.team-wave-lines.animate .wave-line:nth-child(2) { transition-delay: 0.01s; animation-delay: 0.05s; }
.team-wave-lines.animate .wave-line:nth-child(3) { transition-delay: 0.02s; animation-delay: 0.1s; }
.team-wave-lines.animate .wave-line:nth-child(4) { transition-delay: 0.03s; animation-delay: 0.15s; }
.team-wave-lines.animate .wave-line:nth-child(5) { transition-delay: 0.04s; animation-delay: 0.2s; }
.team-wave-lines.animate .wave-line:nth-child(6) { transition-delay: 0.05s; animation-delay: 0.25s; }
.team-wave-lines.animate .wave-line:nth-child(7) { transition-delay: 0.06s; animation-delay: 0.3s; }
.team-wave-lines.animate .wave-line:nth-child(8) { transition-delay: 0.07s; animation-delay: 0.35s; }
.team-wave-lines.animate .wave-line:nth-child(9) { transition-delay: 0.08s; animation-delay: 0.4s; }
.team-wave-lines.animate .wave-line:nth-child(10) { transition-delay: 0.09s; animation-delay: 0.45s; }
.team-wave-lines.animate .wave-line:nth-child(11) { transition-delay: 0.1s; animation-delay: 0.5s; }
.team-wave-lines.animate .wave-line:nth-child(12) { transition-delay: 0.11s; animation-delay: 0.55s; }
.team-wave-lines.animate .wave-line:nth-child(13) { transition-delay: 0.12s; animation-delay: 0.6s; }
.team-wave-lines.animate .wave-line:nth-child(14) { transition-delay: 0.13s; animation-delay: 0.65s; }
.team-wave-lines.animate .wave-line:nth-child(15) { transition-delay: 0.14s; animation-delay: 0.7s; }
.team-wave-lines.animate .wave-line:nth-child(16) { transition-delay: 0.15s; animation-delay: 0.75s; }
.team-wave-lines.animate .wave-line:nth-child(17) { transition-delay: 0.16s; animation-delay: 0.8s; }
.team-wave-lines.animate .wave-line:nth-child(18) { transition-delay: 0.17s; animation-delay: 0.85s; }
.team-wave-lines.animate .wave-line:nth-child(19) { transition-delay: 0.18s; animation-delay: 0.9s; }
.team-wave-lines.animate .wave-line:nth-child(20) { transition-delay: 0.19s; animation-delay: 0.95s; }
.team-wave-lines.animate .wave-line:nth-child(21) { transition-delay: 0.2s; animation-delay: 1s; }
.team-wave-lines.animate .wave-line:nth-child(22) { transition-delay: 0.21s; animation-delay: 1.05s; }
.team-wave-lines.animate .wave-line:nth-child(23) { transition-delay: 0.22s; animation-delay: 1.1s; }
.team-wave-lines.animate .wave-line:nth-child(24) { transition-delay: 0.23s; animation-delay: 1.15s; }
.team-wave-lines.animate .wave-line:nth-child(25) { transition-delay: 0.24s; animation-delay: 1.2s; }
.team-wave-lines.animate .wave-line:nth-child(26) { transition-delay: 0.25s; animation-delay: 1.25s; }
.team-wave-lines.animate .wave-line:nth-child(27) { transition-delay: 0.26s; animation-delay: 1.3s; }
.team-wave-lines.animate .wave-line:nth-child(28) { transition-delay: 0.27s; animation-delay: 1.35s; }
.team-wave-lines.animate .wave-line:nth-child(29) { transition-delay: 0.28s; animation-delay: 1.4s; }
.team-wave-lines.animate .wave-line:nth-child(30) { transition-delay: 0.29s; animation-delay: 1.45s; }
.team-wave-lines.animate .wave-line:nth-child(31) { transition-delay: 0.3s; animation-delay: 1.5s; }
.team-wave-lines.animate .wave-line:nth-child(32) { transition-delay: 0.31s; animation-delay: 1.45s; }
.team-wave-lines.animate .wave-line:nth-child(33) { transition-delay: 0.32s; animation-delay: 1.4s; }
.team-wave-lines.animate .wave-line:nth-child(34) { transition-delay: 0.33s; animation-delay: 1.35s; }
.team-wave-lines.animate .wave-line:nth-child(35) { transition-delay: 0.34s; animation-delay: 1.3s; }
.team-wave-lines.animate .wave-line:nth-child(36) { transition-delay: 0.35s; animation-delay: 1.25s; }
.team-wave-lines.animate .wave-line:nth-child(37) { transition-delay: 0.36s; animation-delay: 1.2s; }
.team-wave-lines.animate .wave-line:nth-child(38) { transition-delay: 0.37s; animation-delay: 1.15s; }
.team-wave-lines.animate .wave-line:nth-child(39) { transition-delay: 0.38s; animation-delay: 1.1s; }
.team-wave-lines.animate .wave-line:nth-child(40) { transition-delay: 0.39s; animation-delay: 1.05s; }
.team-wave-lines.animate .wave-line:nth-child(41) { transition-delay: 0.4s; animation-delay: 1s; }
.team-wave-lines.animate .wave-line:nth-child(42) { transition-delay: 0.41s; animation-delay: 0.95s; }
.team-wave-lines.animate .wave-line:nth-child(43) { transition-delay: 0.42s; animation-delay: 0.9s; }
.team-wave-lines.animate .wave-line:nth-child(44) { transition-delay: 0.43s; animation-delay: 0.85s; }
.team-wave-lines.animate .wave-line:nth-child(45) { transition-delay: 0.44s; animation-delay: 0.8s; }
.team-wave-lines.animate .wave-line:nth-child(46) { transition-delay: 0.45s; animation-delay: 0.75s; }
.team-wave-lines.animate .wave-line:nth-child(47) { transition-delay: 0.46s; animation-delay: 0.7s; }
.team-wave-lines.animate .wave-line:nth-child(48) { transition-delay: 0.47s; animation-delay: 0.65s; }
.team-wave-lines.animate .wave-line:nth-child(49) { transition-delay: 0.48s; animation-delay: 0.6s; }
.team-wave-lines.animate .wave-line:nth-child(50) { transition-delay: 0.49s; animation-delay: 0.55s; }
.team-wave-lines.animate .wave-line:nth-child(51) { transition-delay: 0.5s; animation-delay: 0.5s; }
.team-wave-lines.animate .wave-line:nth-child(52) { transition-delay: 0.51s; animation-delay: 0.55s; }
.team-wave-lines.animate .wave-line:nth-child(53) { transition-delay: 0.5s; animation-delay: 0.6s; }
.team-wave-lines.animate .wave-line:nth-child(54) { transition-delay: 0.49s; animation-delay: 0.65s; }
.team-wave-lines.animate .wave-line:nth-child(55) { transition-delay: 0.48s; animation-delay: 0.7s; }
.team-wave-lines.animate .wave-line:nth-child(56) { transition-delay: 0.47s; animation-delay: 0.75s; }
.team-wave-lines.animate .wave-line:nth-child(57) { transition-delay: 0.46s; animation-delay: 0.8s; }
.team-wave-lines.animate .wave-line:nth-child(58) { transition-delay: 0.45s; animation-delay: 0.85s; }
.team-wave-lines.animate .wave-line:nth-child(59) { transition-delay: 0.44s; animation-delay: 0.9s; }
.team-wave-lines.animate .wave-line:nth-child(60) { transition-delay: 0.43s; animation-delay: 0.95s; }
.team-wave-lines.animate .wave-line:nth-child(61) { transition-delay: 0.42s; animation-delay: 1s; }
.team-wave-lines.animate .wave-line:nth-child(62) { transition-delay: 0.41s; animation-delay: 1.05s; }
.team-wave-lines.animate .wave-line:nth-child(63) { transition-delay: 0.4s; animation-delay: 1.1s; }
.team-wave-lines.animate .wave-line:nth-child(64) { transition-delay: 0.39s; animation-delay: 1.15s; }
.team-wave-lines.animate .wave-line:nth-child(65) { transition-delay: 0.38s; animation-delay: 1.2s; }
.team-wave-lines.animate .wave-line:nth-child(66) { transition-delay: 0.37s; animation-delay: 1.25s; }
.team-wave-lines.animate .wave-line:nth-child(67) { transition-delay: 0.36s; animation-delay: 1.3s; }
.team-wave-lines.animate .wave-line:nth-child(68) { transition-delay: 0.35s; animation-delay: 1.35s; }
.team-wave-lines.animate .wave-line:nth-child(69) { transition-delay: 0.34s; animation-delay: 1.4s; }
.team-wave-lines.animate .wave-line:nth-child(70) { transition-delay: 0.33s; animation-delay: 1.45s; }
.team-wave-lines.animate .wave-line:nth-child(71) { transition-delay: 0.32s; animation-delay: 1.5s; }
.team-wave-lines.animate .wave-line:nth-child(72) { transition-delay: 0.31s; animation-delay: 1.45s; }
.team-wave-lines.animate .wave-line:nth-child(73) { transition-delay: 0.3s; animation-delay: 1.4s; }
.team-wave-lines.animate .wave-line:nth-child(74) { transition-delay: 0.29s; animation-delay: 1.35s; }
.team-wave-lines.animate .wave-line:nth-child(75) { transition-delay: 0.28s; animation-delay: 1.3s; }
.team-wave-lines.animate .wave-line:nth-child(76) { transition-delay: 0.27s; animation-delay: 1.25s; }
.team-wave-lines.animate .wave-line:nth-child(77) { transition-delay: 0.26s; animation-delay: 1.2s; }
.team-wave-lines.animate .wave-line:nth-child(78) { transition-delay: 0.25s; animation-delay: 1.15s; }
.team-wave-lines.animate .wave-line:nth-child(79) { transition-delay: 0.24s; animation-delay: 1.1s; }
.team-wave-lines.animate .wave-line:nth-child(80) { transition-delay: 0.23s; animation-delay: 1.05s; }
.team-wave-lines.animate .wave-line:nth-child(81) { transition-delay: 0.22s; animation-delay: 1s; }
.team-wave-lines.animate .wave-line:nth-child(82) { transition-delay: 0.21s; animation-delay: 0.95s; }
.team-wave-lines.animate .wave-line:nth-child(83) { transition-delay: 0.2s; animation-delay: 0.9s; }
.team-wave-lines.animate .wave-line:nth-child(84) { transition-delay: 0.19s; animation-delay: 0.85s; }
.team-wave-lines.animate .wave-line:nth-child(85) { transition-delay: 0.18s; animation-delay: 0.8s; }
.team-wave-lines.animate .wave-line:nth-child(86) { transition-delay: 0.17s; animation-delay: 0.75s; }
.team-wave-lines.animate .wave-line:nth-child(87) { transition-delay: 0.16s; animation-delay: 0.7s; }
.team-wave-lines.animate .wave-line:nth-child(88) { transition-delay: 0.15s; animation-delay: 0.65s; }
.team-wave-lines.animate .wave-line:nth-child(89) { transition-delay: 0.14s; animation-delay: 0.6s; }
.team-wave-lines.animate .wave-line:nth-child(90) { transition-delay: 0.13s; animation-delay: 0.55s; }
.team-wave-lines.animate .wave-line:nth-child(91) { transition-delay: 0.12s; animation-delay: 0.5s; }
.team-wave-lines.animate .wave-line:nth-child(92) { transition-delay: 0.11s; animation-delay: 0.45s; }
.team-wave-lines.animate .wave-line:nth-child(93) { transition-delay: 0.1s; animation-delay: 0.4s; }
.team-wave-lines.animate .wave-line:nth-child(94) { transition-delay: 0.09s; animation-delay: 0.35s; }
.team-wave-lines.animate .wave-line:nth-child(95) { transition-delay: 0.08s; animation-delay: 0.3s; }
.team-wave-lines.animate .wave-line:nth-child(96) { transition-delay: 0.07s; animation-delay: 0.25s; }
.team-wave-lines.animate .wave-line:nth-child(97) { transition-delay: 0.06s; animation-delay: 0.2s; }
.team-wave-lines.animate .wave-line:nth-child(98) { transition-delay: 0.05s; animation-delay: 0.15s; }
.team-wave-lines.animate .wave-line:nth-child(99) { transition-delay: 0.04s; animation-delay: 0.1s; }
.team-wave-lines.animate .wave-line:nth-child(100) { transition-delay: 0.03s; animation-delay: 0.05s; }
.team-wave-lines.animate .wave-line:nth-child(101) { transition-delay: 0.02s; animation-delay: 0s; }
.team-wave-lines.animate .wave-line:nth-child(102) { transition-delay: 0.01s; animation-delay: 0s; }
.team-wave-lines.animate .wave-line:nth-child(103) { transition-delay: 0s; animation-delay: 0s; }
.team-wave-lines.animate .wave-line:nth-child(102) { transition-delay: 0.01s; }
.team-wave-lines.animate .wave-line:nth-child(103) { transition-delay: 0s; }

.team-container {
  width: 100%;
  max-width: 1150px;
  position: relative;
  z-index: 2;
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.team-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.join-us-btn {
  padding: 0.6rem 1.5rem;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: '乐米惠圆体', sans-serif;
}

.join-us-btn:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.join-us-btn:active {
  transform: translateY(0);
}

.team-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-member-card {
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  /* 优化动画性能 */
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.team-member-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* 成员信息视图 */
.member-info-view {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
  opacity: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  position: relative;
  will-change: transform, opacity;
}

.member-info-view.slide-out {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

/* 登录表单视图 */
.member-login-view {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.25rem;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.98);
  will-change: transform, opacity;
  pointer-events: none;
}

.member-login-view.slide-in {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* 成员卡片右上角箭头 */
.member-login-arrow {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #666;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.member-login-arrow:hover {
  background-color: #000;
  border-color: #000;
  transform: scale(1.1);
}

.member-login-arrow:hover svg {
  stroke: white;
}

/* 返回箭头 */
.member-login-back {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #666;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
}

.member-login-back:hover {
  background-color: #000;
  border-color: #000;
  transform: scale(1.1);
}

.member-login-back:hover svg {
  stroke: white;
}

/* 成员登录表单 */
.member-login-form-mini {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 15;
  position: relative;
}

.member-login-form-mini * {
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
}

.member-login-form-mini h4 {
  margin: 0 0 0.4rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  text-align: center;
}

.member-login-input {
  width: 100%;
  padding: 0.55rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  font-family: '乐米惠圆体', sans-serif;
  cursor: text;
}

.member-login-input:focus {
  outline: none;
  border-color: #000;
}

.member-login-error {
  color: #d32f2f;
  font-size: 0.8rem;
  text-align: center;
  margin: -0.2rem 0;
}

.member-login-btn {
  width: 100%;
  padding: 0.55rem;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: '乐米惠圆体', sans-serif;
}

.member-login-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.member-login-btn:active {
  transform: translateY(0);
}


.team-member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f0f0f0;
  margin-bottom: 0.75rem;
}

.team-member-name {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.4rem;
}

.team-member-role {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  background-color: #e8f5e9;
  color: #2e7d32;
}

.team-member-role.role-queen {
  background-color: #fff3e0;
  color: #e65100;
}

.team-member-bio {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  text-align: center;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-member-contacts {
  width: 100%;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.team-member-contacts .contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  width: 100%;
}

.team-member-contacts .contact-icon {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  background-color: #f5f5f5;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 500;
  color: #666;
  min-width: 2.5rem;
  text-align: center;
  flex-shrink: 0;
}

.team-member-contacts .contact-value {
  color: #333;
  font-weight: 500;
  font-size: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  text-align: left;
}

.team-member-contact {
  font-size: 0.85rem;
  color: #999999;
  word-break: break-all;
}

.team-empty {
  text-align: center;
  color: #999999;
  padding: 3rem;
  font-size: 1rem;
}


/* 项目展示样式 */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.project-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.project-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-content {
  padding: 1.5rem;
}

.project-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.project-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin: 0;
  flex: 1;
}

.project-tag {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.project-tag-open {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.project-tag-closed {
  background-color: #f5f5f5;
  color: #616161;
}

.project-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.75rem 0;
}

.project-link {
  display: inline-block;
  color: #1976d2;
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}

.project-link:hover {
  color: #1565c0;
  text-decoration: underline;
}

.project-progress {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.progress-label {
  font-size: 0.85rem;
  color: #666;
}

.progress-status {
  font-size: 0.85rem;
  font-weight: 500;
}

.progress-bar-front {
  width: 100%;
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill-front {
  height: 100%;
  transition: width 0.3s ease;
  border-radius: 4px;
}

.progress-fill-front.progress-normal {
  background-color: #4caf50;
}

.progress-fill-front.progress-warning {
  background-color: #fbc02d;
}

.progress-fill-front.progress-urgent {
  background-color: #f57c00;
}

.progress-fill-front.progress-overdue,
.progress-fill-front.progress-delayed {
  background-color: #d32f2f;
}

.delay-note-front {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background-color: #fff3e0;
  border-left: 3px solid #f57c00;
  font-size: 0.85rem;
  color: #e65100;
  border-radius: 4px;
  line-height: 1.5;
}

.projects-empty {
  text-align: center;
  padding: 3rem 0;
  color: #999;
  font-size: 1rem;
}


/* 项目筛选器样式 */
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.projects-filters {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.filter-select {
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: white;
  color: #333;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  font-family: '乐米惠圆体', sans-serif;
}

.filter-select:hover {
  border-color: #999;
}

.filter-select:focus {
  border-color: #666;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .projects-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .projects-filters {
    width: 100%;
    flex-direction: column;
  }
  
  .filter-select {
    width: 100%;
  }
}


/* 项目成员显示样式 */
.project-members {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.75rem 0;
  padding: 0.75rem;
  background-color: #f5f5f5;
  border-radius: 6px;
}

.project-members-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  white-space: nowrap;
}

.project-members-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.project-member-item {
  position: relative;
}

.project-member-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.project-member-avatar:hover {
  transform: scale(1.15);
  z-index: 1;
}


/* 团队登录箭头按钮 */
.team-login-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #000;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-login-arrow:hover {
  background-color: #000;
  transform: scale(1.1);
}

.team-login-arrow:hover svg {
  stroke: white;
}

.team-login-arrow:active {
  transform: scale(0.95);
}

/* 团队内容包装器 */
.team-content-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

/* 团队成员视图 */
.team-members-view {
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateX(0);
  opacity: 1;
}

.team-members-view.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

/* 登录表单视图 */
.team-login-view {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}

.team-login-view.slide-in-right {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* 登录表单样式 */
.team-login-form {
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.team-login-form h3 {
  margin: 0 0 1.5rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  text-align: center;
}

.team-login-form .form-group {
  margin-bottom: 1.25rem;
}

.team-login-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
}

.team-login-input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  font-family: '乐米惠圆体', sans-serif;
}

.team-login-input:focus {
  outline: none;
  border-color: #000;
}

.team-login-error {
  color: #d32f2f;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-align: center;
}

.team-login-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.team-login-btn {
  flex: 1;
  padding: 0.75rem;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: '乐米惠圆体', sans-serif;
}

.team-login-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.team-login-btn:active {
  transform: translateY(0);
}

.team-login-cancel {
  flex: 1;
  padding: 0.75rem;
  background-color: white;
  color: #666;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: '乐米惠圆体', sans-serif;
}

.team-login-cancel:hover {
  border-color: #999;
  color: #333;
}

.team-login-cancel:active {
  transform: scale(0.98);
}

/* 加入我们模态框样式 */
.join-us-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
  overflow-y: auto;
}

.join-us-modal-content {
  background-color: #ffffff;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  padding: 2rem;
  max-height: 90vh;
  overflow-y: auto;
}

.join-us-close-btn:hover {
  transform: rotate(90deg);
  color: #000000;
}

.join-us-input:focus {
  outline: none;
  border-color: #666666 !important;
}

/* 滚动动画样式 */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.scroll-animate-fade.visible {
  opacity: 1;
}

/* 板块进入动效 */
.section-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 项目卡片进入动效 */
.project-card.scroll-animate {
  opacity: 0;
  transform: translateY(40px) scale(0.9);
}

.project-card.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 团队成员卡片进入动效 */
.team-member-card.scroll-animate {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.team-member-card.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 声明页面样式 */
.statement-section {
  flex: 1;
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 65px);
  background-color: #ffffff;
  margin-top: 65px;
}

.statement-container {
  width: 100%;
  max-width: 900px;
}

.statement-title {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2.5rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e0e0e0;
}

.statement-article {
  background-color: #ffffff;
  padding: 2rem;
  line-height: 2;
  color: #333333;
}

.statement-article p {
  font-size: 1rem;
  color: #333333;
  line-height: 2;
  margin-bottom: 1.5rem;
  text-indent: 2em;
  text-align: justify;
}

.statement-article p:first-child {
  font-weight: 500;
  color: #000000;
}

.statement-article p.statement-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #999999;
  text-align: center;
  text-indent: 0;
}

/* 声明段落滑入动画 */
.statement-paragraph {
  opacity: 0;
  transform: translateY(-30px);
  animation: slideDownFadeIn 0.6s ease forwards;
}

.statement-paragraph:nth-child(1) {
  animation-delay: 0.1s;
}

.statement-paragraph:nth-child(2) {
  animation-delay: 0.2s;
}

.statement-paragraph:nth-child(3) {
  animation-delay: 0.3s;
}

.statement-paragraph:nth-child(4) {
  animation-delay: 0.4s;
}

.statement-paragraph:nth-child(5) {
  animation-delay: 0.5s;
}

.statement-paragraph:nth-child(6) {
  animation-delay: 0.6s;
}

.statement-paragraph:nth-child(7) {
  animation-delay: 0.7s;
}

.statement-paragraph:nth-child(8) {
  animation-delay: 0.8s;
}

@keyframes slideDownFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Minecraft服务器表格优化 */
.mc-server-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.25rem 0;
}

.mc-server-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mc-server-details {
  flex: 1;
  min-width: 0;
}

.mc-server-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #000;
  margin-bottom: 0.2rem;
}

.mc-server-type {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.3rem;
}

.mc-server-desc {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.4;
  margin-top: 0.3rem;
  word-break: break-word;
}

.mc-desc-link {
  color: #555;
  text-decoration: underline;
  transition: color 0.2s;
}

.mc-desc-link:hover {
  color: #000;
}

.mc-address-cell {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: #333;
}

.mc-version-cell {
  font-size: 0.85rem;
  color: #666;
}

.mc-status-cell {
  min-width: 100px;
}

/* 调整表格单元格padding */
.node-table td.node-name-cell {
  padding: 0.85rem 1rem;
}

.node-table td.mc-address-cell,
.node-table td.mc-version-cell,
.node-table td.mc-status-cell,
.node-table td.mc-action-cell {
  padding: 0.85rem 1rem;
  vertical-align: middle;
}

.mc-action-cell {
  text-align: center;
}

.mc-apply-btn {
  padding: 0.5rem 1rem;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: '乐米惠圆体', sans-serif;
  white-space: nowrap;
  min-width: fit-content;
}

.mc-apply-btn:hover {
  background-color: #333333;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mc-apply-btn:active {
  transform: translateY(0);
}

/* 登录查看地址链接样式 */
.mc-login-link {
  color: #667eea;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: '乐米惠圆体', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
}

.mc-login-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.mc-login-link:hover {
  color: #764ba2;
}

.mc-login-link:hover::after {
  transform: scaleX(1);
}

/* 申请管理员弹窗样式 */
.apply-admin-input:focus {
  outline: none;
  border-color: #000000;
}

.apply-admin-close-btn:hover {
  transform: rotate(90deg);
  color: #000000;
}



/* 反馈模态框样式 */
.feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.feedback-content {
  background-color: white;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

.feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
}

.feedback-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background-color: #f5f5f5;
  color: #333;
}

.feedback-body {
  padding: 1.5rem;
}

.feedback-body .form-group {
  margin-bottom: 1.5rem;
}

.feedback-body .form-group:last-child {
  margin-bottom: 0;
}

.feedback-body label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.feedback-textarea,
.feedback-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.feedback-textarea:focus,
.feedback-input:focus {
  outline: none;
  border-color: #4caf50;
}

.feedback-textarea {
  resize: vertical;
  min-height: 120px;
}

.feedback-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid #eee;
}

.btn-cancel,
.btn-submit {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cancel {
  background-color: #f5f5f5;
  color: #666;
}

.btn-cancel:hover {
  background-color: #e0e0e0;
}

.btn-submit {
  background-color: #000000;
  color: white;
}

.btn-submit:hover:not(:disabled) {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .feedback-content {
    width: 95%;
    max-height: 85vh;
  }
  
  .feedback-header,
  .feedback-body,
  .feedback-footer {
    padding: 1rem;
  }
  
  .feedback-header h2 {
    font-size: 1.25rem;
  }
}



/* 登录/注册按钮 */
.auth-buttons {
  display: flex;
  align-items: center;
}

.auth-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}

.login-btn:hover {
  background-color: #333333;
  border-color: #333333;
}

/* 登录/注册模态框 */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.auth-modal-content {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  width: 90%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.auth-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #999999;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.auth-modal-close:hover {
  color: #000000;
}

.auth-form {
  width: 100%;
}

.auth-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.auth-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.auth-form .form-group {
  margin-bottom: 1rem;
}

.auth-form .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333333;
  margin-bottom: 0.5rem;
}

.auth-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  text-align: center;
}

.auth-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.auth-input:focus {
  outline: none;
  border-color: #000000;
}

.auth-error {
  background-color: #ffebee;
  color: #c62828;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-align: center;
}

.remember-me-group {
  margin: 1rem 0;
}

.remember-me-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.remember-me-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  margin-right: 8px;
  cursor: pointer;
  accent-color: #000000;
}

.remember-me-checkbox .checkbox-label {
  font-size: 0.9rem;
  color: #666666;
  cursor: pointer;
}

.remember-me-checkbox:hover .checkbox-label {
  color: #000000;
}

.auth-submit-btn {
  width: 100%;
  padding: 0.875rem;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 0.5rem;
}

.auth-submit-btn:hover:not(:disabled) {
  background-color: #333333;
}

.auth-submit-btn:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.auth-switch {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: #666666;
}

.auth-switch a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.auth-switch a:hover {
  opacity: 0.7;
}


/* 验证码输入组 */
.verification-code-group {
  display: flex;
  gap: 0.5rem;
}

.verification-code-input {
  flex: 1;
}

.send-code-btn {
  padding: 0.75rem 1rem;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
  min-width: 100px;
}

.send-code-btn:hover:not(:disabled) {
  background-color: #333333;
}

.send-code-btn:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}


/* 用户头像和菜单 */
.user-profile {
  position: relative;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-text-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.user-display-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000;
  white-space: nowrap;
  line-height: 1.2;
}

.user-uid {
  font-size: 0.75rem;
  font-weight: 400;
  color: #666666;
  white-space: nowrap;
  line-height: 1.2;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  position: relative;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 -2px 8px rgba(0, 0, 0, 0.3),
    inset 0 2px 8px rgba(255, 255, 255, 0.2);
}

.user-avatar::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 20%;
  width: 40%;
  height: 30%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  transform: rotate(-45deg);
}

.user-avatar:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.6),
    inset 0 -2px 8px rgba(0, 0, 0, 0.3),
    inset 0 2px 8px rgba(255, 255, 255, 0.2);
}

.user-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: 220px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
}

.user-menu-header {
  padding: 1rem;
  background-color: #f9f9f9;
}

.user-menu-name {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.user-menu-email {
  font-size: 0.85rem;
  color: #666666;
  word-break: break-all;
}

.user-menu-divider {
  height: 1px;
  background-color: #e0e0e0;
}

.user-menu-item {
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.9rem;
  color: #333333;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.user-menu-item:hover {
  background-color: #f5f5f5;
}

.user-menu-item svg {
  flex-shrink: 0;
}


/* 登录方式选择选项卡 */
.login-type-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background-color: #f5f5f5;
  padding: 0.25rem;
  border-radius: 8px;
}

.login-type-tab {
  flex: 1;
  padding: 0.625rem 1rem;
  background: none;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-type-tab:hover {
  color: #000000;
}

.login-type-tab.active {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
