86 lines
1.5 KiB
Plaintext
86 lines
1.5 KiB
Plaintext
/**
|
|
* Web二雪
|
|
* 趁时光不老 努力活成自己想要成为的样子
|
|
*/
|
|
.content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
background-color: #fff;
|
|
padding: 20rpx 30rpx;
|
|
/* box-shadow: 0 0 5rpx rgba(0, 0, 0, 0.1); */
|
|
margin-top: 2rpx;
|
|
}
|
|
|
|
.content image {
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.content .left {
|
|
flex: 1;
|
|
margin-left: 20rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.content .title {
|
|
color: #333;
|
|
font-size: 30rpx;
|
|
padding-right: 120rpx;
|
|
position: relative;
|
|
}
|
|
|
|
.content .title>span {
|
|
color: #378fff;
|
|
border: solid 1rpx #378fff;
|
|
border-radius: 50rpx;
|
|
font-size: 20rpx;
|
|
padding: 4rpx 16rpx;
|
|
/* position: absolute;
|
|
top: 0;
|
|
right: 0; */
|
|
margin-left: 20rpx;
|
|
position: relative;
|
|
top: -4rpx;
|
|
}
|
|
|
|
.content .bottom {
|
|
justify-content: space-between;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: stretch;
|
|
box-sizing: border-box;
|
|
font-size: 26rpx;
|
|
color: #222;
|
|
font-weight: 600;
|
|
padding: 10rpx 0;
|
|
}
|
|
|
|
.has_more {
|
|
color: #999;
|
|
font-size: 26rpx;
|
|
text-align: center;
|
|
padding: 30rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-sizing: border-box;
|
|
padding-top: 30rpx;
|
|
}
|
|
|
|
.has_more image {
|
|
margin-bottom: 30rpx;
|
|
}
|
|
|
|
.runIn {
|
|
color: #fff;
|
|
border: solid 1rpx #fff;
|
|
border-radius: 50rpx;
|
|
background-color: #378fff;
|
|
font-size: 30rpx;
|
|
padding: 4rpx 20rpx 4rpx 30rpx;
|
|
} |