123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- /* components/selectpopup/selectpopup.wxss */
- .popup_select_bg{
- position: absolute;
- /* display: flex;
- justify-content: end;
- align-items:center;
- flex-direction: column-reverse; */
- height: 100%;
- width: 100%;
- background: rgba(100, 100, 100, 0.4);
- z-index: 9999;
- }
- .popup_select_content_bg{
- position: absolute;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items:center;
- height: auto;
- padding: 20rpx;
- width: 100%;
- top: 100%;
- box-sizing: border-box;
- }
- .popup_select_content_top{
- display: flex;
- justify-content: end;
- align-items:center;
- flex-direction: column;
- height: auto;
- width: 100%;
- border-bottom-left-radius: 15rpx;
- border-bottom-right-radius: 15rpx;
- border-top-right-radius: 15rpx;
- border-top-left-radius: 15rpx;
- background-color: #ffffff;
- }
- .popup_select_content_exit{
- display: flex;
- justify-content: end;
- align-items:center;
- flex-direction: column;
- height: auto;
- width: 100%;
- margin-top: 20rpx;
- border-radius: 15rpx;
- background-color: #ffffff;
- }
- .popup_select_item_view{
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .popup_select_item_bg{
- width: 100%;
- height: 100rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #576B95;
- flex-direction: column;
-
- }
- .popup_select_item_splitLine {
- height: 1px;
- width: 100%;
- background:linear-gradient(to left,#ffffff,#dddddd,#ffffff);
- }
- .click_hover{
- opacity: 0.5;
- }
|