市北人才赋能平台 --小程序端
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

6 years ago
/* pages/billboards/policy/policy-list/index.wxss */
6 years ago
.container {
position: relative;
}
6 years ago
.page_hd {
position: fixed;
border-bottom: 1px solid #f7f7f7;
top: 0;
6 years ago
height: 40px;
right: 0;
6 years ago
left: 0;
z-index: 10;
background-color: white;
6 years ago
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;
6 years ago
}
.page_bd {
padding: 10px 10px 0 10px;
6 years ago
margin-top: 40px;
}
/* 弹出视图 */
.pop_view {
position: fixed;
6 years ago
left: 0;
right: 0;
top: 40px;
6 years ago
height: 150px;
overflow: scroll;
background-color: white;
transform-origin: 0 0;
6 years ago
transition: 0.2s all ease-in-out;
}
.pop_show {
transform: scaleY(1);
6 years ago
}
.pop_hidden {
transform: scaleY(0);
6 years ago
}
.pop_view_layout {
z-index: 10;
6 years ago
/* 布局 */
padding: 10px 10px;
6 years ago
border-bottom: 2px solid #f7f7f7;
}
.pop_item {
color: #333;
6 years ago
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);
6 years ago
}
/* // 阅读量 */
.read_collectNum {
padding: 20rpx 0;
display: flex;
flex-direction: row;
justify-content: space-between;
font-size: 16px;
}
.read_num {
color: #999;
6 years ago
}