:root {
    --primary-yellow: #f9c116;
    --border-gray: #e0e0e0;
    --text-dark: #333;
}

div#recharge-error {
    display: none;
    align-items: center;
    justify-content: center;
    height: 98vh;
    background-color: var(--color-white);
}

.alert-page {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 45px;
}

img.recharge-alert {
    width: 30%;
}

.alert-body {
    font-weight: var(--font-weight-medium);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.alert-body .help {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--color-gray-500);
    margin: 0;
}

.alert-body .help span {
    color: var(--color-primary-lighter);
}


/* 基础文本样式 */
.alert-text {
    color: #333;
    line-height: 1.6;
}

/* 强调文本样式 */
.alert-highlight {
    color: #fa8c16;
    font-weight: 600;
    padding: 0 2px;
}

.alert-warning {
    color: #f5222d;
    font-weight: 600;
}

.alert-primary {
    color: #1890ff;
    font-weight: 600;
}

.alert-success {
    color: #52c41a;
}

/* 卡片和容器样式 */
.alert-card {
    background: #fafafa;
    border-radius: 8px;
    padding: 16px;
    margin: 12px 0;
}

.alert-card-primary {
    background: #e6f7ff;
    border-left: 4px solid #1890ff;
}

.alert-card-success {
    background: #f6ffed;
    border-left: 4px solid #52c41a;
}

.alert-card-warning {
    background: #fff7e6;
    border-left: 4px solid #fa8c16;
}

/* 列表和选项样式 */
.alert-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: column;
    gap: 12px;
}

.alert-list-item {
    padding: 0;
    margin: 0;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
}

.alert-list-item-number {
    background: #666;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 10px;
    flex-shrink: 0;
}

.alert-list-item-primary .alert-list-item-number {
    background: #1890ff;
}

.alert-list-item-content {
    flex: 1;
}

.alert-list-item-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.alert-list-item-desc {
    font-size: 12px;
    color: #666;
}

/* 标题样式 */
.alert-section-title {
    font-weight: 600;
    color: #333;
    margin: 16px 0 12px 0;
    display: flex;
    align-items: center;
}

.alert-section-title-icon {
    background: #1890ff;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 8px;
}

/* 提示信息样式 */
.alert-tip {
    padding: 12px;
    border-radius: 6px;
    font-size: 12px;
    margin-top: 16px;
}

.alert-tip-icon {
    margin-right: 8px;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .alert-card {
        padding: 12px;
    }

    .alert-list-item {
        padding: 10px;
    }
}
