| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- .wxPopupDialog {
- // position: relative;
- overflow: initial;
- // margin-top: -160px;
- &::before {
- position: absolute;
- content: ' ';
- top: -73px;
- left: 50%;
- margin-left: -86px;
- display: inline-block;
- background: url('../../common/images/wx-no-top.png') no-repeat top center;
- background-size: contain;
- width: 172px;
- height: 154px;
- }
- }
- .popupContainer {
- background: url('../../common/images/wx-no-bg.png') no-repeat top center;
- background-size: cover;
- border-radius: 20px;
- overflow: hidden;
- padding-bottom: 16px;
- text-align: center;
- .title1 {
- padding-top: 57px;
- text-align: center;
- font-size: 18px;
- font-weight: 500;
- color: #3b2300;
- }
- .popupTips {
- padding-top: 16px;
- padding-bottom: 16px;
- text-align: center;
- font-size: 15px;
- color: #777777;
- line-height: 21px;
- }
- .button {
- padding: 0 32px;
- height: 30px;
- font-size: 16px;
- font-size: 14px;
- color: #777;
- border-color: #E7E7E7;
- }
- }
|