123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- /* pages/tlb/tlb.wxss */
- .top_bg {
- position: relative;
- }
- .top_bg>image{
- width: 100%;
- }
- .top_bg .top_title{
- position: absolute;
- left: 0;
- right: 0;
- margin: auto;
- color: #fff;
- text-align: center;
- top: 20rpx;
- font-size: 46rpx;
- font-weight: 600;
- }
- .top_title text{
- display: block;
- font-size: 28rpx;
- color: #fff;
- font-weight: 400;
- }
- .tab{
- background: #fff;
- padding:0 20rpx;
- display: flex;
- border-bottom: 1px solid #f2f2f2;
- position: relative;
- top: -40rpx;
- border-radius: 20rpx;
- justify-content: space-between;
- }
- .tab view{
- font-size: 29rpx;
- color: #333;
- line-height: 80rpx;
- transition: all .1s linear;
- /* margin-right: 30rpx; */
- font-weight: 500;
- }
- .tab .act{
- color: #FF583D;
- border-bottom: 2px solid #FF583D;
- }
- .number{
- width: 38rpx;
- display: inline-block;
- text-align: center;
- color: #999;
- font-size: 24rpx;
- font-weight: 600;
- position: relative;
- top: -3rpx;
- }
- image.number{
- top: 4rpx;
- margin-right: 10rpx;
- }
- scroll-view{
- height: calc(100vh - 285rpx);
- position: relative;
- top: -20rpx;
- }
- .list{
- color: #333;
- font-size: 32rpx;
- margin-bottom: 20rpx;
- padding: 0 20rpx 20rpx;
- font-weight: 500;
- border-bottom: 1px solid #f2f2f2;
- }
- .list text{
- margin-right: 10rpx;
- font-size: 32rpx;
- }
- .info{
- display: flex;
- margin-top: 10rpx;
- }
- .info image{
- width: 150rpx;
- height: 150rpx;
- border-radius: 10rpx;
- margin-top: 15rpx;
- }
- .info text{
- display: block;
- width: 85%;
- padding-left: 20rpx;
- padding-top: 10rpx;
- /* padding: 20rpx; */
- color: rgb(88, 88, 88);
- /* text-overflow: -o-ellipsis-lastline; */
- overflow: hidden;text-overflow: ellipsis;display: -webkit-box;
- -webkit-line-clamp: 3;-webkit-box-orient: vertical;align-content: center;
- height: 100%;
- font-size: 30rpx;
- }
|