41 lines
641 B
Plaintext
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;
|
|
|
|
} |