mirror of
https://gitee.com/bagee/jd-coupon-miniapp.git
synced 2025-07-27 10:30:39 +08:00
155 lines
2.9 KiB
Plaintext
155 lines
2.9 KiB
Plaintext
/* pages/sort/sort.wxss */
|
|
@import "../../utils/styles/main.wxss";
|
|
@import "../../utils/styles/icon.wxss";
|
|
@import "../../utils/styles/animation.wxss";
|
|
@import "../../utils/styles/base.wxss";
|
|
|
|
.VerticalNav.nav {
|
|
width: 96px;
|
|
white-space: initial;
|
|
}
|
|
|
|
.VerticalNav.nav .cu-item {
|
|
width: 100%;
|
|
text-align: center;
|
|
background-color: #f2f2f2;
|
|
margin: 0;
|
|
border: none;
|
|
height: 50px;
|
|
position: relative;
|
|
}
|
|
|
|
.VerticalNav.nav .cu-item.cur {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.VerticalNav.nav .cu-item.cur::after {
|
|
content: "";
|
|
width: 8rpx;
|
|
height: 30rpx;
|
|
border-radius: 10rpx 0 0 10rpx;
|
|
position: absolute;
|
|
background-color: currentColor;
|
|
top: 0;
|
|
right: 0rpx;
|
|
bottom: 0;
|
|
margin: auto;
|
|
}
|
|
|
|
.VerticalBox {
|
|
display: flex;
|
|
}
|
|
|
|
.VerticalMain {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.ellipsis{
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.rounded{
|
|
border-bottom-right-radius: 8rpx;
|
|
border-bottom-left-radius: 8rpx;
|
|
}
|
|
|
|
.bg-item{
|
|
background-color: #f2f2f2;
|
|
color: #f43f3b;
|
|
border-radius: 5rpx;
|
|
border: 1px solid #f43f3b;
|
|
padding: 3rpx 10rpx;
|
|
}
|
|
|
|
.comment{
|
|
position: absolute;
|
|
right: 10rpx;
|
|
}
|
|
|
|
.type-item{
|
|
background-color: #f2f2f2;
|
|
border-bottom-right-radius: 8rpx;
|
|
border-bottom-left-radius: 8rpx;
|
|
}
|
|
|
|
.img-item{
|
|
border-top-right-radius: 8rpx;
|
|
border-top-left-radius: 8rpx;
|
|
}
|
|
|
|
.tag-product {
|
|
background-color: #f43f3b;
|
|
color: white;
|
|
position: absolute;
|
|
padding: 3rpx 10rpx;
|
|
font-size: 17rpx;
|
|
border-radius: 8rpx;
|
|
position: absolute;
|
|
right: 5rpx;
|
|
top: 10rpx;
|
|
}
|
|
|
|
.style-three {
|
|
width:100%;
|
|
height:1.2rem;
|
|
position:relative;
|
|
display:-webkit-box;
|
|
display:-webkit-flex;
|
|
display:flex;
|
|
align-items:center;
|
|
justify-content:center;
|
|
background-color:#f43f3b;
|
|
border:none;
|
|
color:#fff;
|
|
}
|
|
|
|
.style-three:before {
|
|
content:"";
|
|
position:absolute;
|
|
left:-.25rem;
|
|
width:.9rem;
|
|
height:.55rem;
|
|
top:50%;
|
|
-webkit-transform:translate(-30%,-50%);
|
|
transform:translate(-30%,-50%);
|
|
-webkit-box-shadow:3px 0 0 #e76960;
|
|
box-shadow:3px 0 0 #e76960;
|
|
-webkit-border-radius:80%;
|
|
border-radius:80%;
|
|
background-color:white;
|
|
}
|
|
|
|
.style-three .get-btn:after {
|
|
content:"";
|
|
width:.6rem;
|
|
position:absolute;
|
|
top:0;
|
|
bottom:0;
|
|
right:23.9%;
|
|
left:0;
|
|
display:block;
|
|
z-index:9;
|
|
background-color:#fff;
|
|
background-position:100% 35%;
|
|
background-size:1rem .5rem;
|
|
background-image:linear-gradient(-45deg,#ffffff 25%,#e76960 25%,#e76960)
|
|
}
|
|
|
|
.style-three .get-btn {
|
|
display:-webkit-box;
|
|
display:-webkit-flex;
|
|
display:flex;
|
|
position: absolute;
|
|
right: 0;
|
|
align-items:center;
|
|
justify-content:center;
|
|
width:5%;
|
|
height:1.2rem;
|
|
text-align:center;
|
|
color:#fff;
|
|
font-size:1.5rem;
|
|
line-height:1.35;
|
|
background-color:#fff;
|
|
} |