49 lines
825 B
Plaintext
49 lines
825 B
Plaintext
|
|
/* pages/healthEncyclopedia/healthEncyclopedia.wxss */
|
||
|
|
.banner{
|
||
|
|
margin: 30rpx 0;
|
||
|
|
width: 750rpx;
|
||
|
|
}
|
||
|
|
.item{
|
||
|
|
height: 200rpx;
|
||
|
|
width: 90%;
|
||
|
|
border-radius: 5rpx;
|
||
|
|
margin: 40rpx auto;
|
||
|
|
box-shadow:0px 0px 15rpx #e2e2e2;
|
||
|
|
padding: 30rpx;
|
||
|
|
box-sizing: border-box;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
.imgWrap{
|
||
|
|
height: 100%;
|
||
|
|
width: 35%;
|
||
|
|
border-radius: 10rpx ;
|
||
|
|
/* background: rgba(230,241,255); */
|
||
|
|
}
|
||
|
|
.imgWrap image{
|
||
|
|
height: 100%;
|
||
|
|
width:100%;
|
||
|
|
border-radius: 15rpx;
|
||
|
|
background-size: 100%;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
}
|
||
|
|
.msgWrap{
|
||
|
|
height: 100%;
|
||
|
|
width: 60%;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
.title{
|
||
|
|
font-size:30rpx;
|
||
|
|
color: #333;
|
||
|
|
}
|
||
|
|
.writer{
|
||
|
|
display: flex;
|
||
|
|
font-size: 25rpx;
|
||
|
|
color: #666;
|
||
|
|
}
|
||
|
|
.ml{
|
||
|
|
margin-left: 30rpx;
|
||
|
|
}
|