.profile-container {
  padding: 80px 20px 20px 20px;
  color: #333;
}

.profile-header {
  margin-bottom: 30px;
}

.avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.profile-username h4 {
  font-weight: bold;
  margin: 0;
}

.profile-section {
  background-color: #F9FAFB;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.section-header h5 {
  font-weight: bold;
  margin: 0;
  color: #1F2937;
}

.btn-renew,
.btn-buy {
  background-color: #34C759;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px 15px;
  font-size: 14px;
}

/* 悬停状态 */
.btn-renew:hover,
.btn-buy:hover {
  background-color: #3e8e41;
  /* 深绿色 */
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);

}

/* 点击瞬间的按压效果 */
.btn-renew:active,
.btn-buy:active {
  transform: translateY(1px);
  box-shadow: none;
  background-color: #2E7D32;
  /* 更深的绿色 */
}

.section-content {
  margin-top: 10px;
  color: #4B5563;
  font-size: 12px;
}


.points-display p {
  font-size: 20px;
  font-weight: bold;
  color: #34C759;
  margin: 10px 0 0 0;
}

.btn-logout {
  width: 100%;
  background-color: #34C759;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px;
  margin-top: 20px;
  font-size: 16px;
}

.btn-logout:hover {
  background-color: #3e8e41;
  /* 深绿色 */
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.btn-logout:active {
  transform: translateY(1px);
  box-shadow: none;
  background-color: #2E7D32;
  /* 更深的绿色 */
}

.bottom-nav {
  padding: 10px 0;
}

.active-text {
  color: #4CAF50;
  font-size: 12px;
}

.disactive-text {
  color: #999;
  font-size: 12px;
}

.cbcode {
  color: #4CAF50;
  font-size: 12px;
}



/* 确保按钮样式一致 */
.btn-buy {
  background-color: #34C759;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px 15px;
  font-size: 14px;
}

/* 复制蒜头号按钮 */
.copy-btn {
  background-color: #34C759;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
}

.copy-btn:hover {
  background-color: #3e8e41;
}

.copy-btn:active {
  transform: translateY(1px);
  box-shadow: none;
  background-color: #2E7D32;
}