12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /* parents//pages/book_classification/book_classification.wxss */
- @import '../../../templates/nodata/nodata.wxss';
- @import '../../../templates/loading/loading.wxss';
- page{
- background: #fff;
- }
- .li{
- padding: 10rpx 40rpx;
- }
- .li-book{
- color: #41414C;
- }
- .li-book-title{
- font-size: 36rpx;
- margin: 48rpx 0;
- font-weight:800;
- }
- .li-book-items{
- margin: 0;
- text-align: center;
- }
- .li-book-item{
- margin: 15rpx 10rpx 15rpx 10rpx;
- width:314rpx;
- height:88rpx;
- background:rgba(246,245,251,1);
- border-radius:14rpx;
- display: inline-block;
- color: #41414C;
- font-size: 32rpx;
- text-align: center;
- line-height: 88rpx;
- font-weight: 500
- }
- .li-theme{
- padding: 10rpx 0 40rpx 0;
- display: flex;
- white-space: nowrap;
- font-weight:500;
- }
- .li-theme-item{
- background:rgba(246,245,251,1);
- border-radius:29rpx;
- padding: 12rpx 40rpx;
- text-align: center;
- color: #41414C;
- font-size: 28rpx;
- border:1rpx solid transparent;
- margin-right: 30rpx;
- }
- .li-theme-active{
- background:rgba(255,255,255,1);
- border:1rpx solid rgba(79,187,254,1);
- color: #4FBBFE;
- }
|