12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /* pages/publics/fileList/fileList.wxss */
- /* scroll-view ::-webkit-scrollbar {
- display:none;
- width:0;
- height:0;
- color:transparent;
- } */
- .tab-item{
- font-size: 34rpx;
- text-align: center;
- line-height: 60rpx;
- color: #333333;
- height: 54rpx;
- display: flex;
- justify-content: center;
- flex-direction: row;
- padding: 0 10rpx;
- }
- .tab-item.active{
- font-size: 34rpx;
- color: #508FF4;
- border-bottom: 7rpx solid #508FF4;
- position: relative;
- }
- .list li{
- padding: 20rpx 0;
- display: flex;
- flex-direction: column;
- justify-content: center;
- border-bottom: 1px solid rgb(102 102 102 / 12%);
- }
- /* .list li .title::before {
- content: '·';
- font-size: 20rpx;
- font-weight: bold;
- margin-right: 5px;
- } */
- .list li .title{
- display: block;
- font-size: 28rpx;
- color: #333333;
- margin-left: 20rpx;
- }
- .list li .time{
- margin-left: 20rpx;
- color: #999999;
- font-size:24rpx;
- width: 90%;
- margin-top: 5px;
- }
|