| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- /* page {
- background-repeat: no-repeat;
- background-size: 100% 100%;
- -moz-background-size: 100% 100%;
- background-color: #333;
- } */
- .container {
- /* --nav-bar-icon-color: black !important; */
- 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;
- }
- .bottom-view-privacy {
- position: absolute;
- left: 0;
- bottom: 400rpx;
- width: 100vw;
- display: flex;
- margin-top: 42rpx;
- justify-content: center;
- flex-direction: row;
- flex-wrap: wrap;
- align-items: center;
- }
- .privacy-checkbox {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .privacy-checkbox-icon {
- width: 36rpx;
- height: 36rpx;
- }
- .privacy-detail-btn {
- font-size: 24rpx;
- margin-left: 16rpx;
- color: #888888;
- }
- .privacy-detail-btn_tk {
- font-size: 24rpx;
- color: #0BC3AA;
- }
- .tips-box {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .tips-content {
- width: 630rpx;
- min-height: 566rpx;
- background: linear-gradient(180deg, #C7DAFF 0%, #FFFFFF 37%, #FFFFFF 100%);
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .tips-contentB {
- width: 630rpx;
- min-height: 566rpx;
- background: linear-gradient(180deg, #CCFFF8 0%, #FFFFFF 37%, #FFFFFF 100%);
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .tips-close-btn {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- height: 116rpx;
- width: 116rpx;
- }
- .ic-tips {
- margin-top: 42rpx;
- height: 200rpx;
- width: 200rpx;
- }
- .tips-title {
- margin-top: 40rpx;
- color: #3E3D44;
- font-size: 32rpx;
- }
- .tips-desc {
- width: calc(100% - 72rpx);
- margin-top: 30rpx;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 40rpx;
- color: #6C6970;
- font-size: 24rpx;
- }
|