| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- @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;
- }
- .book-item {
- background: #FFFFFF;
- padding: 20rpx;
- margin-top: 20rpx;
- border-radius: 10rpx;
- }
- .book-item .tag-text {
- font-family: Source Han Sans CN;
- font-weight: 400;
- font-size: 24rpx;
- color: #FFFFFF;
- }
- .book-item .tzs {
- width: 91rpx;
- height: 30rpx;
- background: linear-gradient(263deg, #98E05F, #0DE3AC);
- border-radius: 2rpx;
- padding: 4rpx 10rpx;
- margin-right: 10rpx;
- }
- .book-item .kmdb {
- width: 117rpx;
- height: 30rpx;
- background: linear-gradient(263deg, #F7CB6B, #FBA980);
- border-radius: 2rpx;
- padding: 4rpx 10rpx;
- margin-right: 10rpx;
- }
- .book-item .book-info {
- display: flex;
- position: relative;
- }
- .book-item .book-info .book-cover {
- width: 140rpx;
- height: 196rpx;
- border-radius: 8rpx;
- }
- .book-item .book-info .book-detail {
- flex: 1;
- margin-left: 20rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .book-item .book-info .book-detail :v-deep .u-number-input {
- background: #F9F9F9 !important;
- border-radius: 6rpx;
- }
- .book-item .book-info .book-detail .book-title {
- max-width: 400rpx;
- font-size: 28rpx;
- color: #333;
- line-height: 1.4;
- margin-bottom: 20rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- font-family: Source Han Sans CN;
- font-weight: 400;
- }
- .book-item .book-info .book-detail .book-price {
- font-family: Source Han Sans CN;
- font-weight: 400;
- font-size: 24rpx;
- color: #999999;
- }
- .book-item .book-info .delete-btn {
- position: absolute;
- right: 0;
- top: -10rpx;
- padding: 10rpx;
- }
|