71 lines
1.1 KiB
Plaintext
71 lines
1.1 KiB
Plaintext
/*
|
|
* 手太欠
|
|
* 愿这世界都如故事里一样 美好而动人~
|
|
*/
|
|
|
|
.classCont {
|
|
margin: 30rpx;
|
|
}
|
|
|
|
.classList {
|
|
background-color: #fff;
|
|
padding: 30rpx;
|
|
box-sizing: border-box;
|
|
box-shadow: 0 0 20rpx rgba(0,0,0,.15);
|
|
border-radius: 20rpx;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
position: relative;
|
|
margin-bottom: 30rpx;
|
|
}
|
|
|
|
.classList-title {
|
|
font-size: 32rpx;
|
|
font-weight: 600;
|
|
position: relative;
|
|
height: 50rpx;
|
|
}
|
|
|
|
.classList-title text {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
.classList-title::after {
|
|
position: absolute;
|
|
content: '';
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 80rpx;
|
|
height: 12rpx;
|
|
background: #f9dd58;
|
|
}
|
|
|
|
.classList-cont {
|
|
width: calc(100% - 200rpx);
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
.classList-text {
|
|
margin: 30rpx 0 20rpx;
|
|
}
|
|
|
|
.classList-tips {
|
|
color: green;
|
|
}
|
|
|
|
.classList-del {
|
|
position: absolute;
|
|
right: 40rpx;
|
|
top: 90rpx;
|
|
background-color: #f86b6b;
|
|
color: #fff;
|
|
border-radius: 10rpx;
|
|
height: 60rpx;
|
|
line-height: 60rpx;
|
|
width: 120rpx;
|
|
text-align: center;
|
|
font-size: 28rpx;
|
|
} |