/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    /* 优化移动设备显示 */
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* 移动优先设计，确保在所有设备上都能正常显示 */
@media (max-width: 1024px) {
    body {
        font-size: 16px;
    }
}

/* 导航栏样式 - 优化移动设备显示 */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #764ba2;
}

.nav-brand .heart {
    margin-right: 0.5rem;
}

/* 同步状态样式 */
.sync-status {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-left: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sync-status.syncing {
    background: rgba(255, 193, 7, 0.2);
    color: #f57c00;
    animation: pulse 1.5s infinite;
}

.sync-status.success {
    background: rgba(76, 175, 80, 0.2);
    color: #388e3c;
}

.sync-status.error {
    background: rgba(244, 67, 54, 0.2);
    color: #d32f2f;
}

.sync-status.enabled {
    background: rgba(33, 150, 243, 0.2);
    color: #1976d2;
}

.sync-status.local {
    background: rgba(158, 158, 158, 0.2);
    color: #616161;
}

/* 汉堡菜单 */
.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-hamburger span {
    width: 25px;
    height: 3px;
    background: #764ba2;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: #764ba2;
    background: rgba(118, 75, 162, 0.1);
}

/* 主容器 - 优化移动设备显示 */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* 认证页面样式 */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* 分区样式 - 优化移动设备显示 */
.section {
    display: none;
    min-height: calc(100vh - 80px);
    width: 100%;
    box-sizing: border-box;
}

.section.active {
    display: block;
}

/* 认证页面样式 */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 2rem;
}

.auth-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #764ba2;
    font-weight: 600;
}

/* 表单样式 - 优化移动设备显示 */
.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
    box-sizing: border-box;
    /* 优化移动设备上的输入体验 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* 确保iOS设备上的输入框不会缩放 */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="password"],
    textarea,
    select {
        font-size: 16px;
    }
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #764ba2;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* 按钮样式 */
.btn-primary {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(118, 75, 162, 0.3);
}

/* 认证切换链接 */
.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
}

.auth-switch a {
    color: #764ba2;
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* 欢迎区域 - 优化移动设备显示 */
.welcome-section {
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.welcome-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.welcome-section p {
    font-size: 1rem;
    opacity: 0.9;
}

/* 功能卡片区域 - 移动优先设计 */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
    width: 100%;
    box-sizing: border-box;
}

/* 功能卡片样式优化 - 移动优先设计 */
.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.8rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.letter-feature {
    border-color: #ff6b6b;
}

.record-feature {
    border-color: #4ecdc4;
}

.view-feature {
    border-color: #45b7d1;
}

.inbox-feature {
    border-color: #74b9ff;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
}

.inbox-feature h3,
.inbox-feature p {
    color: white;
}

.inbox-feature .feature-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.inbox-feature .feature-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.badge {
    background: #ff4757;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.feature-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.view-feature {
    border-color: #45b7d1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.letter-feature .feature-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
}

.record-feature .feature-btn {
    background: linear-gradient(135deg, #4ecdc4 0%, #6ae2d9 100%);
    color: white;
}

.view-feature .feature-btn {
    background: linear-gradient(135deg, #45b7d1 0%, #6ac9e2 100%);
    color: white;
}

.feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 写信模块 */
.letter-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.letter-card {
    border-left: 4px solid #ff6b6b;
}

.letter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.letter-header h2 {
    color: #ff6b6b;
    font-weight: 600;
}

.letter-form textarea {
    min-height: 200px;
    font-family: inherit;
    line-height: 1.6;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #ced4da;
}

/* 快速记录区域 - 优化移动设备显示 */
.quick-record-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.section-header h2 {
    color: #764ba2;
    font-weight: 600;
}

/* 记录网格 - 移动优先设计 */
.records-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

/* 记录卡片 - 优化移动设备显示 */
.record-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.record-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.record-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.record-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #764ba2;
    margin-bottom: 0.5rem;
}

.record-type {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.record-content {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.record-date {
    font-size: 0.9rem;
    color: #999;
    text-align: right;
}

/* 收件箱样式 */
.inbox-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.unread-badge {
    background: #ff4757;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.inbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.inbox-letter {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #74b9ff;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0;
}

.inbox-letter:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.inbox-letter.unread {
    border-left-color: #ff4757;
    background: rgba(255, 71, 87, 0.05);
}

.inbox-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.inbox-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3436;
    line-height: 1.3;
    word-break: break-word;
}

.inbox-sender {
    color: #636e72;
    font-size: 0.85rem;
    line-height: 1.2;
}

.inbox-mood {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.inbox-preview {
    color: #2d3436;
    line-height: 1.5;
    margin-bottom: 1rem;
    max-height: 45px;
    overflow: hidden;
    position: relative;
    opacity: 0.8;
    font-size: 0.9rem;
    word-break: break-word;
}

.inbox-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
}

.inbox-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #636e72;
}

.inbox-time {
    font-size: 0.8rem;
}

.unread-indicator {
    background: #ff4757;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* 信件详情样式 */
.letter-detail-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.letter-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.letter-meta {
    background: rgba(116, 185, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid #74b9ff;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-label {
    font-weight: 600;
    color: #2d3436;
    min-width: 80px;
}

.meta-value {
    color: #636e72;
}

.letter-content-detail {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #2d3436;
    white-space: pre-wrap;
    border: 1px solid #e9ecef;
    min-height: 300px;
}

.letter-actions {
    margin-top: 2rem;
    text-align: center;
}

.letter-actions .btn-primary {
    width: auto;
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* 空状态 */
.empty-state {
    text-align: center;
    color: white;
    padding: 3rem;
}

.empty-state h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* 响应式设计 - 移动端优化 */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        position: relative;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .container {
        padding: 1rem;
    }
    
    /* 认证页面移动端优化 */
    .auth-container {
        padding: 1rem;
        min-height: calc(100vh - 80px);
    }
    
    .auth-form {
        padding: 2rem 1.5rem;
        margin: 0;
        width: 100%;
        max-width: none;
        border-radius: 15px;
    }
    
    .welcome-section {
        margin-bottom: 2rem;
    }
    
    .welcome-section h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .welcome-section p {
        font-size: 1.1rem;
    }
    
    /* 功能卡片移动端优化 */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-btn {
        padding: 1.2rem;
        font-size: 1.1rem;
    }
    
    /* 记录网格移动端优化 */
    .records-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .record-card {
        margin: 0.5rem 0;
    }
    
    /* 表单区域移动端优化 */
    .letter-section,
    .quick-record-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .letter-header h2,
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1.2rem;
        font-size: 1.1rem;
    }
    
    .letter-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* 输入框移动端优化 */
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1.2rem;
        font-size: 1.1rem;
    }
    
    .letter-form textarea {
        min-height: 200px;
    }
    
    /* 收件箱移动端优化 */
    .inbox-section {
        padding: 1rem;
        margin: 1rem 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .inbox-grid {
        gap: 0.8rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .inbox-letter {
        padding: 0.8rem;
        margin: 0;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        /* 确保不会产生水平滚动 */
        overflow-x: hidden;
    }
    
    .inbox-header {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.8rem;
    }
    
    .inbox-title {
        font-size: 1rem;
        line-height: 1.2;
        word-break: break-word;
    }
    
    .inbox-sender {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .inbox-mood {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
        align-self: flex-start;
        margin-top: 0.3rem;
    }
    
    .inbox-preview {
        font-size: 0.85rem;
        max-height: 40px;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .inbox-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        font-size: 0.8rem;
    }
    
    .inbox-time {
        font-size: 0.75rem;
    }
    
    .unread-indicator {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .unread-badge {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
}

/* 超小屏幕优化 */
@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.2rem;
    }
    
    .welcome-section h1 {
        font-size: 1.8rem;
    }
    
    .auth-form {
        padding: 1.5rem 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .container {
        padding: 0.5rem;
    }
    
    .letter-section,
    .quick-record-section,
    .inbox-section {
        padding: 0.8rem;
        margin: 0.5rem 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .inbox-letter {
        padding: 0.7rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .inbox-title {
        font-size: 0.95rem;
    }
    
    .inbox-preview {
        font-size: 0.8rem;
        max-height: 35px;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.2rem;
    }
    
    .welcome-section h1 {
        font-size: 1.8rem;
    }
    
    .auth-form {
        padding: 1.5rem 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .container {
        padding: 0.5rem;
    }
    
    .letter-section,
    .quick-record-section {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .welcome-section h1 {
        font-size: 1.5rem;
    }
    
    .auth-form {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .welcome-section h1 {
        font-size: 1.5rem;
    }
    
    .auth-form {
        padding: 1.5rem;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.record-card {
    animation: fadeIn 0.6s ease;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(118, 75, 162, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(118, 75, 162, 0.7);
}