first commit

This commit is contained in:
duanshuwen
2026-05-25 23:40:50 +08:00
commit 30b9100b4a
569 changed files with 75942 additions and 0 deletions

View File

@@ -0,0 +1,66 @@
.privacy {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
z-index: 9999;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: end;
}
.title {
font-size: 20px;
font-weight: bold;
color: #000;
padding-bottom: 20rpx;
}
.content {
position: relative;
background-color: #fff;
padding: 15px;
border-radius: 20px 20px 0 0;
}
.des {
line-height: 21px;
}
.link {
color: #007aff;
}
.btns {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0 40px;
}
.reject,
.agree {
border-radius: $uni-border-radius-50px;
width: 45%;
border: none;
font-size: 18px;
margin: 0;
&::after {
border: none;
}
}
.reject {
color: #000;
background-color: #f5f5f5;
border-radius: $uni-border-radius-50px;
}
.agree {
color: #fff;
background-color: #007aff;
}