﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', '微软雅黑', 'PingFang SC', sans-serif;
}

/* Banner wrapper — dark navy is the "right zone" background */
.eb5-banner {
    width: 100%;
    background: #F7F7F7;
    display: flex;
    align-items: stretch;
    min-height: 246px;
    overflow: hidden;
    margin-top: 40px;
    justify-content:space-between
}

/* ── LEFT SECTION (icon + title + desc) ──
   Slightly lighter navy, clipped into a right-pointing pentagon.
   clip-path creates the arrow; padding-right keeps content
   clear of the clipped area.                                    */
.b-left {
    width: 55%;
    display: flex;
    align-items: center;
    background: #173150;
    clip-path: polygon(0 0, calc(100% - 52px) 0, 100% 50%, calc(100% - 52px) 100%, 0 100%);
    padding-right: 58px;
    max-height:250px;
}

/* Icon circle — outlined style, NOT filled red */
.b-icon-wrap {
    padding: 16px 14px 16px 24px;
    flex-shrink: 0;
}

.b-icon-circle {
    width: 165px;
    height: 165px;
    border-radius: 50%;
    background: #12274e;
    border: 2.5px solid rgba(120, 170, 220, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left:26px;
}

/* Title + description */
.b-content {
    flex: 1;
    padding: 16px 0;
    margin-left:30px;
}

/* White title — NO orange, NO border */
.b-title {
    display: block;
    color: #ffffff;
    font-size: 3vw;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.b-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 26px;
    line-height: 1.8;
}

/* ── RIGHT SECTION (city + investment) ── */
.b-invest {
    display: flex;
    align-items: center;
    padding: 16px 28px;
    gap: 14px;
    flex-shrink: 0;
}

.b-city-circle {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    border: 2px solid #C9C7C7;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.b-invest-info {
    display: flex;
    flex-direction: column;
}

.b-invest-label {
    color: #3F3F3F;
    font-size: 26px;
    margin-bottom: 5px;
}

/* Amount in RED — matches button colour */
.b-invest-amt {
    color: #B61923;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ── CTA BUTTON — taller & wider than before ── */

.b-right {
    text-align:center;
    display: flex;
    justify-content:center;
    align-items:center;
}

.b-cta {
    background: #B61923;
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 30px 52px;
    flex-shrink: 0;
    font-size: 27px;
    font-weight: 400;
    font-family: inherit;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background 0.2s;
    border-radius:8px;
}

    .b-cta:hover, .b-cta:active {
        background: #a51a1a;
        color: #fff;
        text-decoration: none;
    }
.b-end {
    width:100px;
}

.card {
    background: #F7F7F7;
    width: 100%;
    overflow: hidden;
    display: flex;
    padding: 20px
}
/* ============ LEFT PANEL ============ */
.left {
    flex: 1;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.left-top {
}

.left-title {
    font-size: 40px;
    font-weight: 700;
    color: #0D2B51;
    line-height: 1;
    margin-bottom: 14px;
}

.left-line {
    display: inline-block;
    width: 30px;
    background-color: #B61A25;
    height:3px;
}

.left-desc {
    margin-top:15px;
    font-size: 20px;
    color: #0D2A52;
    line-height: 1.25;
}

/* Illustration */
.left-illus {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Bottom info bar */
.left-bar {
    background: #0b1c38;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top:20px;
    border-radius:6px;
}

.star-ring {
    width: 38px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bar-texts {
    display: flex;
    flex-direction: column;
}

.bar-name {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 2px;
}

.bar-sub {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

/* ============ RIGHT PANEL (FORM) ============ */
.right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.field {
    margin-bottom: 18px;
}

.field-label {
    display: block;
    font-size: 13.5px;
    color: #0D2A52;
    font-weight: 400;
    margin-bottom: 7px;
}

    .field-label .opt {
        color: #bbb;
        font-weight: 400;
    }

/* Single-line input */
.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    pointer-events: none;
    z-index: 1;
}

.f-input {
    width: 100%;
    height: 44px !important;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 0 14px 0 38px;
    font-size: 13.5px;
    color: #333;
    font-family: inherit;
    outline: none;
    background: #fff;
    transition: border-color 0.2s;
}

    .f-input:focus {
        border-color: #0b1c38;
    }

    .f-input::placeholder {
        color: #c8c8c8;
    }

/* Textarea */
.textarea-wrap {
    position: relative;
}

.textarea-icon {
    position: absolute;
    left: 12px;
    top: 13px;
    display: flex;
    pointer-events: none;
    z-index: 1;
}

.f-textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 12px 14px 12px 38px;
    font-size: 13.5px;
    color: #333;
    font-family: inherit;
    outline: none;
    resize: none;
    background: #fff;
    transition: border-color 0.2s;
    line-height: 1.6;
}

    .f-textarea:focus {
        border-color: #0b1c38;
    }

    .f-textarea::placeholder {
        color: #c8c8c8;
    }

/* Submit */
.submit-btn {
    width: 100%;
    height: 50px;
    background: #c0392b;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: 3px;
    margin-top: 4px;
    margin-bottom: 14px;
    transition: background 0.2s;
}

    .submit-btn:hover {
        background: #a83226;
    }

/* Disclaimer */
.disclaimer {
    font-size: 16px;
    color: #0D2A52;
    line-height: 1.25;
    text-align: center;
}

@media (max-width: 1200px) {
    .eb5-banner {
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .b-left {
        width: 100%;
        display: flex;
        align-items: center;
        background: #173150;
        clip-path: none;
        max-height: 250px;
    }
    .b-title {
        font-size:16px;
    }
    .b-desc {
        font-size: 12px;
    }
    .b-icon-circle {
        width: 0px;
        height: 0px;
    }
}