| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- @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-history {
- min-height: 100vh;
- }
- .scan-history .checkbox-item .u-checkbox__label {
- margin: 0 !important;
- }
- .scan-history .header {
- position: -webkit-sticky;
- position: sticky;
- top: 0;
- left: 0;
- right: 0;
- z-index: 100;
- height: 88rpx;
- background: #FFFFFF;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 30rpx;
- font-size: 28rpx;
- border-bottom: 1rpx solid #EEEEEE;
- }
- .scan-history .header .left {
- display: flex;
- align-items: center;
- }
- .scan-history .header .left .select-text {
- margin-left: 12rpx;
- color: #333333;
- }
- .scan-history .header .right text {
- color: #333333;
- }
- .scan-history .header .right text.delete-btn {
- color: #FF5B5B;
- }
- .scan-history .scroll-view {
- height: calc(100vh - 88rpx);
- }
- .scan-history .book-list {
- padding: 20rpx;
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-start;
- gap: 20rpx;
- }
- .scan-history .book-list .load-more {
- width: 100%;
- display: flex;
- color: #999999;
- font-size: 24rpx;
- padding: 30rpx 0;
- justify-content: center;
- }
|