123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- /* required by usingComponents */
- /* pages/balance/balance.wxss */
- page{
- background: #ffffff;
- }
- .balance-top {
- height: 80rpx;
- text-align: center;
- font-size: 24rpx;
- background-color: #fff2e2;
- color: #fa5207;
- line-height: 80rpx;
- }
- .chongzhi {
- padding: 30rpx 40rpx;
- }
- .card {
- padding: 50rpx;
- border-radius: 20rpx;
- background: linear-gradient(to right, #ffd514, #ffe330);
- margin-bottom: 10rpx;
- }
- .balance-num {
- margin-top: 10rpx;
- font-size: 26rpx;
- }
- .iconfont {
- font-size: 24rpx;
- display: inline-block;
- margin-left: 6rpx;
- }
- .yue {
- font-size: 28rpx;
- }
- .money {
- font-size: 60rpx;
- font-weight: bold;
- }
- .yuan {
- font-size: 30rpx;
- font-weight: 600;
- display: inline-block;
- margin-left: 4rpx;
- }
- .money-list {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- flex-direction: row;
- }
- .money-item,
- .active {
- flex: 0 0 45%;
- margin-top: 30rpx;
- height: 120rpx;
- border-radius: 20rpx;
- line-height: 120rpx;
- border: solid 1rpx #ffce3b;
- text-align: center;
- box-shadow: 0 0 15px #fffce1;
- }
- .active {
- background-color: #ffe02d;
- }
- @media (max-height: 500px) {
- .bottom-card {
- display: none;
- }
- }
- .bottom-card {
- position: fixed;
- bottom: 0;
- left: 0;
- padding: 50rpx 0;
- padding-bottom: 120rpx;
- width: 100%;
- z-index: 333;
- box-shadow: 0 0 15px #f6f6f6;
- }
- .bottom-list {
- text-align: center;
- color: #fff;
- font-size: 32rpx;
- font-weight: 600;
- }
- .bottom-item1 {
- width: 70%;
- margin: 0 auto;
- height: 100rpx;
- line-height: 100rpx;
- border-radius: 50rpx;
- background-color: var(--globleColor);
- }
- .bottom-item2 {
- flex: 0 0 36%;
- margin-right: 10%;
- height: 100rpx;
- border-radius: 50rpx;
- line-height: 100rpx;
- background-color: var(--greenButton);
- }
- .frame {
- height: 100vh;
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- background-color: rgba(0, 0, 0, 0.6);
- }
- .frame-content {
- padding: 80rpx 50rpx;
- width: 70%;
- margin: 0 auto;
- margin-top: 40%;
- background-color: #fff;
- opacity: 1;
- font-size: 28rpx;
- }
- .frame-title {
- margin-left: 50rpx;
- color: #909090;
- }
- .money-detail {
- display: flex;
- margin-top: 20rpx;
- }
- .detail-item {
- flex: 1;
- padding: 20rpx 0;
- text-align: center;
- }
- .detail-item:first-child {
- border-right: solid 1rpx #d6d6d6;
- }
- .detail-nums {
- font-size: 40rpx;
- font-weight: 600;
- }
- .detail-text {
- margin-top: 10rpx;
- color: #333333;
- }
- .zidingyi{
- margin-top: 50rpx;
- }
- .zidingyi input{
- height: 70rpx;
- /* width: 80%; */
- border: solid 1rpx var(--globleColor);
- /* padding: 0 20rpx; */
- border-radius: 12rpx;
- }
- .no-input{
- font-size: 26rpx;
- }
|