.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; }