body {
    margin: 0;
    background-color: rgb(236, 236, 236);
}

.rate {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.rate-title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.rate-panel {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    width: 100%;
    max-width: 600px;
}

.rate-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.status {
    font-size: 14px;
    color: #888;
}

.status.connected {
    color: #4ade80;
}

.btn {
    background: #FF9D43;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.btn:hover {
    background: #e88a35;
}

.btn:disabled {
    background: #555;
    cursor: not-allowed;
}

.values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.card {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.card-value {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.card-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 4px;
}

.card-unit {
    font-size: 12px;
    color: #9ca3af;
}

.card.full-width {
    grid-column: span 2;
}

.card.full-width .card-value {
    color: #FF9D43;
}

.info {
    margin-top: 20px;
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 16px;
    font-size: 14px;
    border: 1px solid #e5e7eb;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #6b7280;
}

.info-value {
    color: #333;
    font-weight: 500;
}

.log {
    margin-top: 16px;
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}
.hidden-number {
	color: transparent !important;
	background: transparent !important;
	transition: color 0.3s ease !important;
	cursor: default;
	cursor: pointer !important;  /* 添加手型光标 */

}

.hidden-number:hover {
	/* 根据你的背景颜色调整这里的文字颜色 */
	/* 如果背景是深色，可以用浅色文字 */
	color: #f0f0f0 !important;
}


.remarks {
    display: flex;
    /* 使用 flexbox */
    flex-direction: column;
    /* 垂直排列子元素 */
    align-items: center;
    /* 水平居中子元素 */
    margin-top: 100px;
}
