visitor_qrcode.acss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. .vq-container {
  2. margin: 0;
  3. padding: 0;
  4. height: 100vh;
  5. }
  6. .vq-container .auth-layout {
  7. margin-left: 28rpx;
  8. margin-right: 28rpx;
  9. padding: 50rpx 36rpx 40rpx;
  10. width: calc(100% - 72rpx - 56rpx);
  11. background-color: #fff;
  12. border-radius: 8rpx;
  13. display: flex;
  14. flex-direction: column;
  15. align-items: flex-start;
  16. }
  17. .vq-container .auth-layout .title {
  18. font-size: 38rpx;
  19. font-weight: 500;
  20. line-height: 54rpx;
  21. color: #333333;
  22. }
  23. .submit-btn {
  24. margin-top: 236rpx;
  25. width: 100%;
  26. height: 98rpx;
  27. border-radius: 16rpx;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. font-weight: 500;
  32. font-size: 34rpx;
  33. border: none;
  34. color: #ffffff;
  35. background-color: #1677FF;
  36. }
  37. .btn-disabled {
  38. color: #B1B1B1;
  39. background-color: #F2F2F2;
  40. }
  41. .btn-hover {
  42. opacity: 0.6;
  43. }
  44. .vq-container .qrcode-layout {
  45. padding: 26rpx 32rpx 26rpx;
  46. width: calc(100% - 64rpx);
  47. background-color: #fff;
  48. display: flex;
  49. flex-direction: column;
  50. align-items: center;
  51. }
  52. .qrcode-layout .qrcode_head {
  53. width: 690rpx;
  54. height: 180rpx;
  55. background-image: url('/static/visitor_qrcode/head_bg.png');
  56. background-position: left top;
  57. background-size: 100% 100%;
  58. background-repeat: no-repeat;
  59. color: #fff;
  60. font-weight: 500;
  61. border-radius: 16rpx;
  62. overflow: hidden;
  63. }
  64. .qrcode-layout .qrcode_head .head_top,.head_bottom {
  65. display: flex;
  66. align-items: center;
  67. width: calc(100% - 80rpx);
  68. height: 92rpx;
  69. padding: 0 40rpx;
  70. font-size: 34rpx;
  71. background: #233F8726;
  72. }
  73. .qrcode-layout .qrcode_head .head_bottom {
  74. font-size: 32rpx;
  75. background: none;
  76. }
  77. .qrcode-layout .qrcode_item {
  78. width: 690rpx;
  79. height: 336rpx;
  80. margin-top: 32rpx;
  81. background-image: url('/static/visitor_qrcode/qrcode_item_bg.png');
  82. background-position: left top;
  83. background-size: 100% 100%;
  84. background-repeat: no-repeat;
  85. display: flex;
  86. }
  87. .qrcode-layout .qrcode_item:first-of-type {
  88. margin-top: 80rpx;
  89. }
  90. .qrcode-layout .qrcode_item .item-left {
  91. flex: none;
  92. padding: 0 40rpx;
  93. width: calc(242rpx - 80rpx);
  94. height: 336rpx;
  95. display: flex;
  96. align-items: center;
  97. font-size: 36rpx;
  98. color: #F6F9FF;
  99. font-weight: 500;
  100. line-height: 54rpx;
  101. text-align: center;
  102. }
  103. .qrcode-layout .qrcode_item .item-right {
  104. flex: auto;
  105. height: 336rpx;
  106. display: flex;
  107. align-items: center;
  108. justify-content: center;
  109. }
  110. .popup-layout {
  111. padding: 56rpx 40rpx 48rpx;
  112. overflow: hidden;
  113. display: flex;
  114. flex-direction: column;
  115. align-items: center;
  116. }
  117. .popup-layout .popup-title {
  118. font-weight: 500;
  119. font-size: 44rpx;
  120. color: #333333;
  121. }
  122. .popup-layout .close-btn {
  123. margin-top: 100rpx;
  124. width: 100%;
  125. height: 98rpx;
  126. border-radius: 16rpx;
  127. display: flex;
  128. justify-content: center;
  129. align-items: center;
  130. font-weight: 400;
  131. font-size: 36rpx;
  132. border: none;
  133. color: #ffffff;
  134. background-color: #1677FF;
  135. }