| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /* page {
- background-repeat: no-repeat;
- background-size: 100% 100%;
- -moz-background-size: 100% 100%;
- background-color: #333;
- } */
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 100%;
- height: 100vh;
- overflow: hidden;
- position: relative;
- }
- .bg-image {
- width: 100vw;
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- z-index: -1;
- }
- .scan-body {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 100%;
- height: 100vh;
- }
- .nav-bar {
- width: 100vw;
- background-color: transparent !important;
- background: transparent !important;
- position: sticky;
- top: 0;
- left: 0;
- }
- .scan-content {
- display: flex;
- flex: 1;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width: 100%;
- position: relative;
- }
- .bg-phone-image {
- width: 480rpx;
- display: block;
- }
- .scan-tips {
- font-size: 24rpx;
- color: #6C6970;
- width: 480rpx;
- text-align: center;
- position: absolute;
- left: 135rpx;
- top: 740rpx;
- }
- .scan-btn-box {
- position: absolute;
- left: 60rpx;
- bottom: 250rpx;
- width: 630rpx;
- height: 90rpx;
- display: flex;
- border-radius: 45rpx;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- background: linear-gradient(315deg, #0ABCA4 0%, rgba(11, 195, 170, 0.8) 100%);
- }
- .scan-btn-box image {
- width: 40rpx;
- height: 40rpx;
- display: block;
- }
- .scan-btn-box text {
- font-size: 32rpx;
- margin-left: 20rpx;
- color: #FFFFFF;
- }
- .scan-btn-box:active {
- opacity: 0.7;
- }
|