1234567891011121314151617181920212223242526272829303132 |
- @charset "UTF-8";
- /**
- * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
- * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
- */
- .payment {
- width: 600rpx;
- }
- .payment .header {
- border-bottom: 1px solid #eee;
- background-color: #f8f8f8;
- }
- .payment .alert-info {
- background-color: #d9edf7;
- border-color: #bce8f1;
- color: #3498db;
- border-radius: 6rpx;
- }
- .payment .alert-warning {
- background-color: #fcf8e3;
- border-color: #faebcc;
- color: #f39c12;
- border-radius: 6rpx;
- }
- .payment .price {
- color: red;
- }
- .payment .group {
- width: 100%;
- }
|