| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /**app.wxss**/
- @import "colorui/main.wxss";
- @import "colorui/icon.wxss";
- Page {
- background-color: #f8f8f8;
- --color: #2D59E6;
- }
- .line-color,
- .text-color {
- color: var(--color);
- }
- .line-color::after {
- border-color: var(--color);
- }
- .bg-color {
- background-color: var(--color);
- color: var(--white);
- }
- .toptip {
- line-height: 40rpx;
- text-align: center;
- width: 100%;
- position: fixed;
- display: none;
- z-index: 10;
- top: 0;
- left: 0;
- padding: 15rpx;
- z-index: 99999;
- }
- .show {
- display: block;
- }
- .hide {
- display: none;
- }
- pages {
- position: relative;
- z-index: 9999998;
- background: #fff;
- }
- .textH1 {
- color: #333333;
- font-size: 30rpx;
- }
- .textH3 {
- color: #999999;
- font-size: 24rpx;
- }
- .addLabel{
- text-align: center;
- padding: 30rpx;
- position: fixed;
- bottom: 0;
- width: 100%;
- background-color: var(--color);
- color: #fff;
- }
|