* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: #f5f5f5;
    color: #333;
    padding-bottom: 70px;
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    touch-action: manipulation;
}

.container {
    max-width: 450px;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* 顶部导航栏 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-tabs {
    display: flex;
    gap: 25px;
}

.nav-tab {
    font-size: 15px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 2px;
}

.nav-tab.active {
    color: #ff6b6b;
    font-weight: 600;
}

.nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #ff6b6b;
    border-radius: 2px;
}

.header-icons {
    display: flex;
    gap: 15px;
    font-size: 20px;
    color: #333;
}

.icon-menu, .icon-circle {
    cursor: pointer;
    transition: opacity 0.3s;
}

.icon-menu:hover, .icon-circle:hover {
    opacity: 0.7;
}

.icon-menu:active, .icon-circle:active {
    opacity: 0.5;
    transform: scale(0.95);
}

/* 轮播图区域 */
.banner-section {
    position: relative;
    margin: 15px 20px;
}

.banner-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.banner-slide {
    display: none;
    width: 100%;
}

.banner-slide.active {
    display: block;
}

.banner-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    width: 20px;
    border-radius: 3px;
    background: #ff6b6b;
}

/* 功能按钮区 */
.feature-buttons {
    display: flex;
    justify-content: space-around;
    padding: 25px 20px;
    background: #fff;
}

.feature-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.feature-btn:hover {
    transform: translateY(-3px);
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-btn span {
    font-size: 13px;
    color: #666;
}

/* 提现到账快报 */
.news-ticker {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 20px;
    padding: 10px 12px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.ticker-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 18px;
}

.ticker-text {
    display: flex;
    gap: 60px;
    animation: tickerScroll 6s linear infinite;
    white-space: nowrap;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-text span {
    font-size: 12px;
    color: #666;
}

/* 短剧区域 */
.drama-section {
    margin: 20px 0;
    padding: 0 20px;
}

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

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.emoji {
    font-size: 20px;
}

.see-all {
    font-size: 13px;
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.see-all:hover {
    color: #ff6b6b;
}

/* 短剧列表 - 宽卡片样式 */
.drama-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.drama-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.drama-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.drama-card:active {
    transform: scale(0.98);
    transition: transform 0.1s;
}

.drama-card img {
    width: 90px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
    background: #f5f5f5;
    border-radius: 8px;
}

.drama-info {
    flex: 1;
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.commission-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: #fff;
    min-width: 85px;
}

.commission-label {
    font-size: 11px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.commission-amount {
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
}

.drama-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.drama-desc {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.drama-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
}

.tag {
    background: #f0f0f0;
    color: #666;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
}

.tag.hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: #fff;
}

.views {
    color: #999;
    font-size: 11px;
}

/* 排名徽章 */
.rank-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    border-radius: 0 0 12px 0;
    z-index: 1;
}

.drama-card.featured {
    border: 2px solid #ff6b6b;
}

/* 底部导航栏 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    justify-content: space-around;
    padding: 10px 0 8px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid #f0f0f0;
    max-width: 450px;
    margin: 0 auto;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
    flex: 1;
}

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

.nav-item:active {
    opacity: 0.6;
}

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

.nav-item span {
    font-size: 11px;
}

/* 响应式调整 */
@media (max-width: 450px) {
    .container {
        max-width: 100%;
    }
    
    .bottom-nav {
        max-width: 100%;
    }
}

/* 小屏幕优化 */
@media (max-width: 375px) {
    .drama-card img {
        width: 75px;
        height: 100px;
    }
    
    .drama-info h3 {
        font-size: 14px;
    }
    
    .commission-info {
        min-width: 70px;
        padding: 10px 12px;
    }
    
    .commission-amount {
        font-size: 14px;
    }
    
    .header {
        padding: 12px 15px;
    }
    
    .banner-section {
        margin: 12px 15px;
    }
    
    .drama-section {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 16px;
    }
}

/* 超小屏幕优化 */
@media (max-width: 320px) {
    .drama-card img {
        width: 65px;
        height: 85px;
    }
    
    .drama-info {
        padding: 10px 12px;
    }
    
    .drama-info h3 {
        font-size: 13px;
    }
    
    .commission-info {
        min-width: 60px;
        padding: 8px 10px;
    }
    
    .commission-amount {
        font-size: 13px;
    }
}

/* 视频播放弹窗 */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.video-title {
    font-size: 18px;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.video-container {
    background: #000;
    position: relative;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    -webkit-playsinline: true;
    playsinline: true;
}

.video-info {
    padding: 20px;
    background: #f8f9fa;
}

.watch-progress {
    margin-bottom: 15px;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.progress-text strong {
    color: #333;
    font-size: 16px;
}

.earned-amount {
    color: #ff6b6b;
}

.earned-amount strong {
    color: #ff6b6b;
    font-size: 18px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    width: 0%;
    transition: width 0.3s;
    border-radius: 4px;
}

.commission-tip {
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 8px;
    color: #666;
    font-size: 14px;
}

.commission-tip span {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 16px;
}

/* 个人中心页面样式 */
.user-page {
    background: #f5f5f5;
    padding-top: 0;
}

/* 个人中心顶部导航栏 */
.user-header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: all 0.3s;
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.back-btn:hover {
    background: #f5f5f5;
}

.back-btn:active {
    background: #e8e8e8;
    transform: scale(0.95);
}

.header-title {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    flex: 1;
    text-align: center;
}

.header-placeholder {
    width: 40px;
}

/* 余额卡片 */
.balance-card {
    margin: 15px 15px 15px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.balance-header {
    margin-bottom: 15px;
}

.balance-title {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.balance-amount {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
}

.currency {
    font-size: 24px;
    margin-right: 5px;
    color: #666;
}

.balance-footer {
    display: flex;
    justify-content: center;
}

.withdraw-btn-single {
    padding: 10px 40px;
    border: 1px solid #ff6b6b;
    background: #fff;
    color: #ff6b6b;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.withdraw-btn-single:hover {
    background: #ff6b6b;
    color: #fff;
}

.withdraw-btn-single:active {
    opacity: 0.8;
    transform: scale(0.98);
}

/* 数据统计 */
.stats-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 15px;
    margin-bottom: 15px;
}

.stats-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stats-label {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.stats-value {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* 收益记录 */
.earnings-section {
    margin: 0 15px 80px;
}

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

.section-header h3 {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.clear-btn {
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.clear-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.earnings-list {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-height: 150px;
}

.earning-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.earning-item:last-child {
    border-bottom: none;
}

.earning-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.earning-details {
    flex: 1;
}

.earning-title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 4px;
}

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

.earning-amount {
    font-size: 16px;
    font-weight: bold;
    color: #ff6b6b;
}

/* 空状态 */
.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    color: #999;
    font-size: 14px;
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* ========== 提现页面样式 ========== */
.withdraw-page {
    background: #f5f5f5;
    padding-top: 0;
    padding-bottom: 100px;
}

/* 提现金额卡片 */
.withdraw-amount-card {
    margin: 15px 15px 15px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.amount-label {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.amount-display {
    font-size: 38px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
}

.amount-currency {
    font-size: 22px;
    margin-right: 5px;
    color: #666;
}

.amount-input-wrapper {
    margin-top: 20px;
}

.input-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.3s;
}

.input-container:focus-within {
    border-color: #ff6b6b;
}

.input-currency {
    padding: 0 15px;
    font-size: 16px;
    color: #999;
}

.amount-input {
    flex: 1;
    padding: 12px 15px 12px 0;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    background: transparent;
}

.amount-input::placeholder {
    color: #ccc;
}

/* Chrome, Safari, Edge, Opera */
.amount-input::-webkit-outer-spin-button,
.amount-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.amount-input[type=number] {
    -moz-appearance: textfield;
}

.quick-amounts {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.quick-amount-btn {
    flex: 1;
    padding: 8px 0;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #666;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.quick-amount-btn:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.quick-amount-btn:active {
    background: #f5f5f5;
}

/* 提现方式选择 */
.withdraw-method-section {
    margin: 0 15px 15px;
}

.section-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
    padding: 0 5px;
}

.method-list {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.method-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    transition: background 0.3s;
    border-bottom: 1px solid #f5f5f5;
}

.method-item:last-child {
    border-bottom: none;
}

.method-item:active {
    background: #f8f8f8;
}

.method-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wechat-icon {
    background: #e8f5e9;
}

.alipay-icon {
    background: #e3f2fd;
}

.method-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.method-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.method-name {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.method-desc {
    font-size: 12px;
    color: #999;
}

.method-check {
    flex-shrink: 0;
}

.radio-btn {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s;
}

.method-item.selected .radio-btn {
    border-color: #ff6b6b;
}

.method-item.selected .radio-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #ff6b6b;
    border-radius: 50%;
}

/* 提示信息 */
.withdraw-tips {
    margin: 0 15px 15px;
    padding: 15px 20px;
    background: #fff9e6;
    border-radius: 8px;
    border-left: 3px solid #ffb74d;
}

.tip-title {
    font-size: 13px;
    color: #f57c00;
    font-weight: 600;
    margin-bottom: 8px;
}

.tip-item {
    font-size: 12px;
    color: #666;
    line-height: 1.8;
}

/* 提现按钮 */
.withdraw-submit-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid #f0f0f0;
    max-width: 450px;
    margin: 0 auto;
}

.withdraw-submit-btn {
    width: 100%;
    padding: 14px 0;
    border: none;
    background: #ff6b6b;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.withdraw-submit-btn:hover {
    opacity: 0.9;
}

.withdraw-submit-btn:active {
    opacity: 0.7;
}

/* Toast提示 */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s;
    max-width: 80%;
    text-align: center;
    line-height: 1.5;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ========== 完成提示弹窗 ========== */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.success-modal.active {
    display: flex;
}

.success-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.success-modal-content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    width: 85%;
    max-width: 320px;
    padding: 30px 25px 25px;
    text-align: center;
    animation: successSlideIn 0.3s ease-out;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@keyframes successSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #ff6b6b;
    color: #fff;
    font-size: 40px;
    line-height: 60px;
    font-weight: bold;
}

.success-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.success-message {
    margin-bottom: 25px;
}

.success-message p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 5px 0;
}

.success-amount {
    font-size: 16px;
    font-weight: 600;
    color: #ff6b6b;
    margin: 10px 0 !important;
}

.success-amount span {
    font-size: 24px;
    font-weight: bold;
}

.success-balance {
    font-size: 13px;
    color: #999;
}

.success-balance span {
    color: #333;
    font-weight: 500;
}

.success-btn {
    width: 100%;
    padding: 12px 0;
    border: none;
    background: #ff6b6b;
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.success-btn:hover {
    opacity: 0.9;
}

.success-btn:active {
    opacity: 0.7;
}

/* ========== 升级提示弹窗 ========== */
.upgrade-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.upgrade-modal.active {
    display: flex;
}

.upgrade-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.upgrade-modal-content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    width: 85%;
    max-width: 320px;
    padding: 30px 25px 25px;
    text-align: center;
    animation: upgradeSlideIn 0.3s ease-out;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@keyframes upgradeSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.upgrade-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #ffa726;
    color: #fff;
    font-size: 40px;
    line-height: 60px;
    font-weight: bold;
}

.upgrade-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.upgrade-message {
    margin-bottom: 25px;
}

.upgrade-message p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 5px 0;
}

.upgrade-feature {
    font-size: 15px;
    font-weight: 500;
    color: #4caf50;
    margin-top: 12px !important;
}

.upgrade-btn {
    width: 100%;
    padding: 12px 0;
    border: none;
    background: #ff6b6b;
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 10px;
}

.upgrade-btn:hover {
    opacity: 0.9;
}

.upgrade-btn:active {
    opacity: 0.7;
}

.upgrade-cancel-btn {
    width: 100%;
    padding: 12px 0;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.upgrade-cancel-btn:hover {
    background: #f5f5f5;
}

.upgrade-cancel-btn:active {
    background: #e8e8e8;
}

/* ========== 顶部到账弹窗 ========== */
.arrival-notification {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    z-index: 10002;
    width: 90%;
    max-width: 380px;
    opacity: 0;
    transition: all 0.4s ease-out;
}

.arrival-notification.show {
    transform: translateX(-50%) translateY(10px);
    opacity: 1;
}

.arrival-content {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 12px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.arrival-icon-left {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.arrival-icon-right {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.arrival-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.arrival-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.arrival-amount {
    font-size: 13px;
    color: #666;
}

