123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- .balance {
- width: 100vw;
- min-height: 100vh;
- background-color: rgb(247, 247, 247);
- padding: 32rpx;
- padding-bottom: 50rpx;
- box-sizing: border-box;
- .header-box{
- width: 100%;
- height: 384rpx;
- position: relative;
- .balance-header {
- width: 100%;
- height: 304rpx;
- background: url("@/static/image/user/voucherPrice_bg.png") no-repeat;
- background-size: 100% 100%;
- position: relative;
- z-index: 5;
- padding: 0 48rpx;
- padding-top: 48rpx;
- box-sizing: border-box;
- .header-top {
- @include flex(space-between, null, null);
- .price-left {
- @include flex(center, column, 10rpx);
- text {
- &:nth-of-type(1) {
- font-size: 56rpx;
- background: linear-gradient(180deg, #FFFFFF 0%, #FFCAC0 100%);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- font-weight: 600;
- }
- &:nth-of-type(2) {
- color: #ffffff;
- font-size: 28rpx;
- }
- }
- }
- .price-right {
- width: 160rpx;
- height: 64rpx;
- text-align: center;
- line-height: 64rpx;
- font-size: 32rpx;
- font-weight: 500;
- background: rgba(255, 255, 255, 0.4);
- border: 2rpx solid rgba(255, 255, 255, 0.39);
- color: #ffffff;
- border-radius: 50rpx;
- }
- }
- .header-bottom {
- position: absolute;
- bottom: 0;
- left: 50%;
- transform: translateX(-50%);
- width: calc(100% - 64rpx);
- height: 96rpx;
- border-top: 2rpx solid rgba(255, 255, 255, 0.4);
- @include flex(flex-start, null, 104rpx);
- .text-box {
- @include flex(flex-start, null, 16rpx);
- text {
- &:nth-of-type(1) {
- color: rgba(255, 255, 255, 0.8);
- font-size: 24rpx;
- }
- &:nth-of-type(2) {
- color: #ffffff;
- font-size: 32rpx;
- font-weight: 600;
- }
- }
- }
- }
- }
- .header-tool{
- width: 100%;
- height: 96rpx;
- background-color: #ffffff;
- position: absolute;
- left: 0;
- bottom: 2rpx;
- z-index: 2;
- border-radius: 16rpx;
- @include flex(center,null,null);
- .tool-item{
- flex: 1;
- height: 100%;
- text-align: center;
- line-height: 116rpx;
- color: #EA5C1E;
- font-size: 28rpx;
- font-weight: 600;
- &:nth-of-type(1){
- position: relative;
- &::after{
- content: '';
- position: absolute;
- right: 0;
- top: 40rpx;
- width: 2rpx;
- background-color: #EBEBEB;
- height: 50%;
- }
- }
- }
- }
- }
- .balance-container {
- width: 100%;
- margin-top: 32rpx;
- .text-tab {
- @include flex(flex-start, null, 64rpx);
- view {
- color: rgba(0, 0, 0, 0.4);
- font-size: 32rpx;
- padding-bottom: 10rpx;
- }
- .active {
- position: relative;
- color: rgba(0, 0, 0, 0.9);
- &::after {
- content: "";
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- bottom: 0;
- width: 32rpx;
- height: 8rpx;
- background-color: #ff604e;
- border-radius: 4rpx;
- }
- }
- }
- .record-list {
- margin-top: 16rpx;
- width: 100%;
- background-color: #ffffff;
- border-radius: 16rpx;
- .record-item {
- width: 100%;
- height: 168rpx;
- border-bottom: 2rpx solid #f1f1f1;
- padding: 32rpx 24rpx 32rpx 32rpx;
- box-sizing: border-box;
- @include flex(space-between, null, null);
- .item-left {
- @include flex(center, column, 16rpx);
- align-items: flex-start;
- text {
- &:nth-of-type(1) {
- color: rgba(0, 0, 0, 0.9);
- font-size: 28rpx;
- font-weight: 600;
- }
- &:nth-of-type(2) {
- color: rgba(0, 0, 0, 0.4);
- font-size: 28rpx;
- }
- }
- }
- .item-right {
- font-size: 28rpx;
- color: #ea5c1e;
- font-weight: 900;
- }
- }
- .no-more {
- width: 100%;
- height: 100rpx;
- text-align: center;
- line-height: 100rpx;
- font-size: 24rpx;
- color: rgba(0, 0, 0, 0.24);
- }
- }
- .empty {
- margin-top: 96rpx;
- width: 100%;
- @include flex(flex-start, column, 32rpx);
- image {
- width: 320rpx;
- height: 320rpx;
- display: block;
- }
- text {
- font-weight: 600;
- font-size: 28rpx;
- color: rgba(0, 0, 0, 0.4);
- }
- }
- }
- }
|