indexNew.vue 20 KB

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