.elementor-2776 .elementor-element.elementor-element-2e4383e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-d8036a4 *//* 外层容器 */
.bm-payment-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
    color: #333;
    padding: 20px 0;
}

/* 头部文本 */
.bm-payment-header {
    text-align: center;
    margin-bottom: 50px;
}
.bm-payment-header h2 {
    color: #003366; /* 匹配你网站的主题深蓝色 */
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}
.bm-payment-header p {
    color: #666;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 支付卡片网格布局 */
.bm-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* 单个卡片样式 */
.bm-payment-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.bm-payment-card:hover {
    border-color: #003366;
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.08);
    transform: translateY(-3px);
}

/* 图标样式 */
.bm-card-icon {
    width: 48px;
    height: 48px;
    background: #f0f5fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.bm-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #003366;
}

/* 卡片内排版 */
.bm-payment-card h3 {
    color: #222;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 600;
}
.bm-payment-card p {
    color: #666;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.bm-payment-card ul {
    padding-left: 20px;
    color: #555;
    font-size: 14px;
}
.bm-payment-card ul li {
    margin-bottom: 8px;
}

/* 信用卡标志文字替代 */
.bm-card-logos {
    font-size: 13px;
    color: #888;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* 电汇高亮卡片 (B2B专属) */
.bm-featured-card {
    border: 2px solid #003366;
    position: relative;
}
.bm-bank-info {
    background: #f8fafc;
    border-left: 4px solid #003366;
    padding: 15px;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin: 15px 0;
    border-radius: 0 4px 4px 0;
}
.bm-note {
    font-size: 13px !important;
    color: #888 !important;
    font-style: italic;
    margin-bottom: 0 !important;
}

/* 底部安全横幅 */
.bm-security-banner {
    background: #003366;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffffff;
}
.bm-security-banner svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.bm-security-text h4 {
    color: #ffffff;
    font-size: 18px;
    margin: 0 0 8px 0;
}
.bm-security-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* 手机端响应式适配 */
@media (max-width: 768px) {
    .bm-payment-grid {
        grid-template-columns: 1fr; /* 手机端变成单列 */
    }
    .bm-security-banner {
        flex-direction: column;
        text-align: center;
    }
}/* End custom CSS */