indexNew.vue 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058
  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="goDetailswp(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="goDetailswp(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="goDetailswp(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" :currentPage="page" :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. uni.setNavigationBarTitle({
  205. title: '门店学院' // 设定新标题
  206. });
  207. if(opt.id){
  208. this.newDetailID=opt.id;
  209. var item={
  210. categoryName:opt.topName,
  211. comment:opt.comment,
  212. parentCode:'',
  213. twoName:'',
  214. id:opt.id
  215. }
  216. console.log(item)
  217. this.goDetail(item)
  218. }
  219. var helpToken=opt.helpToken
  220. if(helpToken){
  221. //登录 除了安徒生没有 其他的都有
  222. }else{
  223. var that=this
  224. uni.getStorage({
  225. key: "helpToken",
  226. success: function(res) {
  227. const currentTime = Date.now();
  228. const expiration = res.data.expiration;
  229. if (currentTime < expiration) {
  230. // 数据未过期,使用数据
  231. // console.log('数据有效,值为:', res.data.value);
  232. var helpToken=res.data.value
  233. if(helpToken){
  234. }else{
  235. that.login()
  236. }
  237. } else {
  238. that.login()
  239. uni.removeStorageSync('helpToken');
  240. }
  241. },
  242. fail: function() {
  243. console.log('获取数据失败');
  244. that.login()
  245. }
  246. });
  247. }
  248. this.getindexData()
  249. },
  250. created(){
  251. //this.getindexData()
  252. },
  253. methods: {
  254. login(){
  255. uni.navigateTo({
  256. url:'../login/login?index=1'
  257. })
  258. },
  259. getIndexList(){
  260. this.indexShow=true;
  261. this.listShow=false;
  262. this.newDetailShow=false;
  263. this.newgroupingListShow=false;
  264. this.newsearchShow=false;
  265. this.indexName='index';
  266. this.topName=''
  267. },
  268. gosearchlist(){
  269. this.indexShow=false;
  270. this.listShow=false;
  271. this.newDetailShow=false;
  272. this.newgroupingListShow=false;
  273. this.newsearchShow=true;
  274. this.indexName='';
  275. this.topName=''
  276. },
  277. getChildList(item){
  278. console.log(item);
  279. this.indexName=''
  280. this.topName=item.name;
  281. this.comment=item.comment;
  282. this.topCode=item.code;
  283. this.parentCode=item.code;
  284. this.page=1;
  285. //this.parentCode='';
  286. this.getcategoryPageData();
  287. uni.setNavigationBarTitle({
  288. title: this.topName
  289. });
  290. this.indexShow=false;
  291. this.listShow=true;
  292. this.newDetailShow=false;
  293. this.newgroupingListShow=false;
  294. this.newsearchShow=false;
  295. this.tabIndex=0;
  296. },
  297. goList(item){
  298. console.log(item)
  299. this.getChildList(item)
  300. uni.pageScrollTo({
  301.    scrollTop: 0, duration: 100
  302. });
  303. /* uni.navigateTo({
  304. url:'list?code='+item.code+'&topName='+item.categoryName//+'&comment='+item.comment
  305. }) */
  306. },
  307. goDetail(item){
  308. if(item.linkType==1){
  309. window.open(item.linkUrl, '_blank');
  310. return false
  311. }
  312. console.log(item)
  313. this.indexShow=false;
  314. this.listShow=false;
  315. this.newDetailShow=true;
  316. this.newgroupingListShow=false;
  317. this.newsearchShow=false;
  318. this.newDetailID=item.id;
  319. item.categoryName=item.topName;
  320. //item.code=
  321. this.newDetailItem=item;
  322. console.log(this.newDetailItem)
  323. //this.$refs.newDetailV.test()
  324. //this.$refs.newDetailV.newidfn()
  325. /* uni.navigateTo({
  326. url:'detail?id='+item.id+'&topName='+item.categoryName+"&comment="+item.comment+'&parentCode='+item.code
  327. }) */
  328. },
  329. goDetail2(wz,item){
  330. console.log(item)
  331. console.log(wz)
  332. if (wz.type == 1) {
  333. this.newgroupingcode=wz.code;
  334. var newgroupingdata={
  335. parentCode:item.code,
  336. name:wz.name,
  337. title:wz.title,
  338. topName:item.name,
  339. comment:item.comment,
  340. code:item.code
  341. }
  342. console.log(newgroupingdata)
  343. this.indexShow=false;
  344. this.listShow=false;
  345. this.newDetailShow=false;
  346. this.newgroupingListShow=true;
  347. this.newsearchShow=false;
  348. this.newgroupingdata=newgroupingdata
  349. }else{
  350. if(wz.linkType==1){
  351. window.open(wz.linkUrl, '_blank');
  352. return false
  353. }
  354. this.indexShow=false;
  355. this.listShow=false;
  356. this.newDetailShow=true;
  357. this.newgroupingListShow=false;
  358. this.newsearchShow=false;
  359. this.newDetailID=wz.id;
  360. var item={
  361. categoryName:item.name,
  362. twoName:'',
  363. comment:item.comment,
  364. code:item.code
  365. }
  366. this.newDetailItem=item;
  367. }
  368. /* uni.navigateTo({
  369. url:'detail?id='+wz.id+'&topName='+item.name+"&comment="+item.comment+'&parentCode='+item.code
  370. }) */
  371. },
  372. goDetail3(wz){
  373. // 1分类2文章
  374. if (wz.Type == 1) {
  375. /* uni.navigateTo({
  376. url:'groupingList?parentCode='+this.topCode+'&code='+wz.Code+'&name='+wz.Name+'&title='+wz.Title+'&topName='+this.topName+"&comment="+this.comment
  377. }) */
  378. this.newgroupingcode=wz.Code;
  379. var newgroupingdata={
  380. parentCode:this.topCode,
  381. name:wz.Name,
  382. title:wz.Title,
  383. topName:this.topName,
  384. comment:this.comment
  385. }
  386. console.log(newgroupingdata)
  387. this.indexShow=false;
  388. this.listShow=false;
  389. this.newDetailShow=false;
  390. this.newgroupingListShow=true;
  391. this.newsearchShow=false;
  392. this.newgroupingdata=newgroupingdata
  393. }else{
  394. if(wz.linkType==1){
  395. window.open(wz.linkUrl, '_blank');
  396. return false
  397. }
  398. this.indexShow=false;
  399. this.listShow=false;
  400. this.newDetailShow=true;
  401. this.newgroupingListShow=false;
  402. this.newsearchShow=false;
  403. this.newDetailID=wz.ID;
  404. var item={
  405. categoryName:this.topName,
  406. twoName:this.dynamicCol[this.tabIndex].name,
  407. comment:this.comment,
  408. code:wz.Code
  409. }
  410. this.newDetailItem=item;
  411. /* uni.navigateTo({
  412. url:'detail?id='+wz.ID+'&topName='+this.topName+'&twoName='+this.dynamicCol[this.tabIndex].name+"&comment="+this.comment+'&parentCode='+wz.Code
  413. }) */
  414. }
  415. //console.log(wz)
  416. },
  417. goDetail4(item){
  418. this.newgroupingcode=item.Code;
  419. var newgroupingdata={
  420. parentCode:item.parentCode,
  421. name:item.Name,
  422. title:item.Title,
  423. topName:item.topName,
  424. comment:''
  425. }
  426. console.log(newgroupingdata)
  427. this.indexShow=false;
  428. this.listShow=false;
  429. this.newDetailShow=false;
  430. this.newgroupingListShow=true;
  431. this.newsearchShow=false;
  432. this.newgroupingdata=newgroupingdata
  433. },
  434. goDetailswp(item){
  435. //console.log(itme)
  436. if(item.linkType==1){
  437. window.open(item.linkUrl, '_blank');
  438. return false
  439. }
  440. this.indexShow=false;
  441. this.listShow=false;
  442. this.newDetailShow=true;
  443. this.newgroupingListShow=false;
  444. this.newsearchShow=false;
  445. this.newDetailID=item.id;
  446. var item={
  447. categoryName:item.categoryName,
  448. twoName:'',
  449. comment:item.comment,
  450. code:item.code
  451. }
  452. this.newDetailItem=item;
  453. },
  454. gotoTop(){
  455. uni.pageScrollTo({
  456.    scrollTop: 0, duration: 300
  457. });
  458. },
  459. swpBtnRight(){
  460. var length=this.recommendList.length;
  461. var num=Math.ceil(length/4)-1
  462. console.log(num+'---'+this.swpIndex)
  463. if(this.swpIndex<num){
  464. this.swpIndex++
  465. }
  466. },
  467. swpBtnLeft(){
  468. if(this.swpIndex==0){
  469. }else{
  470. this.swpIndex--
  471. }
  472. },
  473. getindexData(){
  474. uni.showLoading({
  475. title: '加载中'
  476. })
  477. this.$http('/trainingOpenApi/indexData', {}, 'GET').then(res => {
  478. uni.hideLoading();
  479. this.indexData = res.data;
  480. this.recommendList=this.indexData.recommendList
  481. })
  482. },
  483. mainMore(item){
  484. console.log(item)
  485. this.getChildList(item)
  486. /* uni.navigateTo({
  487. url:'list?code='+item.code+'&topName='+item.name+'&comment='+item.comment
  488. }) */
  489. },
  490. gotoTop(){
  491. uni.pageScrollTo({
  492.    scrollTop: 0, duration: 300
  493. });
  494. },
  495. tabBtn(index,item){
  496. this.tabIndex=index;
  497. console.log(item)
  498. this.parentCode=item.code;
  499. this.page=1;
  500. this.getcategoryPageData()
  501. },
  502. pageChange(e){
  503. console.log(e)
  504. this.page=e;
  505. this.getcategoryPageData()
  506. },
  507. getcategoryPageData(){
  508. console.log(this.parentCode)
  509. if(this.parentCode){
  510. var params={
  511. parentCode:this.parentCode,
  512. topCode:this.topCode,
  513. limit:this.pageSize,
  514. page:this.page,
  515. }
  516. var url='trainingOpenApi/categoryPageDataNew'
  517. this.$http(url, params, 'GET').then(res => {
  518. uni.hideLoading();
  519. this.list=res.data.Items;
  520. this.TotalSize=res.data.TotalSize;
  521. var arr=[
  522. {
  523. 'name':'全部','code':'',
  524. }
  525. ]
  526. this.dynamicCol=arr.concat(res.data.dynamicCol);
  527. })
  528. }else{
  529. var params = {
  530. page: this.page,
  531. limit: 10,
  532. parentCode: this.topCode,
  533. }
  534. var url='trainingOpenApi/groupPageData'
  535. this.$http(url, params, 'GET').then(res => {
  536. uni.hideLoading();
  537. this.list=res.data.Items;
  538. this.TotalSize=res.data.TotalSize;
  539. })
  540. }
  541. uni.showLoading({
  542. title: '加载中'
  543. })
  544. //trainingOpenApi/categoryPageData
  545. }
  546. }
  547. }
  548. </script>
  549. <style scoped>
  550. .content{
  551. background: #F4F5F7;
  552. min-height: 100vh;
  553. font-family: PingFangSC-Regular, PingFang SC;
  554. min-width: 1200px;
  555. }
  556. .swiperBox{
  557. /* height: 280px; */
  558. /* background: #F3F8FF; */
  559. width: 100%;
  560. }
  561. .swiperCont{
  562. width: 1230px;
  563. margin: 0 auto;
  564. position: relative;
  565. }
  566. .tuijImg{
  567. width: 24px;height: 24px;
  568. }
  569. .tuijbox{
  570. display: flex;padding-top: 32px;/* padding-bottom: 20px; */
  571. padding-left: 15px;
  572. }
  573. .tuijTitle{
  574. font-size: 22px;
  575. font-family: PingFangSC-Medium, PingFang SC;
  576. font-weight: 500;
  577. color: #3C3C3C;
  578. padding-left: 7px;
  579. line-height: 24px;
  580. }
  581. .swpImgleft{
  582. width: 44px;
  583. height: 44px;
  584. position: absolute;
  585. top: 170px;
  586. left: -60px;
  587. cursor: pointer;
  588. }
  589. .swpImgright{
  590. width: 44px;
  591. height: 44px;
  592. position: absolute;
  593. top: 170px;
  594. right: -60px;
  595. cursor: pointer;
  596. }
  597. .swiper-item{
  598. width: 590px;
  599. height: 163px;
  600. background: #FFFFFF;
  601. margin-left: 16px;
  602. margin-right: 12px;
  603. border-radius: 6px;
  604. margin-top: 14px;
  605. position: relative;
  606. cursor: pointer;
  607. }
  608. .swiper-item:hover{
  609. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.25);
  610. }
  611. .swpCont{
  612. display: flex;
  613. height: 210px;
  614. justify-content: space-between;
  615. }
  616. .swpimg{
  617. width: 284px;
  618. height: 160px;
  619. }
  620. .swpimgBox{
  621. width: 284px;
  622. height: 160px;
  623. position: absolute;
  624. left: 0;
  625. top: -14px;
  626. }
  627. .swpBr{
  628. width: 284px;
  629. height: 160px;
  630. border-radius: 7px;
  631. overflow: hidden;
  632. }
  633. .swiper{
  634. height: 280px;
  635. }
  636. .swpTitleBox{
  637. padding-left: 304px;
  638. display: flex;
  639. flex-direction: column;
  640. justify-content: space-between;
  641. height: 140px;
  642. padding-top: 10px;
  643. }
  644. .swpTitle{
  645. width: 240px;
  646. height: 44px;
  647. font-size: 16px;
  648. color: #3C3C3C;
  649. line-height: 22px;
  650. text-overflow: -o-ellipsis-lastline;
  651. overflow: hidden;
  652. text-overflow: ellipsis;
  653. display: -webkit-box;
  654. -webkit-line-clamp: 2;
  655. line-clamp: 2;
  656. -webkit-box-orient: vertical;
  657. }
  658. .swpTitleBox:hover .swpTitle{
  659. color: #FF4F00;
  660. }
  661. .categoryName{
  662. line-height: 24px;
  663. width: 84px;
  664. height: 24px;
  665. background: rgba(63, 144, 247, 0.1);
  666. border-radius: 14px;
  667. font-size: 14px;
  668. color: #3F90F7;
  669. text-align: center;
  670. white-space: nowrap;
  671. overflow: hidden;
  672. text-overflow: ellipsis;
  673. }
  674. .mainCont{
  675. width: 1200px;
  676. margin: 0 auto;
  677. padding-bottom: 20px;
  678. }
  679. .mainline{
  680. padding-top: 34px;
  681. }
  682. .mainlineTop{
  683. display: flex;
  684. justify-content: space-between;
  685. }
  686. .mainlineTopleft{
  687. display: flex;
  688. }
  689. .mainlineTitle{
  690. font-size: 22px;
  691. font-weight: 500;
  692. color: #3C3C3C;
  693. line-height: 33px;
  694. font-family: PingFangSC-Medium, PingFang SC;
  695. }
  696. .mainlinecount{
  697. font-size: 14px;
  698. font-weight: 400;
  699. color: #999999;
  700. line-height: 33px;
  701. padding-left: 16px;
  702. }
  703. .mainlineMore{
  704. font-size: 14px;
  705. color: #999999;
  706. }
  707. .mainwzbox{
  708. display: flex;
  709. /* padding-top: 20px; */
  710. }
  711. .mainwzbox2{
  712. display: flex;
  713. padding: 0 15px;
  714. }
  715. .mainwzImg{
  716. width: 284px;
  717. height: 160px;
  718. }
  719. .mainwzImgBox{
  720. border-top-left-radius: 6px;
  721. border-top-right-radius: 6px;
  722. overflow: hidden;
  723. height: 160px;
  724. border: 1px solid #eeeeee;
  725. }
  726. .mainwzline{
  727. width: 284px;
  728. height: 244px;
  729. background: #FFFFFF;
  730. border-radius: 6px;
  731. }
  732. .mainwzlineR{
  733. margin-right: 22px;
  734. }
  735. .wztitle{
  736. width: 256px;
  737. font-size: 16px;
  738. color: #333333;
  739. line-height: 22px;
  740. height: 22px;
  741. text-overflow: -o-ellipsis-lastline;
  742. overflow: hidden;
  743. text-overflow: ellipsis;
  744. display: -webkit-box;
  745. -webkit-line-clamp: 1;
  746. line-clamp: 1;
  747. -webkit-box-orient: vertical;
  748. padding:0 13px ;
  749. padding-top: 16px;
  750. }
  751. .wztime{
  752. font-size: 14px;
  753. color: #999999;
  754. padding-left: 14px;
  755. padding-top: 10px;
  756. }
  757. .mainwzline:hover{
  758. background: #FFFFFF;
  759. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.2);
  760. border-radius: 6px;
  761. cursor: pointer;
  762. }
  763. .mainwzline:hover .wztitle{
  764. color: #FF4F00;
  765. }
  766. .mainlineMore:hover{
  767. color: #FF4F00;
  768. cursor: pointer;
  769. }
  770. .gotopImg{
  771. width: 60px;
  772. height: 60px;
  773. }
  774. .gotop{
  775. position: fixed;
  776. right:5vh ;
  777. bottom: 60px;
  778. cursor: pointer;
  779. }
  780. .linegdImg1{
  781. width: 6px;
  782. height: 10px;
  783. margin-top: 5px;
  784. margin-left: 4px;
  785. }
  786. .linegdImg2{
  787. width: 6px;
  788. height: 10px;
  789. display: none;
  790. margin-top: 5px;
  791. margin-left: 4px;
  792. }
  793. .mainlineMore{
  794. display: flex;
  795. }
  796. .mainlineMore:hover .linegdImg1{
  797. display: none;
  798. }
  799. .mainlineMore:hover .linegdImg2{
  800. display: block;
  801. }
  802. .mainline1{
  803. padding-top: 20px;
  804. }
  805. .content{
  806. background: #F4F5F7;
  807. min-height: 100vh;
  808. font-family: PingFangSC-Regular, PingFang SC;
  809. }
  810. .contBox{
  811. min-height: 58vh;
  812. }
  813. .gotopImg{
  814. width: 60px;
  815. height: 60px;
  816. }
  817. .gotop{
  818. position: fixed;
  819. right:5vh ;
  820. bottom: 60px;
  821. cursor: pointer;
  822. }
  823. .topName{
  824. text-align: center;
  825. font-size: 22px;
  826. font-weight: 500;
  827. color: #3C3C3C;
  828. line-height: 33px;
  829. padding-top: 20px;
  830. font-family: PingFangSC-Medium, PingFang SC;
  831. padding-bottom: 10px;
  832. }
  833. .comment{
  834. text-align: center;
  835. font-size: 14px;
  836. font-weight: 400;
  837. color: #999999;
  838. line-height: 20px;
  839. width: 500px;
  840. margin: 0 auto;
  841. }
  842. .main{
  843. width: 1200px;
  844. margin: 0 auto;
  845. /* padding-top: 30px; */
  846. }
  847. .dynamicColLeft{
  848. display: flex;
  849. }
  850. .dynamicColLIne{
  851. padding-right: 44px;
  852. font-size: 16px;
  853. color: #3C3C3C;
  854. cursor: pointer;
  855. line-height: 32px;
  856. }
  857. .qhImg{
  858. width: 28px;
  859. height: 28px;
  860. margin-left: 8px;
  861. cursor: pointer;
  862. }
  863. .dynamicCol{
  864. display: flex;
  865. justify-content: space-between;
  866. background: #FFFFFF;
  867. padding:15px 20px;
  868. border-radius: 8px;
  869. }
  870. .activeTab{
  871. color: #FF4F00;
  872. }
  873. .mainwzImg{
  874. width: 284px;
  875. height: 160px;
  876. }
  877. .mainwzImgBox{
  878. border-top-left-radius: 6px;
  879. border-top-right-radius: 6px;
  880. overflow: hidden;
  881. height: 160px;
  882. border: 1px solid #eeeeee;
  883. }
  884. .contf{
  885. display: flex;
  886. flex-wrap: wrap;
  887. }
  888. .mainwzline{
  889. width: 284px;
  890. height: 244px;
  891. background: #FFFFFF;
  892. margin-right: 21px;
  893. margin-top: 20px;
  894. cursor: pointer;
  895. border-radius: 6px;
  896. }
  897. .wztime{
  898. font-size: 14px;
  899. color: #999999;
  900. padding-left: 14px;
  901. padding-top: 10px;
  902. }
  903. .mainwzline:hover{
  904. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.2);
  905. }
  906. .mainwzlineR2{
  907. margin-right: 0px;
  908. }
  909. .wztitle{
  910. width: 256px;
  911. font-size: 16px;
  912. color: #333333;
  913. line-height: 22px;
  914. height: 22px;
  915. text-overflow: -o-ellipsis-lastline;
  916. overflow: hidden;
  917. text-overflow: ellipsis;
  918. display: -webkit-box;
  919. -webkit-line-clamp: 1;
  920. line-clamp: 1;
  921. -webkit-box-orient: vertical;
  922. padding:0 13px ;
  923. padding-top: 16px;
  924. }
  925. .wzLeftIMg{
  926. width: 200px;
  927. height: 112px;
  928. }
  929. .contL{
  930. background: #FFFFFF;
  931. margin-top: 20px;
  932. border-radius: 8px;
  933. padding: 0 20px;
  934. }
  935. .wxLine{
  936. display: flex;
  937. padding: 20px 0px;
  938. cursor: pointer;
  939. border-bottom: 1px solid #EEEEEE;
  940. }
  941. .wzLineLeft{
  942. border-radius: 6px;
  943. overflow: hidden;
  944. width: 200px;
  945. height: 112px;
  946. }
  947. .wzLineRight{
  948. padding-left: 16px;
  949. width: 788px;
  950. }
  951. .wzTitle2{
  952. font-size: 16px;
  953. color: #3C3C3C;
  954. width: 948px;
  955. height: 20px;
  956. line-height: 20px;
  957. text-overflow: -o-ellipsis-lastline;
  958. overflow: hidden;
  959. text-overflow: ellipsis;
  960. display: -webkit-box;
  961. -webkit-line-clamp: 1;
  962. line-clamp: 1;
  963. -webkit-box-orient: vertical;
  964. }
  965. .wzComment{
  966. font-size: 14px;
  967. font-family: PingFangSC-Regular, PingFang SC;
  968. font-weight: 400;
  969. color: #999999;
  970. line-height: 20px;
  971. padding-top: 10px;
  972. width: 948px;
  973. height: 80px;
  974. text-overflow: -o-ellipsis-lastline;
  975. overflow: hidden;
  976. text-overflow: ellipsis;
  977. display: -webkit-box;
  978. -webkit-line-clamp: 4;
  979. line-clamp: 4;
  980. -webkit-box-orient: vertical;
  981. }
  982. .pageView{
  983. margin-top: 20px;
  984. cursor: pointer;
  985. padding-bottom: 20px;
  986. }
  987. .nodataImg{
  988. width: 300px;
  989. height: 203px;
  990. }
  991. .nodata{
  992. text-align: center;
  993. padding-top: 100px;
  994. }
  995. .nodataTitle{
  996. font-size: 16px;
  997. padding-top: 16px;
  998. font-weight: 400;
  999. color: #999999;
  1000. }
  1001. .listtopC{
  1002. padding-bottom: 10px;
  1003. }
  1004. </style>