indexNew.vue 23 KB

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