| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- .container.data-v-a14ffe9d {
- width: 100%;
- height: 100vh;
- background-color: #FFFFFF;
- display: flex;
- flex-direction: column;
- }
-
- /* 顶部导航栏 */
- .header.data-v-a14ffe9d {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 20rpx 30rpx;
- background-color: #FFFFFF;
- position: relative;
- }
- .back-btn.data-v-a14ffe9d {
- width: 60rpx;
- height: 60rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .back-icon.data-v-a14ffe9d {
- font-size: 40rpx;
- color: #000000;
- font-weight: bold;
- }
- .header-title.data-v-a14ffe9d {
- font-size: 36rpx;
- font-weight: bold;
- color: #000000;
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- }
- .placeholder.data-v-a14ffe9d {
- width: 60rpx;
- }
-
- /* 分隔线 */
- .divider.data-v-a14ffe9d {
- width: 100%;
- height: 1rpx;
- background-color: #E5E5E5;
- }
-
- /* 滚动内容 */
- .scroll-content.data-v-a14ffe9d {
- flex: 1;
- width: 100%;
- height: 0;
- overflow: hidden;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- }
-
- /* 书籍列表 */
- .book-list.data-v-a14ffe9d {
- display: flex;
- flex-direction: column;
- }
-
- /* 书籍项 */
- .book-item.data-v-a14ffe9d {
- display: flex;
- flex-direction: row;
- align-items: center;
- padding: 20rpx 0;
- border-bottom: 1rpx solid #F0F0F0;
- }
- .book-item.data-v-a14ffe9d:last-child {
- border-bottom: none;
- }
-
- /* 书籍封面 */
- .book-cover.data-v-a14ffe9d {
- width: 120rpx;
- height: 160rpx;
- border-radius: 8rpx;
- margin-right: 20rpx;
- flex-shrink: 0;
- background-color: #E0E0E0;
- }
-
- /* 书籍信息 */
- .book-info.data-v-a14ffe9d {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- min-width: 0;
- }
- .book-title.data-v-a14ffe9d {
- font-size: 32rpx;
- font-weight: bold;
- color: #000000;
- margin-bottom: 12rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .book-author.data-v-a14ffe9d {
- font-size: 26rpx;
- color: #999999;
- margin-bottom: 12rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .book-desc.data-v-a14ffe9d {
- font-size: 24rpx;
- color: #666666;
- line-height: 1.5;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
-
- /* 加载中 */
- .loading-container.data-v-a14ffe9d {
- width: 100%;
- height: 400rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .loading-text.data-v-a14ffe9d {
- font-size: 28rpx;
- color: #999999;
- }
-
- /* 空状态 */
- .empty-container.data-v-a14ffe9d {
- width: 100%;
- height: 400rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .empty-text.data-v-a14ffe9d {
- font-size: 28rpx;
- color: #999999;
- }
-
- /* 加载更多 */
- .load-more.data-v-a14ffe9d {
- width: 100%;
- height: 80rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 20rpx;
- margin-bottom: 40rpx;
- }
- .load-more-text.data-v-a14ffe9d {
- font-size: 28rpx;
- color: #999999;
- }
|