.bankCardWrapper { display: flex; flex-direction: column; height: 174px; box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.15); .decoration { display: flex; width: 100%; height: 5px; flex-shrink: 0; .left { flex: 0 1 95px; background-color: #0f3675; } .right { flex: 1; background-color: #29bbe4; } } .bankCardContent { padding: 12px 14px 20px 12px; .cardTitle { display: flex; justify-content: space-between; align-items: center; .bankName { height: 28px; font-size: 20px; font-weight: 700; line-height: 28px; } .bankStatusWrapper { display: flex; align-items: center; column-gap: 8px; font-size: 12px; .bankStatus { display: flex; justify-content: center; align-items: center; padding: 0px 7px; min-width: 44px; height: 22px; border-radius: 2px; font-size: 10px; } .bankType { color: #333333; font-size: 18px; font-weight: 700; } .toVerifyBtn { color: #29bbe4; } } .controls { display: flex; column-gap: 8px; .controlsIcon { width: 26px; height: 26px; background: #F7F8FA; display: flex; justify-content: center; align-items: center; } } } .divider { flex-shrink: 0; height: 1px; background-color: #e5e5e5; margin: 12px 0; } .bankCardDetails { display: flex; flex-direction: column; row-gap: 6px; width: 100%; .detailItem { display: flex; align-items: center; column-gap: 11px; height: 17px; color: #666666; font-size: 14px; line-height: 17px; .point { width: 4px; height: 4px; border-radius: 10px; background-color: #0f3675; flex-shrink: 0; } &>text { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } } } } }