| 123456789101112131415161718192021222324252627282930 |
- /* components/novelPlugin/customParagraph/index.wxss */
- .custom-paragraph-container {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- /* padding: 40px 0; */
- box-sizing: border-box;
- }
- .qrcode-box {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .qrcode-image {
- width: 300rpx;
- height: 300rpx;
- border-radius: 10rpx;
- box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
- }
- .qrcode-tip {
- margin-top: 16rpx;
- font-size: 28rpx;
- color: #999999;
- text-align: center;
- }
|