IndustryReport.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669
  1. <template>
  2. <view class="container industry-content" id="industry-content">
  3. <view v-if="haveData">
  4. <view class="content-top">
  5. <view class="top-bg">
  6. <!-- 详情封面图 -->
  7. <image :src="industryVideo.DetailImgUrl" class="industry-video-poster" v-show="industryVideo.Id && industryVideo.DetailImgUrl && !havePlayed" @click="handelVideoPlay"></image>
  8. <!-- 视频 -->
  9. <video :src="industryVideo.ResourceUrl" class="industry-video" id="industry-video" v-show="industryVideo.ResourceUrl && (havePlayed || !industryVideo.DetailImgUrl)" controls></video>
  10. <view class="top-bg-title" :style="{ height: industryVideo.Id ? '70rpx' : '99rpx', 'background-color': industryVideo.Id ? 'white' : '#d1ebff' }">产业赛道布局于{{ layoutTime }}</view>
  11. </view>
  12. <!-- industryVideo.ResourceUrl -- 视频url -->
  13. <view class="top-box" :style="{ top: industryVideo.Id ? '418rpx' : '99rpx' }">
  14. <view class="top-tab-cont">
  15. <view class="tab-cont">
  16. <scroll-view scroll-x="true" scroll-with-animation class="scroll-tab" :scroll-into-view="'_' + tabIndex">
  17. <block v-for="(item, index) in tabBars" :key="item.CategoryId">
  18. <view :id="'_' + index" class="scroll-tab-item" :class="{ active: tabAct_id == item.CategoryId }" @click.stop="toggleTab(item, index)">
  19. {{ item.MatchTypeName }}
  20. <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/border_act.png" mode="" class="border_act" v-if="tabAct_id == item.CategoryId"></image>
  21. <text class="reg-hint" v-if="item.IsRed"></text>
  22. </view>
  23. </block>
  24. </scroll-view>
  25. </view>
  26. <view class="lucency" v-if="tabBars.length > 6"></view>
  27. </view>
  28. </view>
  29. </view>
  30. <view class="collect-ul" :style="{ 'padding-top': industryVideo.ResourceUrl ? '528rpx' : '210rpx' }">
  31. <!-- 其他tab -->
  32. <block v-show="tabAct_id !== 99999">
  33. <view class="collect-ltem" v-for="(item, index) in collectList" :key="index" @click="goDetail(item, index)">
  34. <view class="item-left">
  35. <text class="title text_twoLine"
  36. >{{ item.Title }}
  37. <text class="reg-text" v-if="item.IsRed"></text>
  38. </text>
  39. <text class="text_twoLine desc">{{ item.PublishDate }}</text>
  40. </view>
  41. <u-icon name="arrow-right" color="#BDBDBD" size="34"></u-icon>
  42. </view>
  43. <u-loadmore :status="status" icon-type="flower" :load-text="loadText" margin-top="20" v-if="totalPage > 1 && tabAct_id !== 99999" />
  44. </block>
  45. <!-- 时间线 -->
  46. <block v-if="tabAct_id === 99999">
  47. <view class="time-line">
  48. <view class="line-item" v-for="(item, index) in timeLine" :key="index" @click="goDetailFromTimeLine(item, index)">
  49. <view class="time">{{ item.date }}</view>
  50. <view class="content" v-if="item.Content.length">
  51. <rich-text class="rich-text" :style="{ height: item.isExpand ? 'auto' : richTextHeight + 'px' }" :data-index="index" :class="{ expand: item.isExpand }" :nodes="item.Content">
  52. </rich-text>
  53. <view class="expan-btn" :class="{ pos: !item.isExpand }" @click="handleExpand(item, index)" v-if="item.isShowBtn">{{ item.isExpand ? "收起" : "展开" }}</view>
  54. </view>
  55. <view class="title" v-else>{{ item.Title }}</view>
  56. </view>
  57. <view v-show="loadTimeLine" class="loadTimeLine"></view>
  58. <u-loadmore :status="status" icon-type="flower" :load-text="loadText" margin-top="20" v-if="totalPage > 1 && tabAct_id === 99999" />
  59. </view>
  60. </block>
  61. </view>
  62. </view>
  63. <view class="nodata" v-else>
  64. <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/act_search.png" mode="" class="nodata_ico"></image>
  65. <text>暂时没有报告的内容</text>
  66. </view>
  67. <freeCharge class="free-charge" :isShowFreeBtn="isShowFree" />
  68. <!-- 权限弹窗 -->
  69. <modalDialog :isShowhasPermission="isShowhasPermission" :applyForIsShow="applyForIsShow" :jurisdictionList="jurisdictionList" :hasPermission="hasPermission" />
  70. </view>
  71. </template>
  72. <script>
  73. import { Mine } from "@/config/api.js"; //模拟
  74. import { Reports } from "@/config/api.js"; //模拟
  75. import { Throttle } from "@/config/util.js";
  76. import freeCharge from "@/components/freeCharge";
  77. import modalDialog from "@/components/modalDialog.vue";
  78. let app = getApp({ allowDefault: true });
  79. export default {
  80. data() {
  81. return {
  82. tabAct_id: "",
  83. tabBars: [],
  84. industrialManagementId: "",
  85. layoutTime: "",
  86. refresh: false, //正在下拉
  87. page_no: 1,
  88. pageSize: 10,
  89. categoryId: "",
  90. collectList: [],
  91. isShow: false,
  92. haveData: true,
  93. status: "loadmore",
  94. loadText: {
  95. loadmore: "上拉加载更多",
  96. loading: "加载中",
  97. nomore: "已经到底了",
  98. },
  99. totalPage: "",
  100. toggleTabIndex: 0,
  101. titleReport: "",
  102. pcTabActive: "",
  103. industryVideo: {},
  104. authInfo: {},
  105. havePlayed: false,
  106. isShowhasPermission: false, // 联系销售的提交申请
  107. applyForIsShow: false, // 提交申请
  108. jurisdictionList: {},
  109. hasPermission: "", //权限
  110. timeLine: [], //时间线数据
  111. mockTimeLine: [
  112. {
  113. date: "不重要",
  114. Content: "<p>hello,world</p><p>hello,world</p><p>hello,world</p>",
  115. }, //第一项是为了获取当前手机下,三行是多少相对高度
  116. ],
  117. loadTimeLine: false, //时间线的遮罩
  118. richTextHeight: 1000, //晨会富文本最大高度
  119. };
  120. },
  121. onLoad(option) {
  122. this.industrialManagementId = option.id;
  123. this.tabAct_id = option.tab;
  124. this.toArticleCategoryList();
  125. },
  126. onShow() {
  127. this.$store.dispatch("statistics", { PageType: "IndustryList", IndustrialManagementId: this.industrialManagementId });
  128. },
  129. components: {
  130. freeCharge,
  131. modalDialog,
  132. },
  133. watch: {
  134. //监听tabs的变化
  135. tabAct_id: {
  136. handler() {
  137. if (this.tabAct_id) {
  138. (this.page_no = 1), (this.collectList = []);
  139. this.getCollectList();
  140. }
  141. },
  142. immediate: true,
  143. },
  144. },
  145. methods: {
  146. //tabs切换事件
  147. toggleTab(item, index) {
  148. this.toggleTabIndex = index;
  149. if (this.tabAct_id !== item.CategoryId) {
  150. this.tabAct_id = item.CategoryId;
  151. this.pageNum = 1;
  152. this.timeLine = [];
  153. this.totalPage = "";
  154. uni.pageScrollTo({
  155. scrollTop: 0,
  156. duration: 0,
  157. });
  158. }
  159. },
  160. toArticleCategoryList() {
  161. Reports.toArticleCategoryList({
  162. IndustrialManagementId: this.industrialManagementId,
  163. ShowTimeLine: 1,
  164. }).then((res) => {
  165. if (res.Ret == 200) {
  166. uni.setNavigationBarTitle({
  167. title: res.Data.IndustryName,
  168. });
  169. this.titleReport = res.Data.IndustryName;
  170. this.layoutTime = res.Data.LayoutTime;
  171. this.industryVideo = res.Data.IndustryVideo;
  172. this.authInfo = res.Data.AuthInfo;
  173. if (res.Data.List) {
  174. this.tabAct_id = res.Data.List[0].CategoryId;
  175. this.tabBars = res.Data.List;
  176. }
  177. }
  178. });
  179. },
  180. /* 获取列表 */
  181. getCollectList() {
  182. //just for test
  183. if (this.tabAct_id === 99999) {
  184. Reports.getArticleList({
  185. PageSize: this.pageSize,
  186. CurrentIndex: this.page_no,
  187. CategoryId: 99999,
  188. IndustrialManagementId: this.industrialManagementId,
  189. }).then((res) => {
  190. if (res.Ret === 200) {
  191. this.loadTimeLine = true;
  192. this.status = this.page_no < res.Data.Paging.Pages ? "loadmore" : "nomore";
  193. this.totalPage = res.Data.Paging.Pages;
  194. let list = res.Data.List || [];
  195. list = list.map((item) => {
  196. let temp = item;
  197. temp.date = item.PublishTime.split(" ")[0];
  198. if (item.Content.length) {
  199. temp.isExpand = true;
  200. temp.isShowBtn = true;
  201. }
  202. return temp;
  203. });
  204. if (this.page_no === 1) {
  205. this.timeLine = list;
  206. this.haveData = this.timeLine.length ? true : false;
  207. if (this.refresh) {
  208. uni.stopPullDownRefresh();
  209. this.refresh = false;
  210. }
  211. } else {
  212. this.timeLine = this.timeLine.concat(list);
  213. }
  214. }
  215. this.timeLine.unshift(this.mockTimeLine[0]);
  216. //在获取高度前把所有的晨会展开,收起的话无法获取正确高度
  217. this.timeLine.forEach((item) => {
  218. if (item.Content.length) {
  219. item.isExpand = true;
  220. item.isShowBtn = true;
  221. }
  222. });
  223. setTimeout(() => {
  224. this.getConentsHeight();
  225. }, 0);
  226. });
  227. return;
  228. }
  229. Reports.getArticleList({
  230. PageSize: this.pageSize,
  231. CurrentIndex: this.page_no,
  232. CategoryId: this.tabAct_id,
  233. IndustrialManagementId: this.industrialManagementId,
  234. }).then((res) => {
  235. if (res.Ret === 200) {
  236. this.status = this.page_no < res.Data.Paging.Pages ? "loadmore" : "nomore";
  237. this.totalPage = res.Data.Paging.Pages; //总页数
  238. if (this.page_no === 1) {
  239. this.pcTabActive = res.Data.ChartPermissionId;
  240. this.collectList = res.Data.List || [];
  241. this.haveData = this.collectList.length ? true : false;
  242. if (this.refresh) {
  243. uni.stopPullDownRefresh();
  244. this.refresh = false;
  245. }
  246. } else {
  247. this.collectList = this.collectList.concat(res.Data.List);
  248. }
  249. }
  250. });
  251. },
  252. async goDetail(item, index) {
  253. /* 无需授权且已绑定 检验是或否有权限 */
  254. if (index == 0) {
  255. this.tabBars[this.toggleTabIndex].IsRed = false;
  256. }
  257. this.collectList[index].IsRed = false;
  258. await this.$store.dispatch("checkHandle");
  259. if (!this.$store.state.isAuth && !this.$store.state.isBind) {
  260. // 已授权已绑定
  261. if (item.SubCategoryName === "路演精华") {
  262. //跳转路演精华
  263. uni.navigateTo({
  264. url: "/reportPages/roadEssence/roadEssence?id=" + item.ArticleId,
  265. });
  266. } else {
  267. uni.navigateTo({
  268. url: "/pageMy/reportDetail/reportDetail?id=" + item.ArticleId,
  269. });
  270. }
  271. }
  272. },
  273. // 视频播放权限判断
  274. handelVideoPlay() {
  275. if (!this.$store.state.isAuth && !this.$store.state.isBind) {
  276. if (this.authInfo.HasPermission == 1) {
  277. this.playVideo();
  278. } else {
  279. this.hasPermission = this.authInfo.HasPermission;
  280. this.jurisdictionList.ActivityId = this.industryVideo.Id;
  281. this.jurisdictionList.isAudioVideo = 3;
  282. if (this.hasPermission == 2) {
  283. this.jurisdictionList.SellerMobile = this.authInfo.SellerMobile;
  284. this.jurisdictionList.SellerName = this.authInfo.SellerName;
  285. this.jurisdictionList.PopupMsg = this.authInfo.PopupMsg;
  286. this.isShowhasPermission = true;
  287. } else if (this.hasPermission == 3 || this.hasPermission == 4 || this.hasPermission == 5) {
  288. this.jurisdictionList.PopupMsg = this.authInfo.PopupMsg;
  289. this.applyForIsShow = true;
  290. }
  291. }
  292. } else {
  293. this.$store.dispatch("checkHandle");
  294. }
  295. },
  296. // 播放视频
  297. playVideo() {
  298. const query = uni.createSelectorQuery().in(this);
  299. query
  300. .select("#industry-video")
  301. .context((data) => {
  302. data.context.play();
  303. setTimeout(() => {
  304. this.havePlayed = true;
  305. }, 10);
  306. })
  307. .exec();
  308. },
  309. //展开收起晨会内容
  310. handleExpand(item, index) {
  311. item.isExpand = !item.isExpand;
  312. this.timeLine.splice(index, 1, item);
  313. },
  314. //获取所有晨会内容的高度并决定是否显示展开收起按钮
  315. getConentsHeight() {
  316. const query = wx.createSelectorQuery();
  317. query.selectAll(".rich-text").boundingClientRect();
  318. query.exec((res) => {
  319. /* console.log(res[0][0].height) */
  320. //根据timeLine的第一项确定当前手机三行文字的高度
  321. const standardHeight = res[0][0].height;
  322. this.richTextHeight = standardHeight;
  323. res[0].forEach((item) => {
  324. let temp = this.timeLine[item.dataset.index];
  325. //超过这个高度的,需要显示展开/收起按钮
  326. if (item.height > standardHeight) {
  327. temp.isExpand = false;
  328. temp.isShowBtn = true;
  329. } else {
  330. temp.isExpand = true;
  331. temp.isShowBtn = false;
  332. }
  333. });
  334. //然后把timeLine的第一项扔掉
  335. this.timeLine.shift();
  336. this.loadTimeLine = false;
  337. });
  338. },
  339. async goDetailFromTimeLine(item, index) {
  340. if (item.Content.length !== 0) return;
  341. await this.$store.dispatch("checkHandle");
  342. if (!this.$store.state.isAuth && !this.$store.state.isBind) {
  343. // 已授权已绑定
  344. if (item.SubCategoryName === "路演精华") {
  345. //跳转路演精华
  346. uni.navigateTo({
  347. url: "/reportPages/roadEssence/roadEssence?id=" + item.Id,
  348. });
  349. } else {
  350. uni.navigateTo({
  351. url: "/pageMy/reportDetail/reportDetail?id=" + item.Id,
  352. });
  353. }
  354. }
  355. },
  356. getNode(content, isExpand) {
  357. return `<div style='-webkit-line-clamp: ${isExpand ? 9999 : 3};-webkit-box-orient: vertical;display: -webkit-box;overflow: hidden;text-overflow: ellipsis;'>${content}</div>`;
  358. },
  359. },
  360. /* 触底 */
  361. onReachBottom: Throttle(function () {
  362. if (this.status === "nomore") return;
  363. this.status = "loading";
  364. this.page_no++;
  365. if (this.tabAct_id) {
  366. this.getCollectList();
  367. }
  368. }),
  369. /* 下拉刷新 */
  370. onPullDownRefresh: Throttle(function () {
  371. if (this.tabAct_id) {
  372. this.page_no = 1;
  373. this.refresh = true;
  374. this.getCollectList();
  375. }
  376. }),
  377. /**
  378. * 用户点击分享
  379. */
  380. onShareAppMessage: function (res) {
  381. return {
  382. title: this.isHorzMobile ? "好友向您推荐此内容,上传名片享查研观向免费月卡!" : this.titleReport,
  383. path: "/reportPages/IndustryReport/IndustryReport?id=" + this.industrialManagementId + "&tab=" + this.tabAct_id + "&tabs=" + this.pcTabActive,
  384. success: (res) => {},
  385. fail: (err) => {},
  386. };
  387. },
  388. };
  389. </script>
  390. <style lang="scss">
  391. .industry-content {
  392. background-color: #f7f7f7;
  393. // height: 100vh;
  394. .top-bg {
  395. position: fixed;
  396. top: 0;
  397. left: 0;
  398. width: 100%;
  399. z-index: 100;
  400. background-color: white;
  401. text-align: center;
  402. .industry-video-poster {
  403. border-radius: 8rpx 8rpx 0 0;
  404. height: 340rpx;
  405. width: 728rpx;
  406. }
  407. .industry-video {
  408. height: 340rpx;
  409. width: 728rpx;
  410. }
  411. .top-bg-title {
  412. height: 99rpx;
  413. color: #2c83ff;
  414. background-color: #d1ebff;
  415. font-size: 28rpx;
  416. display: flex;
  417. align-items: center;
  418. justify-content: center;
  419. }
  420. .test {
  421. position: relative;
  422. span {
  423. position: absolute;
  424. left: 30rpx;
  425. bottom: 30rpx;
  426. color: white;
  427. }
  428. }
  429. }
  430. .top-box {
  431. position: fixed;
  432. width: 100%;
  433. top: 99rpx;
  434. left: 0;
  435. z-index: 100;
  436. }
  437. .top-tab-cont {
  438. .lucency {
  439. position: absolute;
  440. top: 0;
  441. right: 0;
  442. width: 32px;
  443. height: 30px;
  444. opacity: 0.9;
  445. background-color: #fff;
  446. }
  447. .tab-cont {
  448. padding: retu;
  449. padding: 30rpx 26rpx 0;
  450. background-color: #fff;
  451. font-size: 32rpx;
  452. box-shadow: 0 3rpx 6rpx rgba(187, 216, 255, 0.2);
  453. .scroll-tab {
  454. width: 100%;
  455. white-space: nowrap;
  456. }
  457. .scroll-tab-item {
  458. // flex-grow: 1;
  459. text-align: center;
  460. display: inline-block;
  461. padding: 0rpx 8rpx 30rpx 8rpx;
  462. margin-right: 60rpx;
  463. border-bottom: 8rpx solid transparent;
  464. position: relative;
  465. &:last-child {
  466. margin-right: 0;
  467. }
  468. &.active {
  469. border-bottom: none;
  470. color: #2c83ff;
  471. font-weight: 700;
  472. }
  473. .border_act {
  474. width: 100%;
  475. height: 8rpx;
  476. position: absolute;
  477. bottom: 0;
  478. left: 0;
  479. }
  480. .reg-hint {
  481. position: absolute;
  482. top: 0rpx;
  483. right: -10rpx;
  484. width: 14rpx;
  485. height: 14rpx;
  486. background-color: #ff0000;
  487. border-radius: 50%;
  488. }
  489. }
  490. }
  491. }
  492. .collect-ul {
  493. // margin-top: 30rpx;s
  494. padding-top: 210rpx;
  495. // padding-top: 4rpx;
  496. .collect-ltem {
  497. display: flex;
  498. padding: 30rpx 34rpx;
  499. background: #fff;
  500. margin-bottom: 4rpx;
  501. align-items: center;
  502. justify-content: space-between;
  503. .title {
  504. position: relative;
  505. max-width: 625rpx;
  506. color: #4a4a4a;
  507. font-size: 34rpx;
  508. padding-left: 28rpx;
  509. .reg-text {
  510. position: absolute;
  511. top: 15rpx;
  512. left: 0rpx;
  513. width: 14rpx;
  514. height: 14rpx;
  515. background-color: #ff0000;
  516. border-radius: 50%;
  517. z-index: 9;
  518. }
  519. }
  520. .desc {
  521. margin-top: 17rpx;
  522. padding-left: 28rpx;
  523. width: 625rpx;
  524. color: #999;
  525. }
  526. }
  527. .time-line {
  528. margin-top: 15rpx;
  529. padding: 30rpx 40rpx 50rpx 40rpx;
  530. min-height: calc(100vh - 190rpx);
  531. background-color: #ffffff;
  532. position: relative;
  533. .loadTimeLine {
  534. top: 0;
  535. bottom: 0;
  536. left: 0;
  537. right: 0;
  538. position: absolute;
  539. background-color: #fff;
  540. z-index: 6;
  541. }
  542. .line-item {
  543. position: relative;
  544. padding: 0 0 50rpx 40rpx;
  545. /* border-left:1rpx solid #DAE9FD; */
  546. &:last-child {
  547. padding-bottom: 0;
  548. &::after {
  549. height: calc(100% - 25rpx);
  550. }
  551. }
  552. &:first-child {
  553. .time {
  554. &::after {
  555. background-color: #3385ff;
  556. }
  557. }
  558. }
  559. &::before,
  560. &::after {
  561. position: absolute;
  562. content: "";
  563. }
  564. &::before {
  565. width: 24rpx;
  566. height: 24rpx;
  567. background-color: #dae9fd;
  568. z-index: 1;
  569. left: 0;
  570. top: 27rpx;
  571. transform: translate(-50%, -50%);
  572. border-radius: 50%;
  573. }
  574. &::after {
  575. top: 17rpx;
  576. left: 0;
  577. width: 1rpx;
  578. height: calc(100%);
  579. background-color: #dae9fd;
  580. z-index: 2;
  581. }
  582. .time {
  583. width: 245rpx;
  584. height: 55rpx;
  585. text-align: center;
  586. line-height: 45rpx;
  587. padding: 5rpx 20rpx;
  588. background-color: #f5f9ff;
  589. border-radius: 64rpx;
  590. color: #5181c9;
  591. font-size: 32rpx;
  592. margin-bottom: 20rpx;
  593. position: relative;
  594. &::before,
  595. &::after {
  596. position: absolute;
  597. content: "";
  598. left: -36rpx;
  599. top: 27rpx;
  600. width: 24rpx;
  601. height: 1rpx;
  602. background-color: #dae9fd;
  603. z-index: 1;
  604. }
  605. &::after {
  606. left: -40rpx;
  607. top: 27rpx;
  608. width: 12rpx;
  609. height: 12rpx;
  610. border-radius: 50%;
  611. transform: translate(-50%, -50%);
  612. background-color: #9dc5ff;
  613. z-index: 3;
  614. }
  615. }
  616. .content {
  617. color: #666666;
  618. position: relative;
  619. .rich-text {
  620. overflow: hidden;
  621. text-overflow: ellipsis;
  622. text-align: justify;
  623. display: -webkit-box;
  624. -webkit-line-clamp: 3;
  625. -webkit-box-orient: vertical;
  626. position: relative;
  627. &.expand {
  628. -webkit-line-clamp: 999;
  629. height: auto;
  630. }
  631. }
  632. .expan-btn {
  633. color: #2c83ff;
  634. text-align: right;
  635. &.pos {
  636. padding: 0 0 0 40rpx;
  637. background-color: rgba(255, 255, 255, 0.882);
  638. position: absolute;
  639. right: 0;
  640. bottom: 0;
  641. }
  642. }
  643. }
  644. .title {
  645. color: #3385ff;
  646. }
  647. }
  648. }
  649. }
  650. }
  651. #industry-content {
  652. .industry-video-module {
  653. .global-video-box {
  654. .video-content {
  655. top: 400rpx !important;
  656. }
  657. .close-icon {
  658. top: 330rpx !important;
  659. }
  660. }
  661. }
  662. }
  663. </style>