| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- page {
- height: 100%;
- background: linear-gradient(90deg, rgba(78, 171, 225, 1) 0%, rgba(49, 121, 225, 1) 100%);
- }
- .part {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- height: 50%;
- font-size: 28rpx;
- }
- .money {
- font-size: 80rpx;
- color: #fff;
- margin: 30rpx 0;
- }
- .text {
- font-size: 12px;
- color: #b0d1ff;
- }
- .tixian {
- width: 440rpx;
- height: 100rpx;
- line-height: 100rpx;
- text-align: center;
- color: #3f91e1;
- background: #fff;
- border-radius: 50rpx;
- margin-top: 60rpx;
- }
- .money-detail {
- color: #169bd5;
- }
- .icon {
- width: 40rpx;
- }
- .shouzhi {
- font-size: 28rpx;
- color: #fff;
- }
- .cover {
- height: 100%;
- width: 100%;
- position: fixed;
- left: 0;
- top: 0;
- background: rgba(0, 0, 0, 0.4);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .model {
- width: 600rpx;
- height: 320rpx;
- background: #f8f8f8;
- border-radius: 30rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .message {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 0 100rpx;
- box-sizing: border-box;
- text-align: center;
- }
- .model-button {
- border-top: 2rpx solid #eee;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .cancel, .confirm {
- width: 50%;
- color: #327ae1;
- line-height: 1;
- text-align: center;
- box-sizing: border-box;
- padding: 30rpx 0;
- }
- .confirm {
- flex: 1;
- font-weight: bold;
- }
- .cancel {
- border-right: 2rpx solid #eee;
- }
|