| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /**
- * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
- * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
- * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
- */
- @import '@/uni_modules/uview-ui/theme.scss';
- // app 样式配置
- $app-bg-color: #f3f4f8;
- // 重置样式
- $u-type-primary: #26caa6;
- // 主色调
- $primaryColor: #26caa6;
- // $u-primary: #FD8701;
- $u-primary: #79A9CE;
- $u-primary-dark: #606266;
- $u-primary-disabled: #909399;
- $u-primary-light: #ecf5ff;
- $u-warning: #DDAA6C;
- $u-warning-dark: #f1a532;
- $u-warning-disabled: #f9d39b;
- $u-warning-light: #fdf6ec;
- .text-info {
- color: #333333;
- }
- .text-warning {
- color: #F37B1D
- }
- @function px($size) {
- @return $size * 1;
- }
- .loadingPage{
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #2D2D2D;
- color: #fff;
- }
- page::-webkit-scrollbar {
- display: none !important;
- width: 0;
- height: 0;
- color: transparent;
- background-color: transparent;
- }
- ::-webkit-scrollbar {
- display: none !important;
- width: 0;
- height: 0;
- color: transparent;
- background-color: transparent;
- }
- ::-webkit-scrollbar-track {
- width: 0;
- height: 0;
- }
- .cu-bar .content {
- font-size: 38rpx;
- font-weight: 600;
- }
|