|
@@ -214,12 +214,10 @@ uni-input {
|
|
|
}
|
|
|
|
|
|
|
|
|
-//ios底部安全距离
|
|
|
-.ios-padding-bottom {
|
|
|
- /*兼容 IOS<11.2*/
|
|
|
- padding-bottom: constant(safe-area-inset-bottom) !important;
|
|
|
- /*兼容 IOS>11.2*/
|
|
|
- padding-bottom: env(safe-area-inset-bottom) !important;
|
|
|
+//APP底部安全距离
|
|
|
+.app-padding-bottom {
|
|
|
+ padding-bottom: calc(constant(safe-area-inset-bottom) + 20px + 40px) !important;
|
|
|
+ padding-bottom: calc(env(safe-area-inset-bottom) + 20px + 40px) !important;
|
|
|
}
|
|
|
|
|
|
//公共按钮绝对定位
|
|
@@ -228,11 +226,9 @@ uni-input {
|
|
|
left: 0;
|
|
|
right: 0;
|
|
|
bottom: 0;
|
|
|
- //#ifdef APP-PLUS || MP-WEIXIN
|
|
|
- bottom: constant(safe-area-inset-bottom);
|
|
|
- bottom: calc(env(safe-area-inset-bottom) - 25px);
|
|
|
- //#endif
|
|
|
- padding: 0px 15px 0px 15px;
|
|
|
+ padding: 10px 15px 10px 15px;
|
|
|
+ background-color: #fff;
|
|
|
+ box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.1);
|
|
|
z-index: 50;
|
|
|
|
|
|
.app-buttom {
|
|
@@ -240,7 +236,10 @@ uni-input {
|
|
|
width: 100%;
|
|
|
height: 40px;
|
|
|
font-size: 14px;
|
|
|
- margin-bottom: 15px
|
|
|
+ //#ifdef APP-PLUS || MP-WEIXIN
|
|
|
+ margin-bottom: constant(safe-area-inset-bottom);
|
|
|
+ margin-bottom: env(safe-area-inset-bottom);
|
|
|
+ //#endif
|
|
|
}
|
|
|
|
|
|
.app-flex {
|
|
@@ -267,7 +266,7 @@ uni-input {
|
|
|
height: calc(100vh - 44px);
|
|
|
//#endif
|
|
|
|
|
|
- //#ifdef APP-PLUS
|
|
|
+ //#ifdef APP-PLUS || MP-WEIXIN
|
|
|
height: calc(100vh - constant(safe-area-inset-top));
|
|
|
height: calc(100vh - env(safe-area-inset-top));
|
|
|
//#endif
|
|
@@ -297,17 +296,4 @@ uni-input {
|
|
|
|
|
|
color: #909399
|
|
|
}
|
|
|
-}
|
|
|
-
|
|
|
-//公共分页功能样式
|
|
|
-.app-pagination {
|
|
|
- padding-bottom: 10px;
|
|
|
- padding-top: 10px;
|
|
|
- padding-left: 10px;
|
|
|
- padding-right: 10px;
|
|
|
-
|
|
|
- //#ifdef APP-PLUS
|
|
|
- padding-bottom: constant(safe-area-inset-bottom);
|
|
|
- padding-bottom: env(safe-area-inset-bottom);
|
|
|
- //#endif
|
|
|
}
|