| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- /* 特惠专场 */
- .discount-detail {
- width: 1200px;
- margin: 0 auto;
- }
- .discount-detail .banner {
- width: 100%;
- height: 360px;
- position: relative;
- display: flex;
- align-items: center;
- margin-top: 40px;
- cursor: pointer;
- }
- .discount-detail .banner .bg {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- .discount-detail .banner .text-box {
- position: relative;
- margin-left: 50px;
- width: 440px;
- height: 300px;
- background: #fff;
- border-radius: 4px;
- }
- .discount-detail .banner .text-box .time {
- font-size: 20px;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #0166b3;
- color: #fff;
- border-radius: 4px 4px 0 0;
- padding: 20px 0;
- }
- .discount-detail .banner .text-box .time .time-icon {
- width: 22px;
- height: 22px;
- border: 2px solid #fff;
- border-radius: 50%;
- position: relative;
- margin-right: 10px;
- }
- .discount-detail .banner .text-box .time .time-icon::before,
- .discount-detail .banner .text-box .time .time-icon::after {
- position: absolute;
- display: block;
- content: " ";
- background: #fff;
- }
- .discount-detail .banner .text-box .time .time-icon::before {
- width: 2px;
- height: 8px;
- top: 6px;
- left: 9px;
- }
- .discount-detail .banner .text-box .time .time-icon::after {
- width: 8px;
- height: 2px;
- top: 12px;
- right: 5px;
- }
- .discount-detail .banner .text-box .time .much-time .day {
- font-family: arial;
- margin: 0 5px;
- }
- .discount-detail .banner .text-box .time .number-box {
- margin-left: 10px;
- display: flex;
- align-items: center;
- }
- .discount-detail .banner .text-box .time .number-box .number {
- padding: 3px 5px;
- background: #fff;
- border-radius: 4px;
- font-family: arial;
- color: #0166b3;
- }
- .discount-detail .banner .text-box .time .number-box .colon {
- margin: 0 10px;
- }
- .discount-detail .banner .text-box .shop-logo {
- width: 80px;
- height: 80px;
- font-size: 0;
- margin: 20px auto;
- }
- .discount-detail .banner .text-box .shop-logo img {
- width: 100%;
- height: 100%;
- }
- .discount-detail .banner .text-box .shop-name {
- margin: 0 20px 15px;
- text-align: center;
- font-size: 24px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .discount-detail .banner .text-box .info {
- margin: 0 20px;
- font-size: 30px;
- font-weight: 600;
- text-align: center;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .discount-detail .discount-prod {
- padding-top: 20px;
- }
- .discount-detail .discount-prod .activity-price {
- display: flex;
- height: 16px;
- line-height: 16px;
- margin-top: 10px;
- color: #e1251b;
- align-items: flex-end;
- flex-wrap: wrap;
- }
- .discount-detail .discount-prod .old-price {
- color: #999;
- margin-left: 5px;
- text-decoration: line-through;
- }
- /* 特惠专场 end */
|