You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.0 KiB

.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #f5f5f5;
}
.qrcode-container {
width: 90%;
max-width: 400rpx;
background-color: #ffffff;
border-radius: 16rpx;
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
padding: 40rpx;
display: flex;
flex-direction: column;
align-items: center;
}
.qrcode-title {
font-size: 32rpx;
font-weight: bold;
color: #333333;
margin-bottom: 40rpx;
}
.qrcode-content {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.qrcode-image {
width: 300rpx;
height: 300rpx;
display: flex;
align-items: center;
justify-content: center;
}
.qrcode-image image {
width: 100%;
height: 100%;
}
.qrcode-placeholder {
width: 300rpx;
height: 300rpx;
display: flex;
align-items: center;
justify-content: center;
background-color: #f0f0f0;
border-radius: 8rpx;
}
.placeholder-text {
font-size: 24rpx;
color: #999999;
text-align: center;
}