123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- /* pages/snapUpList/snapUpList.wxss */
- page {
- background: #f4f4f4;
- }
- .seckill-box image {
- width: 100%;
- height: 100%;
- }
- .banner {
- position: relative;
- width: 750rpx;
- height: 284rpx;
- padding-top: 24rpx;
- }
- .banner .bg {
- position: absolute;
- top: 0;
- left: 0;
- font-size: 0;
- width: 750rpx;
- height: 220rpx;
- }
- .banner .img {
- font-size: 0;
- width: 710rpx;
- height: 280rpx;
- margin: 0 auto;
- position: relative;
- }
- .seckill-list {
- padding: 20rpx;
- }
- .seckill-list .item {
- background: #fff;
- margin-top: 24rpx;
- border-radius: 10rpx;
- display: flex;
- padding: 20rpx;
- }
- .seckill-list .item:first-child {
- margin-top: 0;
- }
- .seckill-list .item .img-box {
- position: relative;
- width: 220rpx;
- height: 220rpx;
- border-radius: 10rpx;
- overflow: hidden;
- }
- .seckill-list .item .goods-msg {
- flex: 1;
- margin-left: 20rpx;
- }
- .seckill-list .item .goods-msg .countdown-box {
- display: flex;
- align-items: center;
- font-size: 24rpx;
- color: #666;
- margin-top: 4rpx;
- }
- .seckill-list .item .goods-msg .countdown-box .tip {
- margin-right: 10rpx;
- }
- .seckill-list .item .goods-msg .countdown-box .text {
- margin: 0 6rpx;
- }
- .seckill-list .item .goods-msg .countdown-box .num {
- font-family: arial;
- font-size: 24rpx;
- height: 32rpx;
- line-height: 32rpx;
- background: #333;
- color: #fff;
- text-align: center;
- padding: 0 6rpx;
- border-radius: 4rpx;
- }
- .seckill-list .item .goods-msg .goods-name {
- margin-top: 20rpx;
- display: flex;
- align-items: center;
- }
- .seckill-list .item .goods-msg .goods-name .discounts {
- margin-right: 10rpx;
- background: #04358D;
- padding: 4rpx 10rpx;
- color: #fff;
- border-radius: 30rpx;
- font-size: 20rpx;
- font-weight: 400;
- }
- .seckill-list .item .goods-msg .goods-name .name {
- flex: 1;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- font-size: 28rpx;
- font-weight: 600;
- }
- .seckill-list .item .goods-msg .progress-box {
- margin-top: 20rpx;
- display: flex;
- align-items: center;
- }
- .seckill-list .item .goods-msg .progress-box .bg-box {
- flex: 1;
- height: 22rpx;
- background: #ffebeb;
- border-radius: 22rpx;
- overflow: hidden;
- }
- .seckill-list .item .goods-msg .progress-box .bg-box .progress {
- height: 22rpx;
- border-radius: 22rpx;
- background: #ee1c1e;
- }
- .seckill-list .item .goods-msg .progress-box .text {
- font-size: 24rpx;
- color: #e43130;
- margin-left: 20rpx;
- }
- .seckill-list .item .goods-msg .goods-price {
- display: flex;
- align-items: baseline;
- margin-top: 26rpx;
- }
- .seckill-list .item .goods-msg .goods-price .price-box {
- flex: 1;
- display: flex;
- align-items: baseline;
- }
- .seckill-list .item .goods-msg .goods-price .price-box .current-price {
- color: #e43130;
- font-size: 36rpx;
- font-weight: 600;
- }
- .seckill-list .item .goods-msg .goods-price .price-box .current-price .sub {
- font-size: 24rpx;
- }
- .seckill-list .item .goods-msg .goods-price .price-box .original-price {
- font-size: 24rpx;
- text-decoration: line-through;
- color: #999;
- margin-left: 10rpx;
- }
- .seckill-list .item .goods-msg .goods-price .residue {
- font-size: 24rpx;
- color: #999;
- }
- /* 列表为空 */
- .empty {
- margin-top: 100rpx;
- text-align: cneter;
- }
- .empty-icon {
- display: block;
- width: 80rpx;
- height: 80rpx;
- margin: 0 auto;
- margin-bottom: 20rpx;
- }
- .empty-icon > image {
- width: 100%;
- height: 100%;
- }
- .empty-text {
- font-size: 28rpx;
- text-align: center;
- color: #999;
- line-height: 2em;
- }
- /* 分页加载完成 */
- .all{
- margin: 30rpx;
- }
|