/* user/index.html - 样式表 */
* { margin: 0; padding: 0; box-sizing: border-box; }
button { outline: none; -webkit-tap-highlight-color: transparent; -webkit-appearance: none; -moz-appearance: none; appearance: none; border: none; background: none; padding: 0; margin: 0; cursor: pointer; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f5f5f5; min-height: 100vh; padding-bottom: 60px; }

.header { background: linear-gradient(135deg, #006241 0%, #00704A 100%); color: white; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100; }
.header-title { font-size: 18px; font-weight: 600; }
.hotel-badge { background: rgba(255,255,255,0.2); padding: 4px 10px; border-radius: 12px; font-size: 12px; }

.profile-card { margin: 15px; background: white; border-radius: 12px; padding: 20px; display: flex; flex-direction: column; align-items: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.avatar { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #006241 0%, #00704A 100%); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 10px; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.username { font-size: 16px; font-weight: 500; color: #333; margin-bottom: 5px; }
.user-points { font-size: 14px; color: #e74c3c; font-weight: bold; margin-bottom: 15px; }
.google-login-btn { background: white; border: 2px solid #e0e0e0; border-radius: 12px; padding: 10px 20px; font-size: 14px; font-weight: 500; color: #333; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.3s; }
.google-login-btn:hover { background: #f8f9fa; border-color: #006241; }
.logout-btn { background: none; border: 1px solid #e0e0e0; border-radius: 8px; padding: 8px 16px; font-size: 13px; color: #666; cursor: pointer; margin-top: 10px; }
.logout-btn:hover { background: #f8f9fa; }

.menu-list { margin: 0 15px; background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.menu-section-title { padding: 12px 20px; font-size: 12px; color: #999; background: #f8f9fa; }
.menu-item { padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f0f0f0; cursor: pointer; transition: background 0.2s; }
.menu-item:hover { background: #f8f9fa; }
.menu-item:active { background: #eee; }
.menu-item:last-child { border-bottom: none; }
.menu-left { display: flex; align-items: center; gap: 12px; }
.menu-icon { font-size: 20px; width: 28px; text-align: center; }
.menu-text { font-size: 14px; color: #333; }
.menu-arrow { width: 20px; height: 20px; opacity: 0.4; }
.menu-arrow.flip { transform: scaleX(-1); }
