公众号项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
1.0 KiB

1 year ago
  1. <template>
  2. </template>
  3. <script>
  4. export default{
  5. props:{
  6. },
  7. data(){
  8. return {
  9. }
  10. },
  11. methods:{
  12. onclick:() => {
  13. window.location = "https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=Mzg3NzkzMTg3NQ==#wechat_redirect"
  14. }
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .transp{
  20. width: 100vw;
  21. height: 154rpx;
  22. z-index: 99999;
  23. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  24. background-color: #000;
  25. display: flex;
  26. flex-wrap: wrap;
  27. }
  28. .left-content {
  29. color: #777;
  30. font-size: 26rpx;
  31. width: 480rpx;
  32. line-height: 30rpx;
  33. padding: 25rpx;
  34. }
  35. .right-box{
  36. color: #aaa;
  37. font-size: 30rpx;
  38. padding: 35rpx 0;
  39. width: 220rpx;
  40. }
  41. .font-btn-after {
  42. content: " ";
  43. width: 12rpx;
  44. height: 12rpx;
  45. border-bottom: 3rpx solid #aaa;
  46. border-right: 3rpx solid #aaa;
  47. transform: rotate(-45deg);
  48. position: absolute;
  49. right: 25rpx;
  50. top: 42rpx;
  51. }
  52. .btn-box {
  53. position: fixed;
  54. bottom: 0;
  55. left: 0;
  56. right: 0;
  57. }
  58. </style>