123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /**app.wxss**/
- page{
- min-height: 100%;
- background: #ffffff;
- -webkit-overflow-scrolling : touch;
- }
- view, text {
- font-family:PingFang SC;
- box-sizing: border-box;
- }
- .no-wrapper{
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
- .main-title {
- font-weight: bold;
- color: #111;
- font-size: 40rpx;
- }
- .footer {
- position: fixed;
- bottom: 0;
- width: 100%;
- display: flex;
- }
- .mask {
- width: 100%;
- height: 100%;
- background: #000;
- opacity: 0.6;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 100;
- }
- .no-data {
- color: #A3A4A5;
- text-align: center;
- padding-top: 50px;
- }
- .more {
- font-size: 22rpx;
- color: #909090;
- position: relative;
- }
- .clearfix {
- zoom: 1;
- }
- .clearfix::after {
- content: '';
- display: block;
- height: 0;
- clear: both;
- }
- .fl {
- float: left;
- }
- .fr {
- float: right;
- }
- .container {
- padding: 0 46rpx;
- margin-top: 16rpx;
- }
- .is-iphoneX {
- padding-bottom: 50rpx;
- }
- @import './assets/font/iconfont.wxss'
|