1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- .wxPopupDialog {
- // position: relative;
- overflow: initial;
- margin: 0 40px;
- width: calc(100% - 75px) !important;
- // margin-top: -160px;
- border-radius: 20px !important;
- &::before {
- position: absolute;
- content: ' ';
- top: -38px;
- left: 50%;
- margin-left: -34px;
- display: inline-block;
- background: url('../activation-register/images/message-top.png') no-repeat top center;
- background-size: contain;
- width: 78px;
- height: 76px;
- }
- }
- .popupContainer {
- background: url('../activation-register/images/message-bg2.png') no-repeat top center;
- background-size: contain;
- border-radius: 20px;
- overflow: hidden;
- padding-bottom: 20px;
- text-align: center;
- .title1 {
- padding-top: 53px;
- text-align: center;
- font-size: 18px;
- font-weight: 500;
- color: #000000;
- }
- .popupTips {
- font-size: 15px;
- color: #666666;
- line-height: 21px;
- padding: 16px 20px 20px;
- word-break: break-all;
- }
- .btnGroup {
- display: flex;
- align-items: center;
- margin: 0 13px
- }
- .button {
- // padding: 0 44px;
- height: 40px;
- font-size: 16px;
- color: #333333;
- border-color: #AAAAAA;
- margin: 0 7px;
- flex: 1;
- }
- .confirmBtn {
- background: linear-gradient(305deg, #40C8FF 0%, #3192FF 100%);
- color: #FFFFFF;
- border: none;
- }
- .iconClose {
- position: absolute;
- top: 16px;
- right: 16px;
- display: inline-block;
- background: url('../../common/images/message-close.png') no-repeat top center;
- background-size: cover;
- width: 18px;
- height: 18px;
- }
- }
|