| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /* pages/list/list.wxss */
- .search input{
- background: #fff;
- }
- .list{
- /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
- border-radius: 20rpx;
- display: flex;
- padding: 20rpx;
- box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2);
- margin: 20rpx 0;
- background: #fff;
- }
- .list image{
- width: 20%;
- max-height: 100px;
- }
- .list>view{
- width: 80%;
- padding-left: 30rpx;
- vertical-align: middle;
- }
- .list .title{
- margin-bottom: 20rpx;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- }
- .list text{
- color: #999;
- display: block;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- font-size: 26rpx;
- line-height: 44rpx;
- }
|