|
@@ -140,3 +140,42 @@ $titleBar-tabBar-page: calc(100vh - var(--status-bar-height));
|
|
|
background-color: rgb(248, 248, 248);color: rgb(0, 0, 0);box-sizing: border-box;
|
|
|
display: flex;align-items: center;justify-content: center;overflow: hidden;z-index: 998;
|
|
|
}
|
|
|
+
|
|
|
+// 小的提示弹窗
|
|
|
+.ezy-tip-dialog{
|
|
|
+ .tip-content-box{@include ezy-no-repeat-cover;box-sizing: border-box;text-align:center;}
|
|
|
+ .tip-title{
|
|
|
+ color: #343434;font-size: 38rpx;margin-bottom: 24rpx;
|
|
|
+ }
|
|
|
+ .tip-content{
|
|
|
+ color: #666;font-size: 32rpx;padding-bottom: 42rpx;
|
|
|
+ border-bottom: 1px dashed #70cbf4;line-height: 1.6;
|
|
|
+ }
|
|
|
+ .tip-btn-box{
|
|
|
+ width: 100%;display: flex;justify-content: space-between;
|
|
|
+ .not-confirm-btn,.confirm-btn{
|
|
|
+ width: 208rpx;height: 83rpx;@include ezy-no-repeat-cover;margin: 30rpx 32rpx 0;
|
|
|
+ }
|
|
|
+ .not-confirm-btn{background-image: url("@/static/images/common/tip-cancel-btn.png");}
|
|
|
+ .confirm-btn{background-image: url("@/static/images/common/tip-confirm-btn.png");}
|
|
|
+ }
|
|
|
+}
|
|
|
+.tip-small-dialog{
|
|
|
+ .tip-content-box{
|
|
|
+ width: 625rpx;height: 365rpx;padding: 42rpx 48rpx;
|
|
|
+ background-image: url("@/static/images/common/tip-small-bj.png");
|
|
|
+ }
|
|
|
+}
|
|
|
+.tip-middle-dialog{
|
|
|
+ .tip-content-box{
|
|
|
+ width: 625rpx;height: 423rpx;padding: 42rpx 48rpx;
|
|
|
+ background-image: url("@/static/images/common/tip-middle-bj.png");
|
|
|
+ }
|
|
|
+}
|
|
|
+.tip-big-dialog{
|
|
|
+ .tip-content-box{
|
|
|
+ width: 625rpx;height: 519rpx;padding: 42rpx 48rpx;
|
|
|
+ background-image: url("@/static/images/common/tip-big-bj.png");
|
|
|
+ }
|
|
|
+ .tip-content{min-height: 240rpx;text-align: justify;}
|
|
|
+}
|