12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /**index.wxss**/
- @import '../../app.wxss';
-
- .list {
- padding: 30rpx;
- position: relative;
- overflow: hidden;
- }
-
- .list > view {
- padding: 20rpx;
- position: relative;
- overflow: hidden;
- background: #fff;
- margin-top: 30rpx;
- box-shadow: 0 0 20rpx 10rpx rgba(0, 0, 0, 0.05);
- }
-
- .list > view:first-child {
- margin-top: 0;
- }
-
- .img {
- width: 260rpx;
- height: 146rpx;
- position: relative;
- overflow: hidden;
- background: #eee;
- border-radius: 10rpx;
- }
-
- .list > view > .flex-item {
- margin-left: 30rpx;
- }
-
- .list .delete {
- width: 100%;
- position: relative;
- overflow: hidden;
- text-align: right;
- margin-top: -10rpx;
- }
-
- .list .delete image {
- width: 24rpx;
- display: inline-block;
- }
-
- .list text {
- width: 100%;
- display: block;
- line-height: 40rpx;
- font-size: 26rpx;
- color: #999;
- }
-
-
- .list .delete + text {
- font-size: 30rpx;
- font-weight: bold;
- color: #000;
- line-height: 44rpx;
- }
- .list text.name{
- font-size: 26rpx;
- color: #000;
- }
- .list text.price text {
- display: inline;
- color: red;
- font-size: 24rpx;
- }
-
- .noMore {
- width: 100%;
- display: block;
- text-align: center;
- color: #666;
- font-size: 24rpx;
- line-height: 40rpx;
- margin: 0 20rpx;
- }
|