styles.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. html {
  2. width: 100%;
  3. height: 100%;
  4. padding: 0;
  5. margin: 0;
  6. }
  7. body {
  8. width: 100%;
  9. height: 100%;
  10. padding: 0;
  11. margin: 0;
  12. }
  13. p {
  14. padding: 0;
  15. margin: 0;
  16. }
  17. .box {
  18. width: 100%;
  19. height: 100%;
  20. background-image: url("./../images/bg.png");
  21. background-position: center center;
  22. background-repeat: no-repeat;
  23. background-size: cover;
  24. background-attachment: fixed;
  25. position: relative;
  26. }
  27. .title {
  28. width: 100%;
  29. text-align: center;
  30. padding-top: 15vh;
  31. }
  32. .title img {
  33. /*width: 55%;*/
  34. /*height: 110px;*/
  35. object-fit: contain;
  36. }
  37. .menu {
  38. display: flex;
  39. flex-wrap: wrap;
  40. justify-content: space-between;
  41. width: 42%;
  42. margin: 7vh auto 0;
  43. }
  44. .menu-item {
  45. width: calc(50% - 1vw);
  46. min-width: 150px;
  47. height: 20vh;
  48. min-height: 150px;
  49. padding: 0 2vw;
  50. display: flex;
  51. justify-content: center;
  52. align-items: center;
  53. border-radius: 20px;
  54. text-align: center;
  55. margin-bottom: 5vh;
  56. color: #fff;
  57. font-size: 18px;
  58. cursor: pointer;
  59. background-position: center center;
  60. }
  61. .menu-item p {
  62. margin-top: 10px;
  63. }
  64. .menu-item:hover {
  65. opacity: 0.95;
  66. }
  67. .bg1 {
  68. /*background: linear-gradient(to bottom right, #da8ef3, #8b50dd);*/
  69. background-image: url('./../images/bg1.png');
  70. background-size: cover;
  71. }
  72. .bg2 {
  73. /*background: linear-gradient(to bottom right, #fdc043, #f09030);*/
  74. background-image: url('./../images/bg2.png');
  75. background-size: cover;
  76. }
  77. .bg3 {
  78. /*background: linear-gradient(to bottom right, #47e5bf, #1fadad);*/
  79. background-image: url('./../images/bg3.png');
  80. background-size: cover;
  81. }
  82. .bg4 {
  83. /*background: linear-gradient(to bottom right, #65ccfe, #3095f3);*/
  84. background-image: url('./../images/bg4.png');
  85. background-size: cover;
  86. }
  87. .dialog-box {
  88. display: none;
  89. }
  90. .dialog {
  91. position: absolute;
  92. top: 0;
  93. left: 0;
  94. width: 100%;
  95. height: 100%;
  96. display: flex;
  97. align-items: center;
  98. background-color: rgba(0, 0, 0, 0.9);
  99. }
  100. .dialog-code {
  101. width: 300px;
  102. border-radius: 5px;
  103. margin: 0 auto;
  104. text-align: center;
  105. padding: 30px;
  106. background-image: url('./../images/code-bg.png');
  107. background-position: center center;
  108. background-size: cover;
  109. position: relative;
  110. }
  111. .dialog-close {
  112. color: #fff;
  113. position: absolute;
  114. top: -23px;
  115. right: 0;
  116. z-index: 300;
  117. cursor: pointer;
  118. font-size: 15px;
  119. }
  120. .dialog-close:hover {
  121. text-decoration: underline;
  122. }
  123. .dialog-title {
  124. color: #fff;
  125. font-size: 20px;
  126. font-weight: 500;
  127. margin-bottom: 10px;
  128. padding: 0 11px;
  129. }
  130. .dialog-tips {
  131. color: #fff;
  132. font-size: 16px;
  133. margin-top: 10px;
  134. }
  135. #qrcode {
  136. display: flex;
  137. justify-content: center;
  138. padding: 15px 0;
  139. background: #fff;
  140. }
  141. @media (max-width: 1500px) and (min-width: 1300px) {
  142. .menu {
  143. width: calc(60% - 2vw);
  144. }
  145. }
  146. @media (max-width: 1300px) and (min-width: 1000px) {
  147. .menu {
  148. width: calc(70% - 2vw);
  149. }
  150. }
  151. @media screen and (max-width: 1000px) {
  152. html {
  153. height: auto;
  154. min-height: 100vh;
  155. }
  156. .title {
  157. padding-top: 7vh;
  158. }
  159. .title img {
  160. width: 90%;
  161. object-fit: contain;
  162. }
  163. .menu {
  164. width: 80%;
  165. justify-content: center;
  166. }
  167. .menu-item {
  168. width: 80%;
  169. }
  170. }