123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <script>
- export default {
- onLaunch: function () {
- // 设置红点
- },
- onShow: function () {
- //console.log('App Show')
- },
- onHide: function () {
- //console.log('App Hide')
- },
- }
- </script>
- <style >
- page{
- background-color: rgba(20, 198, 112, 0.1);
- font-family: NotoSansSC;
- }
- @font-face {font-family: 'NotoSansSC';
- src:url('static/fonts/NotoSansSC.ttf') format('truetype');
- }
- /* 引入的字体图标 */
- @font-face {font-family: 'iconfont';
- src: url('static/fonts/iconfont.woff') format('woff'),
- url('static/fonts/iconfont.ttf') format('truetype');
- }
- .iconfont{
- font-family:"iconfont" !important;
- font-size:16px;
- font-style:normal;
- -webkit-font-smoothing: antialiased;
- -webkit-text-stroke-width: 0.2px;
- -moz-osx-font-smoothing: grayscale;}
- .content{
- width: 100%;
- min-height:100vh;
- background-image: url('static/bg.png');
- background-repeat: repeat-y;
- background-size: 100% 1730rpx;
- font-size: 28rpx;
- }
- .wrap{
- width: 96%;
- margin: 0 2%;
- }
- .wraps{
- margin: 0 24rpx;
- }
- .wrap90{
- width: 90%;
- margin: 0 5%;
- }
- .flex{
- display: flex;
- align-items: center;
- }
- .flat{
- align-items: flex-start;
- }
- .flcc{
- justify-content: center;
- }
- .flsb{
- justify-content: space-between;
- }
- .mt{
- margin-top: 48rpx;
- }
- .mask{
- width: 100vw;
- height: 100vh;
- background-color:rgba(0, 0, 0, 0.4);
- position: fixed;
- left: 0;
- top: 0;
- z-index: 3;
- }
- .buttonbj{
- background: linear-gradient(90.89deg, #38F957 49.57%, #1DEEE1 99.24%);
- }
- .buttonbjs{
- background: linear-gradient(85.42deg, #FFB673 3.71%, #FF5F3B 96.29%);
- }
- .noMore{
- width: 100%;
- text-align: center;
- padding: 100rpx 0;
- color: #778299;
- font-size: 32rpx;
- }
- </style>
|