NTSP弹窗

This commit is contained in:
2025-09-18 12:57:43 +08:00
parent b2872a5529
commit 219a3ac151
6 changed files with 163 additions and 50 deletions

View File

@@ -1,17 +1,17 @@
.picker-container {
:global{
.nut-popup-round{
position: relative!important;
:global {
.nut-popup-round {
position: relative !important;
.nut-picker-control {
display: none!important;
display: none !important;
}
.nut-picker{
&::after{
content: '';
.nut-picker {
&::after {
content: "";
position: absolute;
top: 50%;
left: 16px;
right: 16px!important;
right: 16px !important;
width: calc(100% - 32px);
height: 48px;
background: rgba(22, 24, 35, 0.05);
@@ -23,3 +23,64 @@
}
}
}
.examination-btn {
padding: 8px 16px;
margin: 16px;
border-radius: 12px;
border: 1px solid rgba(0, 0, 0, 0.08);
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
background: linear-gradient(to bottom, #ccfff2, #f7fffd);
.text-container {
.text-title {
font-family: Noto Sans SC;
font-weight: 900;
color: #2a4d44;
font-size: 16px;
margin-bottom: 4px;
Text {
color: #00e5ad;
}
}
.text-btn {
font-size: 12px;
color: #5ca693;
display: flex;
align-items: center;
gap: 6px;
.icon-arrow {
width: 12px;
height: 12px;
}
}
}
.img-container {
display: flex;
.img-box {
width: 47px;
height: 47px;
border: 3px solid #fff;
border-radius: 50%;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
Image {
width: 100%;
height: 100%;
}
&:nth-child(2) {
border-radius: 8px;
background-color: #ccfff2;
transform: scale(0.88) rotate(15deg) translateX(-10px);
Image {
width: 66%;
height: 66%;
}
}
}
}
}