index.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /**index.wxss**/
  2. .page {
  3. height: 100vh;
  4. display: flex;
  5. flex-direction: column;
  6. background-image: url('https://houseoss.4dkankan.com/mini-ar-test/assets/bg2.png');
  7. background-position: center top;
  8. background-repeat: no-repeat;
  9. background-size: contain;
  10. justify-content: space-between;
  11. }
  12. .top {
  13. padding-top: 0;
  14. width: 100%;
  15. display: flex;
  16. flex-direction: column;
  17. justify-content: flex-start;
  18. align-items: center;
  19. }
  20. .section {
  21. width: 339px;
  22. height: 136px;
  23. display: flex;
  24. flex-direction: column;
  25. justify-content: flex-start;
  26. margin-bottom: 25px;
  27. position: relative;
  28. color: #a59d99;
  29. }
  30. .section .cover {
  31. background-repeat: no-repeat;
  32. background-position: top top;
  33. background-size: cover;
  34. width: 100%;
  35. height: 114px;
  36. position: absolute;
  37. top: 0;
  38. left: 0;
  39. z-index: 100;
  40. }
  41. .section .cover1 {
  42. background-image: url('https://houseoss.4dkankan.com/mini-ar-test/assets/pic1.png');
  43. }
  44. .section .cover2 {
  45. background-image: url('https://houseoss.4dkankan.com/mini-ar-test/assets/pic2.png');
  46. }
  47. .section .cover3 {
  48. background-image: url('https://houseoss.4dkankan.com/mini-ar-test/assets/pic3.png');
  49. }
  50. .section .text {
  51. background-color: #ffffff;
  52. width: calc(100% - 28px);
  53. height: 38px;
  54. border-radius: 10px;
  55. position: absolute;
  56. z-index: 0;
  57. bottom: 0;
  58. left: 50%;
  59. transform: translateX(-50%);
  60. display: flex;
  61. align-items: flex-end;
  62. padding: 0 10px;
  63. padding-bottom: 5px;
  64. box-shadow: 2px 3px 6px 2px rgb(0 0 0 / 15%);
  65. }
  66. .section2 {
  67. background-image: url('https://houseoss.4dkankan.com/mini-ar-test/assets/pic2.png');
  68. }
  69. .section3 {
  70. background-image: url('https://houseoss.4dkankan.com/mini-ar-test/assets/pic3.png');
  71. }
  72. .bottom {
  73. width: 100%;
  74. display: flex;
  75. flex-direction: column;
  76. justify-content: flex-start;
  77. align-items: center;
  78. margin-bottom: 80px;
  79. }
  80. .scan {
  81. background-image: url('https://houseoss.4dkankan.com/mini-ar-test/assets/btn.png');
  82. width: 176px;
  83. height: 46px;
  84. font-size: 18px;
  85. color: #ffffff;
  86. display: flex;
  87. justify-content: center;
  88. align-items: center;
  89. position: relative;
  90. }
  91. .scan .icon {
  92. width: 24px;
  93. height: 24px;
  94. position: absolute;
  95. right: 10px;
  96. top: 50%;
  97. transform: translateY(-50%);
  98. }
  99. .scan text {
  100. margin-left: -20px;
  101. }
  102. .upload {
  103. padding-top: 10px;
  104. }
  105. .upload text {
  106. font-size: 14px;
  107. color: #b09369;
  108. }