* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        body {
            background-color: #fff;
        }
        a {
    text-decoration: none;
}
        /* 顶部导航 */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 24px;
        }
        .logo .title{
		width: 60rpx;
		line-height: 40px;
		padding-left: 5px
	}
        .menu-icon {
            font-size: 24px;
            cursor: pointer;
        }
    .language-select {
      position: absolute;
      top: 60px;
	width: 100%;
	text-align: center;
      background-color: white;
      border-bottom: 1px solid #ccc;
      border-radius: 5px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      transform: translateY(-100%);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
 .language-select.show {
      transform: translateY(0);
      opacity: 1;
    }
    .language {
      padding: 10px 20px;
      border-bottom: 1px solid #f0f0f0;
      cursor: pointer;
    }
    .language:last-child {
      border-bottom: none;
    }
    .language:hover {
      background-color: #f9f9f9;
    }
    
    .blue{color: #0c5fe1;}
        /* Banner轮播 */
.banner-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}
 
.banner-slides {
    display: flex;
    width: 300%; /* 3张图片就是300% */
    animation: slide 10s infinite;
    height: 100%;
}
 
.banner-slide {
    width: 33.33%;
    height: 100%;
}
 
.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
@keyframes slide {
    0%, 30% {
        transform: translateX(0);
    }
    33.33%, 63.33% {
        transform: translateX(-33.33%);
    }
    66.66%, 96.66% {
        transform: translateX(-66.66%);
    }
    100% {
        transform: translateX(0);
    }
}
      /* 账户信息 */
        .account-info {
		    width: 96%;
            margin: 2%;
            border-radius: 5px;
            background: #0052ff;
            color: white;
            padding: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
			margin：5px
        }
        
        .account-details {
            display: flex;
            align-items: center;
        }
        
        .account-avatar {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
        }
        
        /* 操作按钮 */
        .actions {
			 width: 96%;
			margin: 2%;
			display: flex;
			height: 100px;
			position: relative;
			font-weight: 700;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        
        .action-btn {
            background: #0052ff;
			color: white;
			border: none;
			padding: 14px;
			border-radius: 5px;
			font-size: 14px;
			cursor: pointer;
			text-align: center;
			display: grid;
			place-items: center;
        }
        
        /* 标签页 */
        .tabs {
            display: flex;
            width: 96%;
            margin: 2%;
            background: #e0e7ff;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .tab {
            flex: 1;
            text-align: center;
            padding: 12px;
            cursor: pointer;
        }
        
        .tab.active {
            background: #0052ff;
            color: white;
        }
        
        /* 余额信息 */
      
        
        .card {
            background-color: white;
            border-radius: 5px;
            padding: 20px;
            margin: 2%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            background-color:#e1e1e1;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .info-item {
            text-align: center;
        }
        
        .value {
            font-size: 24px;
            font-weight: bold;
            color: #0056b3;
            margin-bottom: 5px;
        }
        
        .label {
            color: #666;
            font-size: 14px;
        }
        /* 提现部分 */
        .withdraw-section {
            width: 96%;
            margin: 2%;
            display: block;
        }
        
        .withdraw-input {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 8px;
        }
          .record-list {
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .record-item {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .record-item:last-child {
            border-bottom: none;
        }
        
        .record-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        
        .record-info {
            flex: 1;
        }
        
        .record-type {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .expense {
            color: #ff0000;
        }
        
        .income {
            color: #008000;
        }
        
        .record-time {
            color: #666;
            font-size: 12px;
            margin-bottom: 5px;
        }
        
        .record-detail {
            color: #666;
            font-size: 14px;
			text-align:right;
        }
        
        .record-amount {
            text-align: right;
            font-weight: bold;
            font-size: 16px;
        }
        
        .pagination {
            margin-top: 20px;
            text-align: center;
        }
        
        .pagination a {
            display: inline-block;
            padding: 8px 16px;
            background-color: #e0e0e0;
            color: #0056b3;
            text-decoration: none;
            border-radius: 5px;
        }
        /* 存款弹窗 */
        .deposit-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        .modal-content {
            background: white;
            padding: 20px;
            border-radius: 8px;
            width: 80%;
        }
        .white{
            color:#fff;
        }
        .container {
            width: 96%;
            margin: 2%;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
            text-align: center;
        }
        
        .header {
            padding: 15px;
            background-color: #e1e1e1;
            border-bottom: 1px solid #e0e0e0;
            font-weight: bold;
            position: sticky;
            top: 0;
            z-index: 10;
        }
        
        .scroll-container {
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        
        .scroll-content {
            position: absolute;
            width: 100%;
            animation: scroll 15s linear infinite;
        }
        
        /* 关键：双表格实现无缝滚动 */
        .scroll-table {
            width: 100%;
        }
        
        @keyframes scroll {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%); /* 因为有两份数据，所以只需要滚动50% */
            }
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }
        
        th {
            background-color: #f8f9fa;
            font-weight: bold;
        }
        
        tr:hover {
            background-color: #f5f7fa;
        }
        
        
        .scrolla{
            color: #0066cc;
            text-decoration: none;
        }
        .list-item-title {
            display: flex;
            justify-content: space-between;
            font-weight: 700;
            font-size: 15px;
            background-color: #f8f9fa;
            padding: 10px 15px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .address, .number {
            padding: 0;
        }
        
        /* 悬停暂停动画 */
        .scroll-container:hover .scroll-content {
            animation-play-state: paused;
        }
        
         .containerss{
			width: 96%;
			margin: 2%;
			padding: 2%;
			color: #333;
			background-color:#e1e1e1
		}
        .faq-title {
            text-align: center;
            font-size: 20px;
            font-weight: bold;
            margin: 20px 0;
            color: #333;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 12px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        
        .faq-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px;
            cursor: pointer;
            border-bottom: 1px solid #eee;
        }
        
        .faq-header h3 {
            font-size: 16px;
            color: #333;
        }
        
        .faq-arrow {
            transition: transform 0.3s ease;
            color: #666;
        }
        
        .faq-content {
            padding: 0 16px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #666;
            line-height: 1.5;
        }
        
        .faq-item.active .faq-arrow {
            transform: rotate(90deg);
        }
        
        .faq-item.active .faq-content {
            max-height: 1000px;
            padding: 16px;
        }
        
        .audit-report, .partners {
            margin-top: 30px;
            text-align: center;
			margin-bottom: 30px;
        }
        
        .audit-report h3, .partners h3 {
            font-size: 16px;
            color: #333;
            margin-bottom: 15px;
        }
        
        .audit-report p {
            color: #898b98;
            font-size: 14px;
        }
		.partners p {
            color: #898b98;
            font-size: 14px;
        }
        
        .partner-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        
        .partner-logos img {
		width: 30%;
        }
        
        	.van-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7)
}
.van-dialog {
    position: fixed;
    top: 45%;
    left: 50%;
    width: 320px;
    overflow: hidden;
    font-size: 16px;
    background-color: #fff;
    border-radius: 16px;
    -webkit-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transition-property: opacity,-webkit-transform;
    transition-property: opacity,-webkit-transform;
    transition-property: transform,opacity;
    transition-property: transform,opacity,-webkit-transform
}

@media (max-width: 321px) {
    .van-dialog {
        width:90%
    }
}
.van-dialog__header {
    padding-top: 26px;
    font-weight: 500;
    line-height: 24px;
    text-align: center
}
.van-dialog__footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none
}
.van-dialog__cancel,.van-dialog__confirm {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    height: 48px;
    margin: 0;
    border: 0
}

.van-dialog__confirm,.van-dialog__confirm:active {
    color: #ee0a24
}
.van-dialog__message {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    max-height: 60vh;
    padding: 26px 24px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 20px;
    white-space: pre-wrap;
    text-align: center;
    word-wrap: break-word;
    -webkit-overflow-scrolling: touch
}
.van-dialog__message--has-title {
    padding-top: 8px;
    color: #646566
}

	.kefu {
    position: fixed;
    right: 5px;
    top: 23vh;
    z-index: 999
}

.kefu img {
    width: 40px;
    height: 40px
}
 .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }
    .modal {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: white;
      border-radius: 10px 10px 0 0;
      padding: 20px;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
      z-index: 1001;
      transform: translateY(100%);
      transition: transform 0.3s ease-in-out;
    }
    .modal.show {
      transform: translateY(0);
    }
    .modal-icon {
      text-align: center;
      margin-bottom: 15px;
    }

    .modal-icon img {
      width: 50px;
      height: 50px;
    }
    .modal-title {
      font-size: 18px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 10px;
    }
    .modal-description {
      font-size: 14px;
      color: #666;
      text-align: center;
      margin-bottom: 20px;
    }
    .modal-buttons {
      display: flex;
      justify-content: space-around;
    }
    .modal-button {
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      font-size: 14px;
      cursor: pointer;
    }

    .modal-button.cancel {
      background-color: #f0f0f0;
      color: #333;
    }

    .modal-button.confirm {
      background-color: #007bff;
      color: white;
    }
    .hasborder{border: 0.5px solid white;}
    
        
        .loading {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 1s linear infinite;
            margin-right: 8px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .wallet-error {
            background: #ffebee;
            color: #c62828;
            padding: 10px;
            border-radius: 4px;
            margin: 10px 0;
            text-align: center;
            display: none;
        }
        
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
        }
        
        .modal {
            display: none;
            position: fixed;
            transform: translate(-50%, -50%);
            background: white;
            border-radius: 12px 12px 0 0;
            padding: 24px;
            max-width: 100%;
            width: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            z-index: 2001;
            text-align: center;
        }
        
        .modal.show {
            display: block;
        }
        
        .modal-icon {
            margin-bottom: 16px;
        }
        
        .modal-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 12px;
        }
        
        .modal-description {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .modal-buttons {
            display: flex;
            gap: 12px;
        }
        
        .modal-button {
            flex: 1;
            padding: 12px;
            border-radius: 8px;
            border: none;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .modal-button.cancel {
            background: #f5f5f5;
            color: #333;
        }
        
        .modal-button.confirm {
            background: #4CAF50;
            color: white;
        }
        
        .modal-button:hover {
            opacity: 0.9;
        }
        
        .pages{
            display: flex;
            justify-content: flex-end;
            padding: 10px
        }
        
        .Previous {
            padding: 10px;
            background-color: #e1e1e1;
            color: #2050f2;
            border-radius: 5px;
            margin-right: 20px
        }
        
        .Next{
            padding: 10px;
            background-color: #2050f2;
            border-radius: 5px;
            color: #fff
        }
        
        .wallet-selector {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 15px;
        }
        
        .wallet-option {
            display: flex;
            align-items: center;
            padding: 10px;
            border: 1px solid #eee;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            margin-bottom: 5px;
        }
        
        .wallet-option:hover {
            background-color: #f5f5f5;
        }
        
        .wallet-option img {
            width: 24px;
            height: 24px;
            margin-right: 10px;
        }
        
        
         .wallet-option.unsupported {
            opacity: 0.5;
            cursor: not-allowed;
            display: none;
        }
         .notification {
            position: fixed;
            top: 20px;
            right: 10px;
            padding: 7px 10px;
            border-radius: 8px;
            background-color: #c5bcbc;
            box-shadow: 0 1px 4px rgba(0,0,0,0.1);;
            display: flex;
            align-items: center;
            transform: translateX(150%);
            transition: transform 0.3s ease;
            z-index: 1000;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification.success {
            border-left: 4px solid #5cb85c;
        }

        .notification.error {
            border-left: 4px solid #ef4444;
        }

        .notification.warning {
            border-left: 4px solid #ff6b6b;
        }

        .notification.info {
            border-left: 4px solid #5bc0de;
        }

        .notification-icon {
            margin-right: 10px;
            font-size: 20px;
        }
        .account-info {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }

        .account-field {
            flex: 1;
            min-width: 200px;
        }

        .account-label {
            font-size: 0.85rem;
            color:#64748b;
            margin-bottom: 5px;
        }

        .account-value {
            font-weight: 500;
            word-break: break-all;
        }
        
         
        .status-section {
            margin-top: 30px;
            padding: 20px;
            border-radius: 12px;
            background-color: #f1f5f9;
            display: none;
        }
        .active {
            display: block;
        }
        .no-wallets {
            text-align: center;
            padding: 30px;
            background-color: #fef2f2;
            border-radius: 12px;
            color:#ef4444;
            display: none;
        }
        .no-wallets h3 {
            margin-bottom: 10px;
        }
        .no-wallets p {
            margin-bottom: 15px;
        }
        .wallet-badge {
            display: inline-block;
            padding: 4px 8px;
            background-color: #1e40af;
            color: white;
            border-radius: 4px;
            font-size: 0.75rem;
            margin-top: 5px;
        }
        .wallet-desc {
            font-size: 0.85rem;
            color:#64748b;
        }
        .no-data{text-align:center}
            .wallet-info {
	width: 96%;
    margin: 2%;
    border-radius: 5px;
    background: #0052ff;
    color: white;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	margin：5px
    }
.account-info-container {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-radius: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 
.wallet-status {
    display: block;
    align-items: center;
    gap: 16px;
}
 
.status-header {
    display: flex;
    align-items: center;
    gap: 8px;
}
 
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ff6b6b; /* 默认断开颜色 */
}
 
.status-dot.connected {
    background-color: #51cf66; /* 连接时颜色 */
}
 
.account-details {
    min-width: 150px;
}
 
.btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
 
.btn-disconnect {
    background-color: #ffe3e3;
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
    display: none;
}
 
.btn-disconnect:hover {
    background-color: #ff6b6b;
    color: white;
}
 
.connect-section {
    display: flex;
}
 
.connect-wallet-btn {
    background-color: #4263eb;
    color: white;
    border: none;
    padding: 5px 10px;
     border-radius: 5px;
}
 
.connect-wallet-btn:hover {
    background-color: #364fc7;
    transform: translateY(-1px);
}
.balance-info {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 
.balance-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

 
.refresh-btn {
    float:right;
    background: none;
    border: none;
    color: #495057;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
 
.refresh-btn:hover {
    background-color: #e9ecef;
    color: #212529;
}
 
.refresh-btn:active {
    transform: rotate(45deg);
}