1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- page {
- background-color: #f2f2f2;
- }
- .tab-item {
- width: 100%;
- box-sizing: border-box;
- background-color: #fff;
- flex-direction: row;
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
- .tab-item .item {
- height: 80rpx;
- font-size: 32rpx;
- flex-direction: row;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .tab-item .item-checked {
- color: #6784f4;
- border-bottom: 2rpx #6784f4 solid;
- }
- scroll-view {
- width: 100%;
- height: 93vh;
- box-sizing: border-box;
- flex-direction: column;
- display: flex;
- padding: 20rpx 30rpx 0rpx 30rpx;
- }
- .list-item {
- width: 100%;
- height: 200rpx;
- padding: 20rpx 30rpx 20rpx 30rpx;
- box-sizing: border-box;
- flex-direction: column;
- display: flex;
- justify-content: space-between;
- background-color: #fff;
- border-radius: 10rpx;
- margin-bottom: 20rpx;
- position: relative;
- }
- .list-item .title {
- width: 500rpx;
- font-size: 28rpx;
- color: #666;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .list-item .tag{
- flex-direction: row;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 28rpx;
- color: rgb(31, 96, 236);
- position: absolute;
- right: 30rpx;
- top: 20rpx;
- }
|