indexNew.vue 20 KB

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