27 lines
418 B
CSS
27 lines
418 B
CSS
/**
|
|
* 金额
|
|
*/
|
|
.wallet-content .normal-money,
|
|
.wallet-content .frozen-money,
|
|
.wallet-content .give-money {
|
|
font-weight: 700;
|
|
}
|
|
.wallet-content .normal-money {
|
|
color: #4CAF50;
|
|
}
|
|
.wallet-content .frozen-money {
|
|
color: #FF9800;
|
|
}
|
|
.wallet-content .give-money {
|
|
color: #666;
|
|
}
|
|
|
|
/**
|
|
* 编辑
|
|
*/
|
|
@media only screen and (min-width: 641px) {
|
|
.wallet-content form .am-alert {
|
|
margin: 0;
|
|
}
|
|
}
|