index.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. .container-box {
  2. z-index: 2;
  3. width: 100vw;
  4. height: 100vh;
  5. background: rgba(0,0,0,0.1);
  6. color: #FFFFFF;
  7. position: fixed;
  8. text-align: center;
  9. padding-top: 50vh;
  10. font-size: 16px;
  11. top: 0;
  12. right: 0;
  13. left: 0;
  14. bottom: 0;
  15. }
  16. .container {
  17. width: 100vw;
  18. height: 100vh;
  19. background-color: #F4F5F9;
  20. position: fixed;
  21. top: 0;
  22. right: 0;
  23. left: 0;
  24. bottom: 0;
  25. }
  26. .counter-warp {
  27. position: absolute;
  28. top: 0;
  29. right: 0;
  30. left: 0;
  31. width: 100%;
  32. height: 100%;
  33. display: flex;
  34. flex-direction: column;
  35. justify-content: space-between;
  36. align-items: center;
  37. }
  38. .counter-main {
  39. height: 100%;
  40. display: flex;
  41. flex-direction: column;
  42. align-items: center;
  43. }
  44. .background-image {
  45. width: 100%;
  46. }
  47. .header-content {
  48. display: flex;
  49. width: 100vw;
  50. padding: 80px 20px 40px;
  51. box-sizing: border-box;
  52. top: 100rpx;
  53. align-items: center;
  54. }
  55. .header-content>image {
  56. width: 128px;
  57. height: 84px;
  58. }
  59. .header-content>.icon {
  60. width: 76px;
  61. height: 50px;
  62. }
  63. .text {
  64. text-align: left;
  65. padding-left: 40rpx;
  66. }
  67. .text-header {
  68. height: 72rpx;
  69. font-size: 48rpx;
  70. line-height: 72rpx;
  71. color: #FFFFFF;
  72. }
  73. .text-content {
  74. width: 364rpx;
  75. height: 36rpx;
  76. font-size: 24rpx;
  77. line-height: 36rpx;
  78. color: #FFFFFF;
  79. }
  80. .tui-scene-router {
  81. background: #f4f5f9;
  82. /* position: absolute; */
  83. width: 670rpx;
  84. /* top: 402rpx;
  85. left: 40rpx; */
  86. }
  87. .scene-item-card {
  88. width: 670rpx;
  89. height: 176rpx;
  90. margin-bottom: 32rpx;
  91. display: flex;
  92. align-items: center;
  93. background-color: #FFFFFF;
  94. border-radius: 8rpx;
  95. }
  96. .tui-scene-icon {
  97. width: 96rpx;
  98. height: 96rpx;
  99. margin-left: 48rpx;
  100. }
  101. .tui-scene-name {
  102. line-height: 50rpx;
  103. padding-left: 32rpx;
  104. color: #333333;
  105. font-size: 36rpx;
  106. }
  107. .tui-scene-link {
  108. width: 32rpx;
  109. height: 32rpx;
  110. margin-left: 286rpx;
  111. }
  112. .foot {
  113. font-family: PingFangSC-Regular;
  114. font-size: 14px;
  115. color: #006EFF;
  116. letter-spacing: 0;
  117. text-align: center;
  118. line-height: 18px;
  119. padding: 16px;
  120. }