123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- .transfer-box {
- width: 100%;
- padding: 32rpx;
- box-sizing: border-box;
- .transfer-title {
- position: relative;
- width: 100%;
- height: 44rpx;
- view {
- font-size: 30rpx;
- &:nth-of-type(1) {
- color: #222222;
- font-weight: 600;
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- }
- &:nth-of-type(2) {
- position: absolute;
- right: 0;
- color: #999999;
- }
- }
- }
- .transfer-list {
- width: 100%;
- margin-top: 48rpx;
- @include flex(space-between, null, 16rpx);
- flex-wrap: wrap;
- .transfer-item {
- width: 218rpx;
- height: 160rpx;
- background-color: #ffebe3;
- border-radius: 16rpx;
- text-align: center;
- line-height: 160rpx;
- color: #ef530e;
- font-size: 48rpx;
- font-weight: 600;
- }
- .custom {
- font-size: 28rpx;
- line-height: normal;
- font-weight: normal;
- @include flex(center, column, null);
- input {
- width: 160rpx;
- height: 50rpx;
- border-bottom: 2rpx solid #ff986a;
- font-weight: 600;
- }
- }
- .act{
- background-color: #EF530E;
- color: #FFFFFF;
- }
- }
- .transfer-account {
- margin-top: 32rpx;
- .account-title {
- color: #000000;
- font-size: 28rpx;
- }
- .account-input {
- .query {
- color: #ef530e;
- font-size: 28rpx;
- }
- }
- .account-info{
- width: 100%;
- height: 148rpx;
- @include flex(flex-start,null,16rpx);
- .info-image{
- width: 80rpx;
- height: 80rpx;
- image{
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- }
- .info-text{
- .name{
- font-size: 28rpx;
- color: rgba(0, 0, 0, 0.9);
- font-weight: 600;
- margin-bottom: 4rpx;
- }
- .text{
- @include flex(flex-start,null,32rpx);
- color: rgba(0, 0, 0, 0.4);
- font-size: 24rpx;
- }
- }
- }
- }
- .transfer-btn{
- @include flex(space-between,null,null);
- .available{
- color: rgba(0, 0, 0, 0.9);
- font-size: 32rpx;
- text{
- font-weight: 600;
- }
- }
- .btn{
- width: 362rpx;
- height: 96rpx;
- background-color: #EF530E;
- border-radius: 16rpx;
- color: #ffffff;
- font-size: 28rpx;
- text-align: center;
- line-height: 96rpx;
- }
- }
- }
- ::v-deep .tui-modal__container{
- height: unset;
- }
|