163 lines
3.1 KiB
Plaintext
163 lines
3.1 KiB
Plaintext
@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;
|
|
}
|