/* Transfer Detail 样式 */

.transfer-detail-container {
    width: 100%;
    background-color: #FFFFFF;
    min-height: auto;
    height: fit-content;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.transfer-detail-container.dark-mode {
    background-color: #0A0A0A;
    color: #FFFFFF;
}

/* 头部栏 */
.transfer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
}

.transfer-detail-container.dark-mode .transfer-header {
    background-color: #0A0A0A;
    border-bottom-color: #333333;
}

.transfer-header-left,
.transfer-header-right {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transfer-header-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transfer-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.transfer-detail-container.dark-mode .transfer-title {
    color: #FFFFFF;
}

.transfer-back-icon,
.transfer-share-icon {
    font-size: 20px;
    color: #000000;
    cursor: pointer;
}

.transfer-detail-container.dark-mode .transfer-back-icon,
.transfer-detail-container.dark-mode .transfer-share-icon {
    color: #FFFFFF;
}

/* 内容区域 */
.transfer-content {
    padding: 24px 16px;
    background-color: #FFFFFF;
}

.transfer-detail-container.dark-mode .transfer-content {
    background-color: #0A0A0A;
}

/* 交易摘要 */
.transfer-summary {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px 0;
}

.transfer-amount {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.2;
}

.transfer-detail-container.dark-mode .transfer-amount {
    color: #FFFFFF;
}

.transfer-usd-equivalent {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
}

.transfer-detail-container.dark-mode .transfer-usd-equivalent {
    color: #CCCCCC;
}

/* 详情卡片 */
.transfer-detail-card {
    background-color: #F5F5F5;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.transfer-detail-container.dark-mode .transfer-detail-card {
    background-color: #1A1A1A;
}

.transfer-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #E0E0E0;
}

.transfer-detail-container.dark-mode .transfer-detail-row {
    border-bottom-color: #333333;
}

.transfer-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.transfer-detail-row:first-child {
    padding-top: 0;
}

.transfer-detail-label {
    font-size: 15px;
    color: #666666;
    font-weight: 400;
    flex-shrink: 0;
    line-height: 1.5;
}

.transfer-detail-container.dark-mode .transfer-detail-label {
    color: #CCCCCC;
}

.transfer-detail-label-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.transfer-info-icon {
    font-size: 14px;
    color: #999999;
    cursor: pointer;
}

.transfer-detail-container.dark-mode .transfer-info-icon {
    color: #CCCCCC;
}

.transfer-detail-value {
    font-size: 15px;
    color: #000000;
    font-weight: 400;
    text-align: right;
    word-break: break-all;
    flex: 1;
    margin-left: 16px;
    line-height: 1.5;
}

.transfer-detail-container.dark-mode .transfer-detail-value {
    color: #FFFFFF;
}

.transfer-detail-value-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    flex: 1;
    margin-left: 16px;
}

.transfer-detail-value-group .transfer-detail-value {
    white-space: nowrap;
    word-break: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transfer-detail-value-usd {
    font-size: 13px;
    color: #666666;
    margin-top: 4px;
}

.transfer-detail-container.dark-mode .transfer-detail-value-usd {
    color: #CCCCCC;
}

.transfer-status.completed {
    color: #00C853;
    font-weight: 400;
}

.transfer-status.pending {
    color: #FF9800;
    font-weight: 400;
}

.transfer-status.failed {
    color: #FF3D00;
    font-weight: 400;
}

.transfer-address {
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-size: 15px;
    color: #000000;
    font-weight: 500;
}

.transfer-detail-container.dark-mode .transfer-address {
    color: #FFFFFF;
}

/* 查看详情按钮 */
.transfer-detail-button {
    background-color: #F5F5F5;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 12px;
}

.transfer-detail-container.dark-mode .transfer-detail-button {
    background-color: #1A1A1A;
}

.transfer-detail-button:hover {
    background-color: #E0E0E0;
}

.transfer-detail-container.dark-mode .transfer-detail-button:hover {
    background-color: #2A2A2A;
}

.transfer-button-text {
    font-size: 15px;
    color: #000000;
    font-weight: 500;
}

.transfer-detail-container.dark-mode .transfer-button-text {
    color: #FFFFFF;
}

.transfer-button-arrow {
    font-size: 14px;
    color: #666666;
}

.transfer-detail-container.dark-mode .transfer-button-arrow {
    color: #CCCCCC;
}
