12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* 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;
- }
- .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: 31rpx;
- 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: 50rpx;
- display: inline-block;
- text-align: center;
- color: #999;
- font-size: 30rpx;
- 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: 28rpx;
- margin-bottom: 20rpx;
- padding: 0 20rpx;
- font-weight: 500;
- }
- .list text{
- margin-right: 10rpx;
- }
- .bar{
- display: inline-block;
- height: 30rpx;
- position: relative;
- top: 4rpx;
- }
- .list .usn{
- display: inline-block;
- width: 22%;
- text-align: right;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- position: relative;
- top: 6rpx;
- }
|