123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- @charset "UTF-8";
- /* 选项卡 */
- .swiper-tab {
- width: 100%;
- text-align: center;
- height: 80rpx;
- background-color: #fff;
- border-bottom: 1px solid #eee;
- }
- .swiper-tab .swiper-tab-item {
- width: 33.333333%;
- height: 100%;
- font-size: 28rpx;
- color: #777;
- display: flex;
- justify-content: center;
- align-items: center;
- box-sizing: border-box;
- border-bottom: 2px solid #ffffff00;
- }
- .swiper-tab .on {
- color: #f74c45;
- border-bottom: 2px solid #f74c45;
- }
- /* 设置scroll-view容器高度 */
- .coupon-list, .yoshop-notcont {
- height: 100.1%;
- }
- /* 评论列表 */
- .coupon-list {
- padding: 20rpx;
- box-sizing: border-box;
- }
- .coupon-list .coupon-item {
- position: relative;
- overflow: hidden;
- margin-bottom: 22rpx;
- }
- .coupon-list .coupon-item .item-wrapper {
- width: 100%;
- display: flex;
- background: #fff;
- border-radius: 8rpx;
- color: #fff;
- height: 180rpx;
- }
- .coupon-list .coupon-item .item-wrapper .coupon-type {
- position: absolute;
- top: 0;
- right: 0;
- z-index: 10;
- width: 128rpx;
- padding: 3px 0;
- background: #a771ff;
- font-size: 20rpx;
- text-align: center;
- color: #fff;
- transform: rotate(45deg);
- transform-origin: 64rpx 64rpx;
- }
- .coupon-list .coupon-item .item-wrapper.color__blue {
- background: linear-gradient(-125deg, #57bdbf, #2f9de2);
- }
- .coupon-list .coupon-item .item-wrapper.color__red {
- background: linear-gradient(-128deg, #ff6d6d, #ff3636);
- }
- .coupon-list .coupon-item .item-wrapper.color__violet {
- background: linear-gradient(-113deg, #ef86ff, #b66ff5);
- }
- .coupon-list .coupon-item .item-wrapper.color__violet .coupon-type {
- background: #55b5ff;
- }
- .coupon-list .coupon-item .item-wrapper.color__yellow {
- background: linear-gradient(-141deg, #f7d059, #fdb054);
- }
- .coupon-list .coupon-item .item-wrapper.color__gray {
- background: linear-gradient(-113deg, #bdbdbd, #a2a1a2);
- }
- .coupon-list .coupon-item .item-wrapper.color__gray .coupon-type {
- background: #9e9e9e;
- }
- .coupon-list .coupon-item .item-wrapper .content {
- flex: 1;
- padding: 30rpx 20rpx;
- border-radius: 8px 0 0 8px;
- }
- .coupon-list .coupon-item .item-wrapper .content .title {
- font-size: 34rpx;
- }
- .coupon-list .coupon-item .item-wrapper .tip {
- position: relative;
- flex: 0 0 32%;
- text-align: center;
- border-radius: 0 8px 8px 0;
- }
- .coupon-list .coupon-item .item-wrapper .tip .money {
- font-weight: bold;
- font-size: 52rpx;
- }
- .coupon-list .coupon-item .item-wrapper .tip .pay-line {
- font-size: 22rpx;
- }
- .coupon-list .coupon-item .item-wrapper .split-line {
- position: relative;
- flex: 0 0 0;
- border-left: 4rpx solid #fff;
- margin: 0 5px 0 3px;
- background: #fff;
- }
- .coupon-list .coupon-item .item-wrapper .split-line:before,
- .coupon-list .coupon-item .item-wrapper .split-line:after {
- content: '';
- position: absolute;
- width: 12px;
- height: 6px;
- background: #f7f7f7;
- left: -7px;
- z-index: 1;
- }
- .coupon-list .coupon-item .item-wrapper .split-line:before {
- border-radius: 0 0 8px 8px;
- top: 0;
- }
- .coupon-list .coupon-item .item-wrapper .split-line:after {
- border-radius: 8px 8px 0 0;
- bottom: 0;
- }
- /* 没有更多 */
- .no-more {
- text-align: center;
- color: #737373;
- padding: 10px 0;
- }
|