12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /* pages/order/order.wxss */
- page{
- padding: 0;
- }
- .content{
- height: calc(100vh - 80rpx);
- overflow: auto;
- padding: 30rpx;
- }
- .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: 0 20rpx 40rpx; */
- padding: 28rpx;
- background: #fff;
- position: relative;
- margin-bottom: 40rpx;
-
- }
- .list image{
- width: 25%;
- height: 210rpx;
- }
- .list>view{
- width: 75%;
- padding-left: 20rpx;
- vertical-align: middle;
- }
- .list .title{
- margin-bottom: 30rpx;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- font-size: 28rpx;
- }
- .list text{
- color: #666;
- display: block;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- white-space: normal;
- font-size: 26rpx;
- margin-bottom: 20rpx;
- }
- .btn{
- width: 132rpx;
- height: 56rpx;
- background: #09A65E;
- border-radius: 6px;
- text-align: center;
- line-height: 56rpx;
- color: #fff;
- font-size: 26rpx;
- position: absolute;
- bottom: 28rpx;
- right: 28rpx;
- }
|