1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /* compontents/target/target.wxss */
- .target {
- width: 100%;
- margin: 20rpx 0;
- border-radius: 25rpx;
- padding: 28rpx 24rpx 61rpx 24rpx;
- box-sizing: border-box;
- background: #fff;
- position: relative;
- }
- .title {
- font-size: 36rpx;
- font-weight: 600;
- }
- .target-txt {
- height: 140rpx;
- display: -webkit-box;
- font-size: 28rpx;
- margin-top: 15rpx;
- line-height: 48rpx;
- word-break: break-all;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 4;
- overflow: hidden;
- text-overflow:ellipsis;
- color: #303030;
- }
- .target-txt-show {
- height: 200rpx;
- font-size: 28rpx;
- margin-top: 15rpx;
- line-height: 48rpx;
- word-break: break-all;
- }
- .week {
- margin-left: 92rpx;
- }
- .unfold {
- position: absolute;
- right: 28rpx;
- bottom: 24rpx;
- font-size: 28rpx;
- line-height: 28rpx;
- height: 28rpx;
- color: #5984f7;
- }
- .dirImg{
- width: 16rpx;
- height: 9rpx;
- position: absolute;
- top: 50%;
- left: -20rpx;
- margin-top: -5rpx;
- }
|