123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- page {
- background: #f4f4f4;
- min-height: 100%;
- }
- .container {
- background: #f4f4f4;
- min-height: 100%;
- width: 100%;
- height: auto;
- overflow: hidden;
- }
- .collect-switch {
- width: 100%;
- background: #fff;
- height: 84rpx;
- }
- .collect-switch .item {
- display: inline-block;
- height: 82rpx;
- width: 50%;
- padding: 0 15rpx;
- text-align: center;
- }
- .collect-switch .item .txt {
- display: inline-block;
- height: 82rpx;
- padding: 0 20rpx;
- line-height: 82rpx;
- color: #9a9ba1;
- font-size: 30rpx;
- width: 170rpx;
- }
- .collect-switch .item.active .txt {
- color: #ab956d;
- border-bottom: 4rpx solid #ab956d;
- }
- .no-collect {
- width: 100%;
- height: auto;
- margin: 0 auto;
- }
- .no-collect .c {
- width: 100%;
- height: auto;
- margin-top: 400rpx;
- }
- .no-collect .c text {
- margin: 0 auto;
- display: block;
- width: 258rpx;
- height: 29rpx;
- line-height: 29rpx;
- text-align: center;
- font-size: 29rpx;
- color: #999;
- }
- /*商品收藏列表样式*/
- .goods-list {
- width: 100%;
- height: auto;
- overflow: hidden;
- background: #fff;
- padding-left: 30rpx;
- border-top: 1px solid #e1e1e1;
- }
- .goods-list .item {
- height: 212rpx;
- width: 720rpx;
- background: #fff;
- padding: 30rpx 30rpx 30rpx 0;
- border-bottom: 1px solid #e1e1e1;
- }
- .goods-list .item:last-child {
- border-bottom: 1px solid #fff;
- }
- .goods-list .item .img {
- float: left;
- width: 150rpx;
- height: 150rpx;
- }
- .goods-list .item .info {
- float: right;
- width: 540rpx;
- height: 150rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- padding-left: 20rpx;
- }
- .goods-list .item .info .name {
- font-size: 28rpx;
- color: #333;
- line-height: 40rpx;
- }
- .goods-list .item .info .subtitle {
- margin-top: 8rpx;
- font-size: 24rpx;
- color: #888;
- line-height: 40rpx;
- }
- .goods-list .item .info .price {
- margin-top: 8rpx;
- font-size: 28rpx;
- color: #333;
- line-height: 40rpx;
- }
- /*专题收藏列表样式*/
- .topic-list{
- width: 750rpx;
- height: 100%;
- overflow: hidden;
- background: #f4f4f4;
- }
- .topic-list .item{
- width: 100%;
- height: 625rpx;
- overflow: hidden;
- background: #fff;
- margin-bottom: 20rpx;
- }
- .topic-list .img{
- width: 100%;
- height: 415rpx;
- }
- .topic-list .info{
- width: 100%;
- height: 210rpx;
- overflow: hidden;
- }
- .topic-list .title{
- display: block;
- text-align: center;
- width: 100%;
- height: 33rpx;
- line-height: 35rpx;
- color: #333;
- overflow: hidden;
- font-size: 35rpx;
- margin-top: 30rpx;
- }
- .topic-list .desc{
- display: block;
- text-align: center;
- position: relative;
- width: auto;
- height: 24rpx;
- line-height: 24rpx;
- overflow: hidden;
- color: #999;
- font-size: 24rpx;
- margin-top: 16rpx;
- margin-bottom: 30rpx;
- }
- .topic-list .price{
- display: block;
- text-align: center;
- width: 100%;
- height: 27rpx;
- line-height: 27rpx;
- overflow: hidden;
- color: #b4282d;
- font-size: 27rpx;
- }
|