| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .followAccount {
- position: relative;
- min-height: 100vh;
- background: url('./images/top_bg.png') no-repeat top center,
- url('./images/bottom_bg.png') no-repeat bottom center,
- url('./images/bg.png') repeat center center;
- background-color: #5cbd75;
- background-size: 100%;
- padding: 443px 20px 0;
- overflow: hidden;
- &::before {
- content: ' ';
- position: absolute;
- width: 50px;
- height: 47px;
- background: url('./images/icon_small.png') no-repeat center center;
- background-size: contain;
- left: 0;
- top: 640px;
- z-index: 1;
- }
- .content2 {
- padding: 30px 0;
- }
- .saveQrcode {
- background: url('./images/btn.png') no-repeat center center;
- background-size: contain;
- width: 300px;
- height: 50px;
- margin: 0 auto;
- margin-bottom: 70px;
- }
- .followQrcode {
- position: absolute;
- top: 0;
- left: 0;
- z-index: -1;
- }
- }
|