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.
54 lines
1.0 KiB
54 lines
1.0 KiB
|
|
.wanlpage-article .item {
|
|
display: flex;
|
|
padding-bottom: 25rpx;
|
|
margin-bottom: 25rpx;
|
|
position: relative;
|
|
}
|
|
.wanlpage-article .item:after{
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
box-sizing: border-box;
|
|
width: 200%;
|
|
height: 200%;
|
|
border-bottom: 1px solid #ddd;
|
|
border-radius: inherit;
|
|
content: " ";
|
|
-webkit-transform: scale(.5);
|
|
transform: scale(.5);
|
|
-webkit-transform-origin: 0 0;
|
|
transform-origin: 0 0;
|
|
pointer-events: none;
|
|
}
|
|
.wanlpage-article .item:last-child{
|
|
padding-bottom: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
.wanlpage-article .item:last-child:after{
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
.wanlpage-article .item .action{
|
|
width: 200rpx;
|
|
height: 160rpx;
|
|
margin-right: 25rpx;
|
|
}
|
|
.wanlpage-article .item .action image{
|
|
height: 160rpx;
|
|
}
|
|
.wanlpage-article .item .content{
|
|
display: flex;
|
|
align-content: space-between;
|
|
flex-wrap: wrap;
|
|
flex: 1;
|
|
margin: 10rpx 0;
|
|
}
|
|
.wanlpage-article .item .content>view{
|
|
width: 100%;
|
|
}
|
|
.wanlpage-article .item .content .time{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
|