133 lines
2.0 KiB
Plaintext
133 lines
2.0 KiB
Plaintext
/*
|
|
* 手太欠
|
|
* 愿这世界都如故事里一样 美好而动人~
|
|
*/
|
|
|
|
.chapterTop {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 250rpx;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.chapterTop::after {
|
|
position: absolute;
|
|
content: '';
|
|
left: 0;
|
|
top: 0;
|
|
background-color: rgba(0, 0, 0, .6);
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 1;
|
|
}
|
|
|
|
.chapterTop-back {
|
|
position: absolute;
|
|
width: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
height: 100%;
|
|
filter: blur(15rpx);
|
|
-webkit-filter: blur(15rpx);
|
|
z-index: 0;
|
|
}
|
|
|
|
.chapterTop-cont {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 2;
|
|
padding: 40rpx;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
}
|
|
|
|
.chapterTop-img {
|
|
border: 4rpx solid #fff;
|
|
width: 160rpx;
|
|
height: 160rpx;
|
|
}
|
|
|
|
.chapterTop-img image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.chapterTop-text {
|
|
color: #fff;
|
|
width: calc(100% - 220rpx);
|
|
margin-left: 40rpx;
|
|
}
|
|
|
|
.chapterTop-name {
|
|
font-size: 34rpx;
|
|
font-weight: 600;
|
|
margin-bottom: 50rpx;
|
|
}
|
|
|
|
.chapterTop-more {
|
|
display: flex;
|
|
font-size: 30rpx;
|
|
line-height: 36rpx;
|
|
}
|
|
|
|
.chapterTop-more image {
|
|
width: 36rpx;
|
|
height: 36rpx;
|
|
}
|
|
|
|
.chapterTop-more text {
|
|
flex: 1;
|
|
}
|
|
|
|
/* 章节列表 */
|
|
.chapterTitle {
|
|
padding: 30rpx 20rpx;
|
|
box-sizing: border-box;
|
|
font-weight: 600;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.chapterList {
|
|
padding: 30rpx;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
height: 150rpx;
|
|
width: 100%;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.chapterList-icon {
|
|
width: 46rpx;
|
|
height: 46rpx;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.chapterList-cont {
|
|
position: absolute;
|
|
width: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
padding: 30rpx 90rpx 30rpx 110rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.chapterList-name {
|
|
color: #5e6ffb;
|
|
}
|
|
|
|
.chapterList-tips {
|
|
color: #999999;
|
|
margin: 10rpx 0;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.chapterList-more {
|
|
position: absolute;
|
|
right: 30rpx;
|
|
top: 60rpx;
|
|
width: 38rpx;
|
|
height: 38rpx;
|
|
opacity: .4;
|
|
} |