12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <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">
- @import "uview-ui/index.scss";
- @import "./static/iconfont/iconfont.css";
- /*每个页面公共css */
- :root {
- --main-color:#003bff;
- --bg-color:#f7f7f7;
- }
- .main-color-btn {
- background-color: var(--main-color) !important;
- }
-
- .text-color-red{
- color: #fa3534;
- }
- .wrap{
- padding: 24rpx;
- }
- .fixed-button{
- height: 80px;
- .u-btn{
- position: fixed!important;
- left: 0;
- bottom: 0;
- right: 0;
- z-index: 100!important;
- }
- }
- .screen-box{
- margin: 24rpx 24rpx 0;
- }
- .u-navbar{
- background: linear-gradient(99deg, #003bff 0%, #597aff 100%)!important;
- .u-title,.u-iconfont{
- color: #fff!important;;
- }
- }
- .u-body-item image {
- width: 120rpx;
- height: 120rpx;
- border-radius: 8rpx;
- margin-right: 12rpx;
- }
- .item-title{
- font-size: 30rpx;
- border-left: 2px solid;
- border-color: var(--main-color);
- padding-left: 10rpx;
- color: var(--main-color);
- font-weight: bold;
- margin-bottom: 24rpx;
- }
- .gap{
- margin: 24rpx -50%!important;
- }
- </style>
|