12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .container{
- padding: 0;
- margin: 0;
- }
- page{
- background: #f1f1f1;
- }
- /* 顶部切换标题 */
- .switch-view{
- display: flex;
- background: #FFF;
- }
- .switch-view view{
- margin: 0 auto;
- color: #999;
- height: 80rpx;
- line-height: 80rpx;
- font-size: 36rpx;
- }
- .curTitle{
- color: #cc6031 !important;
- border-bottom: 2px solid #cc6031;
- font-weight: 600;
- }
- /* end */
- /* 作业列表 */
- .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;
- }
- /* end */
|