| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <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";
- /*每个页面公共css */
- page {
- background-color: #1f1f1f;
- }
- uni-page {
- // overflow: hidden;
- // overflow-y: scroll;
- }
- uni-page-head {
- --window-top: calc(var(--top-window-height) + calc(102rpx + env(safe-area-inset-top)));
- --window-bottom: 0px;
- }
- input {
- background-color: transparent !important;
- }
- input:-webkit-autofill {
- -webkit-box-shadow: 0 0 0 1000px white inset !important;
- }
- input:-internal-autofill-selected {
- -webkit-text-fill-color: #FFFFFF !important;
- transition: background-color 5000s ease-in-out 0s !important;
- }
- input:-webkit-autofill {
- background: transparent !important;
- color: #6e6c6b;
- }
- .u-form-item--left {
- margin-right: 52rpx;
- }
- .u-mask {
- background-color: rgba(48, 46, 46, 0.45) !important;
- }
- .uni-page-head {
- font-size: 38rpx !important;
- height: 102rpx !important;
- //line-height: 100rpx !important;
- background-color: #1f1f1f !important;
- color: #bb955e !important;
- padding: 0 !important;
- .uni-btn-icon {
- color: #bb955e !important;
- }
- .uni-page-head__title {
- height: 102rpx !important;
- line-height: 102rpx !important;
- }
- }
- .uni-picker-container {
- .uni-picker-header {
- background-color: #6e6c6b !important;
- .uni-picker-action-confirm {
- color: #bb955e !important;
- }
- .uni-picker-action-cancel {
- color: #fff !important;
- }
- }
- .uni-picker-view-indicator {
- // background-color: rgba(158, 158, 158, 25%);
- color: #bb955e;
- }
- }
- .u-input__input {
- color: #999 !important;
- }
- .u-cell-box {
- background-color: #2c2b2b;
- border-radius: 19rpx;
- .u-cell-item-box {
- border-radius: 19rpx;
- background-color: #2c2b2b !important;
- }
- }
- /* App.vue */
- .cell-hover-class {
- background-color: #434142;
- }
- /* 或者单是设置透明度 */
- .cell-hover-class {
- opacity: 0.5;
- }
- .u-radio__label {
- color: inherit !important;
- }
- .u-type-none-light-bg {
- padding: 18rpx 0 !important;
- }
- .u-type-none-light-bg .u-news-item {
- color: #f1f1f1 !important;
- }
- </style>
|