You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 lines
1.6 KiB

5 years ago
/* pages/pbService/appreciate/index.wxss */
page {
background: #EDEDED;
}
.appreciate-types {
display: flex;
align-items: center;
justify-content: center;
padding: 20rpx;
}
.top-menus {
height: 180rpx;
background: white;
position: fixed;
left: 0;
right: 0;
}
.appreciate-type {
width: 200rpx;
line-height: 60rpx;
background: #EDEDED;
border-radius: 30rpx;
text-align: center;
color: #333;
font-size: 26rpx;
font-weight: bold;
}
.appreciate-type.active {
background: #0B898E;
color: #fff;
}
.appreciate-type:nth-child(1){
/* margin-right: 80rpx; */
5 years ago
}
.tags {
display: flex;
align-items: center;
margin: 0 30rpx;
margin-top: 10rpx;
height: 50rpx;
overflow-x: auto;
3 years ago
overflow-y:hidden;
}
.tags::-webkit-scrollbar{
display:none;
5 years ago
}
.tag {
font-size: 26rpx;
color: #333;
font-weight: 500;
position: relative;
margin-right: 60rpx;
flex-shrink: 0;
}
.tag.active {
font-weight: bold;
color: #0B898E;
}
.tag.active::after {
content: "!";
font-size: 0;
width: 30rpx;
height: 4rpx;
position: absolute;
left: 50%;
margin-left: -15rpx;
top: 50rpx;
background: #0B898E;
}
.list {
display: flex;
margin: 30rpx;
justify-content: space-between;
flex-wrap: wrap;
}
.item {
height: 340rpx;
width: 335rpx;
border-radius: 20rpx;
background: white;
overflow: hidden;
margin-bottom: 20rpx;
}
.item image {
height: 220rpx;
width: 100%;
display: block;
}
.item .title {
margin: 20rpx;
line-height: 29rpx;
font-size: 30rpx;
color: #333;
font-weight: bold;
}
.subtitle {
color: #999;
font-size: 26rpx;
margin: 0 20rpx;
}