jufubao-base 1.0.78 → 1.0.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -758,7 +758,7 @@ export default {
|
|
|
758
758
|
margin-left: unit(20,rpx) !important;
|
|
759
759
|
}
|
|
760
760
|
}
|
|
761
|
-
|
|
761
|
+
|
|
762
762
|
.form-group {
|
|
763
763
|
padding: 40rpx 70rpx;
|
|
764
764
|
}
|
|
@@ -908,4 +908,46 @@ export default {
|
|
|
908
908
|
.login-pub {
|
|
909
909
|
margin-top: unit(40, rpx);
|
|
910
910
|
}
|
|
911
|
+
|
|
912
|
+
.bottom_btn {
|
|
913
|
+
position: fixed;
|
|
914
|
+
width: 100%;
|
|
915
|
+
display:flex;
|
|
916
|
+
justify-content: center;
|
|
917
|
+
align-items: center;
|
|
918
|
+
height: unit(100, rpx);
|
|
919
|
+
background: #ffffff;
|
|
920
|
+
|
|
921
|
+
& > view {
|
|
922
|
+
height: unit(44, rpx);
|
|
923
|
+
line-height: unit(44, rpx);
|
|
924
|
+
width: unit(150, rpx);
|
|
925
|
+
text-align: center;
|
|
926
|
+
cursor: pointer;
|
|
927
|
+
font-size: unit(24, rpx);
|
|
928
|
+
border-radius: unit(12, rpx);
|
|
929
|
+
}
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.preview-login {
|
|
933
|
+
padding: unit(40, rpx) 0;
|
|
934
|
+
|
|
935
|
+
&-input {
|
|
936
|
+
height: unit(70, rpx);
|
|
937
|
+
border-radius: unit(12, rpx);
|
|
938
|
+
padding: 0 unit(20, rpx);
|
|
939
|
+
text-align: left;
|
|
940
|
+
border: 1px solid #eee;
|
|
941
|
+
background: #F7F7F7;
|
|
942
|
+
color: #666;
|
|
943
|
+
transition: box-shadow 0.5s;
|
|
944
|
+
box-shadow: 0 0 0 rgba(0,0,0,0);
|
|
945
|
+
|
|
946
|
+
&:hover {
|
|
947
|
+
box-shadow: 0 0 unit(10, rpx) rgba(0,0,0,.1);
|
|
948
|
+
}
|
|
949
|
+
}
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
|
|
911
953
|
</style>
|