1234567891011121314151617181920212223242526272829303132333435363738394041 |
- @import '../../app.less';
- .g-money {
- display: inline-block;
- font-size: 10px;
- span {
- margin-left: 2px;
- }
- }
- .g-money.default {
- color: #F5B44A;
- }
- .g-money.sell {
- color: #FF7130;
- }
- .g-money.basic {
- span {
- font-size: 14px;
- }
- }
- .g-money.small {
- span {
- font-size: 12px;
- }
- }
- .g-money.lager {
- span {
- font-size: 16px;
- }
- }
- .g-money.default.disabled {
- color: unset;
- text-decoration: line-through;
- }
|