city-casereport/pages/newsDetail/newsDetail.wxss
2023-12-08 11:30:29 +08:00

41 lines
641 B
Plaintext

/* pages/newsDetail/newsDetail.wxss */
page {
background-color: #EFEFEF;
}
.container-box {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
margin-top: 5px;
}
.news-title-box {
background-color: #FFFFFF;
width: 89%;
padding: 10px;
border-radius: 10px;
}
.news-title-desc {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
font-size: 12px;
color: #999999;
margin-top: 10px;
}
.content-box {
background-color: #FFFFFF;
width: 89%;
padding: 10px;
border-radius: 10px;
margin-top: 10px;
font-size: 14px;
color: #6C6C6C;
}