/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 70px; /* Space for bottom nav */
}

a {
    text-decoration: none;
    color: inherit;
}

/* Variables */
:root {
    --primary-color: #2ecc71; /* Green from the design */
    --primary-dark: #27ae60;
    --text-white: #fff;
    --text-gray: #666;
    --text-light: #999;
    --card-bg: #fff;
    --border-radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Header */
.header {
    background: linear-gradient(135deg, #f5a9a9 0%, #a8e6cf 100%);
    color: var(--text-white);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-title {
    font-size: 18px;
    font-weight: 500;
}

.header-back, .header-setting, .header-placeholder {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-back i, .header-setting i {
    font-size: 20px;
}

/* Main Content */
.main-content {
    /* No padding here, top section has background */
    padding-bottom: 20px;
}

/* Check-in Section */
.checkin-section {
    background: linear-gradient(180deg, #f5a9a9 0%, #a8e6cf 100%);
    padding: 20px 20px 40px;
    text-align: center;
    color: var(--text-white);
    /* Make it flow into the card below */
    padding-bottom: 60px;
    margin-bottom: -40px;
}

.checkin-btn {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.1);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(1);
    }
}

.checkin-btn:active {
    transform: scale(0.95);
    animation: none;
}

.checkin-btn.checked {
    background: #fff;
    color: var(--primary-color);
}

.checkin-text {
    font-size: 24px;
    font-weight: bold;
}

.checkin-tip {
    font-size: 12px;
    color: #666;
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

/* Streak Card */
.streak-card {
    background: var(--card-bg);
    margin: 0 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.streak-info {
    padding: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.streak-icon {
    width: 50px;
    height: 50px;
    background: #fff5e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.streak-icon i {
    color: #ff9f43;
    font-size: 24px;
}

.streak-days {
    flex: 1;
}

.streak-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 2px;
}

.streak-count {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.streak-record {
    font-size: 12px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.streak-record i {
    font-size: 12px;
    margin-left: 4px;
}

/* Calendar Section */
.calendar-section {
    padding: 20px;
}

.calendar-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.calendar-day {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
}

.calendar-day.checked {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.calendar-day.current {
    font-weight: bold;
    color: var(--primary-color);
}

/* 当天签到时，字体为白色 */
.calendar-day.current.checked {
    color: var(--text-white);
}

.calendar-day.empty {
    pointer-events: none;
}

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 12px;
    flex: 1;
}

.nav-item i {
    font-size: 22px;
    margin-bottom: 2px;
}

.nav-item.active {
    color: var(--primary-color);
}

/* Tabs */
.tabs {
    display: flex;
    background: #fff;
    padding: 10px 15px 0;
    border-bottom: 1px solid #eee;
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-gray);
    position: relative;
    cursor: pointer;
}

.tab-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

/* Lists */
.list-container {
    padding: 15px;
}

.list-item {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.item-left {
    display: flex;
    align-items: center;
}

.item-content {
    display: flex;
    flex-direction: column;
}

.item-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #333;
}

.item-subtitle {
    font-size: 12px;
    color: #999;
}

.item-right {
    text-align: right;
    font-size: 14px;
    color: var(--text-gray);
}

/* Avatar */
.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a8e6cf 0%, #2ecc71 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Forms & Inputs */
.form-group {
    background: #fff;
    padding: 0 15px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.input-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.input-item:last-child {
    border-bottom: none;
}

.input-label {
    width: 80px;
    font-size: 14px;
    color: #333;
}

.input-field {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    background: transparent;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
    color: #fff;
    font-size: 24px;
    z-index: 90;
    cursor: pointer;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    width: 85%;
    max-width: 320px;
    border-radius: 12px;
    padding: 20px;
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-header {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

.modal-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn {
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.btn-cancel {
    background: #f5f5f5;
    color: #666;
}

.btn-confirm {
    background: var(--primary-color);
    color: #fff;
}

/* Record Stats */
.record-stats {
    display: flex;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
}

/* Record Date Group */
.record-date-group {
    margin-bottom: 15px;
}

.record-date-header {
    font-size: 14px;
    color: var(--text-gray);
    padding: 10px 0;
    font-weight: 500;
}

.record-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5a9a9 0%, #a8e6cf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.record-icon i {
    color: #fff;
    font-size: 18px;
}

.points-text {
    color: var(--primary-color);
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state i {
    font-size: 64px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.3;
}

.empty-state p {
    font-size: 14px;
}

/* Notify Badge */
.notify-badges {
    display: flex;
    gap: 6px;
}

.notify-badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f5a9a9 0%, #a8e6cf 100%);
    color: #fff;
}

/* Friend Item */
.friend-item {
    transition: background 0.2s;
}

.friend-item .item-left {
    cursor: pointer;
    flex: 1;
}

.friend-item .item-left:active {
    opacity: 0.7;
}

/* Quick Switches */
.quick-switches {
    display: flex;
    gap: 12px;
}

.mini-switch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.mini-switch i {
    font-size: 16px;
    color: #ccc;
    transition: color 0.3s;
}

.mini-switch input {
    display: none;
}

.mini-switch input:checked + .mini-slider {
    background: var(--primary-color);
}

/* 使用:has选择器来改变图标颜色 */
.mini-switch:has(input:checked) i {
    color: var(--primary-color);
}

.mini-slider {
    width: 28px;
    height: 14px;
    background: #ccc;
    border-radius: 14px;
    position: relative;
    transition: background 0.3s;
}

.mini-slider::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.mini-switch input:checked + .mini-slider::before {
    transform: translateX(14px);
}

/* Delete Button */
.delete-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: #fee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 8px;
}

.delete-btn i {
    font-size: 14px;
    color: #e74c3c;
}

.delete-btn:active {
    background: #fcc;
    transform: scale(0.95);
}

/* Record Status */
.record-status {
    color: var(--primary-color);
    font-size: 12px;
}

/* FAB hover */
.fab:active {
    transform: scale(0.95);
}

/* Profile Card */
.profile-card {
    background: #fff;
    margin: 15px;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5a9a9 0%, #a8e6cf 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 15px;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}

.profile-id {
    font-size: 12px;
    color: var(--text-light);
}

.profile-edit {
    color: var(--text-light);
}

/* Stats Card */
.stats-card {
    background: #fff;
    margin: 0 15px 15px;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
}

.stats-item {
    flex: 1;
    text-align: center;
}

.stats-value {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stats-label {
    font-size: 12px;
    color: var(--text-gray);
}

/* Menu Group */
.menu-group {
    background: #fff;
    margin: 0 15px 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:active {
    background: #f9f9f9;
}

.menu-left {
    display: flex;
    align-items: center;
}

.menu-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f5a9a9 0%, #a8e6cf 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 16px;
}

.menu-item span {
    font-size: 14px;
    color: #333;
}

.menu-item > i {
    color: var(--text-light);
    font-size: 14px;
}

/* Version Info */
.version-info {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: var(--text-light);
}

/* Menu Right Text */
.menu-right-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.menu-right-text i {
    font-size: 14px;
}

/* Reminder Options */
.reminder-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.reminder-option {
    flex: 1;
    min-width: 45%;
}

.reminder-option input {
    display: none;
}

.reminder-label {
    display: block;
    padding: 12px;
    text-align: center;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.reminder-option input:checked + .reminder-label {
    border-color: var(--primary-color);
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-color);
}

.reminder-tip {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 10px;
}

/* Auth Page */
.auth-page {
    background: linear-gradient(180deg, #f5a9a9 0%, #a8e6cf 100%);
    min-height: 100vh;
    padding-bottom: 0;
}

.auth-header {
    padding: 60px 20px 40px;
    text-align: center;
}

.auth-logo {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.auth-logo i {
    font-size: 40px;
    color: var(--primary-color);
}

.auth-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.auth-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.auth-form-container {
    background: #fff;
    margin: 0 20px;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-input-group {
    display: flex;
    align-items: center;
    background: #f5f7fa;
    border-radius: 8px;
    padding: 0 15px;
    height: 50px;
}

.auth-input-group i {
    font-size: 18px;
    color: var(--text-light);
    margin-right: 12px;
}

.auth-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    outline: none;
}

.auth-input-group input::placeholder {
    color: var(--text-light);
}

.auth-code-group {
    position: relative;
}

.code-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 13px;
    cursor: pointer;
    padding: 5px 10px;
}

.code-btn:disabled {
    color: var(--text-light);
}

.auth-btn {
    height: 50px;
    background: linear-gradient(135deg, #f5a9a9 0%, #a8e6cf 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: opacity 0.3s;
}

.auth-btn:active {
    opacity: 0.8;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.auth-links a {
    font-size: 13px;
    color: var(--text-gray);
}

.auth-agreement {
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-gray);
    text-align: center;
}

.auth-agreement label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.auth-agreement input[type="checkbox"] {
    width: 14px;
    height: 14px;
}

.auth-agreement a {
    color: var(--primary-color);
}

.auth-footer {
    padding: 40px 20px;
    text-align: center;
}

.auth-divider {
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 20px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.auth-divider::before {
    left: 50px;
}

.auth-divider::after {
    right: 50px;
}

.auth-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-btn i {
    font-size: 24px;
    color: #07c160;
}

/* 新增模态框样式 */
.modal-content-large {
    max-width: 340px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-content-large .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-body {
    overflow-y: auto;
    padding: 15px 0;
    flex: 1;
}

.modal-form-group {
    margin-bottom: 15px;
}

.modal-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

.modal-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.modal-message {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    margin: 10px 0;
}

.modal-warning {
    background: #fff3cd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.modal-warning i {
    font-size: 32px;
    color: #ff9800;
    margin-bottom: 10px;
    display: block;
}

.modal-warning p {
    color: #856404;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.btn-danger {
    background: #e74c3c;
    color: #fff;
}

/* 帮助中心样式 */
.help-section {
    margin-bottom: 20px;
}

.help-section h3 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.help-section p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* 协议样式 */
.agreement-update {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.agreement-section {
    margin-bottom: 20px;
}

.agreement-section h3 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.agreement-section p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* 邮箱输入提示 */
.input-tip {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
    padding-left: 5px;
}

/* 图形验证码样式 */
.auth-captcha-group {
    position: relative;
}

.auth-captcha-group input {
    padding-right: 110px;
}

.captcha-canvas {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
}

/* 模态框提示文字 */
.modal-tip {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin: 10px 0;
}

/* Toast提示框 */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 9999;
    animation: toastFade 0.3s ease;
    max-width: 80%;
    text-align: center;
}

.toast.success {
    background: rgba(46, 204, 113, 0.9);
}

.toast.error {
    background: rgba(231, 76, 60, 0.9);
}

.toast.warning {
    background: rgba(241, 196, 15, 0.9);
    color: #333;
}

@keyframes toastFade {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* 信息展示模态框 */
.info-modal .modal-body {
    text-align: center;
    padding: 30px 20px;
}

.info-modal .info-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.info-modal .info-icon.success {
    color: var(--primary-color);
}

.info-modal .info-icon.error {
    color: #e74c3c;
}

.info-modal .info-icon.warning {
    color: #f39c12;
}

.info-modal .info-message {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    white-space: pre-line;
}

/* 骨架屏加载效果 */
@keyframes skeleton-loading {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton-avatar {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s infinite;
}

.skeleton-text {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s infinite;
    height: 20px;
    width: 80px;
    border-radius: 4px;
    display: inline-block;
}

.skeleton-text-sm {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s infinite;
    height: 14px;
    width: 60px;
    border-radius: 4px;
    display: inline-block;
}

.skeleton-number {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s infinite;
    height: 24px;
    width: 30px;
    border-radius: 4px;
    display: inline-block;
}

/* 骨架屏加载完成后移除动画 */
.skeleton-loaded .skeleton-avatar,
.skeleton-loaded .skeleton-text,
.skeleton-loaded .skeleton-text-sm,
.skeleton-loaded .skeleton-number {
    background: none;
    animation: none;
    height: auto;
    width: auto;
}

