1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .clausePopup {
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- background: rgba(0,0,0,0.7);
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .btn-rechargeNow {
- width: 328rpx;
- height: 70rpx;
- line-height: 70rpx;
- text-align: center;
- background-color: #fe7124;
- background: linear-gradient(to right, #ff7a21 0%, #feb25a 100%);
- text-align: center;
- color: #fff;
- border-radius: 16rpx;
- margin: 0 auto;
- margin-top: 40rpx;
- }
- .clauseList {
- height: 65%;
- width: 80%;
- background: #fff;
- border-radius: 20rpx;
- font-size: 30rpx;
- color: #999;
- padding: 0 3%;
- line-height: 1.5;
- }
- .clauseList .title {
- font-size: 34rpx;
- color: #000;
- text-align: center;
- margin: 30rpx 0;
- }
|