68 lines
1.2 KiB
Plaintext
68 lines
1.2 KiB
Plaintext
.privacy-mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
z-index: 9999;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.privacy-dialog {
|
|
width: 600rpx;
|
|
background: #fff;
|
|
border-radius: 24rpx;
|
|
padding: 40rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.privacy-title {
|
|
font-weight: bold;
|
|
font-size: 34rpx;
|
|
margin-bottom: 30rpx;
|
|
text-align: center;
|
|
color: #333;
|
|
}
|
|
|
|
.privacy-content {
|
|
font-size: 28rpx;
|
|
color: #666;
|
|
line-height: 1.6;
|
|
margin-bottom: 50rpx;
|
|
text-align: justify;
|
|
}
|
|
|
|
.privacy-link {
|
|
color: #11616B; /* Color 01 */
|
|
font-weight: 500;
|
|
}
|
|
|
|
.privacy-btns {
|
|
display: flex;
|
|
gap: 30rpx;
|
|
}
|
|
|
|
.btn-refuse {
|
|
flex: 1;
|
|
background: #F2F2F2 !important;
|
|
color: #666 !important;
|
|
font-size: 30rpx !important;
|
|
border-radius: 12rpx !important;
|
|
height: 80rpx !important;
|
|
line-height: 80rpx !important;
|
|
border: none !important;
|
|
}
|
|
|
|
.btn-agree {
|
|
flex: 1;
|
|
background: #11616B !important; /* Color 01 */
|
|
color: #fff !important;
|
|
font-size: 30rpx !important;
|
|
border-radius: 12rpx !important;
|
|
height: 80rpx !important;
|
|
line-height: 80rpx !important;
|
|
border: none !important;
|
|
} |