App.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <template>
  2. <router-view></router-view>
  3. </template>
  4. <script setup></script>
  5. <style lang="scss">
  6. #app {
  7. font-family: Avenir, Helvetica, Arial, sans-serif;
  8. -webkit-font-smoothing: antialiased;
  9. -moz-osx-font-smoothing: grayscale;
  10. text-align: center;
  11. color: #2c3e50;
  12. }
  13. * {
  14. padding: 0px;
  15. margin: 0px;
  16. box-sizing: border-box;
  17. text-decoration: none;
  18. }
  19. /* 中间部分banner图样式 在此处设为全局样式 */
  20. .container_image {
  21. display: block;
  22. width: 100vw;
  23. height: 23.9583vw;
  24. }
  25. /* 每个中间展示区块的样式,提取为公共样式使用 */
  26. .homePage {
  27. width: 100vw;
  28. height: auto;
  29. display: flex;
  30. flex-direction: column;
  31. justify-content: center;
  32. align-items: center;
  33. /* 每个区块的头部 */
  34. .pageHead {
  35. margin-top: 50px;
  36. width: 62.7083vw;
  37. height: 2.6042vw;
  38. display: flex;
  39. justify-content: space-between;
  40. align-items: center;
  41. .header_image {
  42. width: 27.2396vw;
  43. height: 4.9479vw;
  44. }
  45. .header_text {
  46. font-size: 0.8333vw;
  47. width: 27.2396vw;
  48. height: 2.5vw;
  49. text-align: left;
  50. color: #666666;
  51. font-family: SourceHanSansSC-regular;
  52. }
  53. }
  54. /* 宫廷文件展示图 */
  55. .pageBanner {
  56. width: 62.7083vw;
  57. height: 35.5208vw;
  58. margin-top: 50px;
  59. }
  60. .advantage {
  61. width: 62.7083vw;
  62. height: auto;
  63. margin-top: 50px;
  64. display: grid;
  65. grid-template-columns: repeat(3, 19.5833vw);
  66. grid-template-rows: repeat(2, 14.5313vw);
  67. gap: 1.8229vw 1.8229vw;
  68. > img {
  69. width: 19.5833vw;
  70. height: 14.4792vw;
  71. }
  72. .advabtage_item {
  73. width: 19.5833vw;
  74. height: 22.1875vw;
  75. img {
  76. width: 19.5833vw;
  77. height: 11.0417vw;
  78. }
  79. > div {
  80. position: relative;
  81. width: 19.5833vw;
  82. height: 10.9375vw;
  83. padding-top: 1.0417vw;
  84. padding-left: 1.5625vw;
  85. p {
  86. width: 9.375vw;
  87. height: 2.3438vw;
  88. font-size: 1.5625vw;
  89. font-weight: 800;
  90. color: rgba(255, 255, 255, 1);
  91. text-align: left;
  92. font-family: SourceHanSansSC-regular;
  93. }
  94. span {
  95. margin-top: 0.3646vw;
  96. font-size: 0.9375vw;
  97. width: 13.0208vw;
  98. height: 2.8125vw;
  99. display: block;
  100. color: rgba(255, 255, 255, 1);
  101. text-align: left;
  102. font-family: SourceHanSansSC-regular;
  103. }
  104. /* 详情按钮 */
  105. .ad_button {
  106. display: block;
  107. border-radius: 50%;
  108. position: relative;
  109. top: 0vw;
  110. left: 13.5417vw;
  111. width: 3.4375vw;
  112. height: 3.4375vw;
  113. line-height: 3.4375vw;
  114. color: rgba(64, 168, 247, 1);
  115. background-color: rgba(255, 255, 255, 1);
  116. font-size: 0.7292vw;
  117. text-align: center;
  118. box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
  119. font-family: Roboto;
  120. }
  121. }
  122. }
  123. }
  124. .advantage2 {
  125. margin-bottom: 2.6042vw;
  126. grid-template-columns: repeat(3, 19.5833vw);
  127. grid-template-rows: repeat(2, 22.1875vw);
  128. }
  129. }
  130. </style>