/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    height: 100%;
    overflow: hidden;
    position: fixed;
    width: 100%;
    background: #f5f5f5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 顶部导航栏 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 12px 16px 0 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.user-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-name {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    line-height: 1.2;
}

/* 顶部搜索栏重构样式 */
.search-bar {
    display: flex;
    align-items: center;
    background: #f7f7fa;
    border-radius: 24px;
    height: 35px;
    min-width: 180px;
    max-width: 340px;
    width: 100%;
    padding: 0 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1.5px solid #e6e6e6;
    margin-right: 16px;
    transition: box-shadow 0.2s, border 0.2s;
}
.search-bar:focus-within {
    box-shadow: 0 4px 16px rgba(24,144,255,0.10);
    border-color: #91d5ff;
}
#searchInput {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    height: 33px;
    line-height: 33px;
    padding: 0 8px;
    box-sizing: border-box;
    border-radius: 20px;
    color: #222;
}
#searchInput::placeholder {
    color: #bbb;
    font-size: 15px;
    letter-spacing: 1px;
}
#searchBtn.search-btn {
    background: none;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 18px;
    margin-left: 4px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}
#searchBtn.search-btn:hover, #searchBtn.search-btn:focus {
    background: #f0f5ff;
    color: #1890ff;
}

/* 搜索结果弹窗样式 */
.search-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.25);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}
.search-modal.show {
    display: flex;
}
.search-modal-content {
    background: #fff;
    border-radius: 12px;
    width: 90vw;
    max-width: 500px;
    max-height: 80vh;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.search-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 10px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 18px;
    font-weight: bold;
}
.close-search-modal {
    background: none;
    border: none;
    font-size: 22px;
    color: #888;
    cursor: pointer;
    margin-left: 10px;
}
.search-modal-body {
    padding: 18px 20px;
    overflow-y: auto;
    flex: 1;
}
.search-result-item {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background 0.15s;
}
.search-result-item:last-child {
    border-bottom: none;
}
.search-result-item:hover {
    background: #f7f7f7;
}
.search-result-title {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 4px;
}
.search-result-summary {
    font-size: 14px;
    color: #666;
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-result-meta {
    font-size: 12px;
    color: #aaa;
}
@media (max-width: 600px) {
    .search-modal-content {
        max-width: 98vw;
        padding: 0;
    }
    .search-modal-header, .search-modal-body {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.points-display {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #ff6b6b;
    font-weight: bold;
    background: #fff6f6;
    border-radius: 16px;
    padding: 0 14px;
    height: 32px;
    box-shadow: 0 1px 4px rgba(255,107,107,0.08);
    margin-left: 8px;
}

.points-label {
    color: #888;
    margin-right: 2px;
}

.points-value {
    font-size: 18px;
    font-weight: bold;
    color: #ff2d2d;
    letter-spacing: 1px;
}

.title {
    font-size: 18px;
    font-weight: bold;
    margin-left: auto;
    margin-right: 8px;
    color: #222;
}

.header-actions {
    display: flex;
    align-items: center;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #888;
    cursor: pointer;
    margin-left: 4px;
}

@media (max-width: 600px) {
    .header {
        flex-direction: row;
        align-items: center;
        padding: 8px 8px 0 8px;
    }
    .search-bar input {
        width: 100px;
    }
    .points-display {
        font-size: 15px;
        padding: 0 8px;
        height: 28px;
    }
    .points-value {
        font-size: 15px;
    }
    .main-content {
        padding-top: 56px;
    }
}

/* 数藏明星模块 */
.nft-stars {
    margin-top: 70px;
    padding: 15px;
    background-color: #fff;
}

.nft-stars h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.stars-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
}

/* 轮播模块 */
.featured-posts {
    margin: 15px 0;
    background-color: #fff;
    padding: 15px 0;
}

.swiper-container {
    width: 100%;
    height: 200px;
}

.swiper-slide {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

/* 文章切换标签 */
.posts-section {
    background-color: #fff;
    margin-bottom: 60px; /* 底部留出空间给导航栏 */
}

.tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 0 16px;
    background: #fafbfc;
    gap: 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
}

.tab-btn {
    flex: 0 0 auto;
    padding: 8px 18px;
    margin: 0 2px;
    font-size: 15px;
    color: #666;
    cursor: pointer;
    border: none;
    background: none;
    border-radius: 8px 8px 0 0;
    text-align: center;
    white-space: nowrap;
}

.tab-btn:hover {
    background: #f0f5ff;
    color: #1890ff;
    box-shadow: 0 2px 8px rgba(24,144,255,0.06);
}

.tab-btn.active {
    color: #ff6b6b;
    background: #fff;
    box-shadow: 0 4px 16px rgba(255,107,107,0.08);
}

.tab-btn.active::after {
    content: none;
}

.tab-underline {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    background: #ff6b6b;
    border-radius: 2px;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    z-index: 10;
    width: 0;
}

@media (max-width: 600px) {
    .tab-underline {
        height: 2px;
    }
    .tab-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
}

.posts-container {
    padding: 8px;
}

/* 底部导航栏 */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-size: 12px;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.nav-item.active {
    color: #ff6b6b;
}

/* 发帖按钮 */
.post-btn {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(255,107,107,0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 模态框 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    margin: 20px;
    max-height: 80vh;
    overflow-y: auto;
}

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

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

.modal-body textarea {
    width: 100%;
    height: 120px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: none;
    margin-bottom: 15px;
    font-size: 16px;
}

/* 适配 iPhone 底部安全区域 */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .modal-content {
        margin-bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

.image-upload {
    margin-bottom: 15px;
}

.image-upload input {
    display: none;
}

.image-upload label {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #f5f5f5;
    border-radius: 20px;
    cursor: pointer;
}

.image-upload i {
    margin-right: 5px;
    color: #666;
}

.preview-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.preview-images img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.modal-footer {
    text-align: right;
}

.submit-btn {
    padding: 10px 25px;
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}

/* 帖子样式 */
.post {
    background-color: #fff;
    border-radius: 5px;
    padding: 8px;
    margin-bottom: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    position: relative;
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    position: relative;
}

/* 删除按钮样式 */
.delete-post-btn {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    padding: 4px;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2;
}

.delete-post-btn:hover {
    color: #ff4d4f;
}

.post-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 5px;
    background-color: #f5f5f5;
    transition: opacity 0.3s ease;
}

.post-info {
    flex: 1;
}

.post-author {
    font-weight: bold;
    margin-bottom: 0px;
    font-size: 12px;
}

.post-time {
    font-size: 9px;
    color: #999;
}

.post-title {
    font-size: 14px;
    font-weight: bold;
    color: #222;
    border-bottom: 1px solid #eee;
    padding-bottom: 2px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.post-content {
    font-size: 12px;
    color: #444;
    margin-bottom: 5px;
    line-height: 1.4;
}

.post-summary {
    font-size: 11px;
    color: #666;
    margin: 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-thumbnail {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 5px;
    background-color: #f5f5f5;
    transition: opacity 0.3s ease;
}

.post-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 5px;
}

.post-images img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 2px;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 11px;
}

.action-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 11px;
}

.action-btn i {
    margin-right: 2px;
    font-size: 12px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header {
        height: 50px;
    }
    
    .avatar {
        width: 35px;
        height: 35px;
    }
    
    .search-btn {
        height: 32px;
    }
    
    .nft-stars {
        margin-top: 60px;
    }
    
    .bottom-bar {
        height: 60px;
    }
    
    .post-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Toast提示样式 */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    z-index: 2000;
    font-size: 14px;
}

/* 评论样式 */
.comment {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
}

.comment-info {
    flex: 1;
}

.comment-author {
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.comment-time {
    font-size: 12px;
    color: #999;
}

.delete-comment-btn {
    padding: 4px 8px;
    font-size: 12px;
    color: #ff6b6b;
    background: none;
    border: 1px solid #ff6b6b;
    border-radius: 4px;
    cursor: pointer;
}

.comment-content {
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0;
    color: #333;
}

.reply-to {
    color: #666;
    margin-right: 5px;
}

.comment-actions {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.comment .action-btn {
    font-size: 12px;
    color: #666;
}

.comment .action-btn i {
    font-size: 14px;
}

/* 评论模态框样式 */
.modal .modal-content {
    max-height: 80vh;
    overflow-y: auto;
}

.modal textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: none;
    margin-bottom: 15px;
    font-size: 14px;
}

/* 点赞按钮样式 */
.like-btn {
    transition: all 0.3s ease;
}

.like-btn i {
    transition: color 0.3s ease;
}

.like-btn.liked i {
    color: #ff6b6b;
    animation: likeAnimation 0.3s ease;
}

@keyframes likeAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.like-btn:hover i {
    transform: scale(1.1);
}

.like-btn span {
    margin-left: 4px;
    font-size: 12px;
    color: #666;
}

/* 打赏模态框样式 */
.reward-modal .modal-content {
    max-width: 400px;
    margin: 20px auto;
}

.reward-amount-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.reward-amount-item {
    padding: 12px;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reward-amount-item:hover {
    background-color: #ff6b6b;
    color: #fff;
}

.reward-amount-item.active {
    background-color: #ff6b6b;
    color: #fff;
}

.reward-amount-item.custom {
    padding: 0;
    background: none;
}

.reward-amount-item.custom input {
    width: 100%;
    height: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    outline: none;
}

.reward-amount-item.custom input:focus {
    border-color: #ff6b6b;
}

/* 打赏列表样式 */
.rewards-container {
    margin-top: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.rewards-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.stats-item {
    text-align: center;
}

.stats-label {
    font-size: 12px;
    color: #666;
}

.stats-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #ff6b6b;
}

.rewards-list {
    max-height: 300px;
    overflow-y: auto;
}

.reward-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.reward-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 10px;
}

.reward-info {
    flex: 1;
}

.reward-user {
    font-weight: 500;
    margin-bottom: 4px;
}

.reward-amount {
    color: #ff6b6b;
    font-size: 14px;
    margin-bottom: 4px;
}

.reward-message {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.reward-time {
    font-size: 12px;
    color: #999;
}

/* 打赏按钮样式 */
.reward-btn {
    position: relative;
}

.reward-btn .reward-count {
    margin-left: 4px;
}

.reward-btn .reward-amount {
    margin-left: 4px;
    color: #ff6b6b;
}

.reward-btn .reward-amount::before {
    content: '(';
}

.reward-btn .reward-amount::after {
    content: '积分)';
}

/* 举报模态框样式 */
.report-modal .modal-content {
    max-width: 400px;
    margin: 20px auto;
}

.report-reason-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.report-reason-item {
    padding: 12px;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.report-reason-item:hover {
    background-color: #ff6b6b;
    color: #fff;
}

.report-reason-item.active {
    background-color: #ff6b6b;
    color: #fff;
}

.report-modal textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: none;
    margin-bottom: 15px;
    font-size: 14px;
}

.report-modal textarea:focus {
    border-color: #ff6b6b;
    outline: none;
}

.report-btn {
    color: #666;
}

.report-btn:hover {
    color: #ff6b6b;
}

.report-btn i {
    margin-right: 4px;
}

/* 骨架屏样式 */
.skeleton {
    display: none;
    padding: 15px;
    background-color: #fff;
}

.skeleton-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px;
}

.skeleton-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-points {
    width: 80px;
    height: 20px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-title {
    width: 100px;
    height: 24px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-stars {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.skeleton-star {
    flex: 0 0 120px;
    height: 160px;
    border-radius: 8px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-featured {
    margin-bottom: 20px;
}

.skeleton-slide {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.skeleton-tab {
    width: 60px;
    height: 24px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skeleton-post {
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.skeleton-post-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.skeleton-post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-post-info {
    flex: 1;
    height: 40px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-post-content {
    height: 80px;
    margin-bottom: 15px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-post-actions {
    display: flex;
    justify-content: space-between;
}

.skeleton-action {
    width: 60px;
    height: 24px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

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

/* 主内容区域 */
.main-content {
    padding-top: 60px;
}

.main-content.content-ready {
    display: block;
}

.post-title-input {
    width: 100%;
    height: 40px;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 16px;
}

/* 评论容器样式 */
.comments-container {
    margin-top: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.comments-container .comment {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 12px;
}

.comments-container .comment:last-child {
    margin-bottom: 0;
}

/* 无评论提示样式 */
.no-comments {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 14px;
    background-color: #fff;
    border-radius: 8px;
}

/* 帖子摘要样式 */
.post-summary {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: #f5f5f5;
    transition: opacity 0.3s ease;
}

/* 帖子详情模态框样式 */
.post-detail-content {
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
}

.post-detail-content .modal-body {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(90vh - 60px);
}

.post-detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.post-detail-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 12px;
}

.post-detail-info {
    flex: 1;
}

.post-detail-author {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
}

.post-detail-time {
    font-size: 12px;
    color: #999;
}

.post-detail-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.4;
}

.post-detail-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    white-space: pre-wrap;
}

.post-detail-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.post-detail-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.post-detail-actions {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.post-detail-section {
    margin-bottom: 30px;
}

.post-detail-section-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .post-detail-content {
        width: 95%;
        margin: 10px auto;
    }
    
    .post-detail-images {
        grid-template-columns: 1fr;
    }
    
    .post-detail-title {
        font-size: 18px;
    }
    
    .post-detail-text {
        font-size: 15px;
    }
}

/* 图片懒加载样式 */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lazy.loaded {
    opacity: 1;
}

/* 加载状态指示器 */
.loading-indicator {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 14px;
}

.loading-indicator::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 2px solid #999;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* 优化帖子卡片样式 */
.post {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* 优化图片加载 */
.post-thumbnail {
    background-color: #f5f5f5;
    transition: opacity 0.3s ease;
}

.post-avatar {
    background-color: #f5f5f5;
    transition: opacity 0.3s ease;
}

/* 帖子详情页样式 */
.post-detail-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.post-detail-page.active {
    transform: translateX(0);
}

.post-detail-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1001;
}

.back-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    padding: 8px;
    margin-right: 10px;
    cursor: pointer;
}

.post-detail-header h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    flex: 1;
    text-align: center;
}

.post-detail-content {
    padding: 15px;
    padding-bottom: 70px; /* 为底部导航栏留出空间 */
}

/* 帖子详情内容样式 */
.post-detail-article {
    margin-bottom: 20px;
}

.post-detail-article-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.post-detail-article-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.post-detail-article-info {
    flex: 1;
}

.post-detail-article-author {
    font-weight: bold;
    margin-bottom: 2px;
}

.post-detail-article-time {
    font-size: 12px;
    color: #999;
}

.post-detail-article-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-detail-article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    white-space: pre-wrap;
}

.post-detail-article-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.post-detail-article-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.post-detail-article-actions {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

/* 滑动切换动画 */
@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

.slide-in {
    animation: slideIn 0.3s ease-in-out forwards;
}

.slide-out {
    animation: slideOut 0.3s ease-in-out forwards;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .post-detail-article-title {
        font-size: 18px;
    }
    
    .post-detail-article-content {
        font-size: 15px;
    }
    
    .post-detail-article-images {
        grid-template-columns: 1fr;
    }
}

/* 帖子详情页配图样式 */
.post-detail-article-cover {
    margin: 15px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.post-detail-cover-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.post-detail-article-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.post-detail-image-item {
    position: relative;
    padding-bottom: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.post-detail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-detail-image:hover {
    transform: scale(1.05);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .post-detail-cover-image {
        height: 200px;
    }
    
    .post-detail-article-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 打赏记录错误和空状态样式 */
.rewards-error {
    text-align: center;
    padding: 20px;
    color: #999;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 10px 0;
}

.rewards-error i {
    font-size: 24px;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.rewards-error p {
    font-size: 14px;
    margin: 0;
}

.no-rewards {
    text-align: center;
    padding: 30px 20px;
    color: #999;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 10px 0;
}

.no-rewards i {
    font-size: 32px;
    color: #ddd;
    margin-bottom: 10px;
}

.no-rewards p {
    font-size: 14px;
    margin: 0;
}

/* 详情页图文混排图片样式 */
.post-detail-article-all-images {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 18px 0 0 0;
}
.post-detail-image-full {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    object-fit: contain;
    background: #f7f7f7;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.post-detail-image-full:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.16);
}
@media (max-width: 768px) {
    .post-detail-image-full {
        border-radius: 8px;
    }
    .post-detail-article-all-images {
        gap: 10px;
    }
}

/* 圈子模块居中对齐优化 */
.circles-section {
    background: #fff;
    padding: 10px 0 4px 0;
    margin-bottom: 2px;
    display: flex;
    justify-content: center;
}
.circles-container {
    display: flex;
    gap: 10px;
    padding: 0 16px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
}
.circle-card {
    width: 80px;
    flex: 0 0 80px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 12px 8px 6px 8px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #2d3a4a;
    cursor: pointer;
    transition: box-shadow 0.18s, border 0.18s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.circle-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-color: #6ec6ff;
}
.circle-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 6px;
    background: #f5f5f5;
    border: 1.5px solid #eaeaea;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.circle-name {
    font-size: 13px;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 600px) {
    .circle-card {
        width: 60px;
        flex: 0 0 60px;
    }
    .circle-logo {
        width: 36px;
        height: 36px;
    }
    .circle-name {
        font-size: 12px;
        max-width: 60px;
    }
}

/* 用户铭牌样式 */
.username-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(
        270deg,
        #ff4d4f, #ff7a45, #ffa940, #52c41a,
        #ffa940, #ff7a45, #ff4d4f
    );
    background-size: 400% 100%;
    box-shadow: 0 1px 4px rgba(255, 77, 79, 0.15);
    animation: badge-flow 8s linear infinite, badge-glow 2s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-left: 6px;
    vertical-align: middle; /* 垂直居中 */
}

/* SCQ原住民特殊样式 */
.username-badge[data-native="true"] {
    background: linear-gradient(
        270deg,
        #13c2c2, #1890ff, #36cfc9, #40a9ff,
        #36cfc9, #1890ff, #13c2c2
    );
    background-size: 400% 100%;
    box-shadow: 0 1px 4px rgba(24, 144, 255, 0.15);
    animation: badge-flow 6s linear infinite, badge-glow-native 2s ease-in-out infinite;
}

/* SCQ巨鲸名人堂特殊样式 */
.username-badge[data-whale="true"] {
    background: linear-gradient(
        270deg,
        #ffab01, #ffd700, #ff8c00, #e8b923,
        #ff1700, #ffab01, #ffd700
    );
    background-size: 400% 100%;
    box-shadow: 0 1px 4px rgba(255, 171, 1, 0.15);
    animation: badge-flow 12s linear infinite, badge-glow-whale 3s ease-in-out infinite;
    padding-left: 14px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    outline: 1px solid rgba(255, 215, 0, 0.2);
    outline-offset: 1px;
}

/* 为SCQ巨鲸名人堂铭牌添加图标 */
.username-badge[data-whale="true"]::before {
    content: '💰'; /* 货币图标 */
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* 流光动画 */
@keyframes badge-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

@keyframes badge-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes badge-glow {
    0% { box-shadow: 0 1px 4px rgba(255, 77, 79, 0.15); }
    50% { box-shadow: 0 1px 8px rgba(255, 122, 69, 0.3); }
    100% { box-shadow: 0 1px 4px rgba(255, 77, 79, 0.15); }
}

/* SCQ原住民特殊发光动画 */
@keyframes badge-glow-native {
    0% { box-shadow: 0 1px 4px rgba(24, 144, 255, 0.15); }
    50% { box-shadow: 0 1px 8px rgba(54, 207, 201, 0.3); }
    100% { box-shadow: 0 1px 4px rgba(24, 144, 255, 0.15); }
}

/* SCQ巨鲸名人堂特殊发光动画 */
@keyframes badge-glow-whale {
    0% { box-shadow: 0 1px 4px rgba(255, 171, 1, 0.15); }
    50% { box-shadow: 0 1px 8px rgba(255, 100, 0, 0.3); }
    100% { box-shadow: 0 1px 4px rgba(255, 171, 1, 0.15); }
}

.jingtan-comment-btn {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
}
#post-detail-page:not(.active) + .jingtan-comment-btn,
body:not(:has(#post-detail-page.active)) .jingtan-comment-btn {
    display: none !important;
}

/* 专属详情页字体和间距优化 */
#post-detail-page .post-detail-article {
    margin-bottom: 10px;
    padding: 0 0 10px 0;
}
#post-detail-page .post-detail-article-all-images {
    gap: 10px;
    margin: 10px 0 0 0;
}
#post-detail-page .post-detail-image-full {
    border-radius: 10px;
    margin-bottom: 0;
}
#post-detail-page .post-detail-section-title {
    font-size: 16px;
    margin-bottom: 8px;
}
#post-detail-page .post-detail-section {
    margin-bottom: 15px;
    padding: 0;
}
#post-detail-page .comment,
#post-detail-page .comments-container .comment {
    font-size: 14px;
    padding: 10px 8px;
    margin-bottom: 8px;
}
#post-detail-page .no-comments {
    font-size: 13px;
    padding: 10px;
}
/* 顶栏"圈子"居中 */
#post-detail-page .post-detail-header {
    position: relative;
}
#post-detail-page .post-detail-header h2 {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 50px;
    height: 50px;
    pointer-events: none;
}
#post-detail-page .post-detail-header .back-btn {
    z-index: 2;
}

/* 主内容区域 */
.main-content {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding-bottom: 60px; /* 为底部导航栏留出空间 */
}

/* 帖子列表容器 */
.posts-container {
    padding: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* 帖子卡片样式优化 */
.post {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* 移动端手势优化 */
@media (max-width: 768px) {
    .post-detail-page {
        width: 100%;
        height: 100%;
    }

    .post-detail-content {
        height: calc(100% - 50px); /* 减去顶部导航栏高度 */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* 优化返回按钮触摸区域 */
    .back-btn {
        padding: 12px;
        margin: -12px;
    }
}

.share-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 11px;
    color: #666;
}

.share-btn i {
    margin-right: 2px;
    font-size: 12px;
}

.share-btn:hover {
    color: #1890ff;
}

/* 我的页面样式 */
.my-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.my-page.active {
    transform: translateX(0);
}

.my-page-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1001;
}

.my-page-header h2 {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 50px;
    height: 50px;
    pointer-events: none;
}

.my-page-content {
    padding: 15px;
    padding-bottom: 70px;
}

.my-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 0 8px;
    background: #fafbfc;
    gap: 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border-radius: 12px 12px 0 0;
    margin-bottom: 15px;
}

.my-tab-btn {
    padding: 8px 18px;
    border: none;
    background: none;
    font-size: 15px;
    color: #666;
    cursor: pointer;
    position: relative;
    border-radius: 8px 8px 0 0;
    margin-right: 0;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: none;
    z-index: 1;
}

.my-tab-btn:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 30%;
    height: 40%;
    width: 1px;
    background: #ececec;
    z-index: 2;
}

.my-tab-btn:hover {
    background: #f0f5ff;
    color: #1890ff;
    box-shadow: 0 2px 8px rgba(24,144,255,0.06);
}

.my-tab-btn.active {
    color: #ff6b6b;
    background: #fff;
    box-shadow: 0 4px 16px rgba(255,107,107,0.08);
}

.my-tab-underline {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    background: #ff6b6b;
    border-radius: 2px;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    z-index: 10;
    width: 0;
}

.my-content-container {
    position: relative;
    min-height: 200px;
}

.my-posts-container,
.my-comments-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.my-posts-container {
    transform: translateX(0);
    opacity: 1;
}

.my-comments-container {
    transform: translateX(100%);
    opacity: 0;
}

.my-posts-container.active,
.my-comments-container.active {
    transform: translateX(0);
    opacity: 1;
}

.my-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
}

.my-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.my-item-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
}

.my-item-info {
    flex: 1;
}

.my-item-title {
    font-size: 15px;
    font-weight: bold;
    color: #222;
    margin-bottom: 4px;
}

.my-item-content {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.my-item-time {
    font-size: 12px;
    color: #999;
}

.my-item-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.my-item-delete {
    color: #ff4d4f;
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.my-item-delete:hover {
    background: #fff1f0;
}

/* 滑动切换动画 */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.slide-in-right {
    animation: slideInRight 0.3s ease-in-out forwards;
}

.slide-out-left {
    animation: slideOutLeft 0.3s ease-in-out forwards;
}

/* DDGE页面样式 */
#ddge-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

#ddge-page.active {
    transform: translateX(0);
}

.ddge-posts-container {
    padding: 10px;
    height: calc(100vh - 60px);
    overflow-y: auto;
}

.ddge-post-item {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.ddge-post-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.ddge-post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 8px;
}

.ddge-post-info {
    flex: 1;
}

.ddge-post-author {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.ddge-post-time {
    font-size: 11px;
    color: #999;
}

.ddge-post-content {
    color: #333;
    line-height: 1.4;
    margin-bottom: 8px;
    font-size: 13px;
}

.ddge-post-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.ddge-post-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
}

.ddge-post-actions {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 12px;
}

.ddge-post-action {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ddge-post-action i {
    font-size: 14px;
}

/* 页面切换动画 */
.page-transition {
    animation: pageSlide 0.3s ease-in-out;
}

@keyframes pageSlide {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
} 