/* 基础样式 */
body {
    background: #0F172A;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    text-align: center;
}

/* 公司LOGO样式 */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(255,215,0,0.2);
}

.logo-text {
    text-align: left;
    line-height: 1.2;
}

.logo-text .chinese {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
}

.logo-text .english {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #94A3B8;
}

/* 头部横幅 */
header {
    padding: 20px 0;
}

h1 {
    font-size: 28px;
    margin: 10px 0;
    color: #FFD700;
}

.cta-button {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    padding: 15px 30px;
    border-radius: 25px;
    color: #0F172A;
    text-decoration: none;
    display: inline-block;
    margin: 20px 0;
    font-weight: bold;
}

/* 核心卖点 */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    background: #1E293B;
    padding: 20px;
    border-radius: 15px;
    width: 280px;
}

.feature-item span {
    font-size: 32px;
}

/* 操作流程 */
.steps {
    margin: 40px 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px auto;
    padding: 15px;
    background: #1E293B;
    border-radius: 10px;
    max-width: 500px;
}

.step-number {
    background: #FFD700;
    color: #0F172A;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* 信任背书 */
.trust {
    margin: 40px 0;
}

.partners img {
    height: 50px;
    margin: 15px;
}

.reviews {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review {
    background: #1E293B;
    padding: 15px;
    border-radius: 10px;
    width: 200px;
}

.review img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* 实时记录 */
.live-records {
    margin: 50px 0;
}

.records-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
}

.record-item {
    background: #2D3C51;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.record-item:hover {
    transform: translateY(-5px);
}

.tx-amount, .tx-hash, .tx-time {
    font-size: 16px;
    color: #A5A5A5;
}

.tx-amount {
    color: #00C1D4;
    font-weight: bold;
}

.tx-hash {
    font-family: monospace;
    flex: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.tx-time {
    color: #94a3b8;
    font-size: 14px;
}

/* 优化为手机端适应 */
@media (max-width: 768px) {
    .record-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .tx-hash {
        margin-top: 8px;
    }

/* 页脚 */
footer {
    padding: 30px 0;
}

.qr-code {
    width: 150px;
    margin: 15px auto;
    display: block;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 20px;
}
 }
