* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4ecdc4;
  --primary-dark: #3dbdb5;
  --primary-light: #6ed7d0;
  --secondary-color: #ff6b6b;
  --text-primary: #333;
  --text-secondary: #666;
  --text-light: #999;
  --bg-light: #f8f9fa;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 4px 20px rgba(78, 205, 196, 0.4);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #f5f5f5;
  min-height: 100vh;
  padding-bottom: 100px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 主横幅区域 */
.banner {
  background: #4ecdc4;
  padding: 120px 20px;
  position: relative;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.banner-content {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.banner-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  letter-spacing: 2px;
}

.banner-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 3px;
}

.banner-wave {
  position: absolute;
  bottom: -79px;
  left: 0;
  width: 100%;
  height: 80px;
  transform: scaleY(-1);
}

.wave-container {
  width: 100%;
  margin-top: -2px;
  position: relative;
  z-index: 10;
  overflow: visible;
}

.wave-icon {
  width: 100%;
  height: 80px;
  display: block;
}

.city-silhouette {
  width: 100%;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.city-svg {
  width: 100%;
  height: auto;
}

.banner-feedback {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* 功能按钮区 */
.action-section {
  display: flex;
  gap: 20px;
  padding: 0 28px;
  margin-top: 150px;
  position: relative;
  z-index: 10;
}

.action-btn {
  flex: 1;
  height: 56px;
  border-radius: 28px;
  border: none;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.action-btn:hover::before {
  left: 100%;
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-glow);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.5);
}

.primary-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.secondary-btn {
  background: #fff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.secondary-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, rgba(68, 160, 141, 0.05) 100%);
}

.secondary-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* 底部导航 */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding: 8px 2px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
  z-index: 100;
  transition: opacity var(--transition-fast);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--text-light);
  transition: all var(--transition-fast);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 12px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.nav-item:active, .nav-item:focus {
  outline: none;
  background: transparent !important;
  box-shadow: none !important;
}

.nav-item.active {
  color: var(--primary-color);
}

.nav-item:hover:not(.active) {
  color: var(--text-secondary);
}

.nav-icon {
  width: 32px;
  height: 32px;
  transition: var(--transition-fast);
}

.nav-item.active .nav-icon {
  transform: scale(1.15);
}

.nav-text {
  font-size: 11px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.nav-item.active .nav-text {
  font-weight: 700;
}

.nav-item.scan-item {
  position: relative;
  z-index: 101;
  overflow: visible;
}

.scan-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: all var(--transition-normal);
  position: relative;
  top: -32px;
  margin-bottom: -32px;
}

.nav-item.scan-item:hover .scan-icon {
  transform: scale(1.08);
}

.nav-item.scan-item .nav-text {
  height: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
}

.nav-item.scan-item:hover .nav-text {
  color: var(--primary-dark);
}

/* 加载动画 */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* 响应式优化 */
@media (max-width: 375px) {
  .banner-title {
    font-size: 26px;
  }

  .banner-subtitle {
    font-size: 15px;
  }

  .action-btn {
    height: 50px;
    font-size: 15px;
  }

  .scan-icon {
    width: 48px;
    height: 48px;
    top: -24px;
    margin-bottom: -24px;
  }
}

.page-content {
  padding: 20px 16px 100px;
  min-height: calc(100vh - 250px);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.page-content::-webkit-scrollbar {
  display: none;
}

.repair-header {
  text-align: center;
  padding: 0;
}

.repair-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.repair-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}

.repair-tabs {
  display: flex;
  background: #fff;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.repair-tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.repair-tab.active {
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
}

.repair-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.repair-item {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.repair-item:active {
  transform: scale(0.98);
}

.repair-item[data-status]:not([data-status="all"]) {
  display: block;
}

.repair-item.hidden {
  display: none;
}

.repair-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.repair-status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.repair-status.pending {
  background: rgba(255, 189, 46, 0.15);
  color: #ff9f00;
}

.repair-status.processing {
  background: rgba(78, 205, 196, 0.15);
  color: var(--primary-color);
}

.repair-status.completed {
  background: rgba(76, 209, 137, 0.15);
  color: #4cd189;
}

.repair-time {
  font-size: 12px;
  color: var(--text-light);
}

.repair-item-content {
  margin-bottom: 12px;
}

.repair-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.repair-icon {
  width: 16px;
  height: 16px;
}

.repair-location span {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
}

.repair-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.repair-order {
  font-size: 12px;
  color: var(--text-light);
}

.repair-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  margin: 12px 0;
  border-top: 1px dashed #eee;
  border-bottom: 1px dashed #eee;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  transition: all var(--transition-fast);
}

.progress-step.completed .step-dot {
  background: var(--primary-color);
}

.progress-step.active .step-dot {
  background: var(--primary-color);
  animation: pulse 1.5s infinite;
}

.progress-step span {
  font-size: 11px;
  color: var(--text-light);
}

.progress-step.completed span,
.progress-step.active span {
  color: var(--text-primary);
  font-weight: 600;
}

.progress-line {
  flex: 1;
  height: 2px;
  background: #ddd;
  margin: 0 4px;
  margin-bottom: 20px;
}

.progress-step.completed + .progress-line {
  background: var(--primary-color);
}

.repair-item-footer {
  display: flex;
  justify-content: flex-end;
}

.repair-detail-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.repair-detail-btn:active {
  background: var(--primary-color);
  color: #fff;
}

.scan-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.scan-icon-large {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.scan-placeholder p {
  font-size: 14px;
  color: var(--text-secondary);
}

.scan-page {
  background: #000;
  min-height: calc(100vh - 75px);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
}

.scan-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.scan-frame {
  width: 280px;
  height: 280px;
  border: 2px solid rgba(78, 205, 196, 0.3);
  border-radius: 12px;
  position: relative;
  background: rgba(78, 205, 196, 0.05);
  overflow: hidden;
}

.scan-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid #4ecdc4;
}

.scan-corner.top-left {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
}

.scan-corner.top-right {
  top: -2px;
  right: -2px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 8px 0 0;
}

.scan-corner.bottom-left {
  bottom: -2px;
  left: -2px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 8px;
}

.scan-corner.bottom-right {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4ecdc4, transparent);
  animation: scanMove 2s linear infinite;
}

@keyframes scanMove {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0.5;
  }
}

.scan-tip {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 24px;
}

.scan-actions {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 30px 0;
  padding-bottom: calc(30px + env(safe-area-inset-bottom));
}

.scan-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.scan-btn svg {
  width: 40px;
  height: 40px;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.scan-btn span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.scan-btn.active svg,
.scan-btn:active svg {
  opacity: 1;
}

.scan-btn.active span,
.scan-btn:active span {
  color: #4ecdc4;
}

.scan-btn:active {
  transform: scale(0.95);
}

.create-repair-form {
  padding: 20px 0;
}

.form-section {
  margin-bottom: 20px;
}

.form-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.required {
  color: #ff6b6b;
}

.device-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.device-type-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.device-type-item svg {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.device-type-item span {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
}

.device-type-item.active {
  border-color: var(--primary-color);
  background: rgba(78, 205, 196, 0.08);
}

.device-type-item.active span {
  color: var(--primary-color);
  font-weight: 600;
}

.device-type-item:active {
  transform: scale(0.95);
}

.form-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid #eee;
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast);
  font-family: inherit;
}

.form-input:focus {
  border-color: var(--primary-color);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-textarea {
  width: 100%;
  height: 120px;
  padding: 16px;
  border: 1.5px solid #eee;
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-primary);
  resize: none;
  outline: none;
  transition: border-color var(--transition-fast);
  font-family: inherit;
}

.form-textarea:focus {
  border-color: var(--primary-color);
}

.form-textarea::placeholder {
  color: var(--text-light);
}

.form-char-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 12px;
  color: var(--text-light);
}

.form-value-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 16px;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 12px;
  transition: border-color var(--transition-fast);
}

.form-value-wrap:hover {
  border-color: var(--primary-color);
}

.form-value {
  font-size: 14px;
  color: var(--text-primary);
}

.form-detail {
  font-size: 13px;
  color: var(--primary-color);
  margin-right: 8px;
}

.form-arrow {
  flex-shrink: 0;
}

.form-audio-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 12px;
  transition: border-color var(--transition-fast);
}

.form-audio-wrap:hover {
  border-color: var(--primary-color);
}

.audio-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.audio-btn:active {
  transform: scale(0.95);
  background: var(--primary-dark);
}

.audio-text {
  font-size: 14px;
  color: var(--text-secondary);
}

.form-image-wrap {
  display: flex;
  gap: 12px;
}

.image-upload-btn {
  width: 80px;
  height: 80px;
  border: 2px dashed #ddd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: #fafafa;
}

.image-upload-btn:hover {
  border-color: var(--primary-color);
  background: rgba(78, 205, 196, 0.05);
}

.form-submit {
  width: 100%;
  height: 48px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-glow);
}

.form-submit:active {
  transform: scale(0.98);
  background: var(--primary-dark);
}

.status-title {
  background: #fff;
  border-radius: 12px;
  padding: 10px 0;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
}

.status-tabs {
  display: flex;
  background: #f5f5f5;
  border-radius: 24px;
  padding: 4px;
  margin-bottom: 16px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}

.status-tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.status-tab.active {
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
}

.status-list {
  padding: 0 0 20px;
}

.status-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-light);
}

.status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.status-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(78, 205, 196, 0.15);
  color: var(--primary-color);
}

.status-badge.pending {
  background: rgba(255, 159, 67, 0.15);
  color: #ff9f43;
}

.status-time {
  font-size: 13px;
  color: var(--text-light);
}

.status-content {
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.status-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.status-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.status-detail {
  flex: 1;
}

.status-location {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.status-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.5;
}

.status-order {
  font-size: 12px;
  color: var(--text-light);
}

.status-timeline {
  padding-top: 16px;
  position: relative;
}

.status-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: #eee;
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ddd;
  flex-shrink: 0;
  margin-top: 4px;
}

.timeline-item.completed .timeline-dot {
  background: var(--primary-color);
}

.timeline-item.active .timeline-dot {
  background: var(--primary-color);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(78, 205, 196, 0);
  }
}

.timeline-content {
  flex: 1;
}

.timeline-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.timeline-item:not(.completed):not(.active) .timeline-title {
  color: var(--text-light);
}

.timeline-time {
  font-size: 12px;
  color: var(--text-light);
}

.feedback-form {
  padding: 20px 0;
}

.feedback-type-section {
  margin-bottom: 24px;
}

.feedback-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 13px;
}

.feedback-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feedback-type-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.feedback-type-item svg {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.feedback-type-item span {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
}

.feedback-type-item.active {
  border-color: var(--primary-color);
  background: rgba(78, 205, 196, 0.08);
}

.feedback-type-item.active span {
  color: var(--primary-color);
  font-weight: 600;
}

.feedback-type-item:active {
  transform: scale(0.95);
}

.feedback-content-section {
  margin-bottom: 20px;
  position: relative;
}

.feedback-textarea {
  width: 100%;
  height: 160px;
  padding: 16px;
  border: 1.5px solid #eee;
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-primary);
  resize: none;
  outline: none;
  transition: border-color var(--transition-fast);
  font-family: inherit;
}

.feedback-textarea:focus {
  border-color: var(--primary-color);
}

.feedback-textarea::placeholder {
  color: var(--text-light);
}

.feedback-char-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 12px;
  color: var(--text-light);
}

.feedback-contact-section {
  margin-bottom: 24px;
}

.feedback-contact-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid #eee;
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast);
  font-family: inherit;
}

.feedback-contact-input:focus {
  border-color: var(--primary-color);
}

.feedback-contact-input::placeholder {
  color: var(--text-light);
}

.feedback-submit {
  width: 100%;
  height: 48px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-glow);
}

.feedback-submit:active {
  transform: scale(0.98);
  background: var(--primary-dark);
}

.my-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.profile-avatar svg {
  width: 100%;
  height: 100%;
}

.profile-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.profile-phone {
  font-size: 14px;
  color: var(--text-secondary);
}

.my-menu {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  transition: background var(--transition-fast);
}

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

.menu-item:active {
  background: #f8f9fa;
}

.menu-item span {
  font-size: 15px;
  color: var(--text-primary);
}

.menu-item svg {
  width: 20px;
  height: 20px;
}

.menu-item.logout span {
  color: var(--secondary-color);
}

.form-bg-container {
  min-height: 100vh;
  background: #f5f5f5;
}

.form-bg-header {
  display: none;
}

.form-bg-content {
  margin-top: 16px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 24px;
  padding: 24px 20px;
  min-height: calc(100vh - 40px);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}