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.
|
|
|
/* pages/look-list/look-list.wxss */
|
|
|
|
.main {
|
|
|
|
padding: 0;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mark{
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: rgba(0,0,0,.1);
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
.look-top-tag {
|
|
|
|
height: 34rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table {
|
|
|
|
display: flex;
|
|
|
|
padding: 30rpx 30rpx 35rpx 30rpx;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-active .table-icon {
|
|
|
|
transform: rotate(-180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-name {
|
|
|
|
font-size: 30rpx;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #262936;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-icon {
|
|
|
|
width: 14rpx;
|
|
|
|
height: 10rpx;
|
|
|
|
margin-left: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list {
|
|
|
|
height: 100%;
|
|
|
|
/* padding-bottom: 50rpx; */
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-item {
|
|
|
|
width: 690rpx;
|
|
|
|
height: 218rpx;
|
|
|
|
background: #FFFFFF;
|
|
|
|
box-shadow: 0 2rpx 23rpx 0 rgba(191, 191, 191, 0.15);
|
|
|
|
border-radius: 18rpx;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-bottom: 24rpx;
|
|
|
|
padding: 30rpx 0 30rpx 30rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item-img {
|
|
|
|
width: 166rpx;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item-right {
|
|
|
|
flex: 1;
|
|
|
|
padding-left: 20rpx;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-info{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-tag {
|
|
|
|
width: 90rpx;
|
|
|
|
height: 34rpx;
|
|
|
|
border-radius: 4rpx;
|
|
|
|
font-size: 22rpx;
|
|
|
|
margin-right: 14rpx;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-title {
|
|
|
|
width: 338rpx;
|
|
|
|
font-size: 34rpx;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #262936;
|
|
|
|
line-height: 50rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-detail {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.detail-item {
|
|
|
|
width: 50%;
|
|
|
|
line-height: 36rpx;
|
|
|
|
font-size: 22rpx;
|
|
|
|
color: #565A6B;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-timer{
|
|
|
|
font-size: 22rpx;
|
|
|
|
color: #C3C3C3;
|
|
|
|
}
|