12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- page{
- background: #f4f4f4;
- min-height: 100%;
- }
- .container{
- background: #f4f4f4;
- min-height: 100%;
- }
- .collect-list{
- width: 100%;
- height: auto;
- overflow: hidden;
- background: #fff;
- padding-left: 30rpx;
- border-top: 1px solid #e1e1e1;
- }
- .item{
- height: 212rpx;
- width: 720rpx;
- background: #fff;
- padding: 30rpx 30rpx 30rpx 0;
- border-bottom: 1px solid #e1e1e1;
- }
- .item:last-child{
- border-bottom: 1px solid #fff;
- }
- .item .img{
- float: left;
- width: 150rpx;
- height: 150rpx;
- }
- .item .info{
- float: right;
- width: 540rpx;
- height: 150rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- padding-left: 20rpx;
- }
- .item .info .name{
- font-size: 28rpx;
- color: #333;
- line-height: 40rpx;
- }
- .item .info .subtitle{
- margin-top: 8rpx;
- font-size: 24rpx;
- color: #888;
- line-height: 40rpx;
- }
- .item .info .price{
- margin-top: 8rpx;
- font-size: 28rpx;
- color: #333;
- line-height: 40rpx;
- }
- .unbrand {
- margin-top: 180rpx;
- text-align: center;
- }
- .unbrand image {
- display: inline-block;
- width: 250rpx;
- height: 274rpx;
- }
- .unbrand .text {
- color: #666C7D;
- font-size: 30rpx;
- margin-top: 40rpx;
- }
|