/* pages/mine-student/mine-student.wxss */
.profile-card {
  display: flex;
  align-items: center;
  padding: 5.3333vw;
  background: linear-gradient(135deg, #5b8def, #3d6bc4);
  border-radius: 3.2vw;
  margin-bottom: 3.2vw;
  color: #fff;
}

.avatar {
  width: 13.3333vw;
  height: 13.3333vw;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6.4vw;
  margin-right: 3.2vw;
}

.profile-name {
  font-size: 4.5333vw;
  font-weight: 700;
  margin-bottom: 0.8vw;
}

.profile-class {
  font-size: 3.2vw;
  opacity: 0.85;
}

.stats-row {
  display: flex;
  gap: 2.6667vw;
  margin-bottom: 3.2vw;
}

.stat-item {
  flex: 1;
  background: #fff;
  border-radius: 2.6667vw;
  padding: 4.2667vw;
  text-align: center;
  box-shadow: 0 0.2667vw 1.6vw rgba(0, 0, 0, 0.03);
}

.stat-num {
  font-size: 5.3333vw;
  font-weight: 700;
  color: #4a7fd4;
  margin-bottom: 0.8vw;
}

.stat-label {
  font-size: 3.2vw;
  color: #9ca3af;
}

.menu-list {
  background: #fff;
  border-radius: 2.6667vw;
  overflow: hidden;
  margin-bottom: 5.3333vw;
  box-shadow: 0 0.2667vw 1.6vw rgba(0, 0, 0, 0.03);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4.2667vw;
  font-size: 3.7333vw;
  color: #333;
  border-bottom: 0.1333vw solid #f0f2f7;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-arrow {
  color: #ccc;
  font-size: 4.2667vw;
}

.logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 3.7333vw 0;
  margin-bottom: 3.2vw;
  background: #fff;
  color: #ea6668;
  border-radius: 2.6667vw;
  font-size: 4.2667vw;
  font-weight: 600;
  border: 0.1333vw solid #f5c6c7;
  box-sizing: border-box;
}

.logout-btn::after {
  border: none;
}

/* 报备模态框 */
.mt-20 {
  margin-top: 2.6667vw;
}

.type-selector {
  display: flex;
  gap: 2.1333vw;
  margin-bottom: 2.1333vw;
  flex-wrap: wrap;
}

.type-option {
  flex: 1;
  min-width: 16vw;
  text-align: center;
  padding: 2.6667vw 2.1333vw;
  background: #f5f6fa;
  border-radius: 2.1333vw;
  font-size: 3.4667vw;
  color: #6b7280;
  border: 0.2667vw solid transparent;
}

.type-option.active {
  background: #eef3fd;
  color: #4a7fd4;
  border-color: #4a7fd4;
  font-weight: 600;
}

.modal-actions {
  display: flex;
  gap: 2.6667vw;
  margin-top: 4.2667vw;
}

.modal-actions button {
  flex: 1;
}

.personal-item { border-top:0.1333vw solid #edf0f4; padding:2.4vw 0; font-size:3.6vw; }
