| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- @charset "UTF-8";
- /**
- * 主题色配置
- * 默认在 uni.scss 全局引入:@import '@/theme.scss';
- * <script> 下使用主题变量:import x from '@/theme.scss';
- */
- .page {
- background-color: #f8f8f8;
- font-family: PingFangSC;
- }
- .safeAreaPad {
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- box-sizing: content-box;
- }
- .scan-book-list {
- padding: 20rpx;
- }
- .scan-book-list .tip-text {
- font-family: Source Han Sans CN;
- font-weight: 400;
- font-size: 24rpx;
- color: #FF8A4B;
- line-height: 36rpx;
- }
- .scan-book-list .link-wrap {
- gap: 20rpx;
- box-sizing: border-box;
- margin-top: 20rpx;
- }
- .scan-book-list .link-wrap .link-btn {
- height: 80rpx;
- background: #ffffff;
- border-radius: 10rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-family: PingFang SC;
- font-weight: 500;
- font-size: 32rpx;
- color: #666666;
- }
|