123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- .container{
- padding: 0;
- margin: 0;
- }
- page{
- background: #f1f1f1;
- }
- /* 作业列表 */
- .task-box{
- padding: 25rpx;
- display: flex;
- flex-wrap: wrap;
- border-bottom: 20rpx solid #f1f1f1;
- background: #FFF;
- }
- .task-box view{
- height: 60rpx;
- line-height: 60rpx;
- width: 700rpx;
- }
- .task-title,.task-desc{
- width: 550rpx !important;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .task-desc{
- color: #999;
- }
- .do-task,.do-time{
- width: 150rpx !important;
- font-size: 24rpx;
- text-align: right;
- }
- .do-task{
- color: #cc6031;
- }
- .loading {
- height: 200rpx;
- line-height: 100rpx;
- background: #f1f1f1;
- color: #999;
- text-align: center;
- }
- /* end */
|