123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- .container {
- background-color: #f0f2f5;
- min-height: 100vh;
- padding: 30rpx;
- }
- .section {
- background-color: #ffffff;
- border-radius: 16rpx;
- padding: 30rpx;
- margin-bottom: 30rpx;
- box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.08);
- }
- .section-title {
- font-size: 36rpx;
- font-weight: bold;
- color: #333;
- margin-bottom: 20rpx;
- border-bottom: 2rpx solid #f0f0f0;
- padding-bottom: 15rpx;
- }
- .account-type-grid {
- display: flex;
- justify-content: space-around;
- margin-bottom: 30rpx;
- }
- .account-type-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 20rpx;
- border-radius: 10rpx;
- width: 30%;
- background-color: #f5f5f5;
- transition: all 0.3s ease;
- }
- .account-type-item.selected {
- background-color: #1890ff;
- color: white;
- }
- .account-type-icon {
- width: 80rpx;
- height: 80rpx;
- margin-bottom: 10rpx;
- }
- .input-group {
- background-color: #f9f9f9;
- border-radius: 10rpx;
- padding: 20rpx;
- }
- .input-item {
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
- border-bottom: 1rpx solid #f0f0f0;
- padding-bottom: 15rpx;
- }
- .input-item:last-child {
- border-bottom: none;
- margin-bottom: 0;
- }
- .label {
- width: 100rpx;
- font-size: 28rpx;
- color: #666;
- }
- .input {
- flex-grow: 1;
- text-align: right;
- font-size: 32rpx;
- color: #333;
- }
- .bank-select-item {
- align-items: center;
- }
- .bank-select {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- padding: 10rpx 0;
- border-bottom: 1rpx solid #f0f0f0;
- cursor: pointer;
- }
- .bank-name {
- flex-grow: 1;
- text-align: right;
- font-size: 32rpx;
- color: #333;
- }
- .bank-name::placeholder {
- color: #999;
- text-align: right;
- }
- .bank-name:disabled {
- background-color: transparent;
- }
- .select-icon {
- margin-left: 10rpx;
- color: #999;
- }
- .input {
- flex-grow: 1;
- text-align: right;
- font-size: 32rpx;
- color: #333;
- }
- .input::placeholder {
- color: #999;
- text-align: right;
- }
- .default-setting {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .default-label {
- font-size: 32rpx;
- color: #333;
- }
- .save-btn {
- width: 100%;
- background-color: #1890ff;
- color: #fff;
- margin-top: 50rpx;
- border-radius: 50rpx;
- padding: 20rpx;
- font-size: 32rpx;
- box-shadow: 0 6rpx 16rpx rgba(24, 144, 255, 0.3);
- transition: all 0.3s ease;
- }
- .save-btn:hover {
- background-color: #40a9ff;
- box-shadow: 0 8rpx 20rpx rgba(24, 144, 255, 0.4);
- }
- .bank-list-modal {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.5);
- display: none;
- z-index: 1000;
- opacity: 0;
- transition: opacity 0.3s ease;
- }
- .bank-list-modal.show {
- display: flex;
- opacity: 1;
- }
- .bank-list-content {
- background-color: #fff;
- width: 80%;
- max-height: 60%;
- margin: auto;
- border-radius: 16rpx;
- overflow: hidden;
- }
- .bank-list-title {
- text-align: center;
- font-size: 36rpx;
- font-weight: bold;
- padding: 30rpx;
- border-bottom: 1rpx solid #f0f0f0;
- }
- .bank-list-scroll {
- max-height: 500rpx;
- overflow-y: auto;
- }
- .bank-list-item {
- padding: 20rpx 30rpx;
- border-bottom: 1rpx solid #f0f0f0;
- text-align: center;
- transition: background-color 0.3s ease;
- }
- .bank-list-item:last-child {
- border-bottom: none;
- }
- .bank-list-item:hover {
- background-color: #f5f5f5;
- }
|