385 lines
8.7 KiB
SCSS
385 lines
8.7 KiB
SCSS
![]() |
.container {
|
||
|
padding: 11px 14px 10px 18px;
|
||
|
.search {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
gap: 16rpx;
|
||
|
.searchInput {
|
||
|
height: 34px;
|
||
|
background: rgba(247, 248, 250, 1);
|
||
|
border: none;
|
||
|
flex-grow: 1;
|
||
|
padding: 0 18rpx;
|
||
|
font-size: 14px;
|
||
|
font-weight: 400;
|
||
|
}
|
||
|
.btn {
|
||
|
padding-right: 36rpx;
|
||
|
padding-left: 38rpx;
|
||
|
height: 34px;
|
||
|
min-width: 168rpx;
|
||
|
.filterText {
|
||
|
font-size: 14px;
|
||
|
font-weight: 400;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.search2 {
|
||
|
padding-top: 8px;
|
||
|
//display: flex;
|
||
|
justify-content: left;
|
||
|
//gap: 16rpx;
|
||
|
.btn {
|
||
|
width: 242rpx;
|
||
|
height: 34px;
|
||
|
background: rgba(247, 248, 250, 1);
|
||
|
margin: 0;
|
||
|
.filterText {
|
||
|
font-size: 14px;
|
||
|
font-weight: 400;
|
||
|
color: rgba(41, 187, 228, 1);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.item {
|
||
|
position: relative;
|
||
|
background: rgba(255, 255, 255, 1);
|
||
|
box-shadow: -1px 0px 5px 1px rgba(0, 0, 0, 0.15);
|
||
|
margin: 16px 4px 0px 4px;
|
||
|
.top {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
.itemTitle {
|
||
|
width: 122px;
|
||
|
height: 30px;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
position: relative;
|
||
|
.title-bg {
|
||
|
height: 30px;
|
||
|
//background: linear-gradient(128.01deg, rgba(41, 193, 229, 0.4) 0%, rgba(182, 227, 240, 0.4) 100%);
|
||
|
//box-shadow:inset -1px -1px 4px rgba(39, 65, 125, 0.43);
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
color: rgba(39, 65, 125, 1);
|
||
|
font-size: 18px;
|
||
|
font-weight: 500;
|
||
|
padding-right: 50px;
|
||
|
margin-right: 5px;
|
||
|
overflow: hidden;
|
||
|
&::after {
|
||
|
content: "";
|
||
|
position: absolute;
|
||
|
top: -1px;
|
||
|
right: 20px;
|
||
|
width: 100%;
|
||
|
height: calc(100% + 2px);
|
||
|
background: linear-gradient(128.01deg, rgba(41, 193, 229, 0.4) 0%, rgba(182, 227, 240, 0.4) 100%);
|
||
|
box-shadow:inset -1px -1px 4px rgba(39, 65, 125, 0.43);
|
||
|
border-radius: 0px 0px 10px 0px;
|
||
|
transform: skewX(-20deg);
|
||
|
}
|
||
|
}
|
||
|
.title-text {
|
||
|
color: rgba(39, 65, 125, 1);
|
||
|
font-size: 18px;
|
||
|
font-weight: 500;
|
||
|
margin-left: 10px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.box {
|
||
|
|
||
|
.row {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
gap: 22px;
|
||
|
margin: 0px 20px 16px 20px;
|
||
|
.column {
|
||
|
width: 30%;
|
||
|
text-align: right;
|
||
|
font-size: 14px;
|
||
|
font-weight: 400;
|
||
|
color: rgba(102, 102, 102, 1);
|
||
|
line-height: 22px;
|
||
|
//word-break:break-all;
|
||
|
}
|
||
|
.value {
|
||
|
width: 70%;
|
||
|
font-size: 16px;
|
||
|
font-weight: 400;
|
||
|
color: rgba(51, 51, 51, 1);
|
||
|
line-height: 24px;
|
||
|
//word-break:break-all;
|
||
|
}
|
||
|
.textarea {
|
||
|
flex: 1;
|
||
|
font-size: 16px;
|
||
|
font-weight: 400;
|
||
|
color: rgba(51, 51, 51, 1);
|
||
|
line-height: 24px;
|
||
|
padding: 10px 17px;
|
||
|
//word-break:break-all;
|
||
|
background: rgba(247, 248, 250, 1);
|
||
|
}
|
||
|
}
|
||
|
.bottomItem {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
gap: 13px;
|
||
|
font-size: 14px;
|
||
|
font-weight: 400;
|
||
|
color: rgba(156, 156, 156, 1);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
.filterRow {
|
||
|
padding: 0 32rpx;
|
||
|
margin-bottom: 16px;
|
||
|
.filterTitle {
|
||
|
font-size: 14px;
|
||
|
font-weight: 400;
|
||
|
height: 21px;
|
||
|
margin-bottom: 8px;
|
||
|
color: rgba(102, 102, 102, 1);
|
||
|
}
|
||
|
.filterInput {
|
||
|
padding: 0 13px;
|
||
|
height: 34px;
|
||
|
background: rgba(247, 248, 250, 1);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.allotRow {
|
||
|
padding: 0 32rpx;
|
||
|
margin-bottom: 16px;
|
||
|
.allotItem {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
gap: 8px;
|
||
|
|
||
|
.searchInput {
|
||
|
height: 34px;
|
||
|
background: rgba(247, 248, 250, 1);
|
||
|
border: none;
|
||
|
flex-grow: 1;
|
||
|
padding: 0 18rpx;
|
||
|
font-size: 14px;
|
||
|
font-weight: 400;
|
||
|
}
|
||
|
.btn {
|
||
|
padding-right: 36rpx;
|
||
|
padding-left: 38rpx;
|
||
|
height: 34px;
|
||
|
min-width: 168rpx;
|
||
|
.filterText {
|
||
|
font-size: 14px;
|
||
|
font-weight: 400;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.userBox {
|
||
|
margin-top: 24px;
|
||
|
max-height: 150px;
|
||
|
overflow: auto;
|
||
|
}
|
||
|
|
||
|
.operateBox {
|
||
|
margin-top: 32px;
|
||
|
display: flex;
|
||
|
gap: 24rpx;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.popup3View {
|
||
|
padding: 44px 16rpx 10px 16rpx;
|
||
|
.filterRow {
|
||
|
padding: 0px;
|
||
|
display: flex;
|
||
|
.filterLabel{
|
||
|
width: 20%;
|
||
|
text-align: right;
|
||
|
font-size: 14px;
|
||
|
font-weight: 400;
|
||
|
color: #666666;
|
||
|
}
|
||
|
.filterValue{
|
||
|
flex: 1;
|
||
|
padding-left: 20px;
|
||
|
font-size: 16px;
|
||
|
font-weight: 400;
|
||
|
color: #333333;
|
||
|
}
|
||
|
}
|
||
|
.row {
|
||
|
margin-bottom: 16px;
|
||
|
.filterLabel {
|
||
|
font-size: 14px;
|
||
|
font-weight: 400;
|
||
|
color: #666666;
|
||
|
margin-bottom: 8px;
|
||
|
}
|
||
|
}
|
||
|
.operateBox {
|
||
|
margin-top: 32px;
|
||
|
display: flex;
|
||
|
gap: 24rpx;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.inTheEnd {
|
||
|
width: 100%;
|
||
|
text-align: center;
|
||
|
margin-top: 16px;
|
||
|
font-size: 12px;
|
||
|
color: #666666;
|
||
|
}
|
||
|
.userDetail {
|
||
|
padding: 42px 16px;
|
||
|
.row {
|
||
|
margin-bottom: 16px;
|
||
|
.column {
|
||
|
color: rgba(102, 102, 102, 1);
|
||
|
font-size: 14px;
|
||
|
font-weight: 400;
|
||
|
margin-bottom: 8px;
|
||
|
}
|
||
|
.value {
|
||
|
color: rgba(51, 51, 51, 1);
|
||
|
font-size: 16px;
|
||
|
font-weight: 500;
|
||
|
width: 100%;
|
||
|
height: 34px;
|
||
|
line-height: 34px;
|
||
|
background: rgba(247, 248, 250, 1);
|
||
|
padding-left: 9px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.BankDetail {
|
||
|
padding-top: 11px;
|
||
|
.bankCardWrapper {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.15);
|
||
|
margin: 20px 16px;
|
||
|
.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;
|
||
|
font-size: 14px;
|
||
|
line-height: 17px;
|
||
|
margin-bottom: 16px;
|
||
|
.point {
|
||
|
width: 30%;
|
||
|
text-align: right;
|
||
|
font-size: 14px;
|
||
|
font-weight: 400;
|
||
|
color: rgba(102, 102, 102, 1);
|
||
|
}
|
||
|
&>text {
|
||
|
color: rgba(51, 51, 51, 1);
|
||
|
font-size: 16px;
|
||
|
font-weight: 400;
|
||
|
overflow: hidden;
|
||
|
white-space: nowrap;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
::v-deep .uni-data-checklist .checklist-group .checklist-box.is--list.is-list-border{
|
||
|
border-top: none;
|
||
|
}
|