123456789101112131415161718192021222324252627282930313233343536373839 |
- /* 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: 25%;
- height: 200rpx;
- }
- .list>view{
- width: 75%;
- 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;
- padding: 10rpx 0;
- /* line-height: 44rpx; */
- }
|