123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <script>
- export default {
- onLaunch: function() {
- // console.log('App Launch')
- },
- onShow: function() {
- // console.log('App Show')
- },
- onHide: function() {
- // console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- [ks-role][hidden] {
- display: none!important;
- }
- uni-page-head .uni-page-head{
- position: inherit!important;
- }
- uni-page-head .uni-page-head~.uni-placeholder{
- display: none;
- }
- body{
- font-family: "Hiragino Sans GB", STFangsong, "Microsoft YaHei", Helvetica, STXihei, Arial, serif;
- // max-width: 828rpx; //最大宽度自己可以调整
- margin: auto !important;
- }
- page{
- font-family: "Hiragino Sans GB", STFangsong, "Microsoft YaHei", Helvetica, STXihei, Arial, serif;
- }
- /*每个页面公共css */
- @import "uview-ui/index.scss";
- // 联系客服弹框公共样式
- /depp/ .u-load-more-wrap{
- margin: 20rpx 0;
- }
- .buttonType button{
- background: transparent;
- line-height: 1;
- padding: 0;
- }
- .buttonType button::after{
- border: 0;
- }
- ::-webkit-scrollbar {
- display: none;
- width: 0 !important;
- height: 0 !important;
- -webkit-appearance: none;
- background: transparent;
- color: transparent;
- }
- .u-flex {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- }
-
- .u-flex-wrap {
- flex-wrap: wrap;
- }
-
- .u-flex-nowrap {
- flex-wrap: nowrap;
- }
-
- .u-col-center {
- align-items: center;
- }
-
- .u-col-top {
- align-items: flex-start;
- }
-
- .u-col-bottom {
- align-items: flex-end;
- }
-
- .u-row-center {
- justify-content: center;
- }
-
- .u-row-left {
- justify-content: flex-start;
- }
-
- .u-row-right {
- justify-content: flex-end;
- }
-
- .u-row-between {
- justify-content: space-between;
- }
-
- .u-row-around {
- justify-content: space-around;
- }
- .popupBox{
- .maskName {
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 999;
- height: 100%;
- background: rgba(0,0,0,0.5);
- overflow: hidden;
- }
- .newFormName {
- background: #FFFFFF;
- padding: 10rpx;
- position: absolute;
- z-index: 9999;
- top: 0;
- margin: 10rpx;
- left: 0;
- width: 90%;
- border-radius: 20rpx;
- }
- .newForm {
- background: #FFFFFF;
- padding: 10rpx;
- position: fixed;
- z-index: 999;
- top: 50%;
- margin: 10rpx;
- left: 50%;
- transform: translate(-50%,-50%);
- width: 80%;
- border-radius: 20rpx;
- .alertContent{
- position: relative;
- height: 340rpx;
- text-align: center;
- .title{
- font-size: 32rpx;
- margin-top: 30rpx;
- }
- .content{
- padding: 60rpx 30rpx;
- }
- .btn{
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 100rpx;
- line-height: 100rpx;
- text{
- display: inline-block;
- width: 50%;
- font-size: 30rpx;
- text-align: center;
- }
- }
- }
- }
- .nweflex {
- padding: 5rpx 10rpx;
- background: #007AFF;
- color: #FFFFFF;
- width: 25%;
- text-align: center;
- position: absolute;
- right: 0;
- top: 0;
- }
- .mask {
- width: 100%;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 99;
- height: calc(100vh - 44px);
- background: rgba(0,0,0,0.5);
- overflow: hidden;
- }
- }
- </style>
|