indexNew.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875
  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" v-if="recommendList.length>0">
  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" @goDetail="goDetail" @goDetail4="goDetail4"></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.pageScrollTo({
  219.    scrollTop: 0, duration: 100
  220. });
  221. /* uni.navigateTo({
  222. url:'list?code='+item.code+'&topName='+item.categoryName//+'&comment='+item.comment
  223. }) */
  224. },
  225. goDetail(item){
  226. console.log(item)
  227. this.indexShow=false;
  228. this.listShow=false;
  229. this.newDetailShow=true;
  230. this.newgroupingListShow=false;
  231. this.newsearchShow=false;
  232. this.newDetailID=item.id;
  233. this.newDetailItem=item;
  234. /* uni.navigateTo({
  235. url:'detail?id='+item.id+'&topName='+item.categoryName+"&comment="+item.comment+'&parentCode='+item.code
  236. }) */
  237. },
  238. goDetail2(wz,item){
  239. /* console.log(item)
  240. console.log(wz) */
  241. this.indexShow=false;
  242. this.listShow=false;
  243. this.newDetailShow=true;
  244. this.newgroupingListShow=false;
  245. this.newsearchShow=false;
  246. this.newDetailID=wz.id;
  247. this.newDetailItem=item;
  248. /* uni.navigateTo({
  249. url:'detail?id='+wz.id+'&topName='+item.name+"&comment="+item.comment+'&parentCode='+item.code
  250. }) */
  251. },
  252. goDetail3(wz){
  253. // 1分类2文章
  254. if (wz.Type == 1) {
  255. /* uni.navigateTo({
  256. url:'groupingList?parentCode='+this.topCode+'&code='+wz.Code+'&name='+wz.Name+'&title='+wz.Title+'&topName='+this.topName+"&comment="+this.comment
  257. }) */
  258. this.newgroupingcode=wz.Code;
  259. var newgroupingdata={
  260. parentCode:this.topCode,
  261. name:wz.Name,
  262. title:wz.Title,
  263. topName:this.topName,
  264. comment:this.comment
  265. }
  266. console.log(newgroupingdata)
  267. this.indexShow=false;
  268. this.listShow=false;
  269. this.newDetailShow=false;
  270. this.newgroupingListShow=true;
  271. this.newsearchShow=false;
  272. this.newgroupingdata=newgroupingdata
  273. }else{
  274. this.indexShow=false;
  275. this.listShow=false;
  276. this.newDetailShow=true;
  277. this.newgroupingListShow=false;
  278. this.newsearchShow=false;
  279. this.newDetailID=wz.ID;
  280. var item={
  281. categoryName:this.topName,
  282. twoName:this.dynamicCol[this.tabIndex].name,
  283. comment:this.comment,
  284. code:wz.Code
  285. }
  286. this.newDetailItem=item;
  287. /* uni.navigateTo({
  288. url:'detail?id='+wz.ID+'&topName='+this.topName+'&twoName='+this.dynamicCol[this.tabIndex].name+"&comment="+this.comment+'&parentCode='+wz.Code
  289. }) */
  290. }
  291. //console.log(wz)
  292. },
  293. goDetail4(item){
  294. this.newgroupingcode=item.Code;
  295. var newgroupingdata={
  296. parentCode:item.parentCode,
  297. name:item.Name,
  298. title:item.Title,
  299. topName:item.topName,
  300. comment:''
  301. }
  302. console.log(newgroupingdata)
  303. this.indexShow=false;
  304. this.listShow=false;
  305. this.newDetailShow=false;
  306. this.newgroupingListShow=true;
  307. this.newsearchShow=false;
  308. this.newgroupingdata=newgroupingdata
  309. },
  310. gotoTop(){
  311. uni.pageScrollTo({
  312.    scrollTop: 0, duration: 300
  313. });
  314. },
  315. swpBtnRight(){
  316. var length=this.recommendList.length
  317. var num=Math.ceil(length/2)
  318. if(this.swpIndex<num){
  319. this.swpIndex++
  320. }
  321. },
  322. swpBtnLeft(){
  323. if(this.swpIndex==0){
  324. }else{
  325. this.swpIndex--
  326. }
  327. },
  328. getindexData(){
  329. uni.showLoading({
  330. title: '加载中'
  331. })
  332. this.$http('/trainingOpenApi/indexData', {}, 'GET').then(res => {
  333. uni.hideLoading();
  334. this.indexData = res.data;
  335. this.recommendList=this.indexData.recommendList
  336. })
  337. },
  338. mainMore(item){
  339. console.log(item)
  340. this.getChildList(item)
  341. /* uni.navigateTo({
  342. url:'list?code='+item.code+'&topName='+item.name+'&comment='+item.comment
  343. }) */
  344. },
  345. gotoTop(){
  346. uni.pageScrollTo({
  347.    scrollTop: 0, duration: 300
  348. });
  349. },
  350. tabBtn(index,item){
  351. this.tabIndex=index;
  352. //console.log(item)
  353. this.parentCode=item.code;
  354. this.getcategoryPageData()
  355. },
  356. pageChange(e){
  357. console.log(e)
  358. this.page=e;
  359. this.getcategoryPageData()
  360. },
  361. getcategoryPageData(){
  362. var params={
  363. parentCode:this.parentCode,
  364. topCode:this.topCode,
  365. limit:this.pageSize,
  366. page:this.page,
  367. }
  368. uni.showLoading({
  369. title: '加载中'
  370. })
  371. this.$http('/trainingOpenApi/categoryPageData', params, 'GET').then(res => {
  372. uni.hideLoading();
  373. this.list=res.data.Items;
  374. this.TotalSize=res.data.TotalSize;
  375. var arr=[
  376. {
  377. 'name':'全部','code':'',
  378. }
  379. ]
  380. this.dynamicCol=arr.concat(res.data.dynamicCol);
  381. })
  382. }
  383. }
  384. }
  385. </script>
  386. <style scoped>
  387. .content{
  388. background: #F4F5F7;
  389. min-height: 100vh;
  390. font-family: PingFangSC-Regular, PingFang SC;
  391. }
  392. .swiperBox{
  393. /* height: 280px; */
  394. /* background: #F3F8FF; */
  395. width: 100%;
  396. }
  397. .swiperCont{
  398. width: 1236px;
  399. margin: 0 auto;
  400. position: relative;
  401. }
  402. .tuijImg{
  403. width: 24px;height: 24px;
  404. }
  405. .tuijbox{
  406. display: flex;padding-top: 32px;padding-bottom: 20px;
  407. padding-left: 15px;
  408. }
  409. .tuijTitle{
  410. font-size: 22px;
  411. font-family: PingFangSC-Medium, PingFang SC;
  412. font-weight: 500;
  413. color: #3C3C3C;
  414. padding-left: 7px;
  415. line-height: 24px;
  416. }
  417. .swpImgleft{
  418. width: 44px;
  419. height: 44px;
  420. position: absolute;
  421. top: 145px;
  422. left: -60px;
  423. cursor: pointer;
  424. }
  425. .swpImgright{
  426. width: 44px;
  427. height: 44px;
  428. position: absolute;
  429. top: 145px;
  430. right: -60px;
  431. cursor: pointer;
  432. }
  433. .swiper-item{
  434. width: 590px;
  435. height: 163px;
  436. background: #FFFFFF;
  437. margin-left: 16px;
  438. margin-right: 12px;
  439. border-radius: 6px;
  440. margin-top: 14px;
  441. position: relative;
  442. cursor: pointer;
  443. }
  444. .swiper-item:hover{
  445. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.25);
  446. }
  447. .swpCont{
  448. display: flex;
  449. height: 210px;
  450. justify-content: space-between;
  451. }
  452. .swpimg{
  453. width: 284px;
  454. height: 160px;
  455. }
  456. .swpimgBox{
  457. width: 284px;
  458. height: 160px;
  459. position: absolute;
  460. left: 0;
  461. top: -14px;
  462. }
  463. .swpBr{
  464. width: 284px;
  465. height: 160px;
  466. border-radius: 7px;
  467. overflow: hidden;
  468. }
  469. .swiper{
  470. height: 190px;
  471. }
  472. .swpTitleBox{
  473. padding-left: 304px;
  474. display: flex;
  475. flex-direction: column;
  476. justify-content: space-between;
  477. height: 140px;
  478. padding-top: 10px;
  479. }
  480. .swpTitle{
  481. width: 240px;
  482. height: 44px;
  483. font-size: 16px;
  484. color: #3C3C3C;
  485. line-height: 22px;
  486. text-overflow: -o-ellipsis-lastline;
  487. overflow: hidden;
  488. text-overflow: ellipsis;
  489. display: -webkit-box;
  490. -webkit-line-clamp: 2;
  491. line-clamp: 2;
  492. -webkit-box-orient: vertical;
  493. }
  494. .swpTitleBox:hover .swpTitle{
  495. color: #FF4F00;
  496. }
  497. .categoryName{
  498. line-height: 24px;
  499. width: 84px;
  500. height: 24px;
  501. background: rgba(63, 144, 247, 0.1);
  502. border-radius: 14px;
  503. font-size: 14px;
  504. color: #3F90F7;
  505. text-align: center;
  506. white-space: nowrap;
  507. overflow: hidden;
  508. text-overflow: ellipsis;
  509. }
  510. .mainCont{
  511. width: 1200px;
  512. margin: 0 auto;
  513. padding-bottom: 20px;
  514. }
  515. .mainline{
  516. padding-top: 34px;
  517. }
  518. .mainlineTop{
  519. display: flex;
  520. justify-content: space-between;
  521. }
  522. .mainlineTopleft{
  523. display: flex;
  524. }
  525. .mainlineTitle{
  526. font-size: 22px;
  527. font-weight: 500;
  528. color: #3C3C3C;
  529. line-height: 33px;
  530. font-family: PingFangSC-Medium, PingFang SC;
  531. }
  532. .mainlinecount{
  533. font-size: 14px;
  534. font-weight: 400;
  535. color: #999999;
  536. line-height: 33px;
  537. padding-left: 16px;
  538. }
  539. .mainlineMore{
  540. font-size: 14px;
  541. color: #999999;
  542. }
  543. .mainwzbox{
  544. display: flex;
  545. padding-top: 20px;
  546. }
  547. .mainwzImg{
  548. width: 284px;
  549. height: 160px;
  550. }
  551. .mainwzImgBox{
  552. border-top-left-radius: 6px;
  553. border-top-right-radius: 6px;
  554. overflow: hidden;
  555. height: 160px;
  556. border: 1px solid #eeeeee;
  557. }
  558. .mainwzline{
  559. width: 284px;
  560. height: 244px;
  561. background: #FFFFFF;
  562. border-radius: 6px;
  563. }
  564. .mainwzlineR{
  565. margin-right: 22px;
  566. }
  567. .wztitle{
  568. width: 256px;
  569. font-size: 16px;
  570. color: #333333;
  571. line-height: 22px;
  572. height: 22px;
  573. text-overflow: -o-ellipsis-lastline;
  574. overflow: hidden;
  575. text-overflow: ellipsis;
  576. display: -webkit-box;
  577. -webkit-line-clamp: 1;
  578. line-clamp: 1;
  579. -webkit-box-orient: vertical;
  580. padding:0 13px ;
  581. padding-top: 16px;
  582. }
  583. .wztime{
  584. font-size: 14px;
  585. color: #999999;
  586. padding-left: 14px;
  587. padding-top: 10px;
  588. }
  589. .mainwzline:hover{
  590. background: #FFFFFF;
  591. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.2);
  592. border-radius: 6px;
  593. cursor: pointer;
  594. }
  595. .mainwzline:hover .wztitle{
  596. color: #FF4F00;
  597. }
  598. .mainlineMore:hover{
  599. color: #FF4F00;
  600. cursor: pointer;
  601. }
  602. .gotopImg{
  603. width: 60px;
  604. height: 60px;
  605. }
  606. .gotop{
  607. position: fixed;
  608. right:5vh ;
  609. bottom: 60px;
  610. cursor: pointer;
  611. }
  612. .linegdImg1{
  613. width: 6px;
  614. height: 10px;
  615. margin-top: 5px;
  616. margin-left: 4px;
  617. }
  618. .linegdImg2{
  619. width: 6px;
  620. height: 10px;
  621. display: none;
  622. margin-top: 5px;
  623. margin-left: 4px;
  624. }
  625. .mainlineMore{
  626. display: flex;
  627. }
  628. .mainlineMore:hover .linegdImg1{
  629. display: none;
  630. }
  631. .mainlineMore:hover .linegdImg2{
  632. display: block;
  633. }
  634. .mainline1{
  635. padding-top: 20px;
  636. }
  637. .content{
  638. background: #F4F5F7;
  639. min-height: 100vh;
  640. font-family: PingFangSC-Regular, PingFang SC;
  641. }
  642. .contBox{
  643. min-height: 58vh;
  644. }
  645. .gotopImg{
  646. width: 60px;
  647. height: 60px;
  648. }
  649. .gotop{
  650. position: fixed;
  651. right:5vh ;
  652. bottom: 60px;
  653. cursor: pointer;
  654. }
  655. .topName{
  656. text-align: center;
  657. font-size: 22px;
  658. font-weight: 500;
  659. color: #3C3C3C;
  660. line-height: 33px;
  661. padding-top: 30px;
  662. font-family: PingFangSC-Medium, PingFang SC;
  663. }
  664. .comment{
  665. text-align: center;
  666. font-size: 14px;
  667. font-weight: 400;
  668. color: #999999;
  669. line-height: 20px;
  670. width: 500px;
  671. padding-top: 10px;
  672. margin: 0 auto;
  673. }
  674. .main{
  675. width: 1200px;
  676. margin: 0 auto;
  677. padding-top: 30px;
  678. }
  679. .dynamicColLeft{
  680. display: flex;
  681. }
  682. .dynamicColLIne{
  683. padding-right: 44px;
  684. font-size: 16px;
  685. color: #3C3C3C;
  686. cursor: pointer;
  687. line-height: 32px;
  688. }
  689. .qhImg{
  690. width: 28px;
  691. height: 28px;
  692. margin-left: 8px;
  693. cursor: pointer;
  694. }
  695. .dynamicCol{
  696. display: flex;
  697. justify-content: space-between;
  698. background: #FFFFFF;
  699. padding:15px 20px;
  700. border-radius: 8px;
  701. }
  702. .activeTab{
  703. color: #FF4F00;
  704. }
  705. .mainwzImg{
  706. width: 284px;
  707. height: 160px;
  708. }
  709. .mainwzImgBox{
  710. border-top-left-radius: 6px;
  711. border-top-right-radius: 6px;
  712. overflow: hidden;
  713. height: 160px;
  714. border: 1px solid #eeeeee;
  715. }
  716. .contf{
  717. display: flex;
  718. flex-wrap: wrap;
  719. }
  720. .mainwzline{
  721. width: 284px;
  722. height: 244px;
  723. background: #FFFFFF;
  724. margin-right: 21px;
  725. margin-top: 20px;
  726. cursor: pointer;
  727. border-radius: 6px;
  728. }
  729. .wztime{
  730. font-size: 14px;
  731. color: #999999;
  732. padding-left: 14px;
  733. padding-top: 10px;
  734. }
  735. .mainwzline:hover{
  736. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.2);
  737. }
  738. .mainwzlineR2{
  739. margin-right: 0px;
  740. }
  741. .wztitle{
  742. width: 256px;
  743. font-size: 16px;
  744. color: #333333;
  745. line-height: 22px;
  746. height: 22px;
  747. text-overflow: -o-ellipsis-lastline;
  748. overflow: hidden;
  749. text-overflow: ellipsis;
  750. display: -webkit-box;
  751. -webkit-line-clamp: 1;
  752. line-clamp: 1;
  753. -webkit-box-orient: vertical;
  754. padding:0 13px ;
  755. padding-top: 16px;
  756. }
  757. .wzLeftIMg{
  758. width: 200px;
  759. height: 112px;
  760. }
  761. .contL{
  762. background: #FFFFFF;
  763. margin-top: 20px;
  764. border-radius: 8px;
  765. padding: 0 20px;
  766. }
  767. .wxLine{
  768. display: flex;
  769. padding: 20px 0px;
  770. cursor: pointer;
  771. border-bottom: 1px solid #EEEEEE;
  772. }
  773. .wzLineLeft{
  774. border-radius: 6px;
  775. overflow: hidden;
  776. width: 200px;
  777. height: 112px;
  778. }
  779. .wzLineRight{
  780. padding-left: 16px;
  781. width: 788px;
  782. }
  783. .wzTitle2{
  784. font-size: 16px;
  785. color: #3C3C3C;
  786. width: 948px;
  787. height: 20px;
  788. line-height: 20px;
  789. text-overflow: -o-ellipsis-lastline;
  790. overflow: hidden;
  791. text-overflow: ellipsis;
  792. display: -webkit-box;
  793. -webkit-line-clamp: 1;
  794. line-clamp: 1;
  795. -webkit-box-orient: vertical;
  796. }
  797. .wzComment{
  798. font-size: 14px;
  799. font-family: PingFangSC-Regular, PingFang SC;
  800. font-weight: 400;
  801. color: #999999;
  802. line-height: 20px;
  803. padding-top: 10px;
  804. width: 948px;
  805. height: 80px;
  806. text-overflow: -o-ellipsis-lastline;
  807. overflow: hidden;
  808. text-overflow: ellipsis;
  809. display: -webkit-box;
  810. -webkit-line-clamp: 4;
  811. line-clamp: 4;
  812. -webkit-box-orient: vertical;
  813. }
  814. .pageView{
  815. margin-top: 20px;
  816. cursor: pointer;
  817. padding-bottom: 20px;
  818. }
  819. .nodataImg{
  820. width: 300px;
  821. height: 203px;
  822. }
  823. .nodata{
  824. text-align: center;
  825. padding-top: 100px;
  826. }
  827. .nodataTitle{
  828. font-size: 16px;
  829. padding-top: 16px;
  830. font-weight: 400;
  831. color: #999999;
  832. }
  833. </style>