book_classification.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* parents//pages/book_classification/book_classification.wxss */
  2. @import '../../../templates/nodata/nodata.wxss';
  3. @import '../../../templates/loading/loading.wxss';
  4. page{
  5. background: #fff;
  6. }
  7. .li{
  8. padding: 10rpx 40rpx;
  9. }
  10. .li-book{
  11. color: #41414C;
  12. }
  13. .li-book-title{
  14. font-size: 36rpx;
  15. margin: 48rpx 0;
  16. font-weight:800;
  17. }
  18. .li-book-items{
  19. margin: 0;
  20. text-align: center;
  21. }
  22. .li-book-item{
  23. margin: 15rpx 10rpx 15rpx 10rpx;
  24. width:314rpx;
  25. height:88rpx;
  26. background:rgba(246,245,251,1);
  27. border-radius:14rpx;
  28. display: inline-block;
  29. color: #41414C;
  30. font-size: 32rpx;
  31. text-align: center;
  32. line-height: 88rpx;
  33. font-weight: 500
  34. }
  35. .li-theme{
  36. padding: 10rpx 0 40rpx 0;
  37. display: flex;
  38. white-space: nowrap;
  39. font-weight:500;
  40. }
  41. .li-theme-item{
  42. background:rgba(246,245,251,1);
  43. border-radius:29rpx;
  44. padding: 12rpx 40rpx;
  45. text-align: center;
  46. color: #41414C;
  47. font-size: 28rpx;
  48. border:1rpx solid transparent;
  49. margin-right: 30rpx;
  50. }
  51. .li-theme-active{
  52. background:rgba(255,255,255,1);
  53. border:1rpx solid rgba(79,187,254,1);
  54. color: #4FBBFE;
  55. }