coupon.css 2.24 KB
Newer Older
lanbaoming's avatar
lanbaoming committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
page{
	padding-bottom: 1px;
	padding-top: 260upx;
}
.coupon-top{
	width: 100%;
	margin: 0upx auto 30upx;
	height: 110upx;
	border-radius: 12upx;
	background-color: var(--c0);
	position: fixed;
	top: 158upx;
	left: 0;
	z-index: 99;
}
.coupon-top-v{
	width: 90%;
	margin: 0 5%;
	display: flex;
	height: 90upx;
	justify-content: space-between;
	border-bottom: 1px solid var(--cdf);
}
.coupon-top-v view{
	height: 100%;
	text-align: left;
	line-height: 90upx;
	font-size: var(--f32);
	position: relative;
}
.coupon-top-v .act::after{
	content: '';
	width: 50%;
	height: 3px;
	background: var(--c396);
	position: absolute;
	left: 0;
	bottom: 0;
	border-radius: 12upx;
}
.coupon-top-v .nums{
	color: var(--c9);
	font-size: var(--f26);
	margin-left: 10upx;
}
.coupon-top-v view:nth-child(2){
	text-align: center;
}
.coupon-top-v view:nth-child(3){
	text-align: right;
}

.coupon-list{
	width: 90%;
	margin: 29upx auto 30upx;
}
.coupon-list-item{
	width: 100%;
	display: inline-block;
	min-height: 180upx;
	background: var(--c0);
	border-radius: 12upx;
	margin-bottom: 30upx;
	color: var(--c3);
	position: relative;
	box-shadow: 0px 4px 18px 0px rgba(0,0,0,0.0800);
}
.coupon-list-item .used{
	position: absolute;
	right: 20upx;
	top: 20upx;
	width: 140upx;
	height: 140upx;
}
.coupon-list-item .useing{
	position: absolute;
	right: 0upx;
	top: 0upx;
	width: 124upx;
	height: 100upx;
}
.coupon-list-item .coupon-btn{
	position: absolute;
	right: 20upx;
	bottom: 20upx;
	color: var(--c036);
	border: 1px solid var(--c036);
	border-radius: 30upx;
	padding: 6upx 16upx;
	font-size: var(--f28);
}
.coupon-list-item .icon{
	width: 180upx;
	height: 180upx;
	background: url(../../static/img/coupon-icon.png) no-repeat;
	background-size: 100% 100%;
	color: var(--c0);
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: var(--f40);
	font-weight: 700;
	margin-right: 30upx;
}
.coupon-list-item .title{
	padding-top: 20upx;
	margin-bottom: 20upx;
	font-size: var(--f30);
	font-weight: 700;
}
.coupon-list-item .desc{
	font-size: var(--f28);
	color: var(--c6);
}
.coupon-list-item .times {
	display: flex;
	font-size: 24upx;
	color: var(--c6);
	margin-top: 20upx;
}
.coupon-list-item .times image{
	width: 40upx;
	height: 40upx;
	margin-right: 10upx;
	margin-left: -10upx;
}