56 lines
913 B
CSS
56 lines
913 B
CSS
.nfc-container {
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding-top: 80px;
|
|
padding-left: 32px;
|
|
padding-right: 32px;
|
|
padding-bottom: 32px;
|
|
background-color: #f5f5f5;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.nfc-icon {
|
|
width: 120px;
|
|
height: 120px;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.nfc-status {
|
|
font-size: 18px;
|
|
color: #333;
|
|
margin-bottom: 16px;
|
|
text-align: center;
|
|
}
|
|
|
|
.nfc-result {
|
|
width: 100%;
|
|
padding: 24px;
|
|
background-color: #fff;
|
|
border-radius: 12px;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.nfc-result-label {
|
|
font-size: 14px;
|
|
color: #666;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.nfc-result-content {
|
|
font-size: 14px;
|
|
color: #333;
|
|
word-break: break-all;
|
|
line-height: 1.6;
|
|
white-space: pre-wrap;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.nfc-placeholder {
|
|
font-size: 14px;
|
|
color: #999;
|
|
text-align: center;
|
|
} |