| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- /* 优惠信息 */
- .submit-order .submit-box .coupon-list {
- margin-top: 20px;
- border: 1px solid #eee;
- background:#fff;
- }
- .submit-order .submit-box .coupon-list .coupon-tab {
- display: flex;
- background: #f9f9f9;
- border-bottom: 0;
- }
- .submit-order .submit-box .coupon-list .coupon-tab .tab-item {
- padding: 10px 20px;
- cursor: pointer;
- }
- .submit-order .submit-box .coupon-list .coupon-tab .tab-item.active {
- color: #e1251b;
- background: #fff;
- }
- .submit-order .submit-box .coupon-list .coupon-box {
- display: flex;
- flex-wrap: wrap;
- padding-bottom: 20px;
- }
- .submit-order .submit-box .coupon-list .c-item {
- margin: 20px 0 0 20px;
- background: #f9f9f9;
- width: 215px;
- position: relative;
- cursor: pointer;
- border: 1px solid #fff;
- box-sizing: border-box;
- }
- .submit-order .submit-box .coupon-list .c-item .coupon-type {
- background: #e1251b;
- padding: 15px 10px 12px;
- color: #fff;
- position: relative;
- }
- .submit-order .submit-box .coupon-list .c-item .coupon-type::before,
- .submit-order .submit-box .coupon-list .c-item .coupon-type::after {
- position: absolute;
- display: block;
- width: 10px;
- height: 10px;
- content: ' ';
- background: #fff;
- border-radius: 50%;
- top: 50%;
- transform: translateY(-50%);
- }
- .submit-order .submit-box .coupon-list .c-item .coupon-type::before {
- left: -5px;
- }
- .submit-order .submit-box .coupon-list .c-item .coupon-type::after {
- right: -5px;
- }
- .submit-order .submit-box .coupon-list .c-item .coupon-type .coupon-price {
- display: flex;
- align-items: center;
- }
- .submit-order
- .submit-box
- .coupon-list
- .c-item
- .coupon-type
- .coupon-price
- .price {
- margin-left: 10px;
- margin-top: 5px;
- font-family: arial;
- color: #fff;
- }
- .submit-order
- .submit-box
- .coupon-list
- .c-item
- .coupon-type
- .coupon-price
- .price
- .big {
- font-size: 24px;
- }
- .submit-order
- .submit-box
- .coupon-list
- .c-item
- .coupon-type
- .coupon-price
- .limit {
- margin-left: 10px;
- margin-top: 10px;
- font-family: arial;
- }
- .submit-order .submit-box .coupon-list .c-item .coupon-type .coupon-time {
- margin: 5px 0 5px 10px;
- font-family: arial;
- opacity: 0.7;
- line-height: 16px;
- }
- .submit-order .submit-box .coupon-list .c-item .coupon-info {
- padding: 5px 15px 12px;
- position: relative;
- }
- .submit-order .submit-box .coupon-list .c-item .coupon-info::before {
- position: absolute;
- top: 0;
- left: 0;
- display: block;
- width: 100%;
- height: 3px;
- background: url(../images/icons.png) no-repeat;
- background-position: -2px -783px;
- content: ' ';
- z-index: 3;
- }
- .submit-order .submit-box .coupon-list .c-item .coupon-info .range-item {
- margin-top: 10px;
- color: #999;
- display: flex;
- }
- .submit-order .submit-box .coupon-list .c-item .coupon-info .range-item .label {
- color: #000;
- }
- .submit-order .submit-box .coupon-list .c-item .coupon-info .range-item .text {
- flex: 1;
- }
- .submit-order .submit-box .coupon-list .c-item.check .coupon-type::before,
- .submit-order .submit-box .coupon-list .c-item.check .coupon-type::after {
- display: none;
- }
- .submit-order .submit-box .coupon-list .c-item.check .coupon-info::before {
- background: none;
- }
- .submit-order .submit-box .coupon-list .c-item.check {
- background: #fff;
- border: 1px solid #e1251b;
- }
- .submit-order .submit-box .coupon-list .c-item.check::before {
- position: absolute;
- bottom: 0;
- right: 0;
- display: block;
- width: 0;
- height: 0;
- content: ' ';
- border: 10px solid transparent;
- border-right: 10px solid #e1251b;
- border-bottom: 10px solid #e1251b;
- }
- .submit-order .submit-box .coupon-list .c-item.check::after {
- position: absolute;
- bottom: 2px;
- right: 1px;
- display: block;
- width: 10px;
- height: 8px;
- content: ' ';
- background: url(../images/icons.png) no-repeat;
- background-position: -21px -750px;
- }
- .submit-order .submit-box .coupon-list .c-item.useless {
- cursor: not-allowed;
- }
- .submit-order .submit-box .coupon-list .c-item.useless .coupon-type {
- background: #ccc;
- }
- .submit-order .submit-box .coupon-list .c-item.useless .coupon-info::before {
- background-position: 0 -791px;
- }
- .coupon-empty{
- width:100%;
- text-align: center;
- }
- .tit .platform.text{
- font-weight: 600;
- font-size: 14px;
- }
- /* 优惠信息 end */
|