12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /* 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: 120rpx;
- display: -webkit-box;
- font-size: 28rpx;
- margin-top: 28rpx;
- line-height: 40rpx;
- word-break: break-all;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 4;
- overflow: hidden;
- text-overflow:ellipsis;
- }
- .target-txt-show {
- height: 200rpx;
- font-size: 28rpx;
- margin-top: 28rpx;
- line-height: 40rpx;
- word-break: break-all;
- }
- .week {
- margin-left: 92rpx;
- }
- .unfold {
- position: absolute;
- right: 28rpx;
- bottom: 24rpx;
- font-size: 28rpx;
- line-height: 28rpx;
- height: 28rpx;
- color: #93AAFA;
- }
- .dirImg{
- width: 16rpx;
- height: 9rpx;
- position: absolute;
- top: 50%;
- left: -20rpx;
- margin-top: -5rpx;
- }
|