message.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <div class="page">
  3. <div class="page-top">
  4. <div class="icon-submit-succsss"></div>
  5. <div class="tip">视频发布成功&nbsp;!</div>
  6. </div>
  7. <div class="page-content">
  8. <div class="title">温馨提示:</div>
  9. <div class="content">
  10. 视频发布成功后,您可去首页查看您的视频排名,同时,平台会在1-2个工作日内将您的视频上传至抖音平台,您
  11. 可在1-2个工日后,通过抖音平台搜索“ROSS”抖音账号或“视频标题”找到该视频,再将该视频通过抖音分享
  12. 方式分享给更多的好友来帮您点赞获得排名。如1-2工日后,您在抖音平台未找到自己发布的视频,可电话咨询客
  13. 服,电话:<span>0755-85885625</span>
  14. </div>
  15. </div>
  16. </div>
  17. </template>
  18. <script>
  19. export default {
  20. layout: 'app-ross',
  21. }
  22. </script>
  23. <style lang="scss" scoped>
  24. @media screen and (min-width: 768px) {
  25. .page-top {
  26. display: flex;
  27. align-items: center;
  28. flex-direction: column;
  29. padding: 150px 0 80px;
  30. .icon-submit-succsss {
  31. width: 64px;
  32. height: 64px;
  33. background: url(~assets/theme-images/common/pc-icon-submit-success.png)
  34. no-repeat center;
  35. background-size: 64px;
  36. }
  37. .tip {
  38. font-size: 24px;
  39. font-weight: bold;
  40. color: #1890ff;
  41. }
  42. }
  43. .page-content {
  44. width: 694px;
  45. margin: 0 auto;
  46. font-size: 14px;
  47. line-height: 1.8;
  48. .title {
  49. color: #666666;
  50. margin-bottom: 8px;
  51. }
  52. .content {
  53. color: #999999;
  54. text-align: justify;
  55. span {
  56. color: #f3920d;
  57. }
  58. }
  59. }
  60. }
  61. </style>