feat: 初始化

This commit is contained in:
George
2025-07-07 15:55:44 +08:00
commit 9b7bfcfe5a
969 changed files with 123036 additions and 0 deletions

View File

@ -0,0 +1,33 @@
.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 {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
row-gap: 12px;
height: 100%;
.addText {
display: flex;
align-items: center;
column-gap: 8px;
}
}
}