page3.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <template>
  2. <skeleton title="活动背景介绍" titleLine="ACTIVITY TRIP">
  3. <div class="animate__animated animate__fadeInUp">
  4. 由中央网信办、国家文物局、人民日报社、陕西省委网信委指导,中央网信办网络传播局、国家文物局相关司局、陕西省委网信办、人民网等单位主办的“盛世中华 何以中国”网上主题宣传活动启动。
  5. </div>
  6. <br />
  7. <img src="./img/gif.webp" style="display: block;" class="gif animate__fadeInUpBig" />
  8. </skeleton>
  9. </template>
  10. <script setup>
  11. import skeleton from './skeleton.vue';
  12. </script>
  13. <style lang="scss">
  14. // 动画库
  15. @import url(./sass/animation.scss);
  16. @import url(./sass/base.scss);
  17. .title {
  18. line-height: 2.5em;
  19. font-size: 18px;
  20. -ms-word-wrap: break-word;
  21. word-wrap: break-word;
  22. color: #200c38;
  23. text-indent: justify;
  24. letter-spacing: 0.58em;
  25. }
  26. .title_text {
  27. width: 90%;
  28. margin: 0 auto;
  29. padding-left: 2.5em;
  30. height: 2em;
  31. text-align: left;
  32. position: relative;
  33. .icon {
  34. position: absolute;
  35. left: 0;
  36. width: 2em;
  37. height: 2em;
  38. &::after,
  39. &::before,
  40. .dh {
  41. display: block;
  42. content: ' ';
  43. width: 80%;
  44. height: 80%;
  45. background-color: #050308;
  46. position: absolute;
  47. top: 5%;
  48. left: 5%;
  49. z-index: 1;
  50. }
  51. &::after,
  52. .dh {
  53. background-color: #654987;
  54. z-index: 0;
  55. top: 15%;
  56. left: 25%;
  57. }
  58. .dh {
  59. z-index: 1;
  60. -webkit-animation: second-page-icon 1.2s linear infinite;
  61. -moz-animation: second-page-icon 1.2s linear infinite;
  62. -o-animation: second-page-icon 1.2s linear infinite;
  63. animation: second-page-icon 1.2s linear infinite;
  64. }
  65. }
  66. .line {
  67. height: 3px;
  68. width: calc(100% + 2.5em);
  69. background-color: #654987;
  70. margin-left: -2.5em;
  71. margin-top: 0.25em;
  72. }
  73. }
  74. .centent {
  75. width: 90%;
  76. margin: 2em auto 0 auto;
  77. font-size: 14px;
  78. line-height: 1.5em;
  79. text-align: left;
  80. text-indent: justify;
  81. letter-spacing: 0.08em;
  82. color: #000;
  83. }
  84. .gif {
  85. display: block;
  86. width: 100%;
  87. height: 33vw;
  88. max-height: 247.5px;
  89. }
  90. </style>