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.
76 lines
1.0 KiB
76 lines
1.0 KiB
/* pages/resource/detail/index.wxss */
|
|
/* @import '../../style/font.wxss'; */
|
|
page{
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.title{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 90%;
|
|
min-height: 90px;
|
|
border-bottom: 2px solid whitesmoke;
|
|
margin-top:5px;
|
|
}
|
|
|
|
.left{
|
|
display: flex;
|
|
align-items: center;
|
|
flex: 1;
|
|
}
|
|
|
|
.right{
|
|
width: 15px;
|
|
text-align:right;
|
|
}
|
|
|
|
.articleImg{
|
|
width: 55px;
|
|
height: 55px;
|
|
display: flex;
|
|
align-items: center;
|
|
/* border-radius: 50%; */
|
|
}
|
|
|
|
.content{
|
|
margin-left: 15px;
|
|
margin-right: 20px;
|
|
flex: 1;
|
|
}
|
|
|
|
.tit{
|
|
width: 100%;
|
|
font-weight:1000;
|
|
}
|
|
|
|
.r_type{
|
|
font-size: 13px;
|
|
}
|
|
|
|
.artice_collect {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.text{
|
|
width: 90%;
|
|
}
|
|
|
|
.publish{
|
|
position: fixed;
|
|
width: 50px;
|
|
height: 50px;
|
|
right: 20px;
|
|
bottom: 40px;
|
|
background-color: #fa4646;
|
|
border-radius: 50%;
|
|
color:white;
|
|
display:flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 15px;
|
|
}
|
|
|