123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /* pages/beerCircles/beerCircles.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;
- }
- .add-btn{
- position: fixed;
- z-index: 10001;
- bottom: 232rpx;
- right: 24rpx;
- width: 128rpx;
- height: 128rpx;
- }
- .add-btn>image{
- width: 128rpx;
- height: 128rpx;
- }
- .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;
- }
|