12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- .wxPopupDialog {
- // position: relative;
- overflow: initial;
- // margin-top: -160px;
- &::before {
- position: absolute;
- content: ' ';
- top: -23px;
- left: 50%;
- margin-left: -45px;
- display: inline-block;
- background: url('../../common/images/message-top.png') no-repeat top center;
- background-size: contain;
- width: 89px;
- height: 57px;
- }
- }
- .popupContainer {
- background: url('../../common/images/message-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: 16px 20px;
- 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;
- }
- }
|