123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- /* pages/discountDetail/discountDetail.wxss */
- /* 特惠详情 */
- page {
- background: #f7f7f7;
- height: 100%;
- }
- .discount-detail {
- padding: 20rpx;
- position: relative;
- }
- .discount-detail .banner {
- width: 100%;
- height: 260rpx;
- border-radius: 10rpx;
- position: relative;
- display: flex;
- align-items: center;
- }
- .discount-detail .banner.no-bg {
- background: #999;
- }
- .discount-detail .banner .bg {
- position: absolute;
- top: 0;
- left: 0;
- border-radius: 10rpx;
- width: 100%;
- height: 100%;
- }
- .discount-detail .banner .text-box {
- padding: 30rpx;
- position: relative;
- }
- .discount-detail .banner .text-box .time {
- font-size: 28rpx;
- color: #fff;
- display: flex;
- align-items: center;
- margin-bottom: 30rpx;
- }
- .discount-detail .banner .text-box .text {
- margin-right: 20rpx;
- }
- .discount-detail .banner .text-box .time .number {
- font-family: arial;
- padding: 2rpx 6rpx;
- text-align: center;
- background: rgba(0,0,0,.7);
- border-radius: 4rpx;
- font-size: 26rpx;
- }
- .discount-detail .banner .text-box .time .colon {
- font-family: arial;
- margin: 0 10rpx;
- }
- .discount-detail .banner .info {
- font-size: 38rpx;
- font-family: arial;
- color: #fff;
- font-weight: 600;
- }
- .discount-detail .banner .shop {
- margin: 10rpx 0;
- font-size: 28rpx;
- color: #fff;
- }
- .discount-detail .discount-prod .item {
- margin-top: 20rpx;
- background: #fff;
- border-radius: 10rpx;
- padding: 20rpx;
- display: flex;
- align-items: center;
- }
- .discount-detail .discount-prod .item .img {
- font-size: 0;
- width: 220rpx;
- height: 220rpx;
- border-radius: 10rpx;
- }
- .discount-detail .discount-prod .item .img image {
- width: 100%;
- height: 100%;
- border-radius: 10rpx;
- }
- .discount-detail .discount-prod .item .msg {
- flex: 1;
- margin-left: 20rpx;
- }
- .discount-detail .discount-prod .item .msg .name-des {
- height: 114rpx;
- }
- .discount-detail .discount-prod .item .msg .name-des .name {
- font-size: 28rpx;
- max-height: 72rpx;
- line-height: 36rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .discount-detail .discount-prod .item .msg .name-des .des {
- font-size: 24rpx;
- color: #999;
- margin-top: 6rpx;
- height: 32rpx;
- line-height: 32rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .discount-detail .discount-prod .item .msg .price-btn {
- height: 82rpx;
- margin-top: 20rpx;
- padding-bottom: 4rpx;
- display: flex;
- align-items: flex-end;
- justify-content: space-between;
- }
- .discount-detail .discount-prod .item .msg .price-btn .price-box {
- margin-right: 10rpx;
- }
- .discount-detail .discount-prod .item .msg .price-btn .price-box .price {
- color: #e43130;
- font-size: 24rpx;
- font-weight: 600;
- margin-right: 10rpx;
- }
- .discount-detail .discount-prod .item .msg .price-btn .price-box .price .big {
- font-size: 36rpx;
- line-height: 36rpx;
- }
- .discount-detail .discount-prod .item .msg .price-btn .price-box .old-price {
- color: #999;
- text-decoration: line-through;
- font-size: 24rpx;
- }
- .discount-detail .discount-prod .item .msg .price-btn .btn {
- width: 152rpx;
- height: 52rpx;
- line-height: 52rpx;
- text-align: center;
- font-size: 24rpx;
- background: #e43130;
- color: #fff;
- border-radius: 56rpx;
- }
- /* 特惠详情 end */
|