

/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
}

/* 头部样式 */
.header {
    background: linear-gradient(135deg, #1a8cff, #0066cc);
    color: white;
    padding: 20px 15px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.user-info h1 {
    font-size: 1.2rem;
    font-weight: 500;
}

.user-phone {
    font-size: 0.9rem;
    opacity: 0.9;
}

.balance-section {
    text-align: center;
    padding: 15px 0;
}

.balance-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-recharge {
    background-color: white;
    color: #0066cc;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.btn-recharge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

/* 功能导航 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px 15px;
}

.feature-item {
    background: white;
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #0066cc;
}

.feature-name {
    font-size: 0.9rem;
    font-weight: 500;
}

/* 底部导航 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 480px;
    margin: 0 auto;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 0 0;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 0.8rem;
    transition: all 0.3s;
    flex: 1;
}

.nav-icon {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.nav-item.active {
    color: #0066cc;
    font-weight: 600;
}

.nav-item:hover {
    color: #0066cc;
}

/* 页面内容区域 */
.page-content {
    padding: 20px 15px 70px;
}

.page-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 10px 0;
    border-bottom: 2px solid #eee;
}

.back-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #0066cc;
    cursor: pointer;
    margin-right: 15px;
    padding: 0 10px;
}

.page-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

/* 卡片样式 */
.card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 表单样式 */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* 按钮样式 */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: #0066cc;
    color: white;
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.btn-full {
    width: 100%;
}

.btn-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* 列表样式 */
.list {
    list-style: none;
}

.list-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-item:last-child {
    border-bottom: none;
}

/* 套餐卡片 */
.package-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s;
    cursor: pointer;
}

.package-card:hover {
    border-color: #0066cc;
    transform: translateY(-2px);
}

.package-card.selected {
    border-color: #0066cc;
    background: rgba(0, 102, 204, 0.05);
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
}

.package-bonus {
    color: #ff6b6b;
    font-weight: 500;
}

/* 状态标签 */
.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-success {
    background: #d4edda;
    color: #155724;
}

.status-warning {
    background: #fff3cd;
    color: #856404;
}

.status-error {
    background: #f8d7da;
    color: #721c24;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.3;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-item {
        padding: 15px 8px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
}

/* 在原有样式基础上添加以下内容 */

/* 顶部banner样式 */
.top-banner {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin: 15px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.banner-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.banner-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-btn {
    background: white;
    color: #ff6b6b;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 用户中心样式 */
.user-center-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.center-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.center-feature {
    text-align: center;
    padding: 15px 5px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.center-feature:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.center-feature-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #0066cc;
}

.center-feature-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.center-feature-desc {
    font-size: 0.8rem;
    color: #666;
}

/* 快来电Saas 充电桩/充电柜切换 */
.charger-tabs {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
    margin: 20px 15px 10px;
}

.charger-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.charger-tab.active {
    background: white;
    color: #0066cc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 快来电Saas 充电桩详情页 */
.charger-info {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.charger-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.charger-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.charger-id {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.charger-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-normal {
    background: #d4edda;
    color: #155724;
}

.status-warning {
    background: #fff3cd;
    color: #856404;
}

/* 插座网格 */
.socket-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.socket-item {
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.socket-item.available {
    background: #e7f5ff;
    border: 2px solid #1a8cff;
    color: #0066cc;
}

.socket-item.occupied {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #dc3545;
    cursor: not-allowed;
}

.socket-item.selected {
    background: #1a8cff;
    color: white;
    border-color: #1a8cff;
}

.socket-number {
    font-size: 1.2rem;
    font-weight: 600;
}

.socket-status {
    font-size: 0.8rem;
    margin-top: 5px;
}

/* 充电方式 */
.charge-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.method-btn {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.method-btn:hover {
    border-color: #1a8cff;
}

.method-btn.selected {
    border-color: #1a8cff;
    background: #e7f5ff;
    color: #0066cc;
}

.method-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.method-desc {
    font-size: 0.8rem;
    color: #666;
}

/* 收费说明 */
.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 0.9rem;
}

.fee-table th,
.fee-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #dee2e6;
}

.fee-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.fee-note {
    padding: 10px;
    background: #fff3cd;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #856404;
    margin: 15px 0;
}

/* 支付信息 */
.payment-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.payment-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
    text-align: center;
    margin: 10px 0;
}

.payment-methods {
    margin-top: 15px;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method:hover {
    border-color: #1a8cff;
}

.payment-method.selected {
    border-color: #1a8cff;
    background: #e7f5ff;
}

.method-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.method-details {
    flex: 1;
}

.method-name {
    font-weight: 500;
}

.method-balance {
    font-size: 0.9rem;
    color: #666;
}

/* 扫码页 */
.scan-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
    text-align: center;
}

.scan-box {
    width: 250px;
    height: 250px;
    border: 3px solid #0066cc;
    border-radius: 15px;
    position: relative;
    margin: 20px auto;
    overflow: hidden;
}

.scan-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0066cc, transparent);
    animation: scanLine 2s linear infinite;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #0066cc;
    animation: scanLine 2s linear infinite;
}

@keyframes scanLine {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}

.scan-tip {
    color: #666;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* 订单页 */
.order-tabs {
    display: flex;
    margin: 15px;
    gap: 5px;
}

.order-tab {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.order-tab.active {
    background: #0066cc;
    color: white;
}

.order-list {
    padding: 0 15px;
}

.order-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.order-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.order-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-charging {
    background: #cce5ff;
    color: #004085;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.order-details {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #666;
    font-size: 0.9rem;
}

.order-amount {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6b6b;
    margin-top: 10px;
}

.no-data {
    text-align: center;
    padding: 50px 20px;
    color: #888;
}

.no-data-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.3;
}

/* 修复底部导航遮挡问题 */

/* 确保body有足够的最小高度和正确的定位 */
body {
    background-color: #f5f5f5;
    color: #333;
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px; /* 为底部导航留出空间 */
}

/* 更新底部导航样式 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 0 0;
    z-index: 1000;
    box-sizing: border-box;
}

/* 确保页面内容不会延伸到导航栏下面 */
.page-content {
    padding: 20px 15px 70px; /* 底部增加padding防止内容被遮挡 */
    box-sizing: border-box;
}

/* 扫描页面特定调整 */
.scan-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(70vh - 60px); /* 减去导航高度 */
    text-align: center;
    padding-bottom: 80px; /* 为底部导航留出更多空间 */
}

/* 修复卡片容器 */
.card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

/* 修复用户中心部分 */
.user-center-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

/* 修复功能网格 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px 15px 80px; /* 底部增加更多padding */
    box-sizing: border-box;
}

/* 修复订单列表 */
.order-list {
    padding: 0 15px 80px; /* 底部增加padding */
    box-sizing: border-box;
}

/* 修复扫码容器 */
.scanner-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 20px auto;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* 修复快来电Saas 充电桩详情页 */
.charger-info {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    padding-bottom: 80px; /* 为底部导航留出空间 */
    box-sizing: border-box;
}

/* 修复页面头部 */
.page-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 10px 15px;
    border-bottom: 2px solid #eee;
    box-sizing: border-box;
    position: relative;
    z-index: 999; /* 确保在底部导航之上 */
}

/* 为所有页面添加安全区域 */
.page-wrapper {
    min-height: 100vh;
    position: relative;
}

/* 确保主要内容区域不会溢出 */
.main-content {
    overflow-y: auto;
    max-height: calc(100vh - 60px); /* 减去导航高度 */
    -webkit-overflow-scrolling: touch; /* iOS平滑滚动 */
}

/* 修复响应式问题 */
@media (max-width: 480px) {
    body {
        padding-bottom: 60px;
    }
    
    .bottom-nav {
        border-radius: 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-bottom: 80px;
    }
    
    .page-content {
        padding-bottom: 80px;
    }
}

/* 添加安全区域支持（iOS） */
@supports (padding: max(0px)) {
    .bottom-nav {
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
}









/* 登录页面特定样式 */

/* 登录容器 */
.login-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* 登录卡片 */
.login-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
}

/* 登录Logo */
.login-logo {
    margin-bottom: 30px;
}

.logo-icon {
    font-size: 3.5rem;
    color: #0066cc;
    margin-bottom: 15px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.logo-subtext {
    color: #666;
    font-size: 0.9rem;
}

/* 登录表单 */
.login-form {
    margin-top: 20px;
}

/* 输入框组 */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group .form-input {
    padding-left: 45px;
    padding-right: 40px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0;
}

/* 记住我选项 */
.remember-me {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.remember-checkbox {
    display: flex;
    align-items: center;
}

.remember-checkbox input {
    margin-right: 8px;
}

.forgot-password {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* 登录按钮 */
.login-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s;
}

/* 第三方登录 */
.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #999;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

.divider span {
    padding: 0 15px;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 2px solid #eee;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.social-btn:hover {
    border-color: #ddd;
    transform: translateY(-2px);
}

.social-btn.wechat {
    color: #09bb07;
    border-color: #e0f7e0;
}

.social-btn.alipay {
    color: #1677ff;
    border-color: #e6f2ff;
}

/* 注册链接 */
.register-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.register-link a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    margin-left: 5px;
}

.register-link a:hover {
    text-decoration: underline;
}

/* 验证码输入 */
.verify-code-group {
    display: flex;
    gap: 10px;
}

.verify-code-group .form-input {
    flex: 1;
}

.get-verify-code {
    min-width: 120px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* 协议条款 */
.agreement {
    display: flex;
    align-items: center;
    margin: 20px 0;
    font-size: 0.9rem;
    color: #666;
}

.agreement input {
    margin-right: 8px;
}

.agreement a {
    color: #0066cc;
    text-decoration: none;
}

.agreement a:hover {
    text-decoration: underline;
}

/* 动画效果 */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式调整 */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .social-login {
        flex-direction: column;
    }
    
    .verify-code-group {
        flex-direction: column;
    }
    
    .get-verify-code {
        width: 100%;
    }
}

/* 登录成功动画 */
.login-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
    animation: bounce 1s ease infinite alternate;
}

@keyframes bounce {
    from { transform: scale(0.9); }
    to { transform: scale(1.1); }
}