book-min/miniprogram/pages/index/index.wxss

78 lines
1.0 KiB
Plaintext
Raw Permalink Normal View History

2024-12-18 16:15:08 +08:00
/**index.wxss**/
page {
2024-12-18 17:43:00 +08:00
background: #f7f8fa;
2024-12-18 16:15:08 +08:00
}
.container {
2024-12-18 17:43:00 +08:00
padding: 0 0 100rpx;
2024-12-18 16:15:08 +08:00
}
2024-12-18 17:43:00 +08:00
/* 顶部标题 */
2024-12-18 16:15:08 +08:00
.header {
padding: 20rpx 30rpx;
background: #fff;
}
.title {
2024-12-18 17:43:00 +08:00
font-size: 34rpx;
2024-12-18 16:15:08 +08:00
font-weight: bold;
color: #333;
}
2024-12-18 17:43:00 +08:00
/* 书籍列表 */
2024-12-18 16:15:08 +08:00
.book-list {
2024-12-18 17:43:00 +08:00
padding: 20rpx;
2024-12-18 16:15:08 +08:00
}
.book-item {
display: flex;
padding: 20rpx;
background: #fff;
border-radius: 12rpx;
2024-12-18 17:43:00 +08:00
margin-bottom: 20rpx;
2024-12-18 16:15:08 +08:00
}
2024-12-18 17:43:00 +08:00
.book-cover {
width: 120rpx;
height: 160rpx;
border-radius: 8rpx;
2024-12-18 16:15:08 +08:00
margin-right: 20rpx;
}
.book-info {
flex: 1;
}
.book-title {
2024-12-18 17:43:00 +08:00
font-size: 30rpx;
font-weight: 500;
2024-12-18 16:15:08 +08:00
color: #333;
2024-12-18 17:43:00 +08:00
margin-bottom: 8rpx;
display: block;
2024-12-18 16:15:08 +08:00
}
.book-author {
font-size: 26rpx;
color: #666;
}
2024-12-18 17:43:00 +08:00
/* 添加按钮 */
.add-btn {
position: fixed;
right: 40rpx;
bottom: 40rpx;
width: 100rpx;
height: 100rpx;
background: #1989fa;
border-radius: 50%;
2024-12-18 16:15:08 +08:00
display: flex;
align-items: center;
2024-12-18 17:43:00 +08:00
justify-content: center;
box-shadow: 0 4rpx 16rpx rgba(25, 137, 250, 0.3);
2024-12-18 16:15:08 +08:00
}
2024-12-18 17:43:00 +08:00
.add-icon {
color: #fff;
font-size: 60rpx;
2024-12-18 16:15:08 +08:00
}