86 lines
1.5 KiB
SCSS
86 lines
1.5 KiB
SCSS
.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 12px 20px 34px;
|
|
.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;
|
|
}
|
|
.toVerifyBtn {
|
|
color: #29bbe4;
|
|
}
|
|
}
|
|
}
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|