123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- page {
- min-height: 100%;
- background: linear-gradient(180deg, #FFFFFF, #F2F2F2);
- }
- .wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- }
- .card {
- width: 100%;
- min-height: 292rpx;
- background: linear-gradient(43deg, #E77E1E, #FF5E45);
- border-radius: 24rpx;
- padding: 24rpx 42rpx 14rpx;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .card-label {
- color: #FAE6D7;
- font-size: 28rpx;
- }
- .card-middle {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .money {
- color: #FFFFFF;
- font-size: 40rpx;
- }
- .money text {
- font-size: 70rpx;
- font-weight: bold;
- }
- .btn {
- width: 182rpx;
- height: 64rpx;
- line-height: 64rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #FFFFFF;
- border-radius: 100rpx;
- color: #F2501A;
- font-size: 28rpx;
- }
- .card-bottom {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .card-bottom-row {
- display: flex;
- flex-direction: column;
- }
- .card-bottom-row-label {
- font-size: 30rpx;
- color: rgba(255, 255, 255, 0.8);
- margin-bottom: 5rpx;
- }
- .small-money {
- color: #fff;
- font-size: 30rpx;
- }
- .small-money text {
- font-size: 40rpx;
- font-weight: bold;
- }
- .password-msg {
- color: #FEF2EE;
- font-size: 24rpx;
- }
- .tab-list {
- width: 100%;
- white-space: nowrap;
- }
- .child {
- display: inline-block;
- line-height: 90rpx;
- font-size: 32rpx;
- margin-right: 88rpx;
- }
- .child:last-child {
- margin-right: 0;
- }
- .child.active {
- color: #F2501A;
- }
- .list {
- width: 100%;
- display: flex;
- flex-direction: column;
- }
- .item {
- width: 100%;
- min-height: 114rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- position: relative;
- padding: 0 42rpx;
- box-sizing: border-box;
- background-color: #fff;
- }
- .item::after {
- content: "";
- position: absolute;
- width: calc(100% - 84rpx);
- height: 1px;
- left: 50%;
- transform: translate(-50%, 0);
- bottom: 0;
- background-color: #EEEEEE;
- }
- .item:first-child {
- border-top-left-radius: 16rpx;
- border-top-right-radius: 16rpx;
- }
- .item:last-child {
- border-bottom-left-radius: 16rpx;
- border-bottom-right-radius: 16rpx;
- }
- .item:last-child::after {
- background: initial;
- }
- .item-sidebar {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .item-name {
- color: #202020;
- font-size: 28rpx;
- }
- .numadd {
- color: #202020;
- font-size: 32rpx;
- font-weight: bold;
- }
- .numless {
- color: #F2501A;
- font-size: 32rpx;
- font-weight: bold;
- }
- .item-msg {
- width: 100%;
- color: #A7A7A7;
- font-size: 24rpx;
- margin-top: 4rpx;
- }
- .normal-box {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- color: #999999;
- font-size: 26rpx;
- padding: 80rpx 0;
- }
- .normal-box image {
- width: 580rpx;
- margin-bottom: 12rpx;
- }
|