visitor_qrcode.acss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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 0;
  46. width: calc(100% - 64rpx);
  47. height: calc(100% - 26rpx);
  48. background-color: #fff;
  49. display: flex;
  50. flex-direction: column;
  51. align-items: center;
  52. }
  53. .qrcode-layout .qrcode_head {
  54. width: 690rpx;
  55. height: 180rpx;
  56. background-image: url('/static/visitor_qrcode/head_bg.png');
  57. background-position: left top;
  58. background-size: 100% 100%;
  59. background-repeat: no-repeat;
  60. color: #fff;
  61. font-weight: 500;
  62. border-radius: 16rpx;
  63. overflow: hidden;
  64. }
  65. .qrcode-layout .qrcode_head .head_top,.head_bottom {
  66. display: flex;
  67. align-items: center;
  68. width: calc(100% - 80rpx);
  69. height: 92rpx;
  70. padding: 0 40rpx;
  71. font-size: 34rpx;
  72. background: #233F8726;
  73. }
  74. .qrcode-layout .qrcode_head .head_bottom {
  75. font-size: 32rpx;
  76. background: none;
  77. }
  78. .qrcode-layout .qrcode-prompt {
  79. margin-top: 64rpx;
  80. align-self: flex-start;
  81. }
  82. .qrcode-layout .qrocde-tabs {
  83. margin-top: 28rpx;
  84. align-self: flex-start;
  85. display: flex;
  86. align-items: center;
  87. justify-content: flex-start;
  88. }
  89. .qrcode-layout .qrocde-tabs .tabs-item {
  90. /* min-width: 200rpx; */
  91. max-width: 290rpx;
  92. width: fit-content;
  93. display: flex;
  94. align-items: center;
  95. justify-content: center;
  96. padding: 0 34rpx;
  97. border-radius: 50rpx;
  98. height: 80rpx;
  99. overflow: hidden;
  100. background-color: #F1F7FF;
  101. color: #5F77B8;
  102. font-weight: 500;
  103. font-size: 30rpx;
  104. margin-left: 24rpx;
  105. text-align: center;
  106. }
  107. .qrcode-layout .qrocde-tabs .tabs-item:first-of-type {
  108. margin-left: 0;
  109. }
  110. .qrcode-layout .qrocde-tabs .tab-item-selected {
  111. background-color: #3D73FF;
  112. color: #FFFFFF;
  113. }
  114. .qrcode-layout .qrcode-content {
  115. margin-top: 84rpx;
  116. width: calc(100% - 56rpx);
  117. margin-left: 28rpx;
  118. margin-right: 28rpx;
  119. display: flex;
  120. flex-direction: column;
  121. }
  122. .qrcode-layout .qrcode-content .content-image {
  123. width: 592rpx;
  124. height: 592rpx;
  125. display: flex;
  126. align-items: center;
  127. justify-content: center;
  128. background-image: url('/static/visitor_qrcode/qrcode_bg.png');
  129. background-position: left top;
  130. background-repeat: no-repeat;
  131. background-size: 100% 100%;
  132. }
  133. .qrcode-layout .qrcode-content .qrcode-title {
  134. margin-top: 28rpx;
  135. align-self: center;
  136. color: #333333;
  137. font-weight: 700;
  138. font-size: 40rpx;
  139. }