123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- .coupon-item{
- margin: 15px 0;
- position: relative;
- box-shadow: 1px 1px 3px rgba(0,0,0,0.15);
- height: 95px;
- background: #fff;
- }
- .coupon-item .left{
- float: left;
- color: #fff;
- text-align: center;
- border-left: 1px dashed #fff;
- padding: 20px 0;
- background: -webkit-gradient(linear,left top,right top,from(#F45C43),to(#eb2444));
- background: -o-linear-gradient(left,#F45C43,#eb2444);
- background: linear-gradient(left,#F45C43,#eb2444);
- background: -webkit-linear-gradient(left,#F45C43,#eb2444);
- width: 260rpx;
- height: 55px;
- }
- .coupon-item .left .num{
- font-weight:600;
- font-size:36rpx;
- height:70rpx;
- line-height:70rpx;
- font-family:arial;
- }
- .coupon-item .left .num .coupon-price{
- font-size: 72rpx;
- line-height: 72rpx;
- display: inline-block;
- font-family: arial;
- }
- .coupon-item .left .condition{
- font-size: 28rpx;
- line-height: 28rpx;
- display: block;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- padding: 0 2px;
- font-family: arial;
- }
- .coupon-item .right{
- margin-left: 280rpx;
- padding: 5px;
- position: relative;
- }
- .coupon-item .right .c-des{
- height: 30px;
- font-size: 26rpx;
- line-height: 30px;
- overflow: hidden;
- font-weight: 600;
- }
- .coupon-item .right .c-des .c-type{
- font-size: 24rpx;
- background: #fdf0f0;
- color: #e43130;
- border-radius: 8px;
- padding:3px 10px;
- }
- .coupon-item .right .c-date{
- font-size: 24rpx;
- margin-top:25px;
- }
- .coupon-item .right .c-date .c-data-info{
- font-family: arial;
- }
- .coupon-item .right .c-date .c-btn{
- position: absolute;
- bottom:0;
- right:10px;
- color: #fff;
- font-size: 24rpx;
- font-family: arial;
- border-radius: 14px;
- padding:3px 7px;
- /* background: -webkit-gradient(linear,left top,right top,from(#6c96da),to(#6b83d7));
- background: -o-linear-gradient(left,#6c96da,#6b83d7);
- background: linear-gradient(left,#6c96da,#6b83d7);
- background: -webkit-linear-gradient(left,#6c96da,#6b83d7); */
- background: #e43130;
- border: 1px solid #e43130;
- }
- .coupon-item .right .c-date .c-btn.get-btn{
- background: #fff;
- border: 1px solid #e43130;
- color:#e43130;
- }
- .coupon-item.gray .left{
- background: #bbb;
- }
- .coupon-item.gray .right .c-des .c-type{
- background: #bbb;
- color: #fff;
- }
- .coupon-item.gray .right .c-date .c-btn{
- display: none;
- }
- .coupon-item .tag-img{
- position: absolute;
- top:0;
- right:0;
- width:120rpx;
- height:120rpx;
- }
- .coupon-item .sel-btn{
- position:absolute;
- right:10px;
- top:35px;
- }
|