| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .cashProtocol {
- position: relative;
- .submit {
- width: 85%;
- margin-left: 7.5%;
- margin-bottom: 15px;
- position: absolute;
- bottom: 0;
- height: 44px;
- line-height: 44px;
- z-index: 99;
- }
- }
- .dialogPopup {
- width: 84%;
- border-radius: 8px;
- }
- .dialogSection {
- padding: 18px;
- .dialogTitle {
- display: flex;
- align-items: center;
- font-size: 18px;
- font-weight: 500;
- color: #333333;
- line-height: 30px;
- &::before {
- content: '';
- width: 4px;
- height: 17px;
- background: linear-gradient(180deg, #59E5D5 0%, #2DC7AA 100%);
- border-radius: 3px;
- margin-right: 7px;
- }
- }
- .dialogContent {
- padding-top: 20px;
- padding-bottom: 32px;
- font-size: 14px;
- color: #666666;
- line-height: 20px;
- }
- .dialogBtn {
- display: block;
- width: 114px;
- height: 40px;
- font-size: 16px;
- margin: 0 auto;
- }
- }
|