| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- .container.data-v-1e672318 {
- width: 100%;
- height: 100vh;
- background-color: #FFFFFF;
- display: flex;
- flex-direction: column;
- }
-
- /* 顶部导航栏 */
- .header.data-v-1e672318 {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 20rpx 30rpx;
- background-color: #FFFFFF;
- border-bottom: 1rpx solid #E5E5E5;
- }
- .back-btn.data-v-1e672318 {
- width: 60rpx;
- height: 60rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .back-icon.data-v-1e672318 {
- font-size: 40rpx;
- color: #000000;
- font-weight: bold;
- }
- .header-title.data-v-1e672318 {
- font-size: 36rpx;
- font-weight: bold;
- color: #000000;
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- }
- .search-btn.data-v-1e672318 {
- width: 60rpx;
- height: 60rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .search-icon.data-v-1e672318 {
- font-size: 36rpx;
- color: #000000;
- }
-
- /* 书籍列表容器 */
- .book-list-container.data-v-1e672318 {
- flex: 1;
- width: 100%;
- height: 0;
- overflow: hidden;
- background-color: #FFFFFF;
- }
-
- /* 书籍项 */
- .book-item.data-v-1e672318 {
- display: flex;
- padding: 30rpx;
- border-bottom: 1rpx solid #F0F0F0;
- }
- .book-item.data-v-1e672318:last-child {
- border-bottom: none;
- }
-
- /* 书籍封面 */
- .book-cover.data-v-1e672318 {
- width: 160rpx;
- height: 220rpx;
- border-radius: 8rpx;
- margin-right: 24rpx;
- flex-shrink: 0;
- background-color: #F5F5F5;
- }
-
- /* 书籍信息 */
- .book-info.data-v-1e672318 {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- min-width: 0;
- }
- .book-title.data-v-1e672318 {
- font-size: 32rpx;
- font-weight: bold;
- color: #000000;
- margin-bottom: 16rpx;
- line-height: 1.4;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .book-desc.data-v-1e672318 {
- font-size: 28rpx;
- color: #666666;
- line-height: 1.6;
- margin-bottom: 20rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .book-author.data-v-1e672318 {
- font-size: 26rpx;
- color: #999999;
- margin-top: auto;
- }
-
- /* 加载更多 */
- .load-more.data-v-1e672318 {
- width: 100%;
- height: 80rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 20rpx;
- margin-bottom: 40rpx;
- }
- .load-more-text.data-v-1e672318 {
- font-size: 28rpx;
- color: #999999;
- }
|