12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- .voucher-coupon-detail {
- padding: 20rpx;
- width: 90%;
- margin: 0 auto;
- }
- .voucher-coupon-detail-header {
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .voucher-coupon-detail-header-img {
- width: 100%;
- /* height: 120rpx; */
- /* margin-right: 20rpx; */
- }
- .voucher-coupon-detail-header-info {
- flex: 1;
- }
- .voucher-coupon-detail-header-info-title {
- font-size: 32rpx;
- font-weight: bold;
- margin-bottom: 10rpx;
- margin-top: 30rpx;
- }
- .voucher-coupon-detail-header-info-desc {
- font-size: 28rpx;
- color: #999;
- margin-bottom: 10rpx;
- }
- .voucher-coupon-detail-header-info-time {
- font-size: 28rpx;
- color: #999;
- }
- .voucher-coupon-detail-content {
- margin-top: 30rpx;
- }
- .voucher-coupon-detail-content-title {
- font-size: 32rpx;
- font-weight: bold;
- margin-bottom: 20rpx;
- }
- .voucher-coupon-detail-content-desc {
- font-size: 28rpx;
- color: #999;
- line-height: 1.5;
- margin-bottom: 20rpx;
- }
- .voucher-coupon-detail-footer {
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: #f5f5f5;
- padding: 20rpx;
- border-radius: 10rpx;
- }
- .voucher-coupon-detail-footer-price {
- font-size: 36rpx;
- font-weight: bold;
- }
- .voucher-coupon-detail-footer-btn {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 80rpx;
- background-color: #f60;
- color: #FFFFFF;
- font-size: 32rpx;
- font-weight: bold;
- border-radius: 10rpx;
- margin-top: 50rpx;
- }
- .remainCount {
- background-color: #999;
- }
-
|