123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <div class="page">
- <div class="page-top">
- <div class="icon-submit-succsss"></div>
- <div class="tip">视频发布成功 !</div>
- </div>
- <div class="page-content">
- <div class="title">温馨提示:</div>
- <div class="content">
- 视频发布成功后,您可去首页查看您的视频排名,同时,平台会在1-2个工作日内将您的视频上传至抖音平台,您
- 可在1-2个工日后,通过抖音平台搜索“ROSS”抖音账号或“视频标题”找到该视频,再将该视频通过抖音分享
- 方式分享给更多的好友来帮您点赞获得排名。如1-2工日后,您在抖音平台未找到自己发布的视频,可电话咨询客
- 服,电话:<span>0755-85885625</span>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- layout: 'app-ross',
- }
- </script>
- <style lang="scss" scoped>
- @media screen and (min-width: 768px) {
- .page-top {
- display: flex;
- align-items: center;
- flex-direction: column;
- padding: 150px 0 80px;
- .icon-submit-succsss {
- width: 64px;
- height: 64px;
- background: url(~assets/theme-images/common/pc-icon-submit-success.png)
- no-repeat center;
- background-size: 64px;
- }
- .tip {
- font-size: 24px;
- font-weight: bold;
- color: #1890ff;
- }
- }
- .page-content {
- width: 694px;
- margin: 0 auto;
- font-size: 14px;
- line-height: 1.8;
- .title {
- color: #666666;
- margin-bottom: 8px;
- }
- .content {
- color: #999999;
- text-align: justify;
- span {
- color: #f3920d;
- }
- }
- }
- }
- </style>
|