123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- .header {
- background: #fff;
- position: sticky;
- top: 0;
- }
- .selectItems {
- text-align: center;
- }
- .selectItems .selectImg {
- border-left: 1px solid #f1f1f1;
- padding: 0 20rpx;
- }
- .selectImg image {
- width: 30rpx;
- height: 30rpx;
- }
- .selectItems .flex-1 {
- padding: 24rpx 0;
- text-align: center;
- font-size: 32rpx;
- position: relative;
- }
- .selectItems .active::before {
- position: absolute;
- content: " ";
- height: 4rpx;
- width: 100rpx;
- background: #26A2FF;
- bottom: 0rpx;
- left: 50%;
- margin-left: -50rpx;
- }
- .name{
- font-size: 36rpx;
- }
- .main {
- background: #fff;
- }
- .scroll {
- height: calc(100vh - 115rpx);
- }
- .defBtn {
- border-radius: 6rpx;
- height: 50rpx;
- text-align: center;
- line-height: 50rpx;
- width: 120rpx;
- font-size: .24rem;
- }
- .li-top {
- margin-bottom: 14rpx;
- }
- .li-top .flex-1 {
- padding-right: 50rpx;
- }
- .li-top text {
- font-size: 36rpx;
- font-weight: 600
- }
- .task {
- background: #f5f7fa;
- color: #909399;
- font-size: .28rem;
- padding: .05rem .32rem .15rem;
- }
- .li {
- padding: 24rpx 28rpx;
- }
- .li-bottom text {
- position: relative;
- top: 10rpx;
- font-size: 28rpx;
- }
- .main-right {
- margin-left: 10rpx;
- }
- .date{
- font-size: 28rpx;
- }
- .context {
- font-size: .32rem;
- color: #323233;
- display: -webkit-box;
- text-overflow: ellipsis;
- overflow: hidden;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- padding: 12rpx 0;
- }
|