indexNew.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855
  1. <template>
  2. <view class="content">
  3. <pcNav :data="indexName" :itemName="topName" @getIndexList="getIndexList"
  4. @gosearchlist="gosearchlist"
  5. @getChildList = "getChildList"></pcNav>
  6. <view v-show="indexShow">
  7. <view style="height: 72px;"></view>
  8. <view class="swiperBox">
  9. <view class="swiperCont">
  10. <view class="tuijbox">
  11. <image src="../../static/pcimg/icon_tuijian@2x.png" mode="" class="tuijImg"></image>
  12. <span class="tuijTitle">推荐文章</span>
  13. </view>
  14. <swiper class="swiper" :autoplay="false" :circular="true" :current="swpIndex">
  15. <swiper-item v-for="(item,index) in recommendList" v-if="(index+1)%2!=0">
  16. <view class="swpCont">
  17. <view class="swiper-item" @click="goDetail(item)">
  18. <view class="swpimgBox swpBr">
  19. <image :src="item.logoImg" mode="" class="swpimg"></image>
  20. </view>
  21. <view class="swpTitleBox">
  22. <view class="swpTitle">{{item.title}}</view>
  23. <view class="categoryName" @click.stop="goList(item)">{{item.categoryName.substring(0,5)}}</view>
  24. </view>
  25. </view>
  26. <view class="swiper-item" v-if="(index+1)<recommendList.length" @click="goDetail(recommendList[index+1])">
  27. <view class="swpimgBox swpBr">
  28. <image :src="recommendList[index+1].logoImg" mode="" class="swpimg"></image>
  29. </view>
  30. <view class="swpTitleBox">
  31. <view class="swpTitle">{{recommendList[index+1].title}}</view>
  32. <view class="categoryName">{{recommendList[index+1].categoryName.substring(0,5)}}</view>
  33. </view>
  34. </view>
  35. </view>
  36. </swiper-item>
  37. </swiper>
  38. <image src="../../static/pcimg/icon_arrow_zuo_sel@2x.png" mode="" class="swpImgleft" @click="swpBtnLeft"></image>
  39. <image src="../../static/pcimg/legtspx.png" mode="" class="swpImgright" @click="swpBtnRight"></image>
  40. </view>
  41. </view>
  42. <view class="main">
  43. <view class="mainCont">
  44. <view class="mainline" :class="{'mainline1':index==0}" v-for="(item,index) in indexData.categoryList" v-if="item.children.length>0">
  45. <view class="mainlineTop">
  46. <view class="mainlineTopleft">
  47. <view class="mainlineTitle">{{item.name}}</view>
  48. <view class="mainlinecount">共{{item.count}}篇文章</view>
  49. </view>
  50. <view class="mainlineMore" @click="mainMore(item)">查看更多
  51. <image src="../../static/pcimg/icon_list_arrow_def@2x.png" mode="" class="linegdImg1"></image>
  52. <image src="../../static/pcimg/icon_list_arrow_sel@2x.png" mode="" class="linegdImg2"></image>
  53. </view>
  54. </view>
  55. <view class="mainwzbox" v-if="item.children.length>0">
  56. <view class="mainwzline" v-for="(wz,wzindex) in item.children" @click="goDetail2(wz,item)" v-if="wzindex<4" :class="{'mainwzlineR':wzindex!=3}">
  57. <view class="mainwzImgBox">
  58. <img :src="wz.logoImg" alt="" class="mainwzImg">
  59. </view>
  60. <view class="wztitle">{{wz.title}}</view>
  61. <view class="wztime">2022-3-30</view>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. </view>
  67. </view>
  68. <!-- 列表页 -->
  69. <view v-show="listShow">
  70. <view style="height: 72px;"></view>
  71. <view class="top">
  72. <view class="topName">{{topName}}</view>
  73. <view class="comment " v-if="comment">{{comment}}</view>
  74. </view>
  75. <view class="main">
  76. <view class="dynamicCol">
  77. <view class="dynamicColLeft">
  78. <view class="dynamicColLIne" :class="{'activeTab':tabIndex==index}" v-for="(item,index) in dynamicCol" @click="tabBtn(index,item)">{{item.name}}</view>
  79. </view>
  80. <view class="dynamicColRight">
  81. <image src="../../static/pcimg/icon_kapian_def@2x.png" v-show="qhIndex==2" class="qhImg" @click="qhIndex=1"></image>
  82. <image src="../../static/pcimg/icon_kapian_sel@2x.png" v-show="qhIndex==2" class="qhImg"></image>
  83. <image src="../../static/pcimg/icon_liebiao_sel@2x.png" v-show="qhIndex==1" class="qhImg" ></image>
  84. <image src="../../static/pcimg/qh2.png" v-show="qhIndex==1" class="qhImg" @click="qhIndex=2"></image>
  85. </view>
  86. </view>
  87. <view class="cont2">
  88. <view class="contBox">
  89. <view class="contf" v-if="qhIndex==2&&list.length>0">
  90. <view class="mainwzline" v-for="(wz,wzindex) in list" :class="{'mainwzlineR2':(wzindex+1)%4==0&&wzindex!=0}" @click="goDetail3(wz)">
  91. <view class="mainwzImgBox">
  92. <img :src="wz.LogoImg" alt="" class="mainwzImg">
  93. </view>
  94. <view class="wztitle">{{wz.Title}}</view>
  95. <view class="wztime">2022-3-30</view>
  96. </view>
  97. </view>
  98. <view class="contL" v-if="qhIndex==1&&list.length>0">
  99. <view class="wxLine" v-for="(wz,wzindex) in list" @click="goDetail3(wz)">
  100. <view class="wzLineLeft">
  101. <image :src="wz.LogoImg" class="wzLeftIMg"></image>
  102. </view>
  103. <view class="wzLineRight">
  104. <view class="wzTitle2">{{wz.Title}}</view>
  105. <view class="wzComment">{{wz.Comment}}</view>
  106. </view>
  107. </view>
  108. </view>
  109. <view class="nodata" v-show="list.length==0">
  110. <image src="../../static/pcimg/listnodata.png" mode="" class="nodataImg"></image>
  111. <view class="nodataTitle">暂无数据</view>
  112. </view>
  113. </view>
  114. </view>
  115. </view>
  116. <!-- -->
  117. <view class="pageView" v-show="TotalSize">
  118. <page-pagination :pageSize="pageSize" :size="'small'" :total="TotalSize" :numAround="true" @change="pageChange"></page-pagination>
  119. </view>
  120. </view>
  121. <view class="gotop" @click="gotoTop">
  122. <image src="../../static/pcimg/btn_top@2x.png" mode="" class="gotopImg"></image>
  123. </view>
  124. <view>
  125. <newDetail v-show="newDetailShow" :newid='newDetailID' :data="newDetailItem" @getIndexList="getIndexList"></newDetail>
  126. <newgroupingList @getIndexList="getIndexList"
  127. @getChildList="getChildList" @goDetail="goDetail"
  128. v-show="newgroupingListShow" :newcode="newgroupingcode" :data="newgroupingdata"></newgroupingList>
  129. <newsearchlist v-show="newsearchShow"></newsearchlist>
  130. </view>
  131. </view>
  132. </template>
  133. <script>
  134. import pcNav from '../../components/pcNav/pcNav.vue'
  135. import newDetail from './newDetail.vue'
  136. import newgroupingList from './newgroupingList.vue'
  137. import newsearchlist from './newsearchlist.vue'
  138. export default {
  139. components: {
  140. pcNav,newDetail,newgroupingList,newsearchlist
  141. },
  142. data() {
  143. return {
  144. title: 'Hello',
  145. allCategory:[],
  146. navMoret:false,
  147. swpIndex:0,
  148. indexData:'',
  149. recommendList:[],
  150. list:[],
  151. comment:'',
  152. topName:'',
  153. parentCode:'',
  154. topCode:'',
  155. page:1,
  156. dynamicCol:[],
  157. qhIndex:1,
  158. tabIndex:0,
  159. TotalSize:0,
  160. pageSize:20,
  161. indexShow:true,
  162. listShow:false,
  163. indexName:'index',
  164. newDetailShow:false,
  165. newgroupingListShow:false,
  166. newsearchShow:false,
  167. newDetailID:'',
  168. newDetailItem:'',
  169. newgroupingcode:'',
  170. newgroupingdata:'',
  171. }
  172. },
  173. onLoad() {
  174. this.getindexData()
  175. },
  176. created(){
  177. //this.getindexData()
  178. },
  179. methods: {
  180. getIndexList(){
  181. this.indexShow=true;
  182. this.listShow=false;
  183. this.newDetailShow=false;
  184. this.newgroupingListShow=false;
  185. this.newsearchShow=false;
  186. this.indexName='index';
  187. this.topName=''
  188. },
  189. gosearchlist(){
  190. this.indexShow=false;
  191. this.listShow=false;
  192. this.newDetailShow=false;
  193. this.newgroupingListShow=false;
  194. this.newsearchShow=true;
  195. this.indexName='';
  196. this.topName=''
  197. },
  198. getChildList(item){
  199. console.log(item);
  200. this.indexName=''
  201. this.topName=item.name;
  202. this.comment=item.comment;
  203. this.topCode=item.code;
  204. this.parentCode=item.code;
  205. this.getcategoryPageData();
  206. uni.setNavigationBarTitle({
  207. title: this.topName
  208. });
  209. this.indexShow=false;
  210. this.listShow=true;
  211. this.newDetailShow=false;
  212. this.newgroupingListShow=false;
  213. this.newsearchShow=false;
  214. },
  215. goList(item){
  216. console.log(item)
  217. this.getChildList(item)
  218. /* uni.navigateTo({
  219. url:'list?code='+item.code+'&topName='+item.categoryName//+'&comment='+item.comment
  220. }) */
  221. },
  222. goDetail(item){
  223. console.log(item)
  224. this.indexShow=false;
  225. this.listShow=false;
  226. this.newDetailShow=true;
  227. this.newgroupingListShow=false;
  228. this.newsearchShow=false;
  229. this.newDetailID=item.id;
  230. this.newDetailItem=item;
  231. /* uni.navigateTo({
  232. url:'detail?id='+item.id+'&topName='+item.categoryName+"&comment="+item.comment+'&parentCode='+item.code
  233. }) */
  234. },
  235. goDetail2(wz,item){
  236. /* console.log(item)
  237. console.log(wz) */
  238. this.indexShow=false;
  239. this.listShow=false;
  240. this.newDetailShow=true;
  241. this.newgroupingListShow=true;
  242. this.newsearchShow=false;
  243. this.newDetailID=wz.id;
  244. this.newDetailItem=item;
  245. /* uni.navigateTo({
  246. url:'detail?id='+wz.id+'&topName='+item.name+"&comment="+item.comment+'&parentCode='+item.code
  247. }) */
  248. },
  249. goDetail3(wz){
  250. // 1分类2文章
  251. if (wz.Type == 1) {
  252. /* uni.navigateTo({
  253. url:'groupingList?parentCode='+this.topCode+'&code='+wz.Code+'&name='+wz.Name+'&title='+wz.Title+'&topName='+this.topName+"&comment="+this.comment
  254. }) */
  255. this.newgroupingcode=wz.Code;
  256. var newgroupingdata={
  257. parentCode:this.topCode,
  258. name:wz.Name,
  259. title:wz.Title,
  260. topName:this.topName,
  261. comment:this.comment
  262. }
  263. console.log(newgroupingdata)
  264. this.indexShow=false;
  265. this.listShow=false;
  266. this.newDetailShow=false;
  267. this.newgroupingListShow=true;
  268. this.newsearchShow=false;
  269. this.newgroupingdata=newgroupingdata
  270. }else{
  271. this.indexShow=false;
  272. this.listShow=false;
  273. this.newDetailShow=true;
  274. this.newgroupingListShow=true;
  275. this.newsearchShow=false;
  276. this.newDetailID=wz.ID;
  277. var item={
  278. categoryName:this.topName,
  279. twoName:this.dynamicCol[this.tabIndex].name,
  280. comment:this.comment,
  281. code:wz.Code
  282. }
  283. this.newDetailItem=item;
  284. /* uni.navigateTo({
  285. url:'detail?id='+wz.ID+'&topName='+this.topName+'&twoName='+this.dynamicCol[this.tabIndex].name+"&comment="+this.comment+'&parentCode='+wz.Code
  286. }) */
  287. }
  288. //console.log(wz)
  289. },
  290. gotoTop(){
  291. uni.pageScrollTo({
  292.    scrollTop: 0, duration: 300
  293. });
  294. },
  295. swpBtnRight(){
  296. var length=this.recommendList.length
  297. var num=Math.ceil(length/2)
  298. if(this.swpIndex<num){
  299. this.swpIndex++
  300. }
  301. },
  302. swpBtnLeft(){
  303. if(this.swpIndex==0){
  304. }else{
  305. this.swpIndex--
  306. }
  307. },
  308. getindexData(){
  309. uni.showLoading({
  310. title: '加载中'
  311. })
  312. this.$http('/trainingOpenApi/indexData', {}, 'GET').then(res => {
  313. uni.hideLoading();
  314. this.indexData = res.data;
  315. this.recommendList=this.indexData.recommendList
  316. })
  317. },
  318. mainMore(item){
  319. console.log(item)
  320. this.getChildList(item)
  321. /* uni.navigateTo({
  322. url:'list?code='+item.code+'&topName='+item.name+'&comment='+item.comment
  323. }) */
  324. },
  325. gotoTop(){
  326. uni.pageScrollTo({
  327.    scrollTop: 0, duration: 300
  328. });
  329. },
  330. tabBtn(index,item){
  331. this.tabIndex=index;
  332. //console.log(item)
  333. this.parentCode=item.code;
  334. this.getcategoryPageData()
  335. },
  336. pageChange(e){
  337. console.log(e)
  338. this.page=e;
  339. this.getcategoryPageData()
  340. },
  341. getcategoryPageData(){
  342. var params={
  343. parentCode:this.parentCode,
  344. topCode:this.topCode,
  345. limit:this.pageSize,
  346. page:this.page,
  347. }
  348. uni.showLoading({
  349. title: '加载中'
  350. })
  351. this.$http('/trainingOpenApi/categoryPageData', params, 'GET').then(res => {
  352. uni.hideLoading();
  353. this.list=res.data.Items;
  354. this.TotalSize=res.data.TotalSize;
  355. var arr=[
  356. {
  357. 'name':'全部','code':'',
  358. }
  359. ]
  360. this.dynamicCol=arr.concat(res.data.dynamicCol);
  361. })
  362. }
  363. }
  364. }
  365. </script>
  366. <style scoped>
  367. .content{
  368. background: #F4F5F7;
  369. min-height: 100vh;
  370. font-family: PingFangSC-Regular, PingFang SC;
  371. }
  372. .swiperBox{
  373. /* height: 280px; */
  374. /* background: #F3F8FF; */
  375. width: 100%;
  376. }
  377. .swiperCont{
  378. width: 1236px;
  379. margin: 0 auto;
  380. position: relative;
  381. }
  382. .tuijImg{
  383. width: 24px;height: 24px;
  384. }
  385. .tuijbox{
  386. display: flex;padding-top: 32px;padding-bottom: 20px;
  387. padding-left: 15px;
  388. }
  389. .tuijTitle{
  390. font-size: 22px;
  391. font-family: PingFangSC-Medium, PingFang SC;
  392. font-weight: 500;
  393. color: #3C3C3C;
  394. padding-left: 7px;
  395. line-height: 24px;
  396. }
  397. .swpImgleft{
  398. width: 44px;
  399. height: 44px;
  400. position: absolute;
  401. top: 145px;
  402. left: -60px;
  403. cursor: pointer;
  404. }
  405. .swpImgright{
  406. width: 44px;
  407. height: 44px;
  408. position: absolute;
  409. top: 145px;
  410. right: -60px;
  411. cursor: pointer;
  412. }
  413. .swiper-item{
  414. width: 590px;
  415. height: 163px;
  416. background: #FFFFFF;
  417. margin-left: 16px;
  418. margin-right: 12px;
  419. border-radius: 6px;
  420. margin-top: 14px;
  421. position: relative;
  422. cursor: pointer;
  423. }
  424. .swiper-item:hover{
  425. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.25);
  426. }
  427. .swpCont{
  428. display: flex;
  429. height: 210px;
  430. justify-content: space-between;
  431. }
  432. .swpimg{
  433. width: 284px;
  434. height: 160px;
  435. }
  436. .swpimgBox{
  437. width: 284px;
  438. height: 160px;
  439. position: absolute;
  440. left: 0;
  441. top: -14px;
  442. }
  443. .swpBr{
  444. width: 284px;
  445. height: 160px;
  446. border-radius: 7px;
  447. overflow: hidden;
  448. }
  449. .swiper{
  450. height: 190px;
  451. }
  452. .swpTitleBox{
  453. padding-left: 304px;
  454. display: flex;
  455. flex-direction: column;
  456. justify-content: space-between;
  457. height: 140px;
  458. padding-top: 10px;
  459. }
  460. .swpTitle{
  461. width: 240px;
  462. height: 44px;
  463. font-size: 16px;
  464. color: #3C3C3C;
  465. line-height: 22px;
  466. text-overflow: -o-ellipsis-lastline;
  467. overflow: hidden;
  468. text-overflow: ellipsis;
  469. display: -webkit-box;
  470. -webkit-line-clamp: 2;
  471. line-clamp: 2;
  472. -webkit-box-orient: vertical;
  473. }
  474. .swpTitleBox:hover .swpTitle{
  475. color: #FF4F00;
  476. }
  477. .categoryName{
  478. line-height: 24px;
  479. width: 84px;
  480. height: 24px;
  481. background: rgba(63, 144, 247, 0.1);
  482. border-radius: 14px;
  483. font-size: 14px;
  484. color: #3F90F7;
  485. text-align: center;
  486. white-space: nowrap;
  487. overflow: hidden;
  488. text-overflow: ellipsis;
  489. }
  490. .mainCont{
  491. width: 1200px;
  492. margin: 0 auto;
  493. padding-bottom: 20px;
  494. }
  495. .mainline{
  496. padding-top: 34px;
  497. }
  498. .mainlineTop{
  499. display: flex;
  500. justify-content: space-between;
  501. }
  502. .mainlineTopleft{
  503. display: flex;
  504. }
  505. .mainlineTitle{
  506. font-size: 22px;
  507. font-weight: 500;
  508. color: #3C3C3C;
  509. line-height: 33px;
  510. font-family: PingFangSC-Medium, PingFang SC;
  511. }
  512. .mainlinecount{
  513. font-size: 14px;
  514. font-weight: 400;
  515. color: #999999;
  516. line-height: 33px;
  517. padding-left: 16px;
  518. }
  519. .mainlineMore{
  520. font-size: 14px;
  521. color: #999999;
  522. }
  523. .mainwzbox{
  524. display: flex;
  525. padding-top: 20px;
  526. }
  527. .mainwzImg{
  528. width: 284px;
  529. height: 160px;
  530. }
  531. .mainwzImgBox{
  532. border-top-left-radius: 6px;
  533. border-top-right-radius: 6px;
  534. overflow: hidden;
  535. height: 160px;
  536. border: 1px solid #eeeeee;
  537. }
  538. .mainwzline{
  539. width: 284px;
  540. height: 244px;
  541. background: #FFFFFF;
  542. border-radius: 6px;
  543. }
  544. .mainwzlineR{
  545. margin-right: 22px;
  546. }
  547. .wztitle{
  548. width: 256px;
  549. font-size: 16px;
  550. color: #333333;
  551. line-height: 22px;
  552. height: 22px;
  553. text-overflow: -o-ellipsis-lastline;
  554. overflow: hidden;
  555. text-overflow: ellipsis;
  556. display: -webkit-box;
  557. -webkit-line-clamp: 1;
  558. line-clamp: 1;
  559. -webkit-box-orient: vertical;
  560. padding:0 13px ;
  561. padding-top: 16px;
  562. }
  563. .wztime{
  564. font-size: 14px;
  565. color: #999999;
  566. padding-left: 14px;
  567. padding-top: 10px;
  568. }
  569. .mainwzline:hover{
  570. background: #FFFFFF;
  571. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.2);
  572. border-radius: 6px;
  573. cursor: pointer;
  574. }
  575. .mainwzline:hover .wztitle{
  576. color: #FF4F00;
  577. }
  578. .mainlineMore:hover{
  579. color: #FF4F00;
  580. cursor: pointer;
  581. }
  582. .gotopImg{
  583. width: 60px;
  584. height: 60px;
  585. }
  586. .gotop{
  587. position: fixed;
  588. right:5vh ;
  589. bottom: 60px;
  590. cursor: pointer;
  591. }
  592. .linegdImg1{
  593. width: 6px;
  594. height: 10px;
  595. margin-top: 5px;
  596. margin-left: 4px;
  597. }
  598. .linegdImg2{
  599. width: 6px;
  600. height: 10px;
  601. display: none;
  602. margin-top: 5px;
  603. margin-left: 4px;
  604. }
  605. .mainlineMore{
  606. display: flex;
  607. }
  608. .mainlineMore:hover .linegdImg1{
  609. display: none;
  610. }
  611. .mainlineMore:hover .linegdImg2{
  612. display: block;
  613. }
  614. .mainline1{
  615. padding-top: 20px;
  616. }
  617. .content{
  618. background: #F4F5F7;
  619. min-height: 100vh;
  620. font-family: PingFangSC-Regular, PingFang SC;
  621. }
  622. .contBox{
  623. min-height: 58vh;
  624. }
  625. .gotopImg{
  626. width: 60px;
  627. height: 60px;
  628. }
  629. .gotop{
  630. position: fixed;
  631. right:5vh ;
  632. bottom: 60px;
  633. cursor: pointer;
  634. }
  635. .topName{
  636. text-align: center;
  637. font-size: 22px;
  638. font-weight: 500;
  639. color: #3C3C3C;
  640. line-height: 33px;
  641. padding-top: 30px;
  642. font-family: PingFangSC-Medium, PingFang SC;
  643. }
  644. .comment{
  645. text-align: center;
  646. font-size: 14px;
  647. font-weight: 400;
  648. color: #999999;
  649. line-height: 20px;
  650. width: 500px;
  651. padding-top: 10px;
  652. margin: 0 auto;
  653. }
  654. .main{
  655. width: 1200px;
  656. margin: 0 auto;
  657. padding-top: 30px;
  658. }
  659. .dynamicColLeft{
  660. display: flex;
  661. }
  662. .dynamicColLIne{
  663. padding-right: 44px;
  664. font-size: 16px;
  665. color: #3C3C3C;
  666. cursor: pointer;
  667. line-height: 32px;
  668. }
  669. .qhImg{
  670. width: 28px;
  671. height: 28px;
  672. margin-left: 8px;
  673. cursor: pointer;
  674. }
  675. .dynamicCol{
  676. display: flex;
  677. justify-content: space-between;
  678. background: #FFFFFF;
  679. padding:15px 20px;
  680. border-radius: 8px;
  681. }
  682. .activeTab{
  683. color: #FF4F00;
  684. }
  685. .mainwzImg{
  686. width: 284px;
  687. height: 160px;
  688. }
  689. .mainwzImgBox{
  690. border-top-left-radius: 6px;
  691. border-top-right-radius: 6px;
  692. overflow: hidden;
  693. height: 160px;
  694. border: 1px solid #eeeeee;
  695. }
  696. .contf{
  697. display: flex;
  698. flex-wrap: wrap;
  699. }
  700. .mainwzline{
  701. width: 284px;
  702. height: 244px;
  703. background: #FFFFFF;
  704. margin-right: 21px;
  705. margin-top: 20px;
  706. cursor: pointer;
  707. border-radius: 6px;
  708. }
  709. .wztime{
  710. font-size: 14px;
  711. color: #999999;
  712. padding-left: 14px;
  713. padding-top: 10px;
  714. }
  715. .mainwzline:hover{
  716. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.2);
  717. }
  718. .mainwzlineR2{
  719. margin-right: 0px;
  720. }
  721. .wztitle{
  722. width: 256px;
  723. font-size: 16px;
  724. color: #333333;
  725. line-height: 22px;
  726. height: 22px;
  727. text-overflow: -o-ellipsis-lastline;
  728. overflow: hidden;
  729. text-overflow: ellipsis;
  730. display: -webkit-box;
  731. -webkit-line-clamp: 1;
  732. line-clamp: 1;
  733. -webkit-box-orient: vertical;
  734. padding:0 13px ;
  735. padding-top: 16px;
  736. }
  737. .wzLeftIMg{
  738. width: 200px;
  739. height: 112px;
  740. }
  741. .contL{
  742. background: #FFFFFF;
  743. margin-top: 20px;
  744. border-radius: 8px;
  745. padding: 0 20px;
  746. }
  747. .wxLine{
  748. display: flex;
  749. padding: 20px 0px;
  750. cursor: pointer;
  751. border-bottom: 1px solid #EEEEEE;
  752. }
  753. .wzLineLeft{
  754. border-radius: 6px;
  755. overflow: hidden;
  756. width: 200px;
  757. height: 112px;
  758. }
  759. .wzLineRight{
  760. padding-left: 16px;
  761. width: 788px;
  762. }
  763. .wzTitle2{
  764. font-size: 16px;
  765. color: #3C3C3C;
  766. width: 948px;
  767. height: 20px;
  768. line-height: 20px;
  769. text-overflow: -o-ellipsis-lastline;
  770. overflow: hidden;
  771. text-overflow: ellipsis;
  772. display: -webkit-box;
  773. -webkit-line-clamp: 1;
  774. line-clamp: 1;
  775. -webkit-box-orient: vertical;
  776. }
  777. .wzComment{
  778. font-size: 14px;
  779. font-family: PingFangSC-Regular, PingFang SC;
  780. font-weight: 400;
  781. color: #999999;
  782. line-height: 20px;
  783. padding-top: 10px;
  784. width: 948px;
  785. height: 80px;
  786. text-overflow: -o-ellipsis-lastline;
  787. overflow: hidden;
  788. text-overflow: ellipsis;
  789. display: -webkit-box;
  790. -webkit-line-clamp: 4;
  791. line-clamp: 4;
  792. -webkit-box-orient: vertical;
  793. }
  794. .pageView{
  795. margin-top: 20px;
  796. cursor: pointer;
  797. padding-bottom: 20px;
  798. }
  799. .nodataImg{
  800. width: 300px;
  801. height: 203px;
  802. }
  803. .nodata{
  804. text-align: center;
  805. padding-top: 100px;
  806. }
  807. .nodataTitle{
  808. font-size: 16px;
  809. padding-top: 16px;
  810. font-weight: 400;
  811. color: #999999;
  812. }
  813. </style>