67 lines
877 B
SCSS
67 lines
877 B
SCSS
.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: 50px;
|
|
width: 45%;
|
|
border: none;
|
|
font-size: 18px;
|
|
margin: 0;
|
|
|
|
&::after {
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
.reject {
|
|
color: #000;
|
|
background-color: #f5f5f5;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.agree {
|
|
color: #fff;
|
|
background-color: #007aff;
|
|
}
|