/* 我的页面样式 */
.page-header {
  background-color: #1CBBB4;
  color: white;
  padding: 10px 15px;
}

/* 用户信息样式 */
.user-profile {
  background-color: #1CBBB4;
  padding: 20px 15px 30px;
  display: flex;
  align-items: center;
  color: white;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background-color: white;
  margin-right: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info {
  flex: 1;
}

.user-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.user-id {
  font-size: 14px;
  opacity: 0.8;
}

/* 会员卡片样式 */
.membership-cards {
  margin: -15px 15px 15px;
  display: flex;
  justify-content: space-between;
}

.membership-card {
  width: 48%;
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.card-balance {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.balance-value {
  font-size: 18px;
  color: #1CBBB4;
  font-weight: bold;
}

.card-btn {
  text-align: center;
}

.btn-text {
  font-size: 13px;
  color: #1CBBB4;
}

/* 功能列表样式 */
.function-list {
  background-color: white;
  margin: 0 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.function-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #f5f5f5;
}

.function-item:last-child {
  border-bottom: none;
}

.function-icon {
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.function-icon img {
  width: 24px;
  height: 24px;
}

.function-icon i {
  font-size: 20px;
  color: #1CBBB4;
}

.function-name {
  flex: 1;
  font-size: 15px;
}

.arrow {
  color: #ccc;
  font-size: 16px;
}

.value {
  font-size: 14px;
  color: #999;
} 