/* 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 { /* 布局 */ padding: 0 10px; border-bottom: 2px solid #f7f7f7; } .pop_item { color: #999999; 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; }