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.
93 lines
1.5 KiB
93 lines
1.5 KiB
/* pages/billboards/policy/policy-list/index.wxss */
|
|
.container {
|
|
position: relative;
|
|
}
|
|
.page_hd {
|
|
position: fixed;
|
|
border-bottom: 1px solid #f7f7f7;
|
|
top: 0;
|
|
height: 40px;
|
|
right: 0;
|
|
left: 0;
|
|
z-index: 10;
|
|
background-color: white;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.page_segment {
|
|
width: 90vw;
|
|
}
|
|
|
|
.page_btn_all {
|
|
width: 10vw;
|
|
background-color: white;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.arrow_btn {
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
.page_bd {
|
|
padding: 10px 10px 0 10px;
|
|
margin-top: 40px;
|
|
}
|
|
/* 弹出视图 */
|
|
.pop_view {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
top: 40px;
|
|
height: 150px;
|
|
overflow: scroll;
|
|
background-color: white;
|
|
transform-origin: 0 0;
|
|
transition: 0.2s all ease-in-out;
|
|
}
|
|
.pop_show {
|
|
transform: scaleY(1);
|
|
}
|
|
.pop_hidden {
|
|
transform: scaleY(0);
|
|
}
|
|
.pop_view_layout {
|
|
z-index: 10;
|
|
/* 布局 */
|
|
padding: 10px 10px;
|
|
border-bottom: 2px solid #f7f7f7;
|
|
}
|
|
.pop_item {
|
|
color: #333;
|
|
font-size: 14px;
|
|
margin-top: 10px;
|
|
display: inline-block;
|
|
height: 20px;
|
|
margin-right: 10px;
|
|
white-space: nowrap;
|
|
padding: 8rpx 15rpx;
|
|
border-radius: 14px;
|
|
border: 1px solid #999999;
|
|
}
|
|
.mark {
|
|
position: fixed;
|
|
transition: 0.5 all ease-in-out;
|
|
top: 0;
|
|
height: 100vh;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
}
|
|
|
|
/* // 阅读量 */
|
|
.read_collectNum {
|
|
padding: 20rpx 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
font-size: 16px;
|
|
}
|
|
.read_num {
|
|
color: #999;
|
|
}
|