1234567891011121314151617181920212223242526272829303132333435363738 |
- .downloadContainer {
- overflow: hidden;
- background: url('./images/download_bg.png') no-repeat top center;
- background-size: cover;
- min-height: 100vh;
- padding: 0 42px 0;
- text-align: center;
- :global {
- .van-image {
- margin-top: 40px;
- }
- }
- }
- .buttonGroup {
- text-align: center;
- margin-top: 35px;
- margin-bottom: 35px;
- }
- .btn {
- width: 194px;
- height: 44px;
- line-height: 44px;
- }
- .wxpopup {
- width: 100%;
- height: 100vh;
- position: fixed;
- top: 0;
- left: 0;
- background: rgba(0, 0, 0, 0.5);
- z-index: 9999;
- img {
- width: 88%;
- margin: 0 6%;
- }
- }
|