1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /* pages/minePush/minePush.wxss */
- @import "../template/template.wxss";
- .handle-box{
- width: 100vw;
- height: 100vh;
- position: fixed;
- top: 0;
- z-index: 10001;
- }
- .handle-bg{
- width: 100vw;
- height: 100vh;
- position: absolute;
- bottom: 0;
- background-color: rgba(0,0,0,0.6);
- }
- .hadle-view{
- display: flex;
- flex-direction: row;
- position: absolute;
- bottom: 0;
- width: 678rpx;
- height: 200rpx;
- padding: 46rpx 36rpx 0;
- background: #F7F7F7;
- border-radius: 16px 16px 0px 0px;
- padding-bottom: env(safe-area-inset-bottom);
- }
- .hadle-view>image:nth-child(1){
- width: 48rpx;
- height: 48rpx;
- position: absolute;
- top: 20rpx;
- right: 16rpx;
- }
- .handle-item{
- display: flex;
- flex-direction: column;
- margin-right: 40rpx;
- }
- .handle-item>image:nth-child(1){
- width: 96rpx;
- height: 96rpx;
- margin-bottom: 16rpx;
- }
- .handle-item>text:nth-child(2){
- width: auto;
- height: 36rpx;
- font-size: 26rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.6);
- line-height: 36rpx;
- text-align: center;
- }
- .nonedata-style{
- width: 750rpx;
- height: 100vh;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .nonedata-style>image:nth-child(1){
- width: 332rpx;
- height: 264rpx;
- }
- .nonedata-style>text:nth-child(2){
- width: auto;
- height: 48rpx;
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.4);
- line-height: 48rpx;
- margin-top: 32rpx;
- }
|