/* Vue.js 防闪烁样式 */
[v-cloak] {
    display: none !important;
}

/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 根元素自适应设置 */
html {
    font-size: 16px;
}

/* 移动端自适应 */
@media screen and (max-width: 750px) {
    html {
        font-size: calc(100vw / 375 * 16);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: url('../images/backBg.png') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

#app {
    padding-bottom: 3.5rem;
}

/* 头部样式 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(106, 90, 205, 0.2);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 2.0rem;
    height: 2.0rem;
    border-radius: 0.5rem;
    /*object-fit: cover;*/
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /*border: 2px solid rgba(167, 139, 250, 0.3);*/
}

.logo[style*="display: none"] + .project-name {
    margin-left: 0;
}

.logo-placeholder {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid rgba(167, 139, 250, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.project-name {
    font-size: 1.25rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s;
}

.lang-switch:hover {
    background: rgba(167, 139, 250, 0.1);
}

.lang-icon {
    font-size: 1.1rem;
}

.lang-text {
    font-size: 0.875rem;
    color: #e0d7ff;
}

.arrow-icon {
    font-size: 0.75rem;
    color: #e0d7ff;
    transition: transform 0.3s;
}

/* 语言选择选项 */
.lang-options {
    min-width: 120px;
    padding: 0.5rem 0;
}

.lang-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s;
    color: #cbd5e1;
}

.lang-option:hover {
    background: rgba(167, 139, 250, 0.2);
    color: #e0d7ff;
}

.lang-option.active {
    color: #a78bfa;
}

.lang-option .van-icon {
    color: #a78bfa;
    font-size: 1rem;
}

/* Popover 弹出层样式 */
.van-popover__wrapper {
    display: inline-flex;
}

.van-popover {
    background: rgba(26, 21, 53, 0.98) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.3) !important;
    box-shadow: 0 8px 32px rgba(106, 90, 205, 0.3) !important;
}

.van-popover--dark {
    background: rgba(26, 21, 53, 0.98) !important;
}

.van-popover__arrow {
    background: rgba(26, 21, 53, 0.98) !important;
    border-color: rgba(167, 139, 250, 0.3) !important;
}

.van-dropdown-item {
    background: rgba(26, 21, 53, 0.98) !important;
    backdrop-filter: blur(10px);
}

.van-dropdown-item__option {
    color: #cbd5e1 !important;
}

.van-dropdown-item__option--active {
    color: #a78bfa !important;
}

.van-cell {
    background: transparent !important;
    color: #cbd5e1 !important;
}

.van-cell::after {
    border-color: rgba(167, 139, 250, 0.1) !important;
}

/* Vant按钮自定义样式 */
.lang-btn.van-button--plain {
    background: transparent !important;
    border-color: rgba(106, 90, 205, 0.5) !important;
    color: #a78bfa !important;
}

.lang-btn.van-button--plain:active {
    background: rgba(106, 90, 205, 0.2) !important;
}

.wallet-btn.van-button--primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    color: #ffffff !important;
}

.wallet-btn.van-button--primary:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

.user-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 139, 250, 0.2);
    border-radius: 50%;
    font-size: 1.2rem;
}

/* 横幅样式 */
.banner {
    padding: 1rem 1rem 0.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-title {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}

.banner-visual {
    position: relative;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planet {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 40px rgba(167, 139, 250, 0.6);
}

.planet-left {
    left: 10%;
    background: radial-gradient(circle at 30% 30%, #4a5568, #1a202c);
}

.planet-right {
    right: 10%;
    background: radial-gradient(circle at 30% 30%, #2d3748, #1a202c);
}

.light-beam {
    width: 2px;
    height: 8rem;
    background: linear-gradient(180deg, transparent 0%, #a78bfa 50%, transparent 100%);
    box-shadow: 0 0 20px #a78bfa, 0 0 40px #a78bfa;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* 资产卡片 */
.asset-card {
    margin: 0.75rem 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.3) 0%, rgba(76, 29, 149, 0.3) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(167, 139, 250, 0.3);
    text-align: center;
    box-shadow: 0 8px 32px rgba(106, 90, 205, 0.2);
    backdrop-filter: blur(10px);
}

.asset-title {
    font-size: 0.9rem;
    color: #d8b4fe;
    margin-bottom: 0.5rem;
}

.asset-amount {
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0.25rem 0;
    font-family: 'Courier New', monospace;
}

.asset-unit {
    color: #a78bfa;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

/* 资产展示区域 */
.asset-display {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(167, 139, 250, 0.15);
    margin-bottom: 1rem;
}

.asset-display .asset-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.3);
    margin: 0.5rem 0;
}

.asset-display .asset-unit {
    color: #a78bfa;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.claim-btn.van-button {
    margin-top: 1rem !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
    color: #ffffff !important;
}

.claim-btn.van-button:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5) !important;
}

/* 操作区域 */
.action-section {
    margin: 1rem;
}

.action-card {
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 1rem;
    padding: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.action-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c4b5fd;
    margin-bottom: 0.9rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(167, 139, 250, 0.15);
    text-shadow: 0 0 12px rgba(196, 181, 253, 0.5);
    letter-spacing: 0.02em;
}

.action-card-title-center {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c4b5fd;
    margin-bottom: 0.9rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(167, 139, 250, 0.15);
    text-shadow: 0 0 12px rgba(196, 181, 253, 0.5);
    letter-spacing: 0.02em;
    text-align: center;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}

.info-row:last-of-type {
    border-bottom: none;
}

.info-row .value {
    color: #a78bfa;
    font-weight: bold;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(167, 139, 250, 0.4);
    position: relative;
}

.summary-row::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -0.9rem;
    right: -0.9rem;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(167, 139, 250, 0.6) 20%, rgba(167, 139, 250, 0.8) 50%, rgba(167, 139, 250, 0.6) 80%, transparent 100%);
    box-shadow: 0 0 8px rgba(167, 139, 250, 0.3);
}

.summary-row + .summary-row {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: none;
}

.summary-row + .summary-row::before {
    display: none;
}

.summary-item {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.summary-value {
    color: #a78bfa;
    font-weight: bold;
    font-size: 0.95rem;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.invest-btn.van-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    color: #ffffff !important;
}

.invest-btn.van-button:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

.withdraw-btn.van-button--plain {
    background: rgba(167, 139, 250, 0.2) !important;
    color: #e0d7ff !important;
    border: 1px solid rgba(167, 139, 250, 0.5) !important;
}

.withdraw-btn.van-button--plain:active {
    background: rgba(167, 139, 250, 0.3) !important;
}

.tip {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid #ef4444;
    border-radius: 0.25rem;
    font-size: 0.85rem;
    color: #fca5a5;
}

.business-info, .link-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.business-value {
    color: #a78bfa;
    font-weight: bold;
}

.copy-btn.van-button--plain {
    background: transparent !important;
    border: 1px solid rgba(167, 139, 250, 0.5) !important;
    color: #a78bfa !important;
}

.copy-btn.van-button--plain:active {
    background: rgba(167, 139, 250, 0.2) !important;
}

/* 邀请区域 */
.invite-section {
    margin: 1rem;
    padding: 0.75rem;
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
}

.invite-label {
    margin-bottom: 0.5rem;
    color: #d8b4fe;
}

.invite-address {
    color: #a78bfa;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.invite-link-section {
    margin: 1rem;
    padding: 0.75rem;
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.invite-link-section:hover {
    background: rgba(106, 90, 205, 0.3);
    border-color: #a78bfa;
}

.invite-link-label {
    color: #d8b4fe;
}

/* 项目介绍 */
.intro-section {
    margin: 1rem;
    padding: 0.9rem;
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.intro-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #d8b4fe;
    text-align: center;
}

.intro-content {
    line-height: 1.6;
    color: #cbd5e1;
    text-align: justify;
}

/* 规则说明 */
.rule-section {
    margin: 1rem;
    padding: 0.9rem;
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.rule-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #d8b4fe;
}

.rule-content {
    line-height: 1.8;
    color: #cbd5e1;
}

.rule-content p {
    margin: 0.5rem 0;
}

/* 操作记录 */
.record-section {
    margin: 1rem;
    padding: 0.9rem;
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.record-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #d8b4fe;
    text-align: center;
}

.record-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.record-table {
    margin: 1rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-header {
    display: grid;
    grid-template-columns: 0.8fr 1fr 0.7fr 1fr 1.2fr;
    gap: 0.3rem;
    padding: 0.5rem 0.3rem;
    background: rgba(106, 90, 205, 0.2);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: bold;
    color: #d8b4fe;
    min-width: 100%;
}

.table-cell {
    text-align: left;
    word-wrap: break-word;
    word-break: break-word;
}

/* 第二列（操作金额）右对齐 */
.table-header .table-cell:nth-child(2),
.table-row .table-cell:nth-child(2) {
    text-align: right;
}

.table-header .table-cell:nth-child(3),
.table-row .table-cell:nth-child(3) {
    text-align: right;
}

.table-header .table-cell:nth-child(4),
.table-row .table-cell:nth-child(4) {
    text-align: right;
}

.table-body {
    min-height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.table-row {
    display: grid;
    grid-template-columns: 0.8fr 1fr 0.7fr 1fr 1.2fr;
    gap: 0.3rem;
    padding: 0.5rem 0.3rem;
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
    font-size: 0.85rem;
    min-width: 100%;
}

.record-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.tab-btn {
    padding: 0.75rem 1rem;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 0.5rem;
    color: #a78bfa;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.tab-btn:hover {
    background: rgba(167, 139, 250, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* 底部导航 - Vant Tabbar 样式 */
.van-tabbar {
    background-color: #1a1535 !important;
    border-top: 1px solid rgba(106, 90, 205, 0.25) !important;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
}

/* 覆盖激活状态的白色背景 */
.van-tabbar-item {
    background-color: #1a1535 !important;
}

.van-tabbar-item--active {
    background-color: #1a1535 !important;
}

.van-tabbar-item__icon {
    font-size: 22px !important;
}

.van-tabbar-item__text {
    font-size: 11px !important;
    margin-top: 2px !important;
}

/* 团队页面样式 */
.team-page {
    padding: 1rem;
}

.team-card {
    margin: 1rem 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.3) 0%, rgba(76, 29, 149, 0.3) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(167, 139, 250, 0.3);
    text-align: center;
    box-shadow: 0 8px 32px rgba(106, 90, 205, 0.2);
    backdrop-filter: blur(10px);
}

.team-title {
    font-size: 1rem;
    color: #d8b4fe;
    margin-bottom: 1rem;
}

.team-count {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
}

.team-list-section {
    margin-top: 2rem;
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 1rem;
    padding: 0.9rem;
    backdrop-filter: blur(10px);
}

.team-list-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 1rem;
    text-align: center;
}

.team-member {
    padding: 1rem;
    margin: 0.5rem 0;
    background: rgba(106, 90, 205, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 0.5rem;
    color: #a78bfa;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

/* Vant Empty 组件自定义 */
.van-empty {
    padding: 2rem 0 !important;
}

.van-empty__image {
    width: 6rem !important;
    height: 6rem !important;
}

.van-empty__description {
    color: #94a3b8 !important;
}

/* 响应式调整 */
@media screen and (max-width: 480px) {
    .header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .header-right {
        flex-wrap: wrap;
    }

    .banner-title {
        font-size: 1.2rem;
    }

    .asset-amount {
        font-size: 1.5rem;
    }

    .table-header {
        font-size: 0.7rem;
        grid-template-columns: 0.8fr 1fr 0.7fr 1fr 1.2fr;
        gap: 0.2rem;
        padding: 0.4rem 0.2rem;
    }

    .table-row {
        font-size: 0.7rem;
        grid-template-columns: 0.8fr 1fr 0.7fr 1fr 1.2fr;
        gap: 0.2rem;
        padding: 0.4rem 0.2rem;
    }

    .table-cell {
        padding: 0.15rem;
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

/* Dialog 弹窗样式覆盖 */
.van-dialog {
    background: rgba(26, 21, 53, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.3) !important;
    border-radius: 1rem !important;
}

.van-dialog__header {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    padding: 1.25rem 1rem 0.5rem !important;
}

.van-dialog__message {
    color: #cbd5e1 !important;
    padding: 0.75rem 1.25rem 1rem !important;
    overflow-y: visible !important;
}

.van-dialog__content {
    overflow: visible !important;
}

.van-dialog__footer {
    border-top: 1px solid rgba(167, 139, 250, 0.2) !important;
    padding: 0.75rem 1.25rem !important;
    display: flex !important;
    gap: 0.75rem !important;
}

.van-dialog__confirm {
    flex: 1 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0.5rem !important;
    height: 2.5rem !important;
}

.van-dialog__cancel {
    flex: 1 !important;
    color: #cbd5e1 !important;
    background: rgba(71, 71, 100, 0.5) !important;
    border: none !important;
    border-radius: 0.5rem !important;
    height: 2.5rem !important;
}

/* 弹窗内下拉框 */
.van-dialog select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Toast 提示样式覆盖 */
.van-toast {
    background: rgba(26, 21, 53, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.3) !important;
}

/* 捐赠底池弹窗样式 */
.claim-popup.van-popup {
    background: linear-gradient(135deg, rgba(35, 28, 75, 0.98) 0%, rgba(25, 20, 58, 0.98) 100%) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(167, 139, 250, 0.35);
    box-shadow: 0 8px 32px rgba(106, 90, 205, 0.3);
    padding: 0;
}

.popup-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
    position: relative;
}

.popup-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
}

.popup-close {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s;
}

.popup-close:hover {
    color: #cbd5e1;
}

.popup-body {
    padding: 1.25rem;
}

/* 输入框样式 */
.claim-input.van-cell {
    background: rgba(30, 25, 60, 0.6) !important;
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 0.5rem;
    padding: 0.65rem 1rem !important;
    margin-bottom: 1rem;
}

.claim-input .van-field__control {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 400;
}

.claim-input .van-field__control::placeholder {
    color: #6b7280;
    font-weight: 400;
}

.claim-input .van-field__body {
    padding: 0 !important;
}

.token-label {
    color: #a78bfa;
    font-size: 1rem;
    font-weight: 500;
    margin-left: 0.75rem;
}

/* 投资限额显示 */
.invest-limits {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.9rem;
    gap: 0.3rem;
    padding: 0 0.15rem;
}

.limit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
}

.limit-label {
    color: #9ca3af;
    font-size: 0.82rem;
    white-space: nowrap;
}

.limit-value {
    color: #ffffff;
    font-weight: 400;
    font-size: 0.82rem;
}

/* 自定义质押周期下拉（完全自绘） */
.custom-select-wrap {
    position: relative;
    margin-bottom: 1.1rem;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: 2.8rem;
    background: rgba(30, 25, 60, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.custom-select-trigger:hover {
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.08);
}

.period-label {
    color: #9ca3af;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.period-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.period-value {
    color: #a78bfa;
    font-size: 0.92rem;
    font-weight: 600;
}

.period-arrow {
    display: inline-block;
    transition: transform .2s ease;
    color: #a78bfa;
}

.period-arrow.open {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.4rem);
    background: rgba(30, 25, 60, 0.96);
    border: 1px solid rgba(167, 139, 250, 0.35);
    border-radius: 0.5rem;
    box-shadow: 0 12px 32px rgba(106, 90, 205, 0.35);
    overflow: hidden;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.custom-select-option {
    padding: 0.75rem 1rem;
    color: #e5e7eb;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.custom-select-option:hover {
    background: rgba(124, 58, 237, 0.15);
    color: #ffffff;
}

.custom-select-option.active {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.35) 0%, rgba(99, 102, 241, 0.35) 100%);
    color: #ffffff;
}

/* 弹窗按钮 */
.popup-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.popup-btn.van-button {
    height: 2.75rem !important;
    border-radius: 0.5rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
}

.confirm-btn.van-button {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.confirm-btn.van-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.cancel-btn.van-button {
    background: rgba(55, 48, 90, 0.6) !important;
    border: 1px solid rgba(167, 139, 250, 0.25) !important;
    color: #cbd5e1 !important;
}

.cancel-btn.van-button:active {
    background: rgba(55, 48, 90, 0.8) !important;
}

/* 分页组件样式 */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    margin-top: 1rem;
}

.pagination-wrapper .van-pagination {
    background: transparent;
}

.pagination-wrapper .van-pagination__item {
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.3);
    color: #ffffff;
    margin: 0 0.125rem;
}

.pagination-wrapper .van-pagination__item:hover {
    background: rgba(167, 139, 250, 0.2);
    border-color: rgba(167, 139, 250, 0.5);
}

.pagination-wrapper .van-pagination__item--active {
    background: rgba(167, 139, 250, 0.8) !important;
    border-color: rgba(167, 139, 250, 1) !important;
    color: #ffffff !important;
}

.pagination-wrapper .van-pagination__item--disabled {
    background: rgba(26, 21, 53, 0.3) !important;
    border-color: rgba(167, 139, 250, 0.1) !important;
    color: rgba(255, 255, 255, 0.3) !important;
}

.pagination-wrapper .van-pagination__prev,
.pagination-wrapper .van-pagination__next {
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.3);
    color: #ffffff;
}

.pagination-wrapper .van-pagination__prev:hover,
.pagination-wrapper .van-pagination__next:hover {
    background: rgba(167, 139, 250, 0.2);
    border-color: rgba(167, 139, 250, 0.5);
}

.pagination-wrapper .van-pagination__prev--disabled,
.pagination-wrapper .van-pagination__next--disabled {
    background: rgba(26, 21, 53, 0.3) !important;
    border-color: rgba(167, 139, 250, 0.1) !important;
    color: rgba(255, 255, 255, 0.3) !important;
}

/* 移动端分页样式优化 */
@media screen and (max-width: 750px) {
    .pagination-wrapper .van-pagination__item {
        min-width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
        margin: 0 0.0625rem;
    }

    .pagination-wrapper .van-pagination__prev,
    .pagination-wrapper .van-pagination__next {
        min-width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
}
/* Vue.js 防闪烁样式 */
[v-cloak] {
    display: none !important;
}

/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 根元素自适应设置 */
html {
    font-size: 16px;
}

/* 移动端自适应 */
@media screen and (max-width: 750px) {
    html {
        font-size: calc(100vw / 375 * 16);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: url('../images/backBg.png') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

#app {
    padding-bottom: 3.5rem;
}

/* 头部样式 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(106, 90, 205, 0.2);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 2.0rem;
    height: 2.0rem;
    border-radius: 0.5rem;
    /*object-fit: cover;*/
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /*border: 2px solid rgba(167, 139, 250, 0.3);*/
}

.logo[style*="display: none"] + .project-name {
    margin-left: 0;
}

.logo-placeholder {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid rgba(167, 139, 250, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.project-name {
    font-size: 1.25rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s;
}

.lang-switch:hover {
    background: rgba(167, 139, 250, 0.1);
}

.lang-icon {
    font-size: 1.1rem;
}

.lang-text {
    font-size: 0.875rem;
    color: #e0d7ff;
}

.arrow-icon {
    font-size: 0.75rem;
    color: #e0d7ff;
    transition: transform 0.3s;
}

/* 语言选择选项 */
.lang-options {
    min-width: 120px;
    padding: 0.5rem 0;
}

.lang-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s;
    color: #cbd5e1;
}

.lang-option:hover {
    background: rgba(167, 139, 250, 0.2);
    color: #e0d7ff;
}

.lang-option.active {
    color: #a78bfa;
}

.lang-option .van-icon {
    color: #a78bfa;
    font-size: 1rem;
}

/* Popover 弹出层样式 */
.van-popover__wrapper {
    display: inline-flex;
}

.van-popover {
    background: rgba(26, 21, 53, 0.98) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.3) !important;
    box-shadow: 0 8px 32px rgba(106, 90, 205, 0.3) !important;
}

.van-popover--dark {
    background: rgba(26, 21, 53, 0.98) !important;
}

.van-popover__arrow {
    background: rgba(26, 21, 53, 0.98) !important;
    border-color: rgba(167, 139, 250, 0.3) !important;
}

.van-dropdown-item {
    background: rgba(26, 21, 53, 0.98) !important;
    backdrop-filter: blur(10px);
}

.van-dropdown-item__option {
    color: #cbd5e1 !important;
}

.van-dropdown-item__option--active {
    color: #a78bfa !important;
}

.van-cell {
    background: transparent !important;
    color: #cbd5e1 !important;
}

.van-cell::after {
    border-color: rgba(167, 139, 250, 0.1) !important;
}

/* Vant按钮自定义样式 */
.lang-btn.van-button--plain {
    background: transparent !important;
    border-color: rgba(106, 90, 205, 0.5) !important;
    color: #a78bfa !important;
}

.lang-btn.van-button--plain:active {
    background: rgba(106, 90, 205, 0.2) !important;
}

.wallet-btn.van-button--primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    color: #ffffff !important;
}

.wallet-btn.van-button--primary:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

.user-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 139, 250, 0.2);
    border-radius: 50%;
    font-size: 1.2rem;
}

/* 横幅样式 */
.banner {
    padding: 1rem 1rem 0.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-title {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}

.banner-visual {
    position: relative;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planet {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 40px rgba(167, 139, 250, 0.6);
}

.planet-left {
    left: 10%;
    background: radial-gradient(circle at 30% 30%, #4a5568, #1a202c);
}

.planet-right {
    right: 10%;
    background: radial-gradient(circle at 30% 30%, #2d3748, #1a202c);
}

.light-beam {
    width: 2px;
    height: 8rem;
    background: linear-gradient(180deg, transparent 0%, #a78bfa 50%, transparent 100%);
    box-shadow: 0 0 20px #a78bfa, 0 0 40px #a78bfa;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* 资产卡片 */
.asset-card {
    margin: 0.75rem 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.3) 0%, rgba(76, 29, 149, 0.3) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(167, 139, 250, 0.3);
    text-align: center;
    box-shadow: 0 8px 32px rgba(106, 90, 205, 0.2);
    backdrop-filter: blur(10px);
}

.asset-title {
    font-size: 0.9rem;
    color: #d8b4fe;
    margin-bottom: 0.5rem;
}

.asset-amount {
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0.25rem 0;
    font-family: 'Courier New', monospace;
}

.asset-unit {
    color: #a78bfa;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

/* 资产展示区域 */
.asset-display {
    text-align: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(167, 139, 250, 0.15);
    margin-bottom: 1rem;
}

.asset-display .asset-amount {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.3);
    margin: 0.5rem 0;
}

.asset-display .asset-unit {
    color: #a78bfa;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.claim-btn.van-button {
    margin-top: 1rem !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
    color: #ffffff !important;
}

.claim-btn.van-button:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5) !important;
}

/* 操作区域 */
.action-section {
    margin: 1rem;
}

.action-card {
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 1rem;
    padding: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.action-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c4b5fd;
    margin-bottom: 0.9rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(167, 139, 250, 0.15);
    text-shadow: 0 0 12px rgba(196, 181, 253, 0.5);
    letter-spacing: 0.02em;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}

.info-row:last-of-type {
    border-bottom: none;
}

.info-row .value {
    color: #a78bfa;
    font-weight: bold;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(167, 139, 250, 0.4);
    position: relative;
}

.summary-row::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -0.9rem;
    right: -0.9rem;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(167, 139, 250, 0.6) 20%, rgba(167, 139, 250, 0.8) 50%, rgba(167, 139, 250, 0.6) 80%, transparent 100%);
    box-shadow: 0 0 8px rgba(167, 139, 250, 0.3);
}

.summary-row + .summary-row {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: none;
}

.summary-row + .summary-row::before {
    display: none;
}

.summary-item {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.summary-value {
    color: #a78bfa;
    font-weight: bold;
    font-size: 0.95rem;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.invest-btn.van-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    color: #ffffff !important;
}

.invest-btn.van-button:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

.withdraw-btn.van-button--plain {
    background: rgba(167, 139, 250, 0.2) !important;
    color: #e0d7ff !important;
    border: 1px solid rgba(167, 139, 250, 0.5) !important;
}

.withdraw-btn.van-button--plain:active {
    background: rgba(167, 139, 250, 0.3) !important;
}

.tip {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid #ef4444;
    border-radius: 0.25rem;
    font-size: 0.85rem;
    color: #fca5a5;
}

.business-info, .link-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.business-value {
    color: #a78bfa;
    font-weight: bold;
}

.copy-btn.van-button--plain {
    background: transparent !important;
    border: 1px solid rgba(167, 139, 250, 0.5) !important;
    color: #a78bfa !important;
}

.copy-btn.van-button--plain:active {
    background: rgba(167, 139, 250, 0.2) !important;
}

/* 邀请区域 */
.invite-section {
    margin: 1rem;
    padding: 0.75rem;
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
}

.invite-label {
    margin-bottom: 0.5rem;
    color: #d8b4fe;
}

.invite-address {
    color: #a78bfa;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.invite-link-section {
    margin: 1rem;
    padding: 0.75rem;
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.invite-link-section:hover {
    background: rgba(106, 90, 205, 0.3);
    border-color: #a78bfa;
}

.invite-link-label {
    color: #d8b4fe;
}

/* 项目介绍 */
.intro-section {
    margin: 1rem;
    padding: 0.9rem;
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.intro-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #d8b4fe;
    text-align: center;
}

.intro-content {
    line-height: 1.6;
    color: #cbd5e1;
    text-align: justify;
}

/* 规则说明 */
.rule-section {
    margin: 1rem;
    padding: 0.9rem;
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.rule-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #d8b4fe;
}

.rule-content {
    line-height: 1.8;
    color: #cbd5e1;
}

.rule-content p {
    margin: 0.5rem 0;
}

/* 操作记录 */
.record-section {
    margin: 1rem;
    padding: 0.9rem;
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.record-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #d8b4fe;
    text-align: center;
}

.record-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.record-table {
    margin: 1rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-header {
    display: grid;
    grid-template-columns: 0.8fr 1fr 0.7fr 1fr 1.2fr;
    gap: 0.3rem;
    padding: 0.5rem 0.3rem;
    background: rgba(106, 90, 205, 0.2);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: bold;
    color: #d8b4fe;
    min-width: 100%;
}

.table-cell {
    text-align: left;
    word-wrap: break-word;
    word-break: break-word;
}

/* 第二列（操作金额）右对齐 */
.table-header .table-cell:nth-child(2),
.table-row .table-cell:nth-child(2) {
    text-align: right;
}

.table-header .table-cell:nth-child(3),
.table-row .table-cell:nth-child(3) {
    text-align: right;
}

.table-header .table-cell:nth-child(4),
.table-row .table-cell:nth-child(4) {
    text-align: right;
}

.table-body {
    min-height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.table-row {
    display: grid;
    grid-template-columns: 0.8fr 1fr 0.7fr 1fr 1.2fr;
    gap: 0.3rem;
    padding: 0.5rem 0.3rem;
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
    font-size: 0.85rem;
    min-width: 100%;
}

.record-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.tab-btn {
    padding: 0.75rem 1rem;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 0.5rem;
    color: #a78bfa;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.tab-btn:hover {
    background: rgba(167, 139, 250, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* 底部导航 - Vant Tabbar 样式 */
.van-tabbar {
    background-color: #1a1535 !important;
    border-top: 1px solid rgba(106, 90, 205, 0.25) !important;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
}

/* 覆盖激活状态的白色背景 */
.van-tabbar-item {
    background-color: #1a1535 !important;
}

.van-tabbar-item--active {
    background-color: #1a1535 !important;
}

.van-tabbar-item__icon {
    font-size: 22px !important;
}

.van-tabbar-item__text {
    font-size: 11px !important;
    margin-top: 2px !important;
}

/* 团队页面样式 */
.team-page {
    padding: 1rem;
}

.team-card {
    margin: 1rem 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.3) 0%, rgba(76, 29, 149, 0.3) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(167, 139, 250, 0.3);
    text-align: center;
    box-shadow: 0 8px 32px rgba(106, 90, 205, 0.2);
    backdrop-filter: blur(10px);
}

.team-title {
    font-size: 1rem;
    color: #d8b4fe;
    margin-bottom: 1rem;
}

.team-count {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
}

.team-list-section {
    margin-top: 2rem;
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 1rem;
    padding: 0.9rem;
    backdrop-filter: blur(10px);
}

.team-list-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 1rem;
    text-align: center;
}

.team-member {
    padding: 1rem;
    margin: 0.5rem 0;
    background: rgba(106, 90, 205, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 0.5rem;
    color: #a78bfa;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

/* Vant Empty 组件自定义 */
.van-empty {
    padding: 2rem 0 !important;
}

.van-empty__image {
    width: 6rem !important;
    height: 6rem !important;
}

.van-empty__description {
    color: #94a3b8 !important;
}

/* 响应式调整 */
@media screen and (max-width: 480px) {
    .header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .header-right {
        flex-wrap: wrap;
    }

    .banner-title {
        font-size: 1.2rem;
    }

    .asset-amount {
        font-size: 1.5rem;
    }

    .table-header {
        font-size: 0.7rem;
        grid-template-columns: 0.8fr 1fr 0.7fr 1fr 1.2fr;
        gap: 0.2rem;
        padding: 0.4rem 0.2rem;
    }

    .table-row {
        font-size: 0.7rem;
        grid-template-columns: 0.8fr 1fr 0.7fr 1fr 1.2fr;
        gap: 0.2rem;
        padding: 0.4rem 0.2rem;
    }

    .table-cell {
        padding: 0.15rem;
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

/* Dialog 弹窗样式覆盖 */
.van-dialog {
    background: rgba(26, 21, 53, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.3) !important;
    border-radius: 1rem !important;
}

.van-dialog__header {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    padding: 1.25rem 1rem 0.5rem !important;
}

.van-dialog__message {
    color: #cbd5e1 !important;
    padding: 0.75rem 1.25rem 1rem !important;
    overflow-y: visible !important;
}

.van-dialog__content {
    overflow: visible !important;
}

.van-dialog__footer {
    border-top: 1px solid rgba(167, 139, 250, 0.2) !important;
    padding: 0.75rem 1.25rem !important;
    display: flex !important;
    gap: 0.75rem !important;
}

.van-dialog__confirm {
    flex: 1 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0.5rem !important;
    height: 2.5rem !important;
}

.van-dialog__cancel {
    flex: 1 !important;
    color: #cbd5e1 !important;
    background: rgba(71, 71, 100, 0.5) !important;
    border: none !important;
    border-radius: 0.5rem !important;
    height: 2.5rem !important;
}

/* 弹窗内下拉框 */
.van-dialog select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Toast 提示样式覆盖 */
.van-toast {
    background: rgba(26, 21, 53, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.3) !important;
}

/* 捐赠底池弹窗样式 */
.claim-popup.van-popup {
    background: linear-gradient(135deg, rgba(35, 28, 75, 0.98) 0%, rgba(25, 20, 58, 0.98) 100%) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(167, 139, 250, 0.35);
    box-shadow: 0 8px 32px rgba(106, 90, 205, 0.3);
    padding: 0;
}

.popup-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
    position: relative;
}

.popup-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
}

.popup-close {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s;
}

.popup-close:hover {
    color: #cbd5e1;
}

.popup-body {
    padding: 1.25rem;
}

/* 输入框样式 */
.claim-input.van-cell {
    background: rgba(30, 25, 60, 0.6) !important;
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 0.5rem;
    padding: 0.65rem 1rem !important;
    margin-bottom: 1rem;
}

.claim-input .van-field__control {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 400;
}

.claim-input .van-field__control::placeholder {
    color: #6b7280;
    font-weight: 400;
}

.claim-input .van-field__body {
    padding: 0 !important;
}

.token-label {
    color: #a78bfa;
    font-size: 1rem;
    font-weight: 500;
    margin-left: 0.75rem;
}

/* 投资限额显示 */
.invest-limits {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.9rem;
    gap: 0.3rem;
    padding: 0 0.15rem;
}

.limit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
}

.limit-label {
    color: #9ca3af;
    font-size: 0.82rem;
    white-space: nowrap;
}

.limit-value {
    color: #ffffff;
    font-weight: 400;
    font-size: 0.82rem;
}

/* 自定义质押周期下拉（完全自绘） */
.custom-select-wrap {
    position: relative;
    margin-bottom: 1.1rem;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: 2.8rem;
    background: rgba(30, 25, 60, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.custom-select-trigger:hover {
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.08);
}

.period-label {
    color: #9ca3af;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.period-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.period-value {
    color: #a78bfa;
    font-size: 0.92rem;
    font-weight: 600;
}

.period-arrow {
    display: inline-block;
    transition: transform .2s ease;
    color: #a78bfa;
}

.period-arrow.open {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.4rem);
    background: rgba(30, 25, 60, 0.96);
    border: 1px solid rgba(167, 139, 250, 0.35);
    border-radius: 0.5rem;
    box-shadow: 0 12px 32px rgba(106, 90, 205, 0.35);
    overflow: hidden;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.custom-select-option {
    padding: 0.75rem 1rem;
    color: #e5e7eb;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.custom-select-option:hover {
    background: rgba(124, 58, 237, 0.15);
    color: #ffffff;
}

.custom-select-option.active {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.35) 0%, rgba(99, 102, 241, 0.35) 100%);
    color: #ffffff;
}

/* 弹窗按钮 */
.popup-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.popup-btn.van-button {
    height: 2.75rem !important;
    border-radius: 0.5rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
}

.confirm-btn.van-button {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.confirm-btn.van-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.cancel-btn.van-button {
    background: rgba(55, 48, 90, 0.6) !important;
    border: 1px solid rgba(167, 139, 250, 0.25) !important;
    color: #cbd5e1 !important;
}

.cancel-btn.van-button:active {
    background: rgba(55, 48, 90, 0.8) !important;
}

/* 分页组件样式 */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    margin-top: 1rem;
}

.pagination-wrapper .van-pagination {
    background: transparent;
}

.pagination-wrapper .van-pagination__item {
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.3);
    color: #ffffff;
    margin: 0 0.125rem;
}

.pagination-wrapper .van-pagination__item:hover {
    background: rgba(167, 139, 250, 0.2);
    border-color: rgba(167, 139, 250, 0.5);
}

.pagination-wrapper .van-pagination__item--active {
    background: rgba(167, 139, 250, 0.8) !important;
    border-color: rgba(167, 139, 250, 1) !important;
    color: #ffffff !important;
}

.pagination-wrapper .van-pagination__item--disabled {
    background: rgba(26, 21, 53, 0.3) !important;
    border-color: rgba(167, 139, 250, 0.1) !important;
    color: rgba(255, 255, 255, 0.3) !important;
}

.pagination-wrapper .van-pagination__prev,
.pagination-wrapper .van-pagination__next {
    background: rgba(26, 21, 53, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.3);
    color: #ffffff;
}

.pagination-wrapper .van-pagination__prev:hover,
.pagination-wrapper .van-pagination__next:hover {
    background: rgba(167, 139, 250, 0.2);
    border-color: rgba(167, 139, 250, 0.5);
}

.pagination-wrapper .van-pagination__prev--disabled,
.pagination-wrapper .van-pagination__next--disabled {
    background: rgba(26, 21, 53, 0.3) !important;
    border-color: rgba(167, 139, 250, 0.1) !important;
    color: rgba(255, 255, 255, 0.3) !important;
}

/* 移动端分页样式优化 */
@media screen and (max-width: 750px) {
    .pagination-wrapper .van-pagination__item {
        min-width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
        margin: 0 0.0625rem;
    }

    .pagination-wrapper .van-pagination__prev,
    .pagination-wrapper .van-pagination__next {
        min-width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
}

/* 团队页面新样式 - 团队信息和总收益模块 */

/* 团队信息卡片 */
.team-info-card {
    background: rgba(26, 21, 53, 0.6);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(167, 139, 250, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.team-info-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(167, 139, 250, 0.3);
    text-align: center;
}

/* 团队总收益卡片 */
.team-profit-card {
    background: rgba(26, 21, 53, 0.6);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1rem 0;
    border: 1px solid rgba(167, 139, 250, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.team-profit-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(167, 139, 250, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.team-profit-title:hover {
    background: rgba(167, 139, 250, 0.05);
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin: -0.5rem;
    margin-bottom: 1rem;
}

.team-profit-title .title-text {
    text-align: center;
}

.team-profit-title .title-right {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-profit-title .total-amount {
    color: #a78bfa;
    font-size: 1.1rem;
    font-weight: bold;
}

.team-profit-title .collapse-arrow {
    font-size: 1rem;
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.team-profit-title .collapse-arrow.expanded {
    transform: rotate(180deg);
}

.profit-details {
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 收益项目 */
.profit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.profit-item:not(:last-child) {
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}

.profit-label {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.profit-value {
    color: #a78bfa;
    font-weight: bold;
    font-size: 1rem;
}

/* 信息行样式 - 复用投资页面样式 */
.team-info-card .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.team-info-card .info-row:not(:last-child) {
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}

.team-info-card .info-row .value {
    color: #a78bfa;
    font-weight: bold;
    font-size: 1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .team-info-card,
    .team-profit-card {
        padding: 1.25rem;
    }

    .team-info-title,
    .team-profit-title {
        font-size: 1.1rem;
    }

    .profit-item,
    .team-info-card .info-row {
        font-size: 0.9rem;
    }
}

/* ==================== 语言下拉选择器样式 ==================== */
.lang-switch {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background: rgba(167, 139, 250, 0.1);
}

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.lang-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.lang-text {
    font-size: 0.875rem;
    color: #e2e8f0;
    white-space: nowrap;
}

.lang-arrow {
    font-size: 0.75rem;
    color: #94a3b8;
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

.lang-arrow.open {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 120px;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.98) 0%, rgba(24, 24, 27, 0.98) 100%);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(167, 139, 250, 0.1);
    overflow: hidden;
    z-index: 1000;
    backdrop-filter: blur(10px);
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-option {
    padding: 0.75rem 1rem;
    color: #cbd5e1;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(124, 58, 237, 0.15);
    color: #e2e8f0;
}

.lang-option.active {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.35) 0%, rgba(99, 102, 241, 0.35) 100%);
    color: #a78bfa;
    font-weight: 600;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .lang-switch {
        padding: 0.4rem 0.6rem;
    }

    .lang-icon {
        font-size: 1rem;
    }

    .lang-text {
        font-size: 0.8rem;
    }

    .lang-dropdown {
        min-width: 100px;
    }

    .lang-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* 日期切换样式 */
.date-switch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.date-switch-btn {
    background: none;
    border: none;
    color: #a78bfa;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 1;
    transition: opacity 0.2s, transform 0.2s;
}

.date-switch-btn:hover:not(:disabled) {
    transform: scale(1.1);
}

.date-switch-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .date-switch-container {
        gap: 0.75rem;
    }

    .date-switch-btn {
        font-size: 1.25rem;
    }
}