| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 | 
							- /* pages/specialDiscount/specialDiscount.wxss */
 
- /* 限时特惠 */
 
- .discount-list {
 
-   padding: 10rpx 20rpx 20rpx;
 
-   position: relative;
 
- }
 
- .discount-list .list-bg {
 
-   position: absolute;
 
-   left: 0;
 
-   top: 0;
 
-   width: 100%;
 
-   height: 250rpx;
 
- }
 
- .discount-list .item {
 
-   width: 100%;
 
-   height: 260rpx;
 
-   position: relative;
 
-   margin-top: 26rpx;
 
-   border-radius: 10rpx;
 
-   display: flex;
 
-   align-items: center;
 
- }
 
- .discount-list .item.no-bg {
 
-   background: #999;
 
- }
 
- .discount-list .item .bg {
 
-   position: absolute;
 
-   top: 0;
 
-   left: 0;
 
-   border-radius: 10rpx;
 
-   width: 100%;
 
-   height: 100%;
 
- }
 
- .discount-list .item .text-box {
 
-   padding: 30rpx;
 
-   position: relative;
 
- }
 
- .discount-list .item .info {
 
-   font-size: 38rpx;
 
-   color: #fff;
 
-   font-weight: 600;
 
- }
 
- .discount-list .item .shop {
 
-   margin-top: 10rpx;
 
-   font-size: 28rpx;
 
-   color: #fff;
 
- }
 
- .discount-list .item .shop .arr {
 
-   width: 20rpx;
 
-   height: 20rpx;
 
-   margin-left: 10rpx;
 
- }
 
- .discount-list .item .time {
 
-   font-size: 24rpx;
 
-   color: #fff;
 
-   margin-top: 30rpx;
 
-   display: flex;
 
-   align-items: center;
 
- }
 
- .discount-list .item .time .time-icon {
 
-     width: 22rpx;
 
-     height: 22rpx;
 
-     border: 2rpx solid #fff;
 
-     border-radius: 50%;
 
-     position: relative;
 
-     margin-right: 10rpx;
 
- }
 
- .discount-list .item .time .time-icon::before,
 
- .discount-list .item .time .time-icon::after {
 
-     position: absolute;
 
-     display: block;
 
-     content: " ";
 
-     background: #fff;
 
- }
 
- .discount-list .item .time .time-icon::before {
 
-     width: 2rpx;
 
-     height: 10rpx;
 
-     top: 6rpx;
 
-     left: 10rpx;   
 
- }
 
- .discount-list .item .time .time-icon::after {
 
-     width: 6rpx;
 
-     height: 2rpx;
 
-     top: 14rpx;
 
-     right: 6rpx; 
 
- }
 
- .discount-list .item .time .much-time {
 
-   display: flex;
 
-   align-items: center;
 
- }
 
- .discount-list .item .time .much-time .day {
 
-     color: #f6e59e;
 
-     font-family: arial;
 
-     margin: 0 6rpx;
 
- }
 
- .discount-list .item .time .number-box {
 
-     display: flex;
 
-     align-items: center;
 
-     color: #fff;
 
-     margin-left: 10rpx;
 
- }
 
- .discount-list .item .time .number-box .number {
 
-   font-family: arial;
 
-   padding: 2rpx 6rpx;
 
-   text-align: center;
 
-   background: rgba(0,0,0,.7);
 
-   border-radius: 4rpx;
 
-   font-size: 24rpx;
 
- }
 
- .discount-list .item .time .number-box .colon {
 
-   font-family: arial;
 
-   margin: 0 6rpx;
 
- }
 
- /* 限时特惠 end */
 
 
  |