page2.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <template>
  2. <skeleton title="诚挚邀请" titleLine="ACTIVITY TRIP">
  3. <div class="center2">
  4. <!-- <div class="wixinlogo animate__animated animate__fadeInUpBig">
  5. <img src="./img/wx_default.png" class="wxicon" />
  6. <p class="wx_name">微信昵称(自动识别)</p>
  7. <div class="line"></div>
  8. </div> -->
  9. <div class="centent animate__animated animate__fadeInUpBig">
  10. 致亲爱的小伙伴们:<br />
  11. 陕西广电融媒体集团组织线下媒体行采访活动,邀请中央重点新闻网站、省重点新闻网站、集团相关部门记者,深入西安、宝鸡、延安、榆林等地,进行实地调研采访。
  12. <p>主办方:陕西广电融媒体集团</p>
  13. </div>
  14. </div>
  15. </skeleton>
  16. </template>
  17. <script setup>
  18. import skeleton from './skeleton.vue';
  19. </script>
  20. <style lang="scss">
  21. // 动画库
  22. @import url(./sass/animation.scss);
  23. @import url(./sass/base.scss);
  24. .center2 {
  25. height: 64vh;
  26. text-align: center;
  27. line-height: 2em;
  28. .title {
  29. line-height: 2.5em;
  30. font-size: 18px;
  31. -ms-word-wrap: break-word;
  32. word-wrap: break-word;
  33. color: #200c38;
  34. text-indent: justify;
  35. letter-spacing: 0.58em;
  36. }
  37. .title_text {
  38. width: 80%;
  39. margin: 0 auto;
  40. padding-left: 2.5em;
  41. height: 2em;
  42. text-align: left;
  43. position: relative;
  44. .icon {
  45. position: absolute;
  46. left: 0;
  47. width: 2em;
  48. height: 2em;
  49. &::after,
  50. &::before,
  51. .dh {
  52. display: block;
  53. content: ' ';
  54. width: 80%;
  55. height: 80%;
  56. background-color: #050308;
  57. position: absolute;
  58. top: 5%;
  59. left: 5%;
  60. z-index: 1;
  61. }
  62. &::after,
  63. .dh {
  64. background-color: #654987;
  65. z-index: 0;
  66. top: 15%;
  67. left: 25%;
  68. }
  69. .dh {
  70. z-index: 1;
  71. -webkit-animation: second-page-icon 1.2s linear infinite;
  72. -moz-animation: second-page-icon 1.2s linear infinite;
  73. -o-animation: second-page-icon 1.2s linear infinite;
  74. animation: second-page-icon 1.2s linear infinite;
  75. }
  76. }
  77. .line {
  78. height: 3px;
  79. width: calc(100% + 2.5em);
  80. background-color: #654987;
  81. margin-left: -2.5em;
  82. margin-top: 0.25em;
  83. }
  84. }
  85. .wixinlogo {
  86. width: 52%;
  87. margin: 1em auto 0.3em auto;
  88. .wxicon {
  89. width: 50px;
  90. border-radius: 50%;
  91. }
  92. .wx_name {
  93. font-size: 14px;
  94. line-height: 1.5em;
  95. }
  96. .line {
  97. background-color: #898989;
  98. height: 2px;
  99. margin: 5px 0 0 0;
  100. }
  101. }
  102. .centent {
  103. width: 70vw;
  104. margin: 0 auto;
  105. font-size: 14px;
  106. line-height: 2em;
  107. text-align: left;
  108. p {
  109. text-align: right;
  110. }
  111. }
  112. }
  113. </style>